@charset "UTF-8";
/*
Colors
*/
/*
Fonts
*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clashgrotesk";
  src: url("../fonts/ClashGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clashgrotesk";
  src: url("../fonts/ClashGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clashgrotesk";
  src: url("../fonts/ClashGrotesk-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  background-color: #F8F9FB;
  color: #8C94A6;
}

/*
Text
*/
abbr {
  border-bottom: 1px dotted #E6E6E6;
}

.text-primary {
  color: #262628;
}

.error, .text-red {
  color: #F04438;
}

.info, .text-green {
  color: #007536;
}

.text-dark {
  color: #222124;
}

.highlight {
  background-color: #FFF3E0;
}

.text-gray-500 {
  color: #49576D;
}

.text-gray-400 {
  color: #8C94A6;
}

.text-base {
  color: #8C94A6;
}

.text-gray-600 {
  color: #1A1A21;
}

.sm-bold {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.xs-bold {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
}

.md {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.xs {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}

.md-bold {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #222124;
  padding: 0;
  margin: 0;
  font-family: Clashgrotesk, sans-serif;
}

h3 {
  color: #222124;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

.clash {
  font-family: Clashgrotesk, sans-serif;
}

.flex-truncate {
  flex: 1;
  width: 0;
}

/*
Borders
*/
.box, .border-all {
  border: 1px solid #E6E6E6;
}

.border-bottom {
  border-bottom: 1px solid #E6E6E6;
}

.border-top {
  border-top: 1px solid #E6E6E6;
}

.border-right {
  border-right: 1px solid #E6E6E6;
}

.border-left {
  border-left: 1px solid #E6E6E6;
}

/*
Colors
*/
.bg-gray-50 {
  background-color: #F8F9FB;
}

.bg-base {
  background-color: #F9FAFB;
}

.bg-off-white {
  background-color: #fafafa;
}

.bg-body {
  background-color: #F8F9FB;
}

/*
Buttons
*/
.btn,
button {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.5s ease 0s;
  display: inline-block;
  background-color: #18B471;
  border-radius: 8px;
  border: 1px solid #18B471;
  padding: 8px 12px;
  color: #FFF;
  white-space: nowrap;
}
.btn svg,
button svg {
  width: 18px;
  height: 18px;
}
.btn.active,
button.active {
  border: 1px solid #105DFB;
  box-shadow: 0px 0px 0px 3px rgba(22, 80, 207, 0.15);
}
.btn:hover,
button:hover {
  color: #FFF;
  border: 1px solid #00a758;
  background-color: #00a758;
}
.btn.disabled, .btn:disabled,
button.disabled,
button:disabled {
  color: #8C94A6 !important;
  background-color: #E1E3EA !important;
  border: 0 !important;
  cursor: default;
}

.btn-nobg {
  background-color: transparent;
  box-shadow: none;
  color: #18B471;
  border-color: transparent;
}
.btn-nobg:hover {
  color: #18B471;
  border: 1px solid #E1E3EA;
  background-color: #F8F9FB;
}

.btn-secondary {
  background-color: #FFF;
  box-shadow: 0px 3px 4px -5px rgba(24, 24, 28, 0.03), 0px 1px 2px rgba(24, 24, 28, 0.04);
  color: #1A1A21;
  border-color: #E6E6E6;
}
.btn-secondary:hover {
  color: #1A1A21;
  border: 1px solid #E1E3EA;
  background-color: #F8F9FB;
}

.btn-blue {
  background-color: #4266F6;
  border-color: #4266F6;
}
.btn-blue:hover {
  border: 1px solid #0035d9;
  background-color: #0035d9;
}

.btn-ghost {
  color: #18B471;
  background-color: #FFF;
  border: 1px dashed #18B471;
}
.btn-ghost:hover {
  color: #18B471;
  background-color: #FFF;
}
.btn-ghost.active {
  background-color: #E8F6ED;
  border: 1px solid #18B471;
}

.btn-small {
  padding-top: 4px;
  padding-bottom: 4px;
  border-radius: 5px;
}

.btn-red {
  background-color: #FFF;
  color: #F04438;
}
.btn-red:hover {
  color: #F04438;
  background-color: #feebee;
  border-color: #fdcdd2;
}

a {
  text-decoration: none;
  color: #000db6;
  transition: color 0.5s ease 0s;
}
a:hover {
  color: #0035d9;
}
a.alt {
  color: #49576D;
}
a.alt:hover {
  color: #262628;
}
a.alt-b {
  color: #18B471;
}
a.alt-b:hover {
  color: #00984e;
}
a:not(.btn) svg {
  stroke: #8C94A6;
}
a:not(.btn) svg:hover {
  stroke: #222124;
}
a.svg-active svg {
  stroke: #222124;
}

svg.nostroke {
  stroke: none !important;
}
svg.fill-gg {
  fill: #8C94A6;
}
svg.fill-gg:hover {
  fill: #1A1A21;
}

/*
Others
*/
header {
  background-color: #FFF;
  padding-left: 100px;
  padding-right: 100px;
}

/*
Containers
*/
.pane {
  z-index: 2;
  max-width: 600px;
  top: 0;
  right: 0;
  border-left: 1px solid #E6E6E6;
}

.main {
  margin-left: 100px;
  margin-right: 100px;
}

.box {
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px 0px 2px rgba(24, 24, 28, 0.02), 0px 1px 2px rgba(24, 24, 28, 0.06);
}
.box .box-footer {
  background-color: #F8F9FB;
  border-top: 1px solid #E6E6E6;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.box.hov {
  position: relative;
}
.box.hov .body {
  min-height: 13em;
}
.box.hov .caption {
  border-radius: 8px 8px 0 0;
  background-color: #f6f6f6;
  text-align: center;
  color: #8C94A6;
}
.box.hov a {
  color: #1A1A21;
}
.box.hov a.btn:not(.btn-secondary):not(.btn-nobg):not(.btn-red) {
  color: #FFF;
}
.box.hov:hover, .box.hov.active {
  border-color: #4266F6;
}
.box.hov:hover a, .box.hov.active a {
  color: #4266F6;
}
.box.hov a.alt, .box.hov a.alt:hover {
  color: #49576D;
}
.box.alt {
  background-color: #F9FAFB;
  border: 1px solid #F6F6F6;
}

.img-card {
  border-radius: 8px 8px 0 0;
  background-color: #f6f6f6;
  width: 100%;
  height: 15em;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
}
.img-card img {
  width: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
.masonry .grid-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 1rem;
  align-content: start;
}
.masonry .grid-item {
  position: relative;
  background-color: #F9FAFB;
}
.masonry .grid-item:hover {
  background-color: #EDEDF2;
}
.masonry .grid-item:hover .hov-btn {
  visibility: visible;
}
.masonry .grid-item img {
  display: block;
  width: 100%;
  border-radius: 3px;
}
.masonry .grid-item .hov-btn {
  border-radius: 3px;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  color: #ddd;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.masonry .grid-item .hov-btn a {
  color: #fefefe;
}

.sidebar {
  width: 15%;
  margin-right: 1.5rem;
}

.mainbar {
  width: 85%;
}

.warning {
  background-color: #FFFAEE;
  color: #ed6907;
  border-radius: 8px;
}
.warning svg {
  fill: #EF990B;
  stroke: #FFF;
}
.warning.red {
  background-color: #feebee;
  color: #F04438;
}
.warning.red svg {
  fill: #F04438;
}

.h60 {
  height: 60px;
}

.w-400 {
  width: 400px;
}

.w-250 {
  width: 250px;
}

.w-500 {
  max-width: 500px;
}

.w-600 {
  max-width: 600px;
}

.w-700 {
  max-width: 700px;
}

.w-800 {
  max-width: 800px;
}

.w-900 {
  max-width: 900px;
}

@media only screen and (max-width: 500px) {
  .w-500 {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .w-600 {
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  .w-700 {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .w-800 {
    width: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .w-900 {
    width: 100%;
  }
}
.notification {
  border-radius: 8px;
  background-color: #E8F6ED;
  color: #007536;
}
.notification svg {
  fill: #E8F6ED;
  stroke: #007536;
}

.floating-notifications {
  position: fixed;
  border-radius: 5px;
  padding: 20px 30px;
  top: 70px;
  color: #007536;
  z-index: 20;
  border: 1px solid #b9e4cb;
  max-width: 500px;
  background-color: #E8F6ED;
  right: 3px;
}
.floating-notifications a {
  color: #007536;
}
.floating-notifications svg {
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
}

.floating-notifications.error {
  background-color: #feebee;
  border-color: #fdcdd2;
  color: #cf3131;
}
.floating-notifications.error a {
  color: #cf3131;
}

.floating-notifications a {
  text-decoration: underline;
}

/*
Automation
*/
.sidepane {
  margin-left: 70%;
  border-left: 1px solid #eee;
  height: calc(100% - 60px);
  width: 30%;
  position: fixed;
  overflow-y: scroll;
}

@media only screen and (max-width: 1280px) {
  .sidepane {
    width: 40%;
    margin-left: 60%;
  }
}
.node-wrap {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("/images/automation-bg.png");
  cursor: move;
}

.node {
  position: absolute;
  background-color: #fff;
  border: 1px solid #E1E3EA;
  box-shadow: 0px 2px 4px rgba(31, 41, 55, 0.06), 0px 4px 6px rgba(31, 41, 55, 0.04);
  border-radius: 8px;
  z-index: 1;
  height: 76px;
  width: 300px;
}
.node.active, .node:focus, .node:hover {
  box-shadow: 0px 0px 0px 4px rgba(16, 93, 251, 0.25);
}
.node .title {
  font-weight: 600;
}
.node .title strong {
  font-weight: 500;
}
.node .tag {
  background-color: #105DFB;
  color: #FFF;
  border-radius: 5px;
}
.node .tag::before {
  display: none;
}
.node .trigger .title {
  color: #4266F6;
}
.node .control .tag {
  background-color: #6F34E7;
}
.node .control .title {
  color: #6F34E7;
}
.node .action .tag {
  background-color: #F04438;
}
.node .action .title {
  color: #F04438;
}
.node.node-error {
  border: 1px solid #f5c2be;
}

.blob {
  background: #105DFB;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  margin: 10px;
  height: 24px;
  width: 24px;
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  transform: scale(1);
  animation: pulse 2s infinite;
  z-index: 1;
}
.blob:hover {
  background-color: #0035d9;
}

.screenshots {
  box-shadow: 0px 20px 25px rgba(31, 41, 55, 0.1), 0px 10px 10px rgba(31, 41, 55, 0.04);
  display: block;
  margin: 1rem 0;
  border-radius: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 93, 251, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 93, 251, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 93, 251, 0);
  }
}
@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.ellipsis:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 1900ms infinite;
  animation: ellipsis steps(4, end) 1900ms infinite;
  content: "…"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;
  }
}
/*
Tags
*/
.tag {
  white-space: nowrap;
  background-color: #F2F4FF;
  color: #4266F6;
  border-radius: 50px;
  padding: 3px 8px;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
}
.tag::before {
  content: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%234266F6'/%3E%3C/svg%3E");
  padding-right: 3px;
  bottom: 2px;
  position: relative;
}
.tag.alt::before {
  content: none;
}
.tag.purple {
  background-color: #f1ebfd;
  color: #6F34E7;
}
.tag.purple::before {
  content: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23a985f1'/%3E%3C/svg%3E");
}
.tag.green {
  background-color: #E8F6ED;
  color: #00a758;
}
.tag.green::before {
  content: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%2352A86E'/%3E%3C/svg%3E");
}
.tag.green.alt {
  border: 1px solid #b9e4cb;
}
.tag.green.alt::before {
  content: none;
}
.tag.gray {
  background-color: #EDEDF2;
  color: #8C94A6;
}
.tag.gray::before {
  content: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%238C94A6'/%3E%3C/svg%3E");
}
.tag.pink {
  background-color: #feebee;
  color: #F04438;
}
.tag.pink::before {
  content: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23F04438'/%3E%3C/svg%3E");
}
.tag.pink.alt {
  border: 1px solid #fdcdd2;
}
.tag.pink.alt::before {
  content: none;
}
.tag.yellow {
  background-color: #FFF3E0;
  color: #ed6907;
}
.tag.yellow::before {
  content: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23EF990B'/%3E%3C/svg%3E");
}

.badge {
  min-width: 20px;
  padding: 1px 3px;
  background: red;
  color: white;
  border-radius: 50%;
  font-size: smaller;
  top: -11px;
  right: 8px;
}

/*
Nav
- main
- line-nav
*/
.nav-primary {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-primary li {
  display: inline-block;
}
.nav-primary a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 12px;
  display: block;
  border-radius: 8px;
  color: #49576D;
}
.nav-primary a:hover {
  color: #49576D;
}
.nav-primary a.active {
  background-color: #F2F4FF;
  color: #1A1A21;
  font-weight: 600;
}

.active-header-pill {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #F2F4FF;
  color: #1A1A21;
}

.nav-side {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.nav-side a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  display: block;
  padding: 6px 12px;
  display: block;
  border-radius: 8px;
  color: #576781;
}
.nav-side a:hover {
  color: #49576D;
}
.nav-side a.active {
  background-color: #EDEDF2;
  border-color: #EDEDF2;
  color: #1A1A21;
  font-weight: 600;
}

.nav-dropdown {
  z-index: 3;
  border-radius: 8px;
  position: absolute;
  background-color: #FFF;
  border: 1px solid #E6E6E6;
  overflow-x: scroll;
  box-shadow: 0px 20px 25px rgba(31, 41, 55, 0.1), 0px 10px 10px rgba(31, 41, 55, 0.04);
  padding: 5px 0;
  margin: 5px 0 0;
  max-height: 300px;
}
.nav-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-dropdown ul li:hover, .nav-dropdown ul li.active {
  background-color: #F6F6F6;
}
.nav-dropdown ul li .cursor {
  cursor: pointer;
}
.nav-dropdown ul li a,
.nav-dropdown ul li .cursor,
.nav-dropdown ul li .checkbox {
  padding: 8px 12px;
  display: block;
}
.nav-dropdown ul li .cursor, .nav-dropdown ul li a {
  color: #49576D;
}

.line-menu {
  list-style: none;
  border-bottom: 1px solid #EDEDF2;
  display: inline-block;
  margin: 0;
  padding: 0 100px 0 0;
  font-weight: 600;
}
.line-menu li {
  margin-bottom: -2px;
  display: inline-block;
}
.line-menu a {
  color: #576781;
  border-bottom: 1px solid #EDEDF2;
  display: block;
  padding: 0.5em 1em;
}
.line-menu a:hover {
  color: #49576D;
}
.line-menu a.active {
  color: #18B471;
  border-bottom: 2px solid #18B471;
}

.line-menu-blue a {
  padding: 1em 1.2em;
}
.line-menu-blue a.active {
  color: #1A1A21;
  border-bottom: 2px solid #4266F6;
}

/*
Table + Lists
*/
table {
  border-collapse: collapse;
}
table.disabled tr td {
  opacity: 0.4;
}
table tr td {
  vertical-align: top;
  border-bottom: 1px solid #E6E6E6;
  padding: 15px;
}
table tr th {
  text-align: left;
  background-color: #F6F6F6;
  padding: 10px 15px;
  font-weight: 500;
  position: sticky;
  z-index: 2;
  top: 0;
}
table tr:hover {
  background-color: #F9FAFB;
}

.connector {
  margin-right: 20px;
}
.connector::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 20px;
  right: -20px;
  content: " ";
  border-top: 1px dashed #ddd;
}

.step-content {
  pointer-events: none;
}
.step-content h1,
.step-content h2,
.step-content h3,
.step-content p {
  margin: 0;
  padding: 6px 0;
  color: inherit;
  line-height: 1.4;
}
.step-content h1:first-child,
.step-content h2:first-child,
.step-content h3:first-child,
.step-content p:first-child {
  margin-top: 0;
}
.step-content h1:last-child,
.step-content h2:last-child,
.step-content h3:last-child,
.step-content p:last-child {
  margin-bottom: 0;
}

.list-item {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-item li {
  border-bottom: 1px solid #E6E6E6;
  padding: 15px;
}

.list-item-alt {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-item-alt a {
  border: 1px solid transparent;
  display: block;
  color: #49576D;
  border-radius: 8px;
  padding: 0.5em;
}
.list-item-alt a:hover {
  border-color: #4266F6;
  color: #105DFB;
  background-color: #EBF1FD;
}

.list-item-alt-b a {
  border: 1px solid #E6E6E6;
  padding: 1em;
  background-color: #FDFDFD;
  margin: 0.5em 0;
}
.list-item-alt-b a svg {
  stroke: none;
}
.list-item-alt-b a:hover rect {
  fill: #a9c5f7;
}
.list-item-alt-b a:hover path {
  stroke: #4266F6;
}

/*
Forms
*/
.tiptap-editor {
  color: #49576D;
  line-height: 1.6rem;
  border: 1px solid #E1E3EA;
  border-radius: 8px;
  box-shadow: 0px 3px 4px -5px rgba(24, 24, 28, 0.03), 0px 1px 2px rgba(24, 24, 28, 0.04);
}
.tiptap-editor p {
  margin: 0;
  padding: 0;
}
.tiptap-editor .ProseMirror p.is-editor-empty:first-child::before {
  color: #aaa !important;
}

select,
textarea,
.input,
input {
  outline: 0;
  background-color: #FDFDFD;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #E1E3EA;
  box-shadow: 0px 3px 4px -5px rgba(24, 24, 28, 0.03), 0px 1px 2px rgba(24, 24, 28, 0.04);
}
select:focus-within, select:focus,
textarea:focus-within,
textarea:focus,
.input:focus-within,
.input:focus,
input:focus-within,
input:focus {
  border: 1px solid #105DFB;
  box-shadow: 0px 0px 0px 3px rgba(36, 100, 241, 0.15);
}
select:disabled, select:read-only,
textarea:disabled,
textarea:read-only,
.input:disabled,
.input:read-only,
input:disabled,
input:read-only {
  background-color: #F8F9FB;
}

.input.input-pre {
  border-radius: 8px;
  padding: 5px;
  background-color: #fff;
}
.input.input-pre input {
  padding: 0;
  border-radius: 0 3px 3px 0;
}

.input.input-pre.readonly {
  background-color: #F8F9FB;
}

select:read-only {
  background-color: #FDFDFD;
}

.input {
  display: flex;
  align-items: center;
  padding: 0;
  background-color: #F8F9FB;
}
.input input {
  background-color: #FDFDFD;
  border-radius: 8px 0 0 8px;
  border: 0;
  box-shadow: none;
  width: 100%;
}
.input input:focus {
  border: 0;
  box-shadow: none;
}
.input input:disabled, .input input:read-only {
  background-color: #F8F9FB;
}

input[type=range] {
  border: 0;
  padding: 0;
  box-shadow: none;
}
input[type=range]:focus {
  border: 0;
  box-shadow: none;
}

.checkbox * {
  box-sizing: inherit;
}
.checkbox *:before,
.checkbox *:after {
  box-sizing: inherit;
}
.checkbox input[type=checkbox] {
  --active: #275EFE;
  --active-inner: #fff;
  --focus: 2px rgba(39, 94, 254, .3);
  --border: #BBC1E1;
  --border-hover: #275EFE;
  --background: #fff;
  --disabled: #F6F8FF;
  --disabled-inner: #E1E6F9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 21px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--bc, var(--border));
  background: var(--b, var(--background));
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.2s;
}
.checkbox input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
}
.checkbox input[type=checkbox]:checked {
  --b: var(--active);
  --bc: var(--active);
  --d-o: .3s;
  --d-t: .6s;
  --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}
.checkbox input[type=checkbox]:disabled {
  --b: var(--disabled);
  cursor: not-allowed;
  opacity: 0.9;
}
.checkbox input[type=checkbox]:disabled:checked {
  --b: var(--disabled-inner);
  --bc: var(--border);
}
.checkbox input[type=checkbox]:disabled + label {
  cursor: not-allowed;
}
.checkbox input[type=checkbox]:hover:not(:checked):not(:disabled) {
  --bc: var(--border-hover);
}
.checkbox input[type=checkbox]:focus {
  box-shadow: 0 0 0 var(--focus);
}
.checkbox input[type=checkbox]:not(.switch) {
  width: 21px;
}
.checkbox input[type=checkbox]:not(.switch):after {
  opacity: var(--o, 0);
}
.checkbox input[type=checkbox]:not(.switch):checked {
  --o: 1;
}
.checkbox input[type=checkbox] + label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 4px;
}
.checkbox input[type=checkbox]:not(.switch) {
  border-radius: 7px;
}
.checkbox input[type=checkbox]:not(.switch):after {
  width: 5px;
  height: 9px;
  border: 2px solid var(--active-inner);
  border-top: 0;
  border-left: 0;
  left: 7px;
  top: 4px;
  transform: rotate(var(--r, 20deg));
}
.checkbox input[type=checkbox]:not(.switch):checked {
  --r: 43deg;
}
.checkbox input[type=checkbox].switch {
  width: 38px;
  border-radius: 11px;
}
.checkbox input[type=checkbox].switch:after {
  left: 1px;
  top: 1px;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  background: var(--ab, var(--border));
  transform: translateX(var(--x, 0));
}
.checkbox input[type=checkbox].switch:checked {
  --ab: var(--active-inner);
  --x: 17px;
}
.checkbox input[type=checkbox].switch:disabled:not(:checked):after {
  opacity: 0.6;
}

.segment {
  background-color: #F8F9FB;
  border-radius: 8px;
  border: 1px solid #E6E6E6;
}

.segment-row {
  border: 1px solid #dce5df;
  border-radius: 14px;
}

/*
Code
*/
code {
  font-family: "Fira Mono", Consolas, monaco, monospace;
}

*:not(pre) > code {
  color: #F04438;
}

pre > code {
  font-size: 90%;
  border-radius: 8px;
}

/*
Modal
*/
.modal {
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.modal-body {
  margin: 100px auto;
  overflow: scroll;
  border-radius: 8px;
  width: 50%;
  background-color: #FFF;
}

/*
Layout
*/
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid.two {
  grid-template-columns: 1fr 1fr;
}
.grid.three {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid.one {
  grid-template-columns: 1fr 2fr 1fr;
}

.ga3 {
  gap: 1rem;
}

/*
Hover
*/
.hover-wrp .hover-content {
  visibility: hidden;
}
.hover-wrp:hover .hover-content {
  visibility: visible;
}

/*
Charts
*/
.line-bar-bg {
  background-color: #fff8de;
  padding-right: 40px;
  box-sizing: content-box;
  margin: 1px 0;
  margin-left: -1rem;
}

.line-bar {
  color: #49576D;
  position: absolute;
  display: flex;
  font-size: 90%;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

/*
 Misc
*/
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

img.feather {
  width: 16px;
  height: 16px;
  stroke: #d1d1d1;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.break-all {
  word-break: break-all;
}

.break-words {
  word-wrap: break-word;
}

.no-break {
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.capitalize {
  text-transform: capitalize;
}

.brlt {
  border-top-left-radius: 8px;
}

.brrt {
  border-top-right-radius: 8px;
}

.move {
  cursor: move;
}

.profile {
  cursor: pointer;
  position: relative;
  width: 100px;
  background-color: #F2F4FF;
  padding: 8px 10px;
  border-radius: 24px;
}

.avatar {
  width: 32px;
  height: 32px;
}

.avatar-hov {
  border: 2px solid #E1E3EA;
}
.avatar-hov:hover {
  border: 2px solid #0035d9;
}

.online {
  background-color: #00a758;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
}
.online.small {
  top: -2px;
  right: -4px;
  width: 12px;
  height: 12px;
}

.important-dn {
  display: none !important;
}

.ml60 {
  margin-left: 60%;
}

.ml50 {
  margin-left: 50%;
}

/*
Media query
*/
/* 960 and down */
@media only screen and (max-width: 960px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .main > .flex {
    flex-wrap: wrap;
  }
  .ml60 {
    margin-left: 0;
  }
  .ml50 {
    margin-left: 0;
  }
  .sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .mainbar {
    width: 100%;
  }
  .nav-primary {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .main {
    margin-left: 50px;
    margin-right: 50px;
  }
  header {
    padding-left: 50px;
    padding-right: 50px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
/* from 144 ~ */
@media only screen and (min-width: 1441px) {
  .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
