@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v36/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18E.ttf) format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v36/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18E.ttf) format('truetype');
}
body,
body.light {
  /* defaultni barvy */
  --color-0: #FFFFFF;
  --color-1: #FCFCFC;
  --color-2: #F3F2F7;
  --color-3: #ECEAF3;
  --color-4: #D0D6DE;
  --color-5: #B9BBBD;
  --color-6: #A3A3A3;
  --color-body: #464255;
  --bg-gradient: linear-gradient(122deg, #FCFCFC 8.05%, #F5F4F9 82.51%);
  /* custom barvy */
  --light-2-dark-4: #F3F2F7;
  --light-0-dark-6: #FDFDFD;
  --white-dark-2: #FFFFFF;
  --white-dark-3: #FFFFFF;
  --light-3-dark-0: #ECEAF3;
  --light-4-body: #D0D6DE;
  --light-5-dark-0: #B9BBBD;
  --light-6-light-5: #A3A3A3;
  --body-light-6: #464255;
  --body-light-3: #464255;
  --light-1-dark-1: #FCFCFC;
  --light-0-dark-2: #FDFDFD;
  --red-light-6: #873C54;
  /* custom barvy s pruhlednosti*/
  --dark-4-light-2-trans: rgba(23, 22, 30, 0.4);
  --light-2-dark-4-trans: rgba(243, 242, 247, 0.7);
  /* images */
  --img-logo: url('/assets/img/logo/logo-foxgate-7-color.svg');
}
body.dark {
  /* defaultni barvy */
  --color-0: #3B3741;
  --color-1: #2F2A36;
  --color-2: #24232C;
  --color-3: #1F1E26;
  --color-4: #17161E;
  --color-5: #13121A;
  --color-6: #13121A;
  --color-body: #FFFFFF;
  --bg-gradient: linear-gradient(122deg, #1F1E26 8.05%, #1F1E26 82.51%);
  /* custom barvy */
  --light-2-dark-4: #17161E;
  --light-0-dark-6: #13121A;
  --white-dark-2: #24232C;
  --white-dark-3: #1F1E26;
  --light-3-dark-0: #3B3741;
  --light-4-body: #464255;
  --light-5-dark-0: #3B3741;
  --light-6-light-5: #B9BBBD;
  --body-light-6: #A3A3A3;
  --body-light-3: #ECEAF3;
  --light-1-dark-1: #2F2A36;
  --light-0-dark-2: #24232C;
  --red-light-6: #A3A3A3;
  /* custom barvy s pruhlednosti*/
  --dark-4-light-2-trans: rgba(243, 242, 247, 0.4);
  --light-2-dark-4-trans: rgba(23, 22, 30, 0.7);
  /* images */
  --img-logo: url('/assets/img/logo/logo-foxgate-7-monochrome.svg');
}
* {
  box-sizing: border-box;
  font-family: 'Quicksand', Arial, sans-serif;
}
html {
  font-size: 16px;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
body {
  background-color: var(--light-2-dark-4);
}
button {
  border: none;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white-dark-2);
}
::-webkit-scrollbar-thumb {
  background-color: var(--light-5-dark-0);
  border-radius: 6px;
}
ul {
  list-style-type: none;
}
ul.pink-rounded {
  list-style-type: disc;
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
ul.pink-rounded li {
  line-height: 1;
}
ul.pink-rounded li::marker {
  color: #AB54DB;
}
a {
  text-decoration: none;
  color: var(--color-body);
}
.flex-row,
.modal-window > div div.buttons,
.file-selector-modal .content .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flex-row-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
}
.flex-row-space-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.flex-row-no-wrap {
  flex-wrap: nowrap;
}
.flex-grow {
  flex-grow: 1;
}
.flex-row-common,
.flex-two,
.flex-four {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
}
.flex-two > div {
  width: calc(50% - 8px);
}
.flex-four > div {
  width: calc(25% - 12px);
}
.flex-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1000px) {
  .flex-four > div {
    width: calc(50% - 8px);
  }
}
@media (max-width: 500px) {
  .flex-two > div,
  .flex-four > div {
    width: 100%;
  }
}
.display-grid {
  display: grid;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-bottom-10 {
  padding-bottom: 10px;
}
.padding-bottom-20 {
  padding-bottom: 20px;
}
.hover-opacity,
.label-hover-opacity:hover,
.button-main-primary:hover,
.button-ghost-primary:hover,
.button-border-primary:hover,
.button-main-success:hover,
.button-main-error:hover,
.button-main-grey:hover,
.notification:hover,
.avatar-empty:hover,
table tbody tr td .icon-buttons a:hover {
  cursor: pointer;
  opacity: 90%;
}
.disabled-opacity,
.button-main-primary:disabled,
.button-main-success:disabled {
  cursor: not-allowed;
  opacity: 70%;
  filter: grayscale(40%);
}
.hover-blocked:hover {
  cursor: not-allowed;
}
.heading-1 {
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
}
.heading-2,
.modal-window > div h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
}
.heading-3,
.modal-window > div h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
}
.heading-4,
.modal-window > div h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
}
.heading-5,
table {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.heading-6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.paragraph,
textarea,
.badge-counter {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}
.paragraph-lead {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
}
.input,
input,
select,
.select-selected,
.custom-select,
.select-items {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.text-extend,
.text-lg,
.text-md,
.text-sm,
.label,
.label-small,
table thead tr th,
.message-bar,
.modal-window > div p,
.label-primary,
.label-info,
.label-success {
  font-weight: 400;
  line-height: normal;
  color: #A3A3A3;
}
.text-lg,
.label,
table thead tr th,
.message-bar,
.modal-window > div p,
.label-primary,
.label-info,
.label-success {
  font-size: 16px;
  line-height: normal;
}
.text-md,
.label-small {
  font-size: 12px;
}
.text-sm {
  font-size: 10px;
}
.break-words {
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
}
.label-svg,
.label svg,
.label-primary svg,
.label-info svg,
.label-success svg {
  height: 20px;
  width: auto;
}
.label,
.label-primary,
.label-info,
.label-success {
  display: inline-flex;
  padding: 8px 26px 8px 16px;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
}
.label-primary {
  color: #AB54DB;
  background-color: rgba(171, 84, 219, 0.15);
}
.label-primary svg {
  fill: #AB54DB;
}
.label-info {
  color: #58CDFF;
  background-color: rgba(88, 205, 255, 0.15);
}
.label-info svg {
  fill: #58CDFF;
}
.label-success {
  color: #00A389;
  background-color: rgba(0, 163, 137, 0.15);
}
.label-success svg {
  fill: #00A389;
}
.label-small {
  display: inline-flex;
  padding: 6px 14px 6px 10px;
  gap: 8px;
  border-radius: 8px;
  line-height: 12px;
  height: fit-content;
}
.label-small svg {
  height: 16px;
}
.button-text-extend,
.button-lg,
.button-md,
.button-sm,
.button-extend,
.button-main-primary,
.button-ghost-primary,
.button-outlined-primary,
.button-border-primary,
.button-main-success,
.button-main-error,
.button-main-grey {
  font-weight: 600;
  line-height: normal;
  color: #FFFFFF;
}
.button-text-hover-extend:hover {
  color: var(--color-5);
}
.button-lg,
.button-extend,
.button-main-primary,
.button-ghost-primary,
.button-outlined-primary,
.button-border-primary,
.button-main-success,
.button-main-error,
.button-main-grey {
  font-size: 16px;
  letter-spacing: 0.4px;
}
.button-md {
  font-size: 14px;
  letter-spacing: 0.4px;
}
.button-sm {
  font-size: 11px;
  letter-spacing: 0.367px;
}
.link {
  color: #AB54DB;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}
.button-extend,
.button-main-primary,
.button-ghost-primary,
.button-outlined-primary,
.button-border-primary,
.button-main-success,
.button-main-error,
.button-main-grey {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  height: fit-content;
}
.button-extend-svg,
.button-main-primary svg,
.button-ghost-primary svg,
.button-outlined-primary svg,
.button-border-primary svg,
.button-main-success svg,
.button-main-error svg,
.button-main-grey svg {
  height: 16px;
  width: auto;
  fill: #fff;
}
.button-main-primary,
.button-main-success,
.button-main-error,
.button-main-grey {
  background-color: #AB54DB;
}
.button-ghost-primary {
  color: #AB54DB;
  background-color: rgba(171, 84, 219, 0.15);
}
.button-ghost-primary svg {
  fill: #AB54DB;
}
.button-outlined-primary {
  color: #AB54DB;
  border: 2px solid #AB54DB;
}
.button-outlined-primary:hover {
  cursor: pointer;
  background-color: #AB54DB;
  color: #FFFFFF;
}
.button-outlined-primary svg {
  fill: #AB54DB;
}
.button-border-primary {
  background-color: rgba(171, 84, 219, 0.15);
  border: 1px solid #AB54DB;
}
.button-border-primary svg {
  fill: #AB54DB;
}
.button-main-success {
  background-color: #00A389;
}
.button-main-error {
  background-color: #FF5B5B;
}
.button-main-grey {
  background-color: #A3A3A3;
}
.rounded-button-extend,
.rounded-button-primary {
  padding: 0;
  height: 26px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rounded-button-svg-extend,
.rounded-button-primary svg {
  fill: #FFFFFF;
  height: 18px;
  width: 18px;
}
.rounded-button-hover-extend,
.rounded-button-primary:hover:not([disabled]) {
  cursor: pointer;
  opacity: 0.9;
}
.rounded-button-disabled-extend,
.rounded-button-primary[disabled] {
  opacity: 0.5;
  filter: grayscale(50%);
}
.rounded-button-primary {
  background-color: #AB54DB;
}
input,
select,
.select-selected {
  padding: 12px 16px;
}
.passport-input-eye {
  position: relative;
}
.passport-input-eye span {
  position: absolute;
  right: 6px;
  bottom: 0;
  cursor: pointer;
}
.passport-input-eye span svg {
  fill: var(--light-4-body);
  height: 28px;
  width: auto;
}
textarea {
  padding: 6px 16px;
}
textarea,
input,
select,
.select-selected {
  border-radius: 12px;
  gap: 10px;
  display: flex;
  align-items: flex-start;
  border: none;
  outline: 1px solid var(--light-4-body);
  background-color: var(--white-dark-3);
  color: var(--body-light-3);
  width: 100%;
}
textarea::placeholder,
input::placeholder,
select::placeholder,
.select-selected::placeholder {
  color: #A3A3A3;
}
textarea.search,
input.search,
select.search,
.select-selected.search {
  padding: 22px 32px;
  align-items: center;
}
label {
  display: block;
  padding-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  container-type: inline-size;
}
.select-selected,
select {
  display: block;
}
textarea.vertical {
  resize: vertical;
}
textarea:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid #AB54DB;
  color: var(--body-light-3);
}
input:disabled,
textarea:disabled,
input[type='checkbox']:disabled,
input:disabled,
textarea:disabled,
input[type='checkbox']:read-only,
label.disabled,
label.checkbox.disabled,
input.disabled {
  color: var(--light-5-dark-0);
}
input:disabled:hover,
textarea:disabled:hover,
input[type='checkbox']:disabled:hover,
input:disabled:hover,
textarea:disabled:hover,
input[type='checkbox']:read-only:hover,
label.disabled:hover,
label.checkbox.disabled:hover,
input.disabled:hover {
  cursor: not-allowed;
}
input:disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
textarea:disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
input[type='checkbox']:disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
input:disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
textarea:disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
input[type='checkbox']:read-only:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
label.disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
label.checkbox.disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after,
input.disabled:hover input[type='checkbox']:not(:checked) ~ .checkmark:after {
  border: #fff;
}
input:disabled span.checkmark,
textarea:disabled span.checkmark,
input[type='checkbox']:disabled span.checkmark,
input:disabled span.checkmark,
textarea:disabled span.checkmark,
input[type='checkbox']:read-only span.checkmark,
label.disabled span.checkmark,
label.checkbox.disabled span.checkmark,
input.disabled span.checkmark {
  border: 3px solid rgba(171, 84, 219, 0.15);
}
input:disabled input[type='checkbox']:checked ~ .checkmark,
textarea:disabled input[type='checkbox']:checked ~ .checkmark,
input[type='checkbox']:disabled input[type='checkbox']:checked ~ .checkmark,
input:disabled input[type='checkbox']:checked ~ .checkmark,
textarea:disabled input[type='checkbox']:checked ~ .checkmark,
input[type='checkbox']:read-only input[type='checkbox']:checked ~ .checkmark,
label.disabled input[type='checkbox']:checked ~ .checkmark,
label.checkbox.disabled input[type='checkbox']:checked ~ .checkmark,
input.disabled input[type='checkbox']:checked ~ .checkmark {
  background-color: rgba(171, 84, 219, 0.15);
  border: 3px solid transparent;
}
input:disabled input[type='checkbox']:checked ~ .checkmark:after,
textarea:disabled input[type='checkbox']:checked ~ .checkmark:after,
input[type='checkbox']:disabled input[type='checkbox']:checked ~ .checkmark:after,
input:disabled input[type='checkbox']:checked ~ .checkmark:after,
textarea:disabled input[type='checkbox']:checked ~ .checkmark:after,
input[type='checkbox']:read-only input[type='checkbox']:checked ~ .checkmark:after,
label.disabled input[type='checkbox']:checked ~ .checkmark:after,
label.checkbox.disabled input[type='checkbox']:checked ~ .checkmark:after,
input.disabled input[type='checkbox']:checked ~ .checkmark:after {
  background-color: transparent;
}
input[type='text'] ~ .input-info-right {
  position: absolute;
  bottom: 18px;
  right: 44px;
  color: var(--light-6-light-5);
}
@media (max-width: 800px) {
  input[type='text'] ~ .input-info-right {
    right: 24px;
  }
}
.input-color-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 12px 16px;
  border-radius: 12px;
  outline: 1px solid var(--light-4-body);
  color: var(--body-light-3);
  cursor: pointer;
}
.input-color-container div:first-child {
  width: 80px;
  height: 16px;
  border-radius: 4px;
}
.input-color-container + input[type='color'] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.input-date-time {
  position: relative;
}
.input-date-time button {
  position: absolute;
  display: flex;
  right: 8px;
  bottom: 10px;
  background-color: #FF5B5B;
  padding: 2px;
  border-radius: 6px;
}
.input-date-time button svg {
  height: 18px;
  width: 18px;
  fill: #FFFFFF;
}
/* Checkboxes */
label.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.5;
  padding-left: 30px;
  padding-bottom: 0;
  margin-bottom: 0;
  container-type: unset;
}
label.checkbox:hover {
  cursor: pointer;
}
label.checkbox input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  left: 0;
}
label.checkbox .checkmark {
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  border: 3px solid #AB54DB;
  border-radius: 3px;
  background-color: transparent;
}
label.checkbox input[type='checkbox']:checked ~ .checkmark {
  background-color: #AB54DB;
}
label.checkbox input[type='checkbox']:checked ~ .checkmark:after {
  display: block;
}
label.checkbox input[type='checkbox'] ~ .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 1px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #AB54DB;
}
label.checkbox:hover input[type='checkbox']:not(:checked):not(:disabled) ~ .checkmark:after {
  display: block;
  border: solid #AB54DB;
  border-width: 0 3px 3px 0;
  background-color: transparent;
}
label.checkbox span.inactive {
  color: var(--light-6-light-5);
}
label.checkbox.checkbox-disabled:hover {
  cursor: not-allowed;
}
.input-button-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.container-file-input {
  position: relative;
  width: 100%;
  height: 40px;
}
.container-file-input .file-input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  z-index: 20;
}
.container-file-input .file-input:hover {
  cursor: pointer;
}
.container-file-input .file-input:hover ~ .custom-file-label {
  outline: 1px solid var(--light-5-dark-0);
}
.container-file-input .custom-file-label {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 9px 12px;
  border: none;
  border-radius: 12px;
  outline: 1px solid var(--light-4-body);
  background-color: var(--white-dark-3);
  color: var(--light-6-light-5);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container-file-input .custom-file-label:hover {
  cursor: pointer;
}
/* paragraph as label */
form p {
  padding-bottom: 20px;
}
/* Radio type inputs */
div.input-radio {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
div.input-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  outline: 0;
  margin: 0;
  accent-color: #AB54DB;
}
div.input-radio input[type="radio"]:hover {
  cursor: pointer;
}
div.input-radio label {
  padding: 0;
  line-height: 1.2;
  container-type: unset;
  white-space: unset;
}
div.input-radio label:hover {
  cursor: pointer;
}
div.input-radio-scale {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
div.input-radio-scale .input-radio {
  flex-flow: column-reverse;
  align-items: center;
  gap: 0;
}
div.input-radio-scale label {
  padding-bottom: 4px;
}
/* Select - option custom with additional divs elements */
.custom-select {
  position: relative;
}
.custom-select select {
  display: none;
  /*hide original SELECT element: */
}
/* Style the arrow inside the select element: */
.select-selected {
  cursor: pointer;
  /* Point the arrow upwards when the select box is open (active): */
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}
.select-selected.select-arrow-active {
  outline: 2px solid #AB54DB;
}
.select-selected.select-arrow-active:after {
  top: 7px;
}
/* Style items (options): */
.select-items {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--white-dark-3);
  color: var(--body-light-3);
  border-radius: 12px;
  outline: 1px solid var(--light-4-body);
  overflow: hidden;
}
.select-items::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.select-items::-webkit-scrollbar-track {
  background: var(--white-dark-2);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.select-items::-webkit-scrollbar-thumb {
  background-color: var(--light-5-dark-0);
  border-radius: 4px;
}
.select-items div {
  padding: 12px 16px;
}
.select-items div:hover {
  background: #AB54DB;
  color: #FFFFFF;
  cursor: pointer;
}
/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}
.same-as-selected {
  background: rgba(171, 84, 219, 0.15);
  color: #AB54DB;
}
/* Select - option end */
/* Datalist - options */
datalist {
  position: absolute;
  display: block;
  z-index: 1000;
  overflow-y: auto;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: var(--white-dark-3);
  outline: 1px solid var(--light-4-body);
  max-height: 300px;
}
option {
  padding: 12px 16px;
  color: var(--body-light-3);
  font-size: 14px;
  cursor: pointer;
  display: block;
  text-overflow: ellipsis;
  container-type: inline-size;
  overflow: hidden;
}
option:hover {
  background-color: rgba(171, 84, 219, 0.15);
}
.notification {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  width: 74px;
  height: 74px;
}
.notification svg {
  height: 28px;
  fill: #464255;
}
.badge-counter {
  color: var(--light-2-dark-4);
  width: 34px;
  height: 34px;
  position: absolute;
  right: 0;
  top: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 4px solid var(--light-2-dark-4);
}
.avatar-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  background-color: #C4C4C4;
  border-radius: 22px;
  color: #AB54DB;
  text-transform: uppercase;
}
.file-icon-template,
.file-icon,
.file-icon-small {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.file-icon {
  border-radius: 18px;
  height: 54px;
  width: 54px;
}
.file-icon svg {
  fill: #FFFFFF;
  height: 24px;
}
.file-icon-small {
  border-radius: 8px;
  height: 26px;
  width: 26px;
}
.file-icon-small svg {
  fill: #FFFFFF;
  padding: 4px;
}
.dropdown {
  position: absolute;
  padding: 14px 10px;
  min-width: 180px;
  border-radius: 18px;
  background-color: var(--white-dark-2);
  border: solid 1px var(--light-2-dark-4);
  z-index: 200;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}
.dropdown.none {
  display: none;
}
.dropdown .dropdown-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.dropdown .dropdown-items .dropdown-item a {
  padding: 10px 16px 10px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  color: var(--body-light-6);
  border-radius: 18px;
}
.dropdown .dropdown-items .dropdown-item a:hover {
  background-color: #AB54DB;
  color: #FFFFFF;
}
.dropdown .dropdown-items .dropdown-item a:hover svg {
  fill: #FFFFFF;
}
.additional-row,
table tbody tr:last-of-type:after,
table tbody.with-after::after,
table.no-thead tbody tr:first-of-type:after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 20px;
}
table {
  position: relative;
  border-collapse: collapse;
  margin-bottom: 20px;
  color: var(--color-body);
  width: auto;
  min-width: 100%;
  border-spacing: 0;
}
table thead {
  color: #A3A3A3;
  text-align: left;
}
table thead tr {
  background-color: var(--white-dark-2) !important;
}
table thead tr th {
  font-weight: normal;
}
table thead tr:first-of-type th:first-child {
  border-top-left-radius: 12px;
}
table thead tr:first-of-type th:last-child {
  border-top-right-radius: 12px;
}
table tbody tr {
  position: relative;
}
table tbody tr:hover {
  background-color: rgba(171, 84, 219, 0.15);
}
table tbody tr td.tr-border-green:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: #00A389;
}
table tbody tr td.tr-border-red:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: #FF5B5B;
}
table tbody tr td.tr-border-yellow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: #FFBB54;
}
table tbody tr td.tr-border-blue:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: #58CDFF;
}
table tbody tr td.small-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
table tbody tr td.small-form > .bottom-info {
  padding: 0;
}
table tbody tr td.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
table tbody tr td .icon-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  height: 100%;
}
table tbody tr td .icon-buttons a {
  display: flex;
}
table tbody tr td .icon-buttons a svg {
  fill: #A3A3A3;
  height: 20px;
  width: auto;
}
table tbody tr td .icon-buttons span.inactive,
table tbody tr td .icon-buttons button[disabled] {
  display: flex;
  opacity: 0.5;
}
table tbody tr td .icon-buttons span.inactive:hover,
table tbody tr td .icon-buttons button[disabled]:hover {
  cursor: not-allowed;
}
table tbody tr td .icon-buttons span.inactive svg,
table tbody tr td .icon-buttons button[disabled] svg {
  fill: #A3A3A3;
  height: 20px;
  width: auto;
}
table tbody tr td .td-flex-row-half,
table tbody tr td .td-flex-row-three {
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}
table tbody tr td .td-flex-row-half > div {
  width: calc(50% - 10px);
}
table tbody tr td .td-flex-row-three > div {
  width: calc(33.3333% - 13.3333px);
}
table tbody tr td .bottom-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 0;
  color: #A3A3A3;
  line-height: 1.2;
}
table tbody tr td .bottom-info svg {
  height: 18px;
  width: 18px;
}
table tbody tr td a.underline:hover {
  text-decoration: underline;
}
table tbody tr td button {
  background-color: transparent;
  padding: 0;
}
table tbody tr td button svg {
  fill: #A3A3A3;
  height: 20px;
  width: auto;
}
table tbody tr td button:hover {
  cursor: pointer;
  opacity: 80%;
}
table tbody tr td em {
  color: #B9BBBD;
}
table tbody tr:last-of-type:after {
  bottom: -20px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top: solid 1px var(--light-3-dark-0);
}
table tbody tr:last-of-type:nth-child(odd):after {
  background-color: var(--light-1-dark-1);
}
table tbody tr:last-of-type:nth-child(even):after {
  background-color: var(--white-dark-2);
}
table tbody.with-after::after {
  bottom: -19px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: var(--white-dark-2) !important;
  z-index: -100;
}
table tbody.last-tr-bold tr:last-of-type td {
  font-weight: bold;
}
table.no-thead {
  margin-top: 20px;
}
table.no-thead tbody tr:first-of-type:after {
  top: -20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: solid 1px var(--light-3-dark-0);
  background-color: var(--light-1-dark-1);
}
table tr {
  border-bottom: solid 1px var(--light-3-dark-0);
}
table tr:nth-child(odd) {
  background-color: var(--light-1-dark-1);
}
table tr:nth-child(even) {
  background-color: var(--white-dark-2);
}
table th,
table td {
  padding: 10px;
  vertical-align: top;
}
table th:first-of-type,
table td:first-of-type {
  padding-left: 30px;
}
table th.align-right,
table td.align-right {
  text-align: right;
  padding-right: 40px;
}
table.no-hover tbody tr:nth-child(odd):hover {
  background-color: var(--light-1-dark-1);
}
table.no-hover tbody tr:nth-child(even):hover {
  background-color: var(--white-dark-2);
}
/* Styles for opening hours */
.working-hours-flex {
  display: inline-flex;
  flex-direction: column;
}
.working-hours-flex div {
  display: flex;
  flex-direction: row;
  padding: 2px 6px;
}
.working-hours-flex div.current-day {
  background-color: var(--color-3);
}
.working-hours-flex div .working-hours-title {
  width: 80px;
  font-weight: bold;
}
.cell-working-hours-flex {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  gap: 6px;
}
.cell-working-hours-flex div,
.cell-working-hours-flex a {
  width: fit-content;
}
.overflow-x {
  overflow-x: auto;
  width: 100%;
}
.overflow-x::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.overflow-x::-webkit-scrollbar-track {
  background: transparent;
}
/* Mobile tables */
@media (max-width: 1000px) {
  table tbody tr td .td-flex-row-half,
  table tbody tr td .td-flex-row-three {
    flex-direction: column;
    gap: 14px;
  }
  table tbody tr td .td-flex-row-half div,
  table tbody tr td .td-flex-row-three div {
    width: 100%;
  }
}
@media (max-width: 800px) {
  table thead th,
  table tbody th,
  table thead td,
  table tbody td {
    padding: 10px;
    border-radius: 0;
  }
  table thead th:first-of-type,
  table tbody th:first-of-type,
  table thead td:first-of-type,
  table tbody td:first-of-type,
  table thead th:last-of-type,
  table tbody th:last-of-type,
  table thead td:last-of-type,
  table tbody td:last-of-type {
    padding: 10px;
    border-radius: 0;
  }
  table thead th.align-right,
  table tbody th.align-right,
  table thead td.align-right,
  table tbody td.align-right {
    text-align: unset;
  }
  table thead tr {
    background-color: transparent !important;
  }
  table thead tr th {
    background-color: var(--white-dark-2);
  }
  table thead tr:first-of-type th:first-child {
    border-top-left-radius: 0;
  }
  table thead tr:first-of-type th:last-child {
    border-top-right-radius: 0;
  }
  table.table-responsive-grid {
    display: inline-grid;
  }
  table.table-responsive-grid thead tr,
  table.table-responsive-grid tbody tr {
    display: grid;
    grid-template-areas: "a a" "a1 a2" "b b" "b1 b2" "c c" "c1 c2" "d d" "d1 d2" "e e" "e1 e2";
  }
  table.table-responsive-grid thead tr td .icon-buttons,
  table.table-responsive-grid tbody tr td .icon-buttons {
    justify-content: end;
    place-items: start;
  }
  table.table-responsive-grid thead tr .grid-area-a,
  table.table-responsive-grid tbody tr .grid-area-a {
    grid-area: a;
    padding-left: 20px;
    padding-right: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-a1,
  table.table-responsive-grid tbody tr .grid-area-a1 {
    grid-area: a1;
    padding-left: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-a2,
  table.table-responsive-grid tbody tr .grid-area-a2 {
    grid-area: a2;
    text-align: right;
    padding-right: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-b,
  table.table-responsive-grid tbody tr .grid-area-b {
    grid-area: b;
    padding-left: 20px;
    padding-right: 20px;
    color: #A3A3A3;
  }
  table.table-responsive-grid thead tr .grid-area-b1,
  table.table-responsive-grid tbody tr .grid-area-b1 {
    grid-area: b1;
    padding-left: 20px;
    color: #A3A3A3;
  }
  table.table-responsive-grid thead tr .grid-area-b2,
  table.table-responsive-grid tbody tr .grid-area-b2 {
    grid-area: b2;
    text-align: right;
    padding-right: 20px;
    color: #A3A3A3;
  }
  table.table-responsive-grid thead tr .grid-area-c,
  table.table-responsive-grid tbody tr .grid-area-c {
    grid-area: c;
    padding-left: 20px;
    padding-right: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-c1,
  table.table-responsive-grid tbody tr .grid-area-c1 {
    grid-area: c1;
    padding-left: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-c2,
  table.table-responsive-grid tbody tr .grid-area-c2 {
    grid-area: c2;
    text-align: right;
    padding-right: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-d,
  table.table-responsive-grid tbody tr .grid-area-d {
    grid-area: d;
    padding-left: 20px;
    padding-right: 20px;
    color: #A3A3A3;
  }
  table.table-responsive-grid thead tr .grid-area-d1,
  table.table-responsive-grid tbody tr .grid-area-d1 {
    grid-area: d1;
    padding-left: 20px;
    color: #A3A3A3;
  }
  table.table-responsive-grid thead tr .grid-area-d2,
  table.table-responsive-grid tbody tr .grid-area-d2 {
    grid-area: d2;
    text-align: right;
    padding-right: 20px;
    color: #A3A3A3;
  }
  table.table-responsive-grid thead tr .grid-area-e,
  table.table-responsive-grid tbody tr .grid-area-e {
    grid-area: e;
    padding-left: 20px;
    padding-right: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-e1,
  table.table-responsive-grid tbody tr .grid-area-e1 {
    grid-area: e1;
    padding-left: 20px;
  }
  table.table-responsive-grid thead tr .grid-area-e2,
  table.table-responsive-grid tbody tr .grid-area-e2 {
    grid-area: e2;
    text-align: right;
    padding-right: 20px;
  }
  table.table-responsive-grid thead tr th.grid-area-a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  table.table-responsive-grid thead tr th.grid-area-a1 {
    border-top-left-radius: 12px;
  }
  table.table-responsive-grid thead tr th.grid-area-a2 {
    border-top-right-radius: 12px;
  }
}
/* Additional page components */
.message-bar {
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  color: #FFFFFF;
  border-radius: 12px;
  transition: all 0.5s ease-in-out;
}
.message-bar.no-margin {
  margin-bottom: 0;
}
.message-bar div {
  display: flex;
  align-items: center;
}
.message-bar div svg {
  fill: #FFFFFF;
  height: 24px;
  width: auto;
  padding-right: 10px;
}
.message-bar div span {
  width: 100%;
}
.message-bar button {
  background-color: transparent;
  padding: 0;
}
.message-bar button svg {
  fill: #FFFFFF;
  height: 16px;
}
.message-bar button:hover {
  cursor: pointer;
}
.hide {
  height: 0;
  opacity: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.modal-window {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--dark-4-light-2-trans);
  width: 100%;
  height: 100%;
}
.modal-window > div {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  max-width: 600px;
  padding: 40px;
  border-radius: 22px;
  background-color: var(--white-dark-2);
  text-align: center;
}
.modal-window > div.content {
  text-align: left;
}
.modal-window > div.content .header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.modal-window > div.content .header h3 {
  padding: 0;
}
.modal-window > div.content p {
  color: var(--body-light-3);
}
.modal-window > div.content form .inputs-radio {
  padding-bottom: 10px;
}
.modal-window > div.content form .inputs-radio label {
  padding-top: 0;
}
.modal-window > div.content div.buttons a,
.modal-window > div.content div.buttons button {
  text-transform: none;
}
.modal-window > div.content div.flex-row-half {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.modal-window > div.content div.flex-row-half div {
  width: 50%;
}
.modal-window > div h2,
.modal-window > div h3,
.modal-window > div h4,
.modal-window > div p {
  word-break: break-word;
}
.modal-window > div h2 {
  padding-bottom: 20px;
}
.modal-window > div h3 {
  padding-bottom: 20px;
}
.modal-window > div h4 {
  padding-bottom: 16px;
}
.modal-window > div p {
  padding-bottom: 10px;
}
.modal-window > div div.buttons {
  align-self: center;
  padding: 20px 0 0 0;
}
.modal-window > div div.buttons a,
.modal-window > div div.buttons button {
  display: inline-flex;
  text-transform: uppercase;
}
.file-selector-modal {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--light-2-dark-4-trans);
  width: 100%;
  height: 100%;
}
.file-selector-modal .content {
  height: 600px;
  max-height: 600px;
  width: 800px;
  max-width: 800px;
  background-color: var(--white-dark-2);
  color: var(--body-light-3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.file-selector-modal .content .header {
  padding: 20px 16px 8px;
}
.file-selector-modal .content .buttons {
  align-self: end;
  padding: 8px 16px 20px;
}
.file-selector-modal .content iframe {
  flex-grow: 1;
  width: 100%;
  border: none;
  background-color: var(--white-dark-2);
}
.file-uploader {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 32px;
}
.file-uploader .text-muted {
  color: #A3A3A3;
}
.file-uploader .text-success {
  color: #00A389;
}
.file-uploader .text-danger {
  color: #FF5B5B;
}
.file-uploader .col {
  width: 50%;
}
.file-uploader .col:first-of-type {
  padding-right: 16px;
}
.file-uploader .col:last-of-type {
  padding-left: 16px;
}
.file-uploader .col .dm-uploader {
  border: 4px dashed #A3A3A3;
  text-align: center;
  padding: 32px;
  cursor: default;
  user-select: none;
  border-radius: 18px;
}
.file-uploader .col .dm-uploader h3 {
  margin: 28px 0 8px;
  font-size: 34px;
  font-weight: 500;
}
.file-uploader .col .dm-uploader p {
  margin: 4px 0;
}
.file-uploader .col .dm-uploader .btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 28px 0 28px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
}
.file-uploader .col .dm-uploader .btn input {
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  right: 0;
  border: 0 solid transparent;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.file-uploader .col .dm-uploader .btn input:hover {
  cursor: pointer;
}
.file-uploader .col .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  word-wrap: break-word;
  background-clip: border-box;
  background-color: var(--white-dark-3);
  border: 1px solid var(--light-3-dark-0);
  border-radius: 18px;
}
.file-uploader .col .card .card-header {
  padding: 12px 20px;
  margin-bottom: 0;
  background-color: var(--white-dark-2);
  border-bottom: 1px solid var(--light-3-dark-0);
  border-radius: 18px 18px 0 0;
}
.file-uploader .col .card .list-unstyled {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  width: 100%;
  position: relative;
  padding-left: 0;
  list-style: none;
  overflow-y: scroll !important;
  border-radius: 0 0 18px 18px;
}
.file-uploader .col .card .list-unstyled .empty {
  padding: 12px 20px;
}
.file-uploader .col .card .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 10px 20px;
  background-color: var(--light-1-dark-1);
  border-bottom: 1px solid var(--light-3-dark-0);
}
.file-uploader .col .card .media .preview-img {
  width: 80px;
  padding-right: 16px;
  display: flex;
  justify-content: center;
}
.file-uploader .col .card .media .preview-img img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.file-uploader .col .card .media .media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.file-uploader .col .card .media .media-body p {
  margin-bottom: 8px;
}
.file-uploader .col .card .media .media-body .progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 16px;
  overflow: hidden;
  font-size: 12px;
  background-color: var(--light-1-dark-1);
  border-radius: 4px;
}
.file-uploader .col .card .media .media-body .progress .progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
  background-color: #00A389;
  transition: width 0.6s ease;
}
.file-uploader .col .card .media .media-body .progress .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  background-color: #00A389;
}
.file-uploader .col .card .media .media-body .progress .progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}
@media (max-width: 1000px) {
  .file-uploader {
    flex-direction: column;
    gap: 16px;
  }
  .file-uploader .col {
    width: 100%;
  }
  .file-uploader .col:first-of-type {
    padding-right: 0;
  }
  .file-uploader .col:last-child {
    padding-left: 0;
  }
  .file-uploader .col .card .list-unstyled {
    min-height: 190px;
  }
  .file-uploader .col .dm-uploader {
    padding: 32px 16px;
  }
  .file-uploader .col .dm-uploader h3 {
    margin: 0 0 12px;
    font-size: 28px;
  }
  .file-uploader .col .dm-uploader .btn {
    margin-bottom: 0;
  }
}
.color-icon {
  display: block;
  width: 40px;
  height: 20px;
  border-radius: 4px;
}
.colors-palette {
  display: flex;
  flex-wrap: wrap;
}
.colors-palette span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-right: 8px;
}
.colors-palette span:hover {
  cursor: pointer;
  opacity: 0.9;
}
.accordion-panel {
  padding-bottom: 6px;
  border-bottom: #AB54DB 2px solid;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.accordion-panel:hover {
  cursor: pointer;
}
.accordion-panel .accordion-title {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
}
.accordion-panel .accordion-title .accordion-icon svg {
  fill: var(--color-body);
}
.accordion-panel .accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease-in-out;
}
.accordion-panel .accordion-icon svg {
  width: 100%;
  height: 100%;
}
.accordion-content {
  height: auto;
  display: block;
  overflow: hidden;
  transition: height 0.3s ease-in-out, min-height 0.3s ease-in-out;
  box-sizing: border-box;
  padding: 16px 2px 0;
}
.tooltip-icon {
  display: flex;
  position: relative;
  align-self: self-start;
}
.tooltip-icon span:first-of-type {
  display: flex;
  justify-content: flex-start;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.tooltip-icon span:first-of-type:hover {
  cursor: help;
}
.tooltip-icon span:first-of-type svg {
  height: auto;
  width: 100%;
}
.tooltip-icon span:last-of-type {
  position: absolute;
  bottom: 22px;
  left: -2px;
  padding: 8px 12px;
  display: block;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  background-color: var(--light-1-dark-1);
  color: var(--body);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 300px;
  width: max-content;
  white-space: normal;
}
.color-1 {
  color: var(--color-1);
}
.color-2 {
  color: var(--color-2);
}
.color-3 {
  color: var(--color-3);
}
.color-4 {
  color: var(--color-4);
}
.color-5 {
  color: var(--color-5);
}
.color-6 {
  color: var(--color-6);
}
.color-body-themed {
  color: var(--color-body);
}
.color-grey-1 {
  color: #FCFCFC;
}
.color-grey-2 {
  color: #F3F2F7;
}
.color-grey-3 {
  color: #ECEAF3;
}
.color-grey-4 {
  color: #D0D6DE;
}
.color-grey-5 {
  color: #B9BBBD;
}
.color-grey-6 {
  color: #A3A3A3;
}
.color-body {
  color: #464255;
}
.bg-primary {
  background-color: #AB54DB;
}
.bg-secondary {
  background-color: #B7DBF9;
}
.bg-tertiary {
  background-color: #EF9A91;
}
.bg-quatinery {
  background-color: #F1E6B9;
}
.bg-success {
  background-color: #00A389;
}
.bg-warning {
  background-color: #FFBB54;
}
.bg-error {
  background-color: #FF5B5B;
}
.bg-info {
  background-color: #58CDFF;
}
.bg-grey,
.color-icon {
  background-color: #A3A3A3;
}
.bg-grey-light-2-dark-4 {
  background-color: var(--light-2-dark-4);
}
