.spinner,
[class^=spinner-],
[class*=" spinner-"],
.btn-submit:disabled,
.btn-submit[disabled] {
  --spinner-size: 24px;
  --spinner-m-t: calc((var(--spinner-size) / 2) * -1);
  --spinner-p: 48px;
  --spinner-pos: 12px;
  --spinner-border: 3px;
  --spinner-color: white;
  position: relative !important;
}
.spinner:before,
[class^=spinner-]:before,
[class*=" spinner-"]:before,
.btn-submit:disabled:before,
.btn-submit[disabled]:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  margin-top: var(--spinner-m-t);
  width: var(--spinner-size);
  height: var(--spinner-size);
  border-radius: 50%;
  border: var(--spinner-border) solid transparent;
  border-top-color: var(--spinner-color);
  border-left-color: var(--spinner-color);
  border-bottom-color: var(--spinner-color);
  animation: spinner 0.45s linear infinite;
}
.spinner.sm,
[class^=spinner-].sm,
[class*=" spinner-"].sm,
.btn-submit:disabled.sm,
.btn-submit[disabled].sm {
  --spinner-size: 14px;
  --spinner-border: 2px;
  --spinner-p: 42px;
  --spinner-pos: 14px;
}
.spinner.lg,
[class^=spinner-].lg,
[class*=" spinner-"].lg,
.btn-submit:disabled.lg,
.btn-submit[disabled].lg {
  --spinner-size: 54px;
  --spinner-border: 4px;
  --spinner-p: 104px;
  --spinner-pos: 24px;
}
.spinner.xl,
[class^=spinner-].xl,
[class*=" spinner-"].xl,
.btn-submit:disabled.xl,
.btn-submit[disabled].xl {
  --spinner-size: 72px;
  --spinner-border: 5px;
  --spinner-p: 144px;
  --spinner-pos: 36px;
}
.spinner.xxl,
[class^=spinner-].xxl,
[class*=" spinner-"].xxl,
.btn-submit:disabled.xxl,
.btn-submit[disabled].xxl {
  --spinner-size: 96px;
  --spinner-border: 6px;
  --spinner-p: 192px;
  --spinner-pos: 48px;
}
.spinner.xxxl,
[class^=spinner-].xxxl,
[class*=" spinner-"].xxxl,
.btn-submit:disabled.xxxl,
.btn-submit[disabled].xxxl {
  --spinner-size: 120px;
  --spinner-border: 7px;
  --spinner-p: 240px;
  --spinner-pos: 60px;
}
.spinner.secondary,
[class^=spinner-].secondary,
[class*=" spinner-"].secondary,
.btn-submit:disabled.secondary,
.btn-submit[disabled].secondary {
  --spinner-color: var(--secondary);
}
.spinner.gray,
[class^=spinner-].gray,
[class*=" spinner-"].gray,
.btn-submit:disabled.gray,
.btn-submit[disabled].gray {
  --spinner-color: var(--secondary-50);
}
.spinner.success,
[class^=spinner-].success,
[class*=" spinner-"].success,
.btn-submit:disabled.success,
.btn-submit[disabled].success {
  --spinner-color: var(--success);
}

.spinner {
  width: var(--spinner-size);
  height: var(--spinner-size);
}
.spinner:before {
  right: 0;
}

.spinner-right {
  padding-right: var(--spinner-p) !important;
}
.spinner-right:before {
  right: var(--spinner-pos);
}

.spinner-left,
.btn-submit:disabled,
.btn-submit[disabled] {
  padding-left: var(--spinner-p) !important;
}
.spinner-left:before,
.btn-submit:disabled:before,
.btn-submit[disabled]:before {
  left: var(--spinner-pos);
}

.btn-submit:disabled i,
.btn-submit[disabled] i {
  display: none;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
[class^=toast-],
[class*=" toast-"] {
  position: fixed;
  padding: 10px 28px;
  border-radius: 4px;
  background: var(--secondary);
  color: white;
  z-index: 1000000000000000000;
  line-height: 36px;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 44px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.15s;
  --toast-x: 20px;
  --toast-y: -100px;
}
[class^=toast-] i,
[class*=" toast-"] i {
  font-size: 24px;
}
[class^=toast-].active,
[class*=" toast-"].active {
  --toast-y: 40px;
}
[class^=toast-].success,
[class*=" toast-"].success {
  background: var(--success);
  box-shadow: 0 0 44px var(--success-40);
}
[class^=toast-].danger,
[class*=" toast-"].danger {
  background: var(--danger);
  box-shadow: 0 0 44px var(--danger-40);
}
[class^=toast-].warning,
[class*=" toast-"].warning {
  background: var(--warning);
  box-shadow: 0 0 44px var(--warning-40);
}
[class^=toast-].lg,
[class*=" toast-"].lg {
  padding: 14px 32px;
  line-height: 40px;
  font-size: 18px;
  font-weight: 600;
}
[class^=toast-].lg i,
[class*=" toast-"].lg i {
  font-size: 30px;
}

.toast-top-right {
  right: var(--toast-x);
  top: var(--toast-y);
  margin-left: var(--toast-x);
}
.toast-top-left {
  left: var(--toast-x);
  top: var(--toast-y);
}
.toast-top {
  top: var(--toast-y);
  left: 50%;
  transform: translateX(-50%);
}
.toast-bottom-right {
  right: var(--toast-x);
  bottom: var(--toast-y);
}
.toast-bottom-left {
  left: var(--toast-x);
  bottom: var(--toast-y);
}
.toast-bottom {
  bottom: var(--toast-y);
  left: 50%;
  transform: translateX(-50%);
}

.hljs {
  display: block;
  overflow-x: auto;
  padding: 12px 20px !important;
  background: #232323;
  color: #e6e1dc;
  line-height: 28px;
}

.hljs-comment,
.hljs-quote {
  color: #777;
  font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag {
  color: #c26230;
}

.hljs-string,
.hljs-number,
.hljs-regexp,
.hljs-variable,
.hljs-template-variable {
  color: #a5c261;
}

.hljs-subst {
  color: #519f50;
}

.hljs-tag,
.hljs-name {
  color: #e8bf6a;
}

.hljs-type {
  color: #da4939;
}

.hljs-symbol,
.hljs-bullet,
.hljs-built_in,
.hljs-builtin-name,
.hljs-attr,
.hljs-link {
  color: #6d9cbe;
}

.hljs-params {
  color: #d0d0ff;
}

.hljs-attribute {
  color: #cda869;
}

.hljs-meta {
  color: #9b859d;
}

.hljs-title,
.hljs-section {
  color: #ffc66d;
}

.hljs-addition {
  background-color: #144212;
  color: #e6e1dc;
  display: inline-block;
  width: 100%;
}

.hljs-deletion {
  background-color: #600;
  color: #e6e1dc;
  display: inline-block;
  width: 100%;
}

.hljs-selector-class {
  color: #9b703f;
}

.hljs-selector-id {
  color: #8b98ab;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}

:root {
  --base-gutter: 1rem !important;
  --page-editor-color-primary: #1273eb;
  --page-editor-color-primary-85: #3688ee;
  --page-editor-color-primary-70: #599df1;
  --page-editor-color-primary-10: #eaf2f6;
  --page-editor-color-secondary: #08192b;
  --page-editor-color-secondary-85: #2d3c4b;
  --page-editor-color-secondary-70: #525e6b;
  --page-editor-color-secondary-60: #7c8383;
  --page-editor-color-secondary-30: #b5babf;
  --page-editor-color-secondary-10: #e9eaea;
  --page-editor-color-secondary-7: #eeeff0;
  --page-editor-color-secondary-5: #f4f5f5;
  --page-editor-color-secondary-3: #f8f8f9;
  --page-editor-color-secondary-2: #fbfbfb;
  --page-editor-color-success: #2bc48a;
  --page-editor-color-warning: #fca120;
  --page-editor-color-danger: #fb5252;
  --page-editor-spinner-m-t: -12px;
  --page-editor-spinner-p: 48px;
  --page-editor-spinner-pos: 12px;
  --page-editor-spinner-border: 3px;
  --page-editor-spinner-size: 24px;
  --page-editor-spinner-color: white;
  --ck-spacing-standard: 34px !important;
  --ck-spacing-large: 24px !important;
  --ck-color-base-border: var(--page-editor-color-secondary-10) !important;
  --ck-color-focus-border: var(--page-editor-color-primary) !important;
  --ck-color-shadow-inner: transparent !important;
  --ck-border-radius: 4px !important;
  --ck-color-link-default: var(--page-editor-color-primary) !important;
  --ck-color-input-disabled-text: var(
    --page-editor-color-secondary-60
  ) !important;
  --ck-color-base-text: var(--page-editor-color-secondary) !important;
  --ck-color-button-default-hover-background: var(
    --page-editor-color-secondary-5
  ) !important;
  --ck-color-list-button-hover-background: var(
    --page-editor-color-secondary-5
  ) !important;
  --ck-color-button-on-color: var(--page-editor-color-primary) !important;
  --ck-color-button-on-background: var(--page-editor-color-primary-10) !important;
}

.page-editor-card,
.page-editor-card > * {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.page-editor-card {
  background: white;
  border-radius: 4px;
  width: 100%;
  padding: 0 0 calc(var(--base-gutter) * 1.5);
  gap: calc(var(--base-gutter) * 1.5);
}
.page-editor-card > * {
  width: 100%;
  padding: 0 calc(var(--base-gutter) * 1.5);
  font-size: 16px;
  line-height: 35px;
  font-weight: 420;
  gap: calc(var(--base-gutter) * 0.75);
}
.page-editor-card > .header {
  padding-top: calc(var(--base-gutter) * 0.75);
  padding-bottom: calc(var(--base-gutter) * 0.75);
  background: var(--secondary-3);
  border-radius: 4px 4px 0 0;
}
.page-editor-card > .header .close {
  margin: 0 auto 0 -8px;
  font-size: 16px;
  color: var(--secondary-40);
  padding: 8px;
  cursor: pointer;
}
.page-editor-card > .header .close:hover {
  color: var(--secondary);
}
.page-editor-card > .header,
.page-editor-card > .footer {
  font-size: 17px;
  font-weight: 700;
  align-items: center;
  flex-direction: row;
}
.page-editor-card > .header .icon,
.page-editor-card > .footer .icon {
  font-size: 24px;
}
.page-editor-card > .header .subtitle,
.page-editor-card > .footer .subtitle {
  font-size: 16px;
  font-weight: 420;
}

.page-editor-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2025;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 32px 0;
}
.page-editor-modal > * {
  width: 800px;
  max-width: 90%;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100%;
}
.page-editor-modal.show {
  display: -webkit-flex;
  display: flex;
}
.page-editor-modal.sm > * {
  width: 500px;
  max-width: 90%;
}
.page-editor-modal.lg > * {
  width: 1200px;
  max-width: 90%;
}
.page-editor-modal.full {
  align-items: start;
  padding: calc(var(--base-gutter) * 2) 0;
}
.page-editor-modal.full > * {
  width: calc(100% - var(--base-gutter) * 4);
  max-width: calc(100% - var(--base-gutter) * 4);
}

.page-editor-btn {
  background: var(--page-editor-color-primary);
  color: white;
  border: solid 1px var(--page-editor-color-primary);
  border-radius: 4px;
  padding: 4px 16px;
  font-size: 16px;
  line-height: 36px;
  font-weight: 500;
  width: fit-content;
  max-width: 100%;
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  vertical-align: middle;
  cursor: pointer;
}
.page-editor-btn:hover {
  background: var(--page-editor-color-primary-85);
  color: white;
  --page-editor-spinner-color: white;
}
.page-editor-btn:focus, .page-editor-btn:active, .page-editor-btn.active {
  background: var(--page-editor-color-primary-70);
  color: white;
  --page-editor-spinner-color: white;
}
.page-editor-btn i {
  width: 20px;
  height: 20px;
}
.page-editor-btn.light {
  background: white;
  color: var(--page-editor-color-secondary-85);
  border-color: var(--page-editor-color-secondary-30);
  --page-editor-spinner-color: var(--page-editor-color-secondary-85);
}
.page-editor-btn.light:hover {
  background: var(--page-editor-color-secondary-3);
  color: var(--page-editor-color-secondary);
  border-color: var(--page-editor-color-secondary-30);
  --page-editor-spinner-color: var(--page-editor-color-secondary);
}
.page-editor-btn.light:focus, .page-editor-btn.light:active, .page-editor-btn.light.active {
  background: var(--page-editor-color-secondary-7);
  color: var(--page-editor-color-secondary);
  border-color: var(--page-editor-color-secondary-30);
  --page-editor-spinner-color: var(--page-editor-color-secondary);
}
.page-editor-btn.transparent {
  background: transparent;
  border: none;
  color: var(--page-editor-color-secondary-85);
}
.page-editor-btn.transparent:hover {
  background: var(--page-editor-color-secondary-3);
  color: var(--page-editor-color-secondary);
  border-color: var(--page-editor-color-secondary-30);
  --page-editor-spinner-color: var(--page-editor-color-secondary);
}
.page-editor-btn.transparent:focus, .page-editor-btn.transparent:active, .page-editor-btn.transparent.active {
  background: var(--page-editor-color-secondary-7);
  color: var(--page-editor-color-secondary);
  border-color: var(--page-editor-color-secondary-30);
  --page-editor-spinner-color: var(--page-editor-color-secondary);
}

.page-editor-btn-icon {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  background-color: var(--page-editor-color-primary);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.8499 3.79374C18.801 2.84026 17.1993 2.84024 16.1504 3.79369C16.1016 3.83805 16.0497 3.8899 15.9824 3.95724L15.9698 3.96982L5.72319 14.2163L5.67911 14.2604L5.6791 14.2604C5.2545 14.6849 4.9807 14.9587 4.75501 15.2726C4.55503 15.5508 4.38574 15.8498 4.25008 16.1644C4.09699 16.5194 4.00313 16.8951 3.85758 17.4776L3.84246 17.538L3.27241 19.8183C3.20851 20.0738 3.2834 20.3442 3.46969 20.5305C3.65597 20.7168 3.92634 20.7917 4.18192 20.7278L6.46215 20.1577L6.52264 20.1426L6.5227 20.1426C7.10514 19.997 7.48075 19.9032 7.83579 19.7501C8.15039 19.6144 8.44939 19.4452 8.72757 19.2452C9.04152 19.0195 9.31526 18.7457 9.73974 18.3211L9.78383 18.277L20.0304 8.03043L20.043 8.01781C20.1103 7.95052 20.1622 7.89869 20.2065 7.8499C21.16 6.80103 21.16 5.1993 20.2066 4.15041C20.1622 4.10163 20.1104 4.04981 20.0431 3.98254L20.043 3.98247L20.0305 3.96987L20.0179 3.95731L20.0178 3.95725C19.9505 3.88993 19.8987 3.83809 19.8499 3.79374Z' fill='white'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  border-radius: 4px;
  width: 34px;
  height: 34px;
  font-size: 18px;
}
.page-editor-btn-icon:hover {
  background-color: var(--page-editor-color-primary-70);
}

.page-editor-btn-edit-mode {
  position: fixed;
  left: 15px;
  top: 15px;
}

.btn-edit-mode {
  position: fixed !important;
  width: fit-content !important;
  left: calc(var(--base-gutter) * 2) !important;
  bottom: calc(var(--base-gutter) * 2) !important;
  z-index: 10000000000000000000000000000 !important;
}

[class^=page-editor-spinner-],
[class*=" page-editor-spinner-"] {
  position: relative !important;
}
[class^=page-editor-spinner-]:before,
[class*=" page-editor-spinner-"]:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  margin-top: var(--page-editor-spinner-m-t);
  width: var(--page-editor-spinner-size);
  height: var(--page-editor-spinner-size);
  border-radius: 50%;
  border: var(--page-editor-spinner-border) solid transparent;
  border-top-color: var(--page-editor-spinner-color);
  border-left-color: var(--page-editor-spinner-color);
  border-bottom-color: var(--page-editor-spinner-color);
  animation: page-editor-spinner 0.45s linear infinite;
}
[class^=page-editor-spinner-].sm,
[class*=" page-editor-spinner-"].sm {
  --page-editor-spinner-size: 14px;
  --page-editor-spinner-border: 2px;
  --page-editor-spinner-m-t: -7px;
  --page-editor-spinner-p: 42px;
  --page-editor-spinner-pos: 14px;
}
[class^=page-editor-spinner-].secondary,
[class*=" page-editor-spinner-"].secondary {
  --page-editor-spinner-color: var(--secondary);
}
[class^=page-editor-spinner-].gray,
[class*=" page-editor-spinner-"].gray {
  --page-editor-spinner-color: var(--secondary-50);
}
[class^=page-editor-spinner-].success,
[class*=" page-editor-spinner-"].success {
  --page-editor-spinner-color: var(--success);
}

.page-editor-spinner-right {
  padding-right: var(--page-editor-spinner-p) !important;
}
.page-editor-spinner-right:before {
  right: var(--page-editor-spinner-pos);
}
.page-editor-spinner-left {
  padding-left: var(--page-editor-spinner-p) !important;
}
.page-editor-spinner-left:before {
  left: var(--page-editor-spinner-pos);
}

@keyframes page-editor-spinner {
  to {
    transform: rotate(360deg);
  }
}
.page-editor-icon-edit {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.8499 3.79374C18.801 2.84026 17.1993 2.84024 16.1504 3.79369C16.1016 3.83805 16.0497 3.8899 15.9824 3.95724L15.9698 3.96982L5.72319 14.2163L5.67911 14.2604L5.6791 14.2604C5.2545 14.6849 4.9807 14.9587 4.75501 15.2726C4.55503 15.5508 4.38574 15.8498 4.25008 16.1644C4.09699 16.5194 4.00313 16.8951 3.85758 17.4776L3.84246 17.538L3.27241 19.8183C3.20851 20.0738 3.2834 20.3442 3.46969 20.5305C3.65597 20.7168 3.92634 20.7917 4.18192 20.7278L6.46215 20.1577L6.52264 20.1426L6.5227 20.1426C7.10514 19.997 7.48075 19.9032 7.83579 19.7501C8.15039 19.6144 8.44939 19.4452 8.72757 19.2452C9.04152 19.0195 9.31526 18.7457 9.73974 18.3211L9.78383 18.277L20.0304 8.03043L20.043 8.01781C20.1103 7.95052 20.1622 7.89869 20.2065 7.8499C21.16 6.80103 21.16 5.1993 20.2066 4.15041C20.1622 4.10163 20.1104 4.04981 20.0431 3.98254L20.043 3.98247L20.0305 3.96987L20.0179 3.95731L20.0178 3.95725C19.9505 3.88993 19.8987 3.83809 19.8499 3.79374Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  filter: brightness(0);
}

.page-editor-icon-cross {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.46967 5.46967C5.76256 5.17678 6.23744 5.17678 6.53033 5.46967L12 10.9393L17.4697 5.46967C17.7626 5.17678 18.2374 5.17678 18.5303 5.46967C18.8232 5.76256 18.8232 6.23744 18.5303 6.53033L13.0607 12L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L12 13.0607L6.53033 18.5303C6.23744 18.8232 5.76256 18.8232 5.46967 18.5303C5.17678 18.2374 5.17678 17.7626 5.46967 17.4697L10.9393 12L5.46967 6.53033C5.17678 6.23744 5.17678 5.76256 5.46967 5.46967Z' fill='%239CA3AA'/%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.page-editor-icon-paperclip {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.1267 4.04516C15.8575 2.77596 13.7997 2.77596 12.5305 4.04516L5.45944 11.1162C3.40919 13.1665 3.40919 16.4906 5.45944 18.5409C7.50969 20.5911 10.8338 20.5911 12.8841 18.5409L20.6622 10.7627C20.9551 10.4698 21.43 10.4698 21.7229 10.7627C22.0158 11.0556 22.0158 11.5304 21.7229 11.8233L13.9447 19.6015C11.3087 22.2376 7.03482 22.2376 4.39878 19.6015C1.76274 16.9655 1.76274 12.6916 4.39878 10.0556L11.4698 2.9845C13.3248 1.12951 16.3324 1.12951 18.1874 2.9845C20.0424 4.83949 20.0424 7.84703 18.1874 9.70202L11.1163 16.7731C10.0424 17.847 8.30115 17.847 7.22721 16.7731C6.15327 15.6991 6.15327 13.9579 7.22721 12.884L14.2983 5.81293C14.5912 5.52004 15.066 5.52004 15.3589 5.81293C15.6518 6.10582 15.6518 6.5807 15.3589 6.87359L8.28787 13.9447C7.79971 14.4328 7.79971 15.2243 8.28787 15.7124C8.77602 16.2006 9.56748 16.2006 10.0556 15.7124L17.1267 8.64136C18.3959 7.37215 18.3959 5.31437 17.1267 4.04516Z' fill='%232D3C4B'/%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.ck.ck-list__item .ck-button {
  text-align: right !important;
}

.ck.ck-button,
a.ck.ck-button {
  justify-content: right !important;
}

.ck.ck-reset_all,
.ck-reset_all *:not(.ck-reset_all-excluded *) {
  font-family: var(--base-font-family) !important;
}

.ck-editor__main {
  line-height: 35px;
}

.ck-editor__editable {
  min-height: 350px;
}

.page-editor-input-group,
.page-editor-input-group input:not(input[type=radio], input[type=checkbox]) {
  width: 100%;
  border: solid 1px var(--page-editor-color-secondary-10);
  border-radius: 4px;
  height: 46px;
  color: var(--page-editor-color-secondary);
}

.page-editor-input-group {
  flex-wrap: wrap;
  align-items: stretch;
  background: transparent;
  padding: 0;
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  transition: all 0.3s;
  outline: solid 1px transparent;
}
.page-editor-input-group > * {
  border: none !important;
  border-left: solid 1px var(--page-editor-color-secondary-5) !important;
  max-height: 100%;
  border-radius: 0 !important;
}
.page-editor-input-group > *:not(label, input[type=radio], input[type=checkbox]), .page-editor-input-group > *.full {
  flex: 1 1 auto;
  width: 1% !important;
  min-width: 0;
}
.page-editor-input-group > :first-child:not(.badge, [class^=badge-], [class*=" badge-"]) {
  border-radius: 0 4px 4px 0 !important;
}
.page-editor-input-group > :last-child:not(.badge, [class^=badge-], [class*=" badge-"]) {
  border-radius: 4px 0 0 4px !important;
}
.page-editor-input-group.ltr > :first-child:not(.badge, [class^=badge-], [class*=" badge-"]) {
  border-radius: 4px 0 0 4px !important;
}
.page-editor-input-group.ltr > :last-child:not(.badge, [class^=badge-], [class*=" badge-"]) {
  border-radius: 0 4px 4px 0 !important;
}
.page-editor-input-group > :last-child {
  border-left: none !important;
}
.page-editor-input-group label {
  cursor: initial;
  min-width: 130px;
  background: var(--page-editor-color-secondary-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.page-editor-input-group > *:not([class^=btn-],
[class*=" btn-"],
.btn,
button,
.select2,
[class^=select2-],
[class*=" select2-"]) {
  font-size: 16px;
  line-height: 46px;
  font-weight: 420;
  padding: 0 16px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.page-editor-textarea {
  line-height: 35px !important;
  font-size: 16px !important;
  font-weight: 420 !important;
  padding: 12px 16px !important;
  height: 100% !important;
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  border: solid 1px var(--page-editor-color-secondary-10) !important;
  border-radius: 4px !important;
  background-color: white !important;
  color: var(--page-editor-color-secondary) !important;
  outline: none !important;
  resize: vertical !important;
}

.page-editor-w-100 {
  width: 100% !important;
}

.page-editor-ltr {
  direction: ltr !important;
  text-align: left !important;
}

.page-editor-d-block {
  display: block !important;
}

.page-editor-d-none {
  display: none !important;
}

.page-editor-px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.page-editor-position-relative {
  position: relative !important;
}

.page-editor-mt-2 {
  margin-top: 0.5rem !important;
}

.promotion-banner {
  background: rgb(85, 85, 85);
  background: radial-gradient(circle, rgb(85, 85, 85) 0%, rgb(24, 24, 24) 100%);
}
.promotion-banner .alert {
  justify-content: start;
}
.promotion-banner .alert .title {
  padding-right: 14px !important;
}
.promotion-banner .countdown {
  flex-grow: 1;
  justify-content: end !important;
}

.countdown {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  --bg: var(--primary);
  --color: white;
  text-align: center;
}
.countdown > * {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: 4px;
  padding: 11px 0 8px;
  min-width: 65px;
}
.countdown > * > * {
  color: var(--color) !important;
}
.countdown > * .countdown-title {
  font-size: 21px !important;
  font-weight: 700 !important;
  line-height: 30px !important;
}
.countdown > * .countdown-subtitle {
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  opacity: 0.6 !important;
}
.countdown.sm > * {
  padding: 10px 0 5px;
  min-width: 55px;
}
.countdown.sm > * .countdown-title {
  font-size: 16px !important;
  line-height: 20px !important;
}
.countdown.sm > * .countdown-subtitle {
  font-size: 13px !important;
}

@media (max-width: 1199.98px) {
  .promotion-banner .alert {
    justify-content: center;
  }
  .promotion-banner .alert .title {
    padding-right: 0px !important;
  }
  .promotion-banner .countdown {
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  [class^=toast-],
  [class*=" toast-"] {
    --toast-x: 10px;
    --toast-y: -80px;
  }
}
@media (max-width: 767.98px) {
  .page-editor-card > .header,
  .page-editor-card .footer {
    font-size: 15px;
    font-weight: 600;
  }
  .page-editor-card > .header .icon,
  .page-editor-card .footer .icon {
    font-size: 20px;
  }
  .page-editor-card > .header .subtitle,
  .page-editor-card .footer .subtitle {
    font-size: 14px;
    line-height: 28px;
  }
}
@media (max-width: 575.98px) {
  .countdown {
    gap: 4px !important;
  }
  .countdown > * {
    min-width: 60px;
  }
  .countdown > * .countdown-title {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  .countdown > * .countdown-subtitle {
    font-size: 14px !important;
  }
}
body {
  -moz-font-feature-settings: "ss02";
  -webkit-font-feature-settings: "ss02";
  font-feature-settings: "ss02";
}

input {
  -moz-font-feature-settings: inherit;
  -webkit-font-feature-settings: inherit;
  font-feature-settings: inherit;
}

.srhide {
  display: none;
}