@charset "UTF-8";
:root {
  --color-primary: #3479FE;
  --color-primary-lighter: rgb(77.375, 137.75, 254.125);
  --color-primary-lightest: rgb(128.125, 171.25, 254.375);
  --color-primary-darker: rgb(26.625, 104.25, 253.875);
  --color-primary-darkest: rgb(1.125, 78.75, 228.375);
  --color-body-bg: #F3F4F6;
  --color-black: #000000;
  --color-dark: #212327;
  --box-shadow: 0px 2px 4px 0px #0F17270D;
  --border-radius: 10px;
  --border-radius-btn: 48px;
  --font-heading: "Inter", sans-serif;
  --font-text: "Inter", sans-serif;
  --container-padding-md: 16px;
  --container-padding-xl: 32px;
}

/*

>=390px:   xs - mobile x-small
>=576px:   sm - mobile small
>=768px:   md - Tablet portrait
>=992px:   lg - Tablet landscape
>=1200px:  xl - Extra large
>=1440px:  xxl - Extra extra large
>=1920px:  xxxl - Extra extra extra large
$breakpoint arguement choices:
- xs
- sm
- md
- lg
- xl
- xxl
- xxxl

1em = 16px
*/
.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.visibility-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.bg-white {
  background-color: #fff;
}

.text-primary {
  color: #3479FE;
}

.text-success {
  color: #139108;
}

.text-danger {
  color: #FE3458;
}

.mb-1 {
  margin-bottom: 16px;
}

.mb-2 {
  margin-bottom: 24px;
}

.mb-3 {
  margin-bottom: 32px;
}

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.53;
  min-width: 360px;
  color: rgba(33, 35, 39, 0.7);
  background-color: var(--color-body-bg);
  overflow-x: hidden;
}
body.scroll-disabled {
  overflow: hidden;
}
@media only screen and (min-width: 62em) {
  body {
    height: 100vh;
    overflow: hidden;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.main-page {
  display: flex;
  flex-direction: column;
}

.main-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 62em) {
  .main-body {
    max-height: calc(100vh - 118px);
    overflow-y: auto;
  }
}
@media only screen and (min-width: 75em) {
  .main-body {
    flex-direction: row;
  }
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
}
.page-wrapper .main-page {
  width: 100%;
}
@media only screen and (min-width: 62em) {
  .page-wrapper .main-page {
    flex-grow: 1;
    max-width: calc(100vw - 230px);
  }
}

@media (min-width: 393px) {
  .page-wrapper {
    max-width: 100vw;
    overflow: hidden;
  }
}
.page-content {
  background-color: #fff;
  border-left: 1px solid #DADEE7;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 62em) {
  .page-content {
    overflow-y: auto;
    flex-grow: 1;
  }
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: rgba(218, 222, 231, 0.5);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-darker);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
}

strong {
  font-weight: 500;
}

.heading {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: inherit;
}
@media only screen and (min-width: 62em) {
  .heading {
    font-size: 30px;
  }
}
.heading--white {
  color: #fff;
}

.sub-heading {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-dark);
  text-align: inherit;
}

mark,
.accent {
  background-color: transparent;
  color: var(--color-primary);
}

.main-sidebar {
  z-index: 10;
}
@media only screen and (min-width: 62em) {
  .main-sidebar {
    position: relative;
    flex: 0 0 230px;
    background-color: var(--color-dark);
  }
}
.main-sidebar__nav {
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  color: #fff;
  position: fixed;
  top: 0;
  left: -100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: auto;
}
@media only screen and (min-width: 62em) {
  .main-sidebar__nav {
    height: calc(100vh - 65px);
    position: relative;
    max-width: 230px;
    left: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.main-sidebar.menu-open .main-sidebar__nav {
  left: 0;
}
.main-sidebar__logo {
  padding: 24px 24px 15px;
  display: none;
}
@media only screen and (min-width: 62em) {
  .main-sidebar__logo {
    display: block;
  }
}
.main-sidebar__btn {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
}

.burger-btn {
  cursor: pointer;
  background-color: var(--color-dark);
  border: none;
  height: 64px;
  width: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 62em) {
  .burger-btn {
    display: none;
  }
}
.burger-btn:focus {
  outline: none;
}
.burger-btn__inner {
  position: relative;
  height: 12px;
  width: 24px;
}
.burger-btn__top, .burger-btn__bottom, .burger-btn__mid {
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease-out;
}
.burger-btn__top {
  width: 100%;
  top: 0;
}
.burger-btn__mid {
  width: 100%;
  top: 5px;
}
.burger-btn__bottom {
  width: 66%;
  bottom: 0;
}
.burger-btn.active .burger-btn__top {
  transform: rotate(225deg);
  top: 50%;
  background-color: #fff;
}
.burger-btn.active .burger-btn__bottom {
  width: 100%;
  transform: rotate(-225deg);
  top: 50%;
  background-color: #fff;
}
.burger-btn.active .burger-btn__mid {
  transform: scale(0);
}

.nav-btn {
  cursor: pointer;
  border: none;
  width: 32px;
  height: 25px;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
}
.nav-btn:focus {
  outline: none;
}
.nav-btn__inner {
  position: relative;
  height: 8px;
  width: 16px;
}
.nav-btn__top, .nav-btn__bottom, .nav-btn__mid {
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  background-color: rgba(33, 35, 39, 0.3294117647);
  transition: all 0.3s ease-out;
}
.nav-btn__top {
  width: 100%;
  top: 0;
}
.nav-btn__mid {
  width: 100%;
  top: 3px;
}
.nav-btn__bottom {
  width: 66%;
  bottom: 0;
}
.nav-btn.active .nav-btn__top {
  background-color: var(--color-primary);
}
.nav-btn.active .nav-btn__bottom {
  background-color: var(--color-primary);
}
.nav-btn.active .nav-btn__mid {
  background-color: var(--color-primary);
}

.sidebar-nav {
  padding: 15px 16px;
}
@media only screen and (min-width: 62em) {
  .sidebar-nav {
    width: 100%;
  }
}
.sidebar-nav__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  display: none;
}
@media only screen and (min-width: 62em) {
  .sidebar-nav__list {
    display: block;
  }
}
.sidebar-nav__list.active {
  display: block;
}
.sidebar-nav__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  opacity: 0.66;
  transition: 0.3s ease;
}
.sidebar-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
}
.sidebar-nav__link:active, .sidebar-nav__link.active {
  opacity: 1;
}
.sidebar-nav__icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-nav__divider {
  display: none;
  height: 1px;
  width: 100%;
  margin: 12px 0;
  background-color: rgba(255, 255, 255, 0.1215686275);
}
@media only screen and (min-width: 62em) {
  .sidebar-nav__divider {
    display: block;
  }
}
.sidebar-nav__btn {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  opacity: 0.66;
  transition: 0.3s ease;
}
@media only screen and (min-width: 62em) {
  .sidebar-nav__btn {
    display: none;
  }
}
.sidebar-nav__btn:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
}
.sidebar-nav__btn:active, .sidebar-nav__btn.active {
  opacity: 1;
}

@media only screen and (min-width: 62em) {
  .main-header {
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
  }
}
.main-header__title {
  background-color: #FFFFFF;
  padding-left: 88px;
  box-shadow: 0px 2px 4px 0px rgba(15, 23, 39, 0.051);
  height: 64px;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 3;
}
@media only screen and (min-width: 62em) {
  .main-header__title {
    padding-left: 0;
    box-shadow: none;
    background-color: transparent;
    height: auto;
    position: relative;
    width: auto;
  }
}
.main-header__nav {
  padding-top: 64px;
}
@media only screen and (min-width: 62em) {
  .main-header__nav {
    padding-top: 0;
  }
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 24px 16px;
}
@media only screen and (min-width: 75em) {
  .header-nav {
    width: auto;
    padding: 0 0 0 32px;
  }
}
.header-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
@media only screen and (min-width: 62em) {
  .header-nav__list {
    padding: 0 5px;
  }
}
@media only screen and (min-width: 90em) {
  .header-nav__list {
    padding: 0 32px;
    gap: 16px;
  }
}
.header-nav__list:not(:last-child) {
  margin-right: 5px;
}
@media only screen and (min-width: 75em) {
  .header-nav__list:not(:last-child) {
    margin-right: 16px;
  }
}
@media only screen and (min-width: 75em) {
  .header-nav__list:not(:last-child) {
    margin-right: 0;
    border-right: 1px solid #DADEE7;
  }
}
.header-nav__item {
  padding-bottom: 10px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media only screen and (min-width: 62em) {
  .header-nav__item {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 75em) {
  .header-nav__item {
    gap: 16px;
  }
}
.header-nav__item .btn {
  padding: 12px 15px;
  font-size: 13px;
}
@media only screen and (min-width: 75em) {
  .header-nav__item .btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}
.header-nav__item .btn .icon {
  margin-right: 5px;
}
@media only screen and (min-width: 75em) {
  .header-nav__item .btn .icon {
    margin-right: 12px;
  }
}
.header-nav__item .form-group {
  width: 265px;
  flex-shrink: 0;
  padding: 0;
}
@media only screen and (min-width: 62em) {
  .header-nav__item .form-group {
    width: 150px;
  }
}
@media only screen and (min-width: 75em) {
  .header-nav__item .form-group {
    width: 265px;
  }
}
.header-nav__item .custom-select {
  width: 265px;
}
@media only screen and (min-width: 62em) {
  .header-nav__item .custom-select {
    width: 150px;
  }
}
@media only screen and (min-width: 75em) {
  .header-nav__item .custom-select {
    width: 265px;
  }
}
.header-nav__list:last-child {
  padding-right: 0;
}

.btn {
  display: inline-block;
  background-color: var(--color-dark);
  color: #fff;
  padding: 12px 24px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  text-decoration: none;
  border: 0;
  outline: none;
  cursor: pointer;
  font-size: 15px;
  line-height: 23px;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}
.btn .icon {
  font-size: 24px;
  height: 24px;
  margin-right: 12px;
}
.btn--primary {
  background-color: var(--color-primary);
}
.btn--gray {
  color: rgba(33, 35, 39, 0.5019607843);
  background-color: #F3F4F6;
}
.btn:focus, .btn:hover {
  transform: scale(1.05);
}

.link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--color-primary);
  cursor: pointer;
}
.link:hover {
  opacity: 0.6;
}
.link--arrow::after {
  padding-left: 5px;
  content: "\e5cc";
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 11px;
}
.link--sm {
  font-size: 13px;
  font-weight: 600;
}
.link .disabled {
  opacity: 15%;
  cursor: default;
}

.icon-btn {
  padding: 5px 10px;
  background-color: transparent;
  outline: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.icon-btn:hover {
  opacity: 0.6;
}
.icon-btn.disabled {
  opacity: 15%;
  cursor: default;
}

.badge {
  padding: 4px;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.dashboard {
  padding: 88px 16px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media only screen and (min-width: 48em) {
  .dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(0, auto);
  }
}
@media only screen and (min-width: 62em) {
  .dashboard {
    padding: 0 32px 32px;
  }
}
@media only screen and (min-width: 90em) {
  .dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(0, auto);
    gap: 32px;
  }
}
.dashboard__item.chart .card__header {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
@media only screen and (min-width: 62em) {
  .dashboard__item.chart .card__header {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (min-width: 48em) {
  .dashboard__item.chart {
    grid-column: 1/3;
    grid-row: 1/3;
  }
}
@media only screen and (min-width: 90em) {
  .dashboard__item.chart {
    grid-column: 1/4;
    grid-row: 1/3;
  }
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0 rgba(15, 23, 39, 0.0509803922);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (min-width: 62em) {
  .card {
    padding: 24px;
  }
}
.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__title {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 62em) {
  .card__title {
    font-size: 18px;
  }
}
.card__heading {
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 62em) {
  .card__heading {
    font-size: 18px;
  }
}
.card__icon {
  margin-right: 12px;
  font-size: 24px;
  max-height: 24px;
  max-width: 24px;
  line-height: 1;
}
.card__details {
  color: rgba(33, 35, 39, 0.5019607843);
  font-size: 13px;
  font-weight: 400;
}
.card__body {
  padding-top: 17px;
  flex-grow: 1;
}
.card__body p:not(:last-child) {
  margin-bottom: 24px;
}
.card__empty {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__empty img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top left;
     object-position: top left;
}
.card__empty span {
  display: block;
  padding: 12px;
  color: rgba(33, 35, 39, 0.6588235294);
  background-color: #F8FAFF;
  border-radius: 10px;
  border: 1px solid rgba(52, 121, 254, 0.1490196078);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 0 32px 0 rgba(255, 255, 255, 0.2509803922);
}

.user-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0 rgba(15, 23, 39, 0.0509803922);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (min-width: 62em) {
  .user-card {
    padding: 24px;
  }
}
.user-card__header {
  display: flex;
  align-items: center;
}
.user-card__title {
  font-size: 16px;
  font-weight: 500;
}
.user-card__heading {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.user-card__avatar {
  flex-shrink: 0;
  margin-right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}
.user-card__avatar img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.user-card__details {
  color: rgba(33, 35, 39, 0.5019607843);
  font-size: 13px;
  font-weight: 400;
}
.user-card__body {
  flex-grow: 1;
  padding-top: 24px;
}
.user-card__actions {
  display: flex;
  flex-direction: column;
}
.user-card__action {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.user-card__action .icon {
  margin-right: 12px;
  font-size: 18px;
}
.user-card__action .icon svg {
  height: 18px;
  width: auto;
}
.user-card__action--green {
  color: #139108;
}
.user-card__action:hover {
  opacity: 0.6;
}
.user-card__action:not(:last-child) {
  margin-bottom: 20px;
}

.arrow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.arrow-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.arrow-list__item:not(:last-child) {
  margin-bottom: 13px;
}
.arrow-list__content {
  font-size: 15px;
  font-weight: 500;
}
.arrow-list__content span {
  font-size: 13px;
  font-weight: 400;
  display: block;
}
.arrow-list__content::before {
  content: "\e5cc";
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 11px;
  color: var(--color-primary);
}

.image-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.image-list__item {
  display: flex;
  align-items: center;
}
.image-list__item:not(:last-child) {
  margin-bottom: 20px;
}
.image-list__content {
  font-size: 15px;
  line-height: auto;
  font-weight: 500;
}
.image-list__content span {
  display: block;
  font-size: 13px;
  font-weight: 400;
}
.image-list__img {
  margin-right: 16px;
  width: 96px;
  height: 32px;
}
.image-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.modal__container {
  position: relative;
  padding: 20px;
}
.modal__content {
  background-color: #fff;
  padding: 32px 16px;
  width: 500px;
  max-width: 90vw;
  max-height: 100vh;
  border-radius: 10px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 75em) {
  .modal__content {
    padding: 48px;
    width: auto;
    width: 1050px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.modal__image {
  margin: 0 auto;
  max-width: 265px;
  margin-bottom: 32px;
  min-width: 265px;
}
.modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 36px;
  right: 36px;
  border: none;
  color: #fff;
  background-color: var(--color-dark);
  cursor: pointer;
}
@media only screen and (min-width: 62em) {
  .modal__close {
    top: 4px;
    right: 4px;
  }
}
.modal__title {
  margin-top: 0;
  padding-bottom: 32px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  box-sizing: border-box;
}
.modal__footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal__body {
  max-width: 585px;
}

.modal__close:before {
  content: "✕";
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

#options-modal .modal__body {
  max-width: 100%;
  flex-grow: 1;
}
#options-modal .modal__content {
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 75em) {
  #options-modal .modal__content {
    padding-left: 32px;
    padding-right: 32px;
  }
}
#options-modal .modal__title {
  border-bottom: 1px solid #DADEE7;
}
#options-modal .form-block {
  padding-bottom: 0;
}

.chart-container {
  height: 100%;
}

.connection {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connection__content {
  background-color: #fff;
  padding: 32px 16px;
  border-radius: 10px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 75em) {
  .connection__content {
    padding: 20px 48px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.connection__image {
  margin: 0 auto;
  max-width: 265px;
  margin-bottom: 32px;
  min-width: 265px;
}
@media only screen and (min-width: 90em) {
  .connection__image {
    min-width: 400px;
    max-width: 400px;
  }
}
.connection__title {
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  box-sizing: border-box;
}
.connection__footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-nav {
  padding: 0 16px 24px;
}
@media only screen and (min-width: 75em) {
  .page-nav {
    padding: 0;
    height: 100%;
    width: 360px;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 90em) {
  .page-nav {
    width: 460px;
  }
}
.page-nav.menu-open .nav-menu {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  width: calc(100% - 32px);
  height: calc(100% - 96px);
  max-width: 600px;
}
.page-nav.menu-open .nav-menu__overlay {
  display: block;
}
.page-nav.menu-open .nav-menu__list {
  display: block;
}
.page-nav.menu-open .nav-menu__footer {
  display: block;
}
.page-nav.menu-open .nav-menu__placeholder {
  display: inline-block;
}
.page-nav.menu-open .nav-menu .breadcrumbs {
  display: none;
}

.nav-menu {
  padding: 16px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgba(15, 23, 39, 0.0509803922);
  z-index: 21;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}
@media only screen and (min-width: 75em) {
  .nav-menu {
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}
.nav-menu__placeholder {
  display: none;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(33, 35, 39, 0.6588235294);
}
.nav-menu__overlay {
  padding: 16px 16px 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 35, 39, 0.6588235294);
  z-index: 20;
  display: none;
}
.nav-menu__top {
  padding: 8px;
  background-color: #F8FAFF;
  border: 1px solid rgba(52, 121, 254, 0.1490196078);
  border-radius: 10px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 75em) {
  .nav-menu__top {
    display: none;
  }
}
.nav-menu__header {
  display: inline-block;
  width: 100%;
  padding: 8px 24px 18px 32px;
  position: relative;
  color: var(--color-primary);
  border-bottom: 1px solid #DADEE7;
  text-decoration: none;
}
.nav-menu__header:after {
  content: "\e5ca";
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 24px;
  position: absolute;
  color: rgba(218, 222, 231, 0.5019607843);
  right: 12px;
  top: 0px;
}
@media only screen and (min-width: 75em) {
  .nav-menu__header:after {
    display: none;
  }
}
.nav-menu__header:before {
  content: "\e5cc";
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 10px;
  position: absolute;
  left: 12px;
  top: 10px;
  transform: rotate(90deg);
  color: var(--color-primary);
}
@media only screen and (min-width: 75em) {
  .nav-menu__header {
    padding: 8px 32px;
    background-color: #F8FAFF;
    border: 1px solid rgba(52, 121, 254, 0.1490196078);
    border-radius: 10px;
    display: flex;
    align-items: center;
  }
}
.nav-menu__list {
  height: calc(100% - 60px);
  overflow: auto;
  margin-top: 16px;
  display: none;
}
.nav-menu__list > .nav-dropdown {
  padding-left: 32px;
}
@media only screen and (min-width: 75em) {
  .nav-menu__list {
    display: block;
    margin-top: 0;
  }
}
.nav-menu__footer {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
}
.nav-menu__footer .btn {
  margin: 0 auto;
  text-align: center;
  width: calc(100% - 32px);
  max-width: 600px;
}

.breadcrumbs {
  list-style: none;
  padding: 0 8px;
  display: flex;
  flex-wrap: wrap;
  color: var(--color-primary);
}
.breadcrumbs li:not(:last-child) {
  margin-right: 8px;
}
.breadcrumbs li:not(:last-child):after {
  content: "\e5cc";
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 10px;
}
.breadcrumbs a {
  display: inline-block;
  padding-right: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.breadcrumbs a:hover {
  color: var(--color-primary);
}

.nav-dropdown.nested {
  display: none;
}
.nav-dropdown__item {
  font-size: 15px;
  font-weight: 500;
  padding-left: 32px;
  position: relative;
}
.nav-dropdown__item input {
  display: none;
}
.nav-dropdown__item.has-subnav:before {
  content: "\e5cc";
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 10px;
  position: absolute;
  left: 12px;
  top: 20px;
  transition: all 0.3s ease;
}
.nav-dropdown__item.open::before {
  transform: rotate(90deg);
}
.nav-dropdown__item.open [data-dropdown-item] {
  color: var(--color-primary);
}
.nav-dropdown__item.open > .nested {
  display: block;
}
.nav-dropdown:not(.nested) > .nav-dropdown__item {
  border-bottom: 1px solid #DADEE7;
}
.nav-dropdown__label {
  display: inline-block;
  width: 100%;
  padding: 18px 40px 18px 0;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: inherit;
}
.nav-dropdown__label:after {
  content: "\e5ca";
  font-family: "Material Icons";
  font-weight: normal;
  font-size: 24px;
  position: absolute;
  color: rgba(218, 222, 231, 0.5019607843);
  right: 12px;
  top: 10px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 75em) {
  .nav-dropdown__label:after {
    display: none;
  }
}
.nav-dropdown__label.active, .nav-dropdown__label.active:after {
  color: var(--color-primary);
}

.data-table {
  padding: 0 16px 24px;
  min-height: 100%;
  position: relative;
}
.data-table .table-container {
  position: relative;
  max-width: 100%;
  overflow-x: auto;
}
.data-table table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th, .data-table td {
  min-width: 180px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  background: transparent;
}
.data-table.custom-column-width th, .data-table.custom-column-width td {
  min-width: auto;
}
.data-table td {
  padding: 10px 10px 10px 0;
  white-space: nowrap;
}
.data-table td strong {
  font-weight: 500;
}
.data-table thead th {
  padding: 19px 10px 19px 0;
  position: sticky;
  top: 0;
  z-index: 2;
  font-weight: 500;
}
.data-table tbody tr:hover {
  background: #F3F4F6;
}
.data-table .indent {
  position: relative;
  padding-left: 34px;
}
.data-table .indent::before {
  position: absolute;
  left: 0;
  top: 20px;
  padding-left: 12px;
  content: "\e15e";
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1;
  display: block;
  transform: rotate(180deg);
  color: rgba(33, 35, 39, 0.6588235294);
  opacity: 0.5;
}
.data-table td.actions {
  text-align: right;
  min-width: auto;
  width: 60px;
}
.data-table th.actions {
  min-width: auto;
  width: 60px;
}
.data-table .folder-up {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.data-table .folder-up::before {
  padding-top: 12px;
  content: "\e31b";
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  color: #3479FE;
  display: block;
  transform: rotate(90deg);
}

.table-empty {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.table-empty img {
  display: block;
  margin-bottom: 32px;
  max-height: 200px;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 62em) {
  .table-empty img {
    max-height: 400px;
    max-width: 400px;
  }
}

.form-component {
  padding: 0 16px 25px;
}
@media only screen and (min-width: 75em) {
  .form-component {
    padding: 0 32px 25px;
  }
}
.form-component__header {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DADEE7;
}
@media only screen and (min-width: 75em) {
  .form-component__header {
    padding: 35px 0;
  }
}
.form-component__footer {
  padding: 15px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-component__buttons {
  align-items: center;
  gap: 16px;
  display: none;
}
@media only screen and (min-width: 48em) {
  .form-component__buttons {
    display: flex;
  }
}

.form-block {
  padding: 20px 0;
  border-bottom: 1px solid #DADEE7;
}
.form-block:last-child {
  border-bottom: none;
}
.form-block__heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-block__subheading {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 24px;
}
.form-block__title {
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 62em) {
  .form-block__title {
    font-size: 18px;
  }
}
.form-block__body:not(:last-child) {
  margin-bottom: 25px;
}
.form-block__body > .form-group {
  max-width: 100%;
}
@media only screen and (min-width: 36em) {
  .form-block__body > .form-group {
    max-width: 383px;
  }
}
@media only screen and (min-width: 75em) {
  .form-block__body-wrap {
    display: flex;
    gap: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .form-block__body-wrap .form-block__body {
    flex-grow: 1;
  }
}
.form-block__buttons {
  margin-top: 24px;
  align-items: center;
  gap: 16px;
  display: flex;
}

.form-groups {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.form-groups .form-group {
  flex-grow: 1;
  max-width: 100%;
}

.form-group {
  padding-bottom: 24px;
  width: 100%;
}
@media only screen and (min-width: 36em) {
  .form-group {
    max-width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 90em) {
  .form-group {
    max-width: calc(25% - 23px);
  }
}

.form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media only screen and (min-width: 36em) {
  .form-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
.form-row .form-groups {
  flex-grow: 1;
}
@media only screen and (min-width: 48em) {
  .form-row .form-groups:not(:last-child) {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 48em) {
  .form-row .form-block__subheading {
    width: 100%;
  }
}

.form-label {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(33, 35, 39, 0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
  justify-content: space-between;
}

.locked .form-label {
  justify-content: flex-start;
}

.locked .form-label:after {
  padding-left: 5px;
  content: "\e897";
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-size: 16px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgb(218, 222, 231);
  background-color: rgba(248, 250, 255, 0.33);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(33, 35, 39, 0.66);
}
.form-input.bg-white,
.form-textarea.bg-white {
  background-color: #fff;
}

.form-input {
  height: 48px;
}

.form-textarea {
  height: 154px;
  resize: none;
}

.form-input:-moz-read-only, .form-textarea:-moz-read-only {
  background-color: rgba(218, 222, 231, 0.25);
}

.form-input:read-only,
.form-textarea:read-only {
  background-color: rgba(218, 222, 231, 0.25);
}

.form-input:-moz-read-only:focus, .form-input:-moz-read-only:focus-visible, .form-textarea:-moz-read-only:focus, .form-textarea:-moz-read-only:focus-visible {
  outline: none;
  border: 1px solid rgb(218, 222, 231);
}

.form-input:read-only:focus,
.form-input:read-only:focus-visible,
.form-textarea:read-only:focus,
.form-textarea:read-only:focus-visible {
  outline: none;
  border: 1px solid rgb(218, 222, 231);
}

.custom-select {
  width: 100%;
  border: 1px solid rgb(218, 222, 231);
  background-color: rgba(248, 250, 255, 0.33);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
  height: 48px;
  line-height: 48px;
}
.custom-select.bg-white {
  background-color: #fff;
}

select.custom-select {
  display: none;
}

.custom-select:active,
.custom-select.open,
.custom-select:focus {
  border-color: var(--color-primary);
}

.custom-select.open .nice-select-dropdown {
  width: 100%;
}

.toggle {
  cursor: pointer;
  display: inline-block;
  border: 1px solid #DADEE7;
  border-radius: 10px;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.toggle-switch {
  display: inline-block;
  background: #DADEE7;
  border-radius: 16px;
  width: 44px;
  height: 24px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: 2px 2px 2px 0 rgba(33, 35, 39, 0.08);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #3479FE;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 22px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  display: inline-block;
  padding: 12px;
  position: relative;
  min-width: 48px;
  text-align: center;
}

.custom-file-upload {
  height: 48px;
  padding: 12px 14px;
  border: 1px solid rgb(218, 222, 231);
  background-color: rgba(248, 250, 255, 0.33);
  border-radius: 10px;
  font-size: 15px;
  color: rgba(33, 35, 39, 0.66);
  font-weight: 400;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.custom-file-upload input {
  display: none;
}
.custom-file-upload .file-name {
  display: block;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 30px;
  overflow: hidden;
}
.custom-file-upload:after {
  content: "\e9fc";
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-size: 24px;
  color: #3479FE;
  position: absolute;
  right: 10px;
  top: 5px;
}

.flatpickr {
  position: relative;
}
.flatpickr [type=text] {
  background-image: url("../img/icons/calendar-icon.svg");
  background-position: right center;
  background-repeat: no-repeat;
}
.flatpickr .form-input:-moz-read-only {
  background-color: rgba(248, 250, 255, 0.33);
}
.flatpickr .form-input:read-only {
  background-color: rgba(248, 250, 255, 0.33);
}

#mytextarea {
  height: 154px;
  resize: none;
}

.code-container {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid #DADEE7;
  border-radius: 10px;
}

.code-container .CodeMirror-scroll {
  background-color: rgba(248, 250, 255, 0.3294117647);
}

.code-container .toolbar {
  width: 100%;
  padding: 10px;
  background-color: #F3F4F6;
  display: flex;
}

.code-container .toolbar-btn {
  padding: 10px;
  border: none;
  outline: none;
  color: #868A93;
  cursor: pointer;
  font-size: 24px;
  background-color: transparent;
}

.mce-notification span {
  white-space: normal;
}

.editable-block {
  padding: 24px 16px 32px;
  background-color: rgba(248, 250, 255, 0.3294117647);
  margin: 0 -16px;
  border-top: 1px solid #DADEE7;
  border-bottom: 1px solid #DADEE7;
}
@media only screen and (min-width: 75em) {
  .editable-block {
    margin: 0 -32px;
    padding: 24px 32px 32px;
  }
}
.editable-block__top {
  border-bottom: 1px solid #DADEE7;
  display: flex;
  padding-right: 24px;
  padding-bottom: 15px;
  gap: 16px;
}
.editable-block__item {
  flex: 1 1 50%;
}
.editable-block__row {
  padding: 8px 0;
  border-bottom: 1px solid #DADEE7;
  display: flex;
  align-items: center;
  gap: 16px;
}
.editable-block__action {
  width: 24px;
  font-size: 24px;
  text-align: right;
}
.editable-block__action .icon {
  cursor: pointer;
}
.editable-block__buttons {
  margin-top: 24px;
  align-items: center;
  gap: 16px;
  display: flex;
}
.editable-block__select {
  width: 24px;
  font-size: 24px;
  font-weight: 400;
  text-align: right;
  color: #3479FE;
}
.editable-block__select .icon {
  display: none;
  cursor: pointer;
}
.editable-block .editable-block__row.selected {
  color: #3479FE;
}
.editable-block .editable-block__row.selected .editable-block__select .icon {
  display: block;
}
.editable-block .editable-block__row.selected .form-input {
  border: 1px solid #3479FE;
}
/*# sourceMappingURL=main.css.map */
