.ac11Hidden {
  /* max-height: 0; */
  overflow: hidden;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  transition: height 0.5s;


  /* transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); */
}

.ac11Show {
  overflow: hidden;
  /* max-height: max-content; */
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  transition: height 0.5s;

  /* transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); */
}

.ac11RevealComplete {
  overflow: visible;
}

.ac11collapsibleOpen {
  transform: rotate(180deg);
}

.ac11collapsibleClose {
  transform: rotate(0deg);
}

.ac11Icon {
  width: 20px;
  transition: transform 300ms linear;
}

.ac11Title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin: 0;
}

@keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes wink324 {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes upDown {
    0% , 100%{
      transform: translateY(5px);
    }

    50% {
      transform: translateY(15px);
    }
  }

  @keyframes chartUpDown {
    0% , 100%{
      transform: translateY(10px);
    }

    50% {
      transform: translateY(45px);
    }
  }

  @keyframes indeterminate_first3312 {
    0% {
      left: -100%;
      width: 100%;
    }
    100% {
      left: 100%;
      width: 10%;
    }
  }

  @keyframes indeterminate_second3312 {
    0% {
      left: -150%;
      width: 100%;
    }
    100% {
      left: 100%;
      width: 10%;
    }
  }

  .loader14Active {
  position: relative;
  display: inline-block;
}

  .loader14Hidden {
  display: none;
}

  .loader14Active.loader14Block {
  display: block;
}

  .loader14Inner {
  width: 60px;
  height: 60px;
  display: inline-block;
}

  /* ========================================SIZES================================================ */

  .loader14Inner.loader14XSmall {
  width: 12px;
  height: 12px;
}

  .loader14Inner.loader14Small {
  width: 16px;
  height: 16px;
}

  .loader14Inner.loader14Base {
  width: 20px;
  height: 20px;
}

  .loader14Inner.loader14Large {
  width: 24px;
  height: 24px;
}

  .loader14Inner.loader14XLarge {
  width: 28px;
  height: 28px;
}

  .loader14Inner.loader14XXLarge {
  width: 32px;
  height: 32px;
}

  /* ========================================CIRCULAR + CIRCULAR_BOLT_LOADER================================================ */

  .loader14CircularBolt>div {
  height: 60px;
  width: 60px;
  position: absolute;
  display: inline-block;
}

  .loader14Circular {
  height: 60px;
  width: 60px;
}

  .loader14Circular.constantWhite {
  border-top-color: var(--content-on-color);
  border-right-color: transparent;
  border-bottom-color: var(--content-on-color);
  border-left-color: var(--content-on-color);
}

  .loader14Circular, .loader14CircularBolt>div:first-child {
  top: 0px;
  left: 0px;
  border: 2px solid var(--dangerouslySetPrimaryBg);
  border-width: 2px;
  border-top-color: var(--content-accent);
  border-right-color: transparent;
  border-bottom-color: var(--content-accent);
  border-left-color: var(--content-accent);
  border-radius: 50%;
  animation: rotate 0.8s infinite linear;
}

  .loader14CircularBolt>div:last-child {
  top: 12px;
  left: 22px;
  height: 40px;
  width: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2214.9%22 height%3D%2235%22 viewBox%3D%22-514.9 944.2 14.9 35%22%3E%3Cpath fill%3D%22%232FC394%22 d%3D%22M-500.1 959h-4.6l2.1-14.8-12.4 20.2h4.6l-2.1 14.8 12.4-20.2z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: revert;
  animation: wink324 1s ease-in-out infinite alternate;
}

  .loader14Circular.contentNegative, .loader14CircularBolt.contentNegative>div:first-child {
  border-top-color: var(--content-negative);
  border-right-color: transparent;
  border-bottom-color: var(--content-negative);
  border-left-color: var(--content-negative);
}

  .loader14CircularBolt.contentNegative>div:last-child {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2214.9%22 height%3D%2235%22 viewBox%3D%22-514.9 944.2 14.9 35%22%3E%3Cpath fill%3D%22%23FF633F%22 d%3D%22M-500.1 959h-4.6l2.1-14.8-12.4 20.2h4.6l-2.1 14.8 12.4-20.2z%22%2F%3E%3C%2Fsvg%3E");
}

  /* ========================================CANDLE_STICK_LOADER================================================ */

  .loader14CandleStick {
  display: flex;
  height: 60px;
  width: 60px;
  align-items: center;
  justify-content: center;
  transform: rotateX(180deg);
}

  .loader14CandleStick:before {
  content: '';
  position: absolute;
  width: 150%;
  top: 0;
  border-bottom: 1px dashed var(--border-negative);
  animation: chartUpDown 3s 0s ease-in-out infinite alternate;
}

  .loader14CandleStick>div {
  position: relative;
  width: 10px;
  height: 60px;
  margin-right: 5px;
}

  .loader14CandleStick>div:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0px;
  background: var(--background-accent);
  height: 50px;
  width: 1px;
  transform: translateX(-50%);
}

  .loader14CandleStick>div:after {
  content: '';
  position: absolute;
  width: 10px;
  left: -50%;
  transform: translateX(-50%);
  margin: 0 5px;
  animation: upDown 1s 0s ease-in-out infinite alternate;
}

  .loader14CandleStick>div:nth-child(even):before, .loader14CandleStick>div:nth-child(even):after {
  background: var(--background-accent);
}

  .loader14CandleStick>div:nth-child(odd):before, .loader14CandleStick>div:nth-child(odd):after {
  background: var(--background-negative);
}

  .loader14CandleStick>div:nth-child(1):after {
  min-height: 15px;
  animation-delay: 0.1s;
}

  .loader14CandleStick>div:nth-child(2):after {
  min-height: 25px;
  animation-delay: 0.2s;
}

  .loader14CandleStick>div:nth-child(3):after {
  min-height: 30px;
  animation-delay: 0.3s;
}

  .loader14CandleStick>div:nth-child(4):after {
  min-height: 40px;
  animation-delay: 0.4s;
}

  /* ========================================LINEAR_LOADER================================================ */

  .loader14Linear {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  width: 100%;
  height: 4px;
}

  .loader14Indeterminate {
  position: relative;
  width: 100%;
  height: 100%;
}

  .loader14Indeterminate:before {
  content: '';
  position: absolute;
  height: 100%;
  background-color: var(--background-accent);
  animation: indeterminate_first3312 1.5s infinite ease-out;
}

  .loader14Indeterminate:after {
  content: '';
  position: absolute;
  height: 100%;
  background-color: var(--background-accent-subtle);
  animation: indeterminate_second3312 1.5s infinite ease-in;
}

.mint-btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  border-radius: 8px;
  flex-shrink: 0;
  border: 0;
  outline: none;
}


.mint-btn-default:focus-visible {
  outline: 2px solid var(--content-accent-secondary);
  outline-offset: 2px;
}


.mint-btn-cursor-default {
  cursor: default;
}


.mint-btn-default.mint-btn-secondary-default-border{
  border: 1px solid var(--border-primary);
}


.mint-btn-tertiary-label-border {
  border-style: dashed !important;
  border-width: 0 0 1px 0 !important;
}


/* -- Size Classes -- */


.mint-btn-small {
  padding: 12px;
  height: 32px;
  gap: 6px;
}


.mint-btn-medium {
  padding: 12px 16px;
  height: 40px;
  gap: 6px;
}


.mint-btn-large {
  padding: 16px 24px;
  height: 48px;
  gap: 8px;
}


.mint-btn-full-width{
  width: 100%;
}


/* -- Disabled Button -- */


.mint-btn-disabled{
  cursor: default;
  pointer-events: none;
}


.mint-btn-disabled.mint-btn-tertiary-disabled{
  background-color: transparent;
}


/* -- Compact classes -- */


.mint-btn-default.mint-btn-compact {
  min-width: fit-content;
  height: fit-content;
  border-radius: 0;
  padding: 0;
}


/*  -- Loader Button --  */


.mint-btn-loader-wrapper {
  position: absolute;
  margin-top: 4px;
}


.mint-btn-default.mint-btn-loader {
  color: transparent;
  pointer-events: none;
}


.mint-btn-loader-item-border-white {
  border: 2px solid var(--background-always-light); /* the loader color will always be white in dark as well as in light theme */
  border-top-color: transparent;
}


.mint-btn-loader-item-border-gray { /*used because the token doesn't override the existing color of loader*/
  border: 2px solid var(--border-neutral);
  border-top-color: transparent;
}


.mint-btn-small .mint-btn-loader-item {
  width: 16px;
  height: 16px;
}


.mint-btn-medium .mint-btn-loader-item {
  width: 20px; 
  height: 20px;
}


.mint-btn-large .mint-btn-loader-item {
  width: 24px;
  height: 24px;
}


/*  -- Fixed Bottom -- */


.mint-btn-fixed-bottom {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 12px;
  width: 100%;
  z-index: var(--zindex300);
  border-width: 1px 0 0 0;
}


/* --- Hover State --- */


/* --- Primary --- --- */


.mint-btn-primary:hover{
  background-color: var(--color-bg-button-primary-accent-hover);
}


/* --- Secondary --- */


/* Default : when isAccent = false*/


.mint-btn-secondary.mint-btn-secondary-default:hover {
  background-color: var(--color-bg-button-secondary-default-hover);
}


/* when isAccent = true */


.mint-btn-secondary.mint-btn-secondary-accent:hover{
  background-color: var( --color-bg-button-secondary-accent-hover);
}


/* --- Tertiary --- */


/* Default : when isAccent = false */


.mint-btn-tertiary.mint-btn-tertiary-default:hover{
  background-color: var( --color-bg-button-tertiary-default-hover);
}


/* when isAccent = true */


.mint-btn-tertiary.mint-btn-tertiary-accent:hover{
  background-color: var( --color-bg-button-tertiary-accent-hover);
}


/* --- Negative --- */


.mint-btn-default.mint-btn-negative:hover{
  background-color: var(--color-bg-button-primary-negative-hover);
}


.mint-btn-default {
    /* ---------- Hover State ---------- */

    /* ----- Primary Button ----- */
    
    /* Accent */
    --color-bg-button-primary-accent-hover: var(--bg-accent-hover);

    /* ------ Secondary Button ----- */

    /* Default or No Accent */
    --color-bg-button-secondary-default-hover: var(--bg-transparent-hover);
    /* Accent */
    --color-bg-button-secondary-accent-hover: var(--bg-accent-subtle-hover);

    /* ----- Tertiary Button ----- */

    /* Default or No Accent */
    --color-bg-button-tertiary-default-hover: var(--bg-transparent-hover);
    /* Accent */
    --color-bg-button-tertiary-accent-hover: var(--bg-transparent-accent-hover);

    /* ----- Negative Button ----- */

    --color-bg-button-primary-negative-hover: var(--bg-negative-hover);
}
.c11Default {
 gap: 8px;
}

.c11checkOnRight {
  flex-direction: row-reverse;
  width: 100% !important;
}

.pill12Pill {
  width: fit-content;
  min-width: fit-content;
  padding: 8px 12px;
  gap: 8px;
  border-radius: 99px;
}

.pill12SelectedAccentPill:hover {
  opacity: 0.9;
}

.pill12PillHover:hover {
  background-color: var(--background-secondary);
}

.pill12SizeXSmall {
 padding: 8px 12px;
}

.pill12SizeSmall {
 padding: 8px 14px;
}

.pill12SizeBase {
 padding: 8px 16px;
}

.pill12SizeLarge {
 padding: 8px 20px;
}

.pill12SizeXLarge {
 padding: 8px 24px;
}
/* -- container -- */

.rodal,
.rodal-mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}

.rodal {
  position: fixed;
}

/* -- mask -- */

.rodal-mask {
  position: absolute;
}

/* -- dialog -- */

.rodal-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10001;
  padding: 0;
  background: none;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rodal-dialog:focus {
  outline: none;
}

/* -- close button -- */

.rodal-close {
  position: absolute;
  cursor: pointer;
  top: 16px;
  right: 16px;
}

@media (max-width: 800px) {
  .rodal-close {
    top: 5px;
    right: 0px;
  }
}

.rodal-close::before,
.rodal-close::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: var(--content-secondary);
  border-radius: 100%;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.rodal-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.rodal-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.rodal-close:hover::before,
.rodal-close:hover::after {
  background: var(--content-secondary);
}

/* -- fade -- */

@-webkit-keyframes rodal-fade-enter {

  from {
    opacity: 0;
  }
}

@keyframes rodal-fade-enter {

  from {
    opacity: 0;
  }
}

.rodal-fade-enter {
  -webkit-animation: rodal-fade-enter both ease-in;
  animation: rodal-fade-enter both ease-in;
}

@-webkit-keyframes rodal-fade-leave {

  to {
    opacity: 0;
  }
}

@keyframes rodal-fade-leave {

  to {
    opacity: 0;
  }
}

.rodal-fade-leave {
  -webkit-animation: rodal-fade-leave both ease-out;
  animation: rodal-fade-leave both ease-out;
}

/* -- zoom -- */

@-webkit-keyframes rodal-zoom-enter {

  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes rodal-zoom-enter {

  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.rodal-zoom-enter {
  -webkit-animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5);
}

@-webkit-keyframes rodal-zoom-leave {

  to {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes rodal-zoom-leave {

  to {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.rodal-zoom-leave {
  -webkit-animation: rodal-zoom-leave both;
  animation: rodal-zoom-leave both;
}

/* -- slideDown -- */

@-webkit-keyframes rodal-slideDown-enter {

  from {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

@keyframes rodal-slideDown-enter {

  from {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

.rodal-slideDown-enter {
  -webkit-animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5);
}

@-webkit-keyframes rodal-slideDown-leave {

  to {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

@keyframes rodal-slideDown-leave {

  to {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
}

.rodal-slideDown-leave {
  -webkit-animation: rodal-slideDown-leave both;
  animation: rodal-slideDown-leave both;
}

/* -- slideLeft -- */

@-webkit-keyframes rodal-slideLeft-enter {

  from {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0);
  }
}

@keyframes rodal-slideLeft-enter {

  from {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0);
  }
}

.rodal-slideLeft-enter {
  -webkit-animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5);
}

@-webkit-keyframes rodal-slideLeft-leave {

  to {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0);
  }
}

@keyframes rodal-slideLeft-leave {

  to {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0);
  }
}

.rodal-slideLeft-leave {
  -webkit-animation: rodal-slideLeft-leave both;
  animation: rodal-slideLeft-leave both;
}

/* -- slideRight -- */

@-webkit-keyframes rodal-slideRight-enter {

  from {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0);
  }
}

@keyframes rodal-slideRight-enter {

  from {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0);
  }
}

.rodal-slideRight-enter {
  -webkit-animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5);
}

@-webkit-keyframes rodal-slideRight-leave {

  to {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0);
  }
}

@keyframes rodal-slideRight-leave {

  to {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0);
  }
}

.rodal-slideRight-leave {
  -webkit-animation: rodal-slideRight-leave both;
  animation: rodal-slideRight-leave both;
}

/* -- slideUp -- */

@-webkit-keyframes rodal-slideUp-enter {

  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
}

@keyframes rodal-slideUp-enter {

  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
}

.rodal-slideUp-enter {
  -webkit-animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5);
}

@-webkit-keyframes rodal-slideUp-leave {

  to {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
}

@keyframes rodal-slideUp-leave {

  to {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
}

.rodal-slideUp-leave {
  -webkit-animation: rodal-slideUp-leave both;
  animation: rodal-slideUp-leave both;
}

/* -- flip -- */

@-webkit-keyframes rodal-flip-enter {

  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes rodal-flip-enter {

  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.rodal-flip-enter {
  -webkit-animation: rodal-flip-enter both ease-in;
  animation: rodal-flip-enter both ease-in;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes rodal-flip-leave {

  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
  }
}

@keyframes rodal-flip-leave {

  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
  }
}

.rodal-flip-leave {
  -webkit-animation: rodal-flip-leave both;
  animation: rodal-flip-leave both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

/* -- rotate -- */

@-webkit-keyframes rodal-rotate-enter {

  from {
    -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes rodal-rotate-enter {

  from {
    -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
  }
}

.rodal-rotate-enter {
  -webkit-animation: rodal-rotate-enter both;
  animation: rodal-rotate-enter both;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rodal-rotate-leave {

  to {
    -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes rodal-rotate-leave {

  to {
    -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
  }
}

.rodal-rotate-leave {
  -webkit-animation: rodal-rotate-leave both;
  animation: rodal-rotate-leave both;
  -webkit-transform-origin: center;
  transform-origin: center;
}

/* -- door -- */

@-webkit-keyframes rodal-door-enter {

  from {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
  }
}

@keyframes rodal-door-enter {

  from {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
  }
}

.rodal-door-enter {
  -webkit-animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5);
}

@-webkit-keyframes rodal-door-leave {

  60% {
    -webkit-transform: scale3d(0.01, 1, 1);
    transform: scale3d(0.01, 1, 1);
  }

  to {
    -webkit-transform: scale3d(0, 1, 0.1);
    transform: scale3d(0, 1, 0.1);
  }
}

@keyframes rodal-door-leave {

  60% {
    -webkit-transform: scale3d(0.01, 1, 1);
    transform: scale3d(0.01, 1, 1);
  }

  to {
    -webkit-transform: scale3d(0, 1, 0.1);
    transform: scale3d(0, 1, 0.1);
  }
}

.rodal-door-leave {
  -webkit-animation: rodal-door-leave both;
  animation: rodal-door-leave both;
}

.child-wrapper {
  position: relative;
  width: 100%;
}

.popup-border {
  border-radius: 6px;
}

.date101MainDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 23px;
  position: relative;
}

.date101Label {
  font-size: 16px;
  text-align: center;
}

.date101SelectedLabel {
  margin-top: 25px;
  font-size: 19px;
  text-align: center;
}

.date101Grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.date101Grid-item {
  border-radius: 5px;
  padding: 6px;
  font-size: 13px;
  text-align: center;
  margin: 10px;
}

.date101Grid-item.regular {
  pointer-events: auto;
  color: var(--content-primary);
  cursor: pointer;
  transition: all .1s ease-in-out;
}

.date101Grid-item.active {
  pointer-events: auto;
  background-color: var(--background-accent-secondary);
  transform: scale(1.2);
  cursor: pointer;
}

.date101Grid-item.default-active {
  pointer-events: auto;
  background-color: var(--background-accent);
  transform: scale(1.2);
  cursor: pointer;
}

.date101Grid-item.disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: var(--content-tertiary);
}

.date101Grid-item.previously-active {
  pointer-events: auto;
  color: var(--content-primary);
  transform: scale(1.2);
  cursor: pointer;
}

.date101Grid-item.regular:hover {
  transform: scale(1.2);
  background: var(--background-secondary);
}

#userCart .dropdown__content {
  z-index: 1;
}

.date101TooltipMainDiv {
  border-radius: 5px;
  width: 350px;
  height: auto;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.date101CrossButton {
  position: absolute;
  opacity: 0.5;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.date101CrossButton:hover {
  opacity: 0.3;
}

.dropdown {
  display: inline-block;
}

.dropdown__content {
  display: none;
  position: absolute;
  z-index: var(--zindex10001);
}

.dropdown--active .dropdown__content {
  display: block;
}

@media only screen and (min-width: 601px) {

  .dropdown--active .dropdown__fadein {
    animation: ddFadeIn 0.2s normal;
  }

  @keyframes ddFadeIn {

    0% {
      transform: translateY(16px);
    }

    80% {
      opacity: 1;
    }

    100% {
      transform: translateY(0);
    }
  }
}

.gb6Box {
  border-bottom: 1px solid var(--border-primary);
  border-radius: 5px;
  width: 100%;
  padding: 16px 0;
}

.gb6Icon {
  margin-right: 4px;
}

.gb6Text {
  font-size: 14px;
  font-weight: 500;
}

.gb6Fit {
  width: fit-content;
}

.infbd45ParentDiv {
  flex: 1 0 0;
  border-radius: 8px;
  padding: 12px 16px;
  width: fit-content;
  gap: 8px;
}

.mb76CompactBox {
  padding: 0 16px !important;
  border-radius: 0;
}

.mb45XSmall {
  padding: 12px 8px;
}

.mb45Small {
 padding: 12px;
}

.mb45Base {
 padding: 12px 16px;
}

.mb45Large {
 padding: 12px 20px;
}

.mb45XLarge {
 padding: 12px 24px;
}
.pop12Wrapper {
  display: inline-block;
  position: relative;
}

.pop12Popover {
  position: absolute;
  border-radius: 4px;
  padding: 6px;
  font-size: 13px;
  opacity: 1;
  z-index: var(--zindex900);
}

.pop12Popover::before {
  content: " ";
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  border-width: 6px;
  margin-left: -6px;
}

/* popover top positions: start, mid, end */

.pop12Popover.top {
  bottom: 100%;
  margin-bottom: 8px;
  transform: translateX(-50%);
  left: 50%;
}

.pop12Popover.top-start {
  bottom: 100%;
  margin-bottom: 8px;
  transform: translateX(-50%);
  left: 0;
}

.pop12Popover.top-end {
  bottom: 100%;
  margin-bottom: 8px;
  transform: translateX(-50%);
  left: 100%;
}

.pop12Popover.top::before,
.top-start::before,
.top-end::before {
  top: 100%;
  left: 50%;
  border-top-color: var(--dangerouslySetPrimaryBg);
}

/* popover right positions: start, mid, end */

.pop12Popover.right {
  left: 100%;
  margin-left: 8px;
  top: 50%;
  transform: translate(0, -50%);
}

.pop12Popover.right-start {
  left: 100%;
  margin-left: 8px;
  top: 0;
  transform: translate(0, -50%);
}

.pop12Popover.right-end {
  left: 100%;
  margin-left: 8px;
  top: 100%;
  transform: translate(0, -50%);
}

.pop12Popover.right::before,
.right-start::before,
.right-end::before {
  top: 50%;
  left: -6px;
  transform: translate(0, -50%);
  border-right-color: var(--dangerouslySetPrimaryBg);
}

/* popover bottom positions: start, mid, end */

.pop12Popover.bottom {
  top: 100%;
  margin-top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.pop12Popover.bottom-start {
  top: 100%;
  margin-top: 8px;
  left: 0;
  transform: translateX(-50%);
}

.pop12Popover.bottom-end {
  top: 100%;
  margin-top: 8px;
  left: 100%;
  transform: translateX(-50%);
}

.pop12Popover.bottom::before,
.bottom-start::before,
.bottom-end::before {
  bottom: 100%;
  left: 50%;
  border-bottom-color: var(--dangerouslySetPrimaryBg);
}

/* popover left positions: start, mid, end */

.pop12Popover.left {
  right: 100%;
  margin-right: 8px;
  top: 50%;
  transform: translate(0, -50%);
}

.pop12Popover.left-start {
  right: 100%;
  margin-right: 8px;
  top: 0;
  transform: translate(0, -50%);
}

.pop12Popover.left-end {
  right: 100%;
  margin-right: 8px;
  top: 100%;
  transform: translate(0, -50%);
}

.pop12Popover.left::before,
.left-start::before,
.left-end::before {
  top: 50%;
  right: -12px;
  transform: translate(0, -50%);
  border-left-color: var(--dangerouslySetPrimaryBg);
}

.pb65LinearMain {
  border-radius: 5;
  background-color: var(--border-primary);
  height: 10px;
}

.pb65CircleMain {
  stroke-linecap: round;
  fill: none;
}

.pb65LinearFiller {
  text-align: right;
  display: none;
  animation-name: pb65LinearAnim;
  animation-duration: 1s;
  transition: all 1s ease-in-out;
}

.pb65CicleFiller {
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: transparent;
  display: none;
  transition: all 1s ease-in-out;
}

.pb65MainTxt {
  text-anchor: middle;
  font-size: 16px;
}

@keyframes pb65LinearAnim {
  0% {
    width: 0;
  }
}

.radioCo11Box {
 gap: 8px;
}

.radioCo11BoxReverse {
  flex-direction: row-reverse;
  width: 100% !important;
}

.scroll11Img {
  transform: rotate(180deg);
  fill: var(--content-accent);
  cursor: pointer;
}

.scroll11 {
  position: fixed;
  bottom: 48px;
  right: 48px;
  opacity: 0;
}

.scroll11:hover {
  transform: scale(1.05);
}

.scroll11FadeIn {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.5s, opacity 0.5s linear, transform .25s linear;
}

.scroll11FadeOut {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.5s, opacity 0.5s linear, transform .25s linear;
}

.se55DropDownWrapper {
  width: 100%;
}

.se55Dropdown {
  width: 100%;
}

.se55DropdownContent {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  top: 43px;
  left: 0;
  z-index: var(--zindex400);
}

.se55DropdownPara {
  margin: 0;
  padding: 9px 16px;
}

.se55DropdownPara:hover {
  background: var(--background-secondary);
}

.se55DropdownParaHover {
  background: var(--background-secondary);
}

.se55Input {
  left: 0;
  width: 100%;
  bottom: 0;
  opacity: 0;
  position: absolute;
  height: 100%;
  pointer-events: all;
  cursor: pointer;
}

.se55SelectBox {
  padding: 9px 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.slider24Wrapper {
  width: 100%;
}

.tb10Table {
  width: 100%;
  border-collapse: collapse;
}

.tb10ThText {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 2.17;
  letter-spacing: 0.17px;
}

.tb10Td {
  min-height: 40px;
  text-align: left;
  /* border-bottom: 1px solid var(--border-primary); */
}

.tb10Table thead tr {
  border-bottom: 1px dashed var(--border-primary);
}

.tb10Table tbody tr {
  border-bottom: 1px solid var(--border-primary);
}

.tb10Table tbody tr:last-child {
  border-bottom: none;
}

.tb10Th {
  min-height: 40px;
  text-align: left;
}

.tb10HideIcon {
  visibility: hidden;
}

.tb10SelectHeaderCell {
  font-weight: 500;
  opacity: 1;
}

.tb10IconClass {
  top: 6px;
}

@media only screen and (max-width: 601px) {

  .tb10IconClass {
    width: 17px !important;
    height: 17px !important;
  }

  .tb10Table {
    border: none;
  }
}

.tabs8Container {
  position: relative;
  max-height: 55px;
}

.bottomBorderOnly {
  border-width: 0 0 1px 0 !important; 
}

.tabs8Text {
  line-height: 15px;
  padding-right: 45px;
  height: 30px;
  cursor: pointer;
}

.tabs8Line {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--background-accent);
  will-change: left, width;
  transition: left 0.2s linear, width 0.2s linear;
}

@media (max-width: 1025px) {
  .tabs8Container {
    max-height: 25px;
    overflow-x: auto;

    /* IE and Edge */
    -ms-overflow-style: none;

    /* Firefox */
    scrollbar-width: none;
  }

  .tabs8Container::-webkit-scrollbar {
    display: none;
  }

  .tabs8PageWidth20Mgn {
    width: calc(100vw - 40px);
    overflow-y: auto;
  }

  .tabs8Text {
    font-size: 15px;
    font-weight: 500;
    border-radius: 25px;
    padding-right: 24px;
    height: 25px;
    -webkit-font-smoothing: auto;
  }

  .tabs8TextActive {
  }

  .tabs8Line {
    will-change: left, width;
    transition: left 0.2s linear, width 0.2s linear;
  }

 .tabs8Parent {
    min-width: max-content;
  }
}

.tg11Container {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 3px 10px;
  overflow: hidden;
  border-radius: 4px;
  min-height: 30px;
  -webkit-font-smoothing: auto;
}

.txta37Label {
  margin-bottom: 16px;
}

.txta37Area {
  resize: none;
  border-radius: 8px;
  caret-color: var(--priamryClr);
  padding: 16px;
  font-size: 16px;
}

.txta37Area:focus {
  outline: none;
}

.txta37Area::placeholder {
  color: var(--content-tertiary);
}

.txta37Normal {
  border: 2px solid var(--border-primary);
}

.txta37Error {
  border: 2px solid var(--border-negative);
}

.txta37ErrorMessage {
  margin-top: 16px;
}

.txtinput88label {
  font-size: 13px;
  letter-spacing: 0.25px;
  text-align: left;
}

.txtinput88parent {
  display: flex;
  border-bottom: solid 1px var(--border-primary);
  align-items: center;
  padding: 10px 0 5px 0;
  caret-color: var(--content-accent);
}

.removeunderline {
  border-bottom: none;
}

.txtinput88parent:focus-within {
  border-bottom: 2px solid var(--border-accent);
}

.removeunderline:focus-within {
  border-bottom: none;
}

.txtinput88input {
  border-bottom: none;
  border: none;
  font-size: 16px;
  flex-grow: 1;
  outline: 0;
  /* -webkit-box-shadow: 0 0 0px 1000px white inset; */
}

.txtinput88input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--content-secondary);
  opacity: 1;

  /* Firefox */
}

.txtinput88input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--content-secondary);
}

.txtinput88input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--content-secondary);
}

.txtinput88input:-webkit-autofill,
.txtinput88input:-webkit-autofill:hover,
.txtinput88input:-webkit-autofill:focus,
.txtinput88input:-webkit-autofill:active {
  /* box-shadow: 0 0 0 30px var(--dangerouslySetPrimaryBg) inset !important; msite change */
  -webkit-box-shadow: 0 0 0 30px var(--dangerouslySetPrimaryBg) inset !important;
  background-color: var(--dangerouslySetPrimaryBg) !important;
  -webkit-text-fill-color: var(--content-primary);
}

.txtinput88input:focus {
  border-bottom: none;
  border: none;
  outline: 0;
}

.errorText {
  color: var(--content-negative);
  font-size: 14px;
  margin-top: 3px;
  text-align: left;
}

.pad0 {
  padding: 0;
}

.infoText {
  font-size: 14px;
  margin-top: 3px;
  text-align: left;
}

.removeParentDivUnderline {
  border-bottom: none !important;
}

.txt88Width {
  width: 100%;
}

.txt88InputMUI {
  border-bottom: 1px solid var(--content-secondary) !important;
}

.txt88Bar {
  position: relative;
  display: block;
  width: 100%;
}

.txt88Bar::before,
.txt88Bar::after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: var(--background-accent);
  transition: 0.2s ease all;
}

.txt88BarError::before,
.txt88BarError::after {
  background: var(--background-negative);
}

.txt88Bar::before {
  left: 50%;
}

.txt88Bar::after {
  right: 50%;
}

.txt88Mgroup {
  position: relative;
}

.txt88MErrorText {
  font-size: 14px;
  margin-top: 3px;
  text-align: left;
}

/* .txt88MNoErrorText {
  color: var(--content-secondary);
  font-size: 14px;
  margin-top: 3px;
} */

@media (max-width: 800px) {
  .txtinput88input {
    margin-top: 2px;
    padding: 1px;
  }
  .txtinput88input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--content-secondary);
    opacity: 0.2;
  }
  .txtinput88input::placeholder,
  .txtinput88input::-webkit-input-placeholder {
    opacity: 0.2;
    color: var(--content-secondary);
  }

  .errorText {
    font-size: 12px;
    padding: 5px 0;
    margin-top: 0;
  }

  .pad0 {
    padding: 5px 0;
  }

  .infoText {
    padding: 5px 0;
    margin-top: 0;
  }

  input {
    font-size: 18px;
    display: block;
    width: 100%;
    border: none;
    -webkit-text-fill-color: var(--content-primary);
    border-bottom: 1px solid var(--content-secondary);
    background: var(--dangerouslySetPrimaryBg);
    color: var(--content-primary);
  }

  input:focus {
    outline: none;
  }

  input:-webkit-autofill,
  textarea:-webkit-autofill,
  select:-webkit-autofill {
    background-color: var(--dangerouslySetPrimaryBg) !important;
  }

  input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--dangerouslySetPrimaryBg) inset;
  }

  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
  }

  label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 2px;
    top: 10px;
    transition: 0.2s ease all;
  }

  input:focus ~ label,
  input:valid ~ label {
    top: -15px;
    font-size: 14px;
    color: var(--content-accent);
  }

  input:focus ~ .txt88Bar::before,
  input:focus ~ .txt88Bar::after {
    width: 50%;
  }
  input:-webkit-autofill ~ label {
    top: -15px;
    font-size: 14px;
    color: var(--content-accent);
  }

  input:focus ~ .highlight {
    animation: inputHighlighter 0.3s ease;
  }

  @keyframes inputHighlighter {
    from {
      background: var(--background-accent);
    }

    to {
      width: 100;
      background: transparent;
    }
  }
}

.text-input-v1-container {
  border-bottom: 2px solid var(--border-primary);
  width: 100%;
  position: relative;
}

.text-input-v1-container:focus-within {
  outline: 0;
  border: none;
}

.text-input-v1-container:after {
  content: '';
  display: block;
  margin: auto;
  width: 0px;
  background: transparent;
  transition: 0.2s ease all;
}

.text-input-v1-container:focus-within::after {
  width: 100%;
  height: 2px;
  background: var(--background-accent);
}

.text-input-v1-container.error:focus-within::after {
  background: var(--background-negative);
  height: 2px;
}

.text-input-v1-container.unstyled {
  border-bottom: none;
}

.text-input-v1-container.unstyled:after {
  display: none;
  border-bottom: none;
}

.text-input-v1-container.exclusive {
  background: var(--background-secondary);
}

.text-input-v1-primary-input {
  border: none;
  flex-grow: 1;
  outline: 0;
  padding: 0;
  color: var(--content-primary);
  background: var(--dangerouslySetPrimaryBg);
  caret-color: var(--content-accent);
}

.text-input-v1-primary-input:focus {
  outline: 0;
  border: none;
}

.text-input-v1-primary-input::placeholder {
  color: var(--content-secondary);
  -webkit-text-fill-color: var(--content-secondary);
}

.text-input-v1-primary-input:-webkit-autofill {
  box-shadow: 0 0 0 30px var(--dangerouslySetPrimaryBg) inset !important;
  background-color: var(--dangerouslySetPrimaryBg) !important;
}

.text-input-v1-primary-input.exclusive {
  background: var(--background-secondary);
  border-radius: 4px 4px 0px 0px;
}

.text-input-v1-label {
  color: var(--content-secondary);
  margin-bottom: 8px;
  text-align: left;
}

.text-input-v1-error-label {
  color: var(--content-negative);
  min-height: 24px;
  margin-top: 4px;
  margin-bottom: 4px;
  text-align: left;
}

.text-input-v1-error-label.error {
  visibility: visible;
}

.text-input-v1-error-label:not(.error) {
  visibility: hidden;
}

.text-input-v1-wrapper {
  display: flex;
  align-items: center;
}

.text-input-v1-wrapper.exclusive {
  padding: 12px;
}

.text-input-v1-trailing-vis,
.text-input-v1-leading-vis {
  height: 100%;
}

.text-input-v1-trailing-vis.exclusive,
.text-input-v1-leading-vis.exclusive {
  background: var(--background-secondary);
}
.sw348reactSwitchDivision {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--zindex900);
  margin: 0 auto;
}

.sw348reactSwitchCheckbox {
  height: 0px;
  width: 0px;
  visibility: hidden;
}

.sw348reactSwitchLabel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.5rem;           
  width: 2.5rem;
  position: relative;
  transition: background-color 0.3s;
}

.sw348reactSwitchButton{
  height: 1.25rem;
  width: 1.25rem;
  filter: 'drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15))';
}

.sw348reactSwitchLabel .sw348reactSwitchButton {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  /*same as width, height*/
  transition: all 0.3s;
}

.sw348DisabledSwitch {
  background-color: var(--content-inverse-secondary);
}
.tc341ToggleWrapper {
  min-width: 88px;
  max-width: fit-content;
  height: 32px;
  border-radius: 30px;
  justify-content: space-evenly;
  overflow: hidden;
}


.tc341Divider {
  height: 100%;
  width: 1px;
  z-index: var(--zindex300);
}


.tc341ChoiceClass {
  height: 100%;
  padding-inline: 7px;
}

#ct-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.ct-row {
  display: flex;
  justify-content: space-between;
}

.ct-group {
  flex: 1;
  margin: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ct-group:first-child {
  align-items: flex-start;
}

.ct-group:last-child {
  align-items: flex-end;
}

.ct-flex-bottom {
  justify-content: flex-end;
}

.ct-toast {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 20px;
  border-radius: 4px;
  margin: 0;
  opacity: 1;
  transition: 0.3s all ease-in-out;
  min-height: 45px;
  pointer-events: all;
}

.ct-toast:focus {
  outline: none;
}

.ct-toast svg {
  min-width: 18px;
}

.ct-cursor-pointer {
  cursor: pointer;
}

.ct-icon-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.ct-icon-loading::after {
  content: ' ';
  display: block;
  width: 14px;
  height: 14px;
  margin: 1px;
  border-radius: 50%;
  border: 2px solid var(--content-accent-secondary);
  border-color: var(--content-accent-secondary) transparent var(--content-accent-secondary) transparent;
  animation: ct-icon-loading 1.2s linear infinite;
}

@keyframes ct-icon-loading {

  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ct-text-group {
  margin: 0 15px;
}

.ct-text-group-heading {
  margin-left: 25px;
}

.ct-heading {
  font-size: 16px;
  margin: 0 0 4px 0;
  font-weight: 500;
}

.ct-text {
  font-size: 14px;
  margin-top: 2px;
  line-height: 20px;
}

@media (max-width: 768px) {

  .ct-row {
    justify-content: flex-start;
    flex-direction: column;
    margin: 7px 0;
  }

  .ct-group {
    flex: none;
    margin: 0;
  }

  .ct-toast {
    margin: 8px 15px;
    width: initial;
  }
}

.ct-close-icon {
  font-size: 20px;
  cursor: pointer;
}

.ct-type-icon {
  margin-top: 3px;
}

.sb10Toastify {
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
  position: fixed;
  z-index: var(--zindex900);
  left: 0;
  height: 0;
  font-size: 14px;
  -webkit-font-smoothing: auto;
  letter-spacing: 0.1px;
  line-height: 17px;
  overflow: hidden;
}

.sb10ToastifyShow {
  padding: 10px 12px;
  height: auto;
  display: inline-table;
}

.sb10ToastifyCloseIcn {
  min-height: 22px;
  min-width: 22px;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.sb10ToastifyPositionTop {
  top: 0;
}

.sb10ToastifyPositionBottom {
  bottom: 0;
}

.number-input-container {
  display: flex;
  align-items: center;
  background: var(--background-accent-subtle);
  width: fit-content;
  height: 30px;
  color: var(--content-accent);
  border-radius: 2px;
  padding: 0px 5px;
}

.number-input-container.warning {
  background: var(--background-warning-subtle);
  color: var(--content-warning);
}

.number-input-container.error {
  background: var(--background-negative-subtle);
  color: var(--content-negative);
}

.number-input-container.disabled {
  background: var(--background-secondary);
  color: var(--content-primary);
}

.number-input-container.unstyled {
  background: transparent;
  color: var(--content-primary);
  border: none;
}

.number-input-container.default {
  background: var(--background-accent-subtle);
  color: var(--content-accent);
}

.number-input {
  border: none;
  height: 30px;
  width: 82px;
  color: inherit;
  background: transparent;
  text-align: right;
  flex-grow: 1;
  outline: 0;
  opacity: 1;
  caret-color: var(--content-accent);
  -webkit-text-fill-color: var(--content-accent);
  padding: 0;
}

.number-input.warning {
  caret-color: var(--content-warning);
  -webkit-text-fill-color: var(--content-warning);
}

.number-input.error {
  caret-color: var(--content-negative);
  -webkit-text-fill-color: var(--content-negative);
}

.number-input.disabled {
  pointer-events: none;
  caret-color: var(--content-primary);
  -webkit-text-fill-color: var(--content-primary);
}

.number-input.unstyled {
  caret-color: var(--content-primary);
  -webkit-text-fill-color: var(--content-primary);
}

.number-input.default {
  caret-color: var(--content-accent);
  -webkit-text-fill-color: var(--content-accent);
}

.number-input.show-stepper {
  text-align: center;
  width: 60px;
}

.number-input::placeholder {
  color: var(--content-secondary);
  -webkit-text-fill-color: var(--content-secondary);
}
.group {
  position: relative;
}

.inf11Input input {
  font-size: 18px;
  padding: 10px 10px 10px 2px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--content-secondary);
  box-shadow: none;
  background: var(--dangerouslySetPrimaryBg);
  color: var(--content-primary);
}

.inf11Input input:focus {
  outline: none;
}

.inf11Input input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: var(--dangerouslySetPrimaryBg) !important;
  color: var(--content-primary);
}

.inf11Input input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--dangerouslySetPrimaryBg) inset;
  -webkit-text-fill-color: var(--content-primary);
}

.inf11Input input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

label {
  color: var(--content-secondary);
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 2px;
  top: 10px;
  transition: 0.2s ease all;
}

.inf11Input input:focus ~ label,
input:valid ~ label {
  top: -15px;
  font-size: 14px;
  color: var(--content-accent);
}

.labelError {
  color: var(--content-negative) !important;
}

.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar::before,
.bar::after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background: var(--background-accent);
  transition: 0.2s ease all;
}

.barError::before,
.barError::after {
  background: var(--background-negative);
}

.bar::before {
  left: 50%;
}

.bar::after {
  right: 50%;
}

.inf11Input input:focus ~ .bar::before,
input:focus ~ .bar::after {
  width: 50%;
}

.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.inf11Input input:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {

  from {
    background: var(--background-accent);
  }

  to {
    width: 100;
    background: transparent;
  }
}

.errorText {
  color: var(--content-negative);
  font-size: 14px;
  margin-top: 3px;
}

.noErrorText {
  font-size: 14px;
  margin-top: 3px;
}

.np15Icon {
  border-radius: 3px;
  max-width: 100%;
  position: relative;
  background-color: var(--background-accent-subtle) !important;
  color: var(--content-accent);
  padding: 4px;
  text-align: center;
}

.np15Icon:active {
  background-color: var(--background-tertiary) !important;
}

.np15Root {
  border-radius: 3px;
  display: inline-flex;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.np15Input:focus {
  outline: none;
}

.np15Input {
  width: 60px;
  height: 32px;
  font-size: 20px !important;
  font-weight: 500;
  letter-spacing: 0.33px;
  text-align: center;
}

.np15InputErr {
  color: var(--content-negative) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--background-negative-subtle) inset;
}

.np15InputWarning {
  color: var(--content-warning) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--background-warning-subtle) inset;
}

#numPicker #txtinput88 {
  width: 72px;
}

.np15InputDiv {
  display: flex;
  align-items: center;
  caret-color: var(--content-accent);
}

.addPaddingTop7 {
  padding-top: 7px;
}




.ib31IconDefault {
 width: fit-content;
 height: fit-content;
 border-radius: 50%;
 padding: 6px;
}


.ib31IconSelected {
 border-style: solid;
 border-width: 2px;
 padding: 4px;
}


.ib31IconDefault:hover {
 background-color: var(--background-tertiary);
}


.iconLoader {
 border: 2px solid var(--border-neutral);
 border-right-color: transparent;
 margin: 6px;
}
:where([data-sonner-toaster]) {
  --border-radius: 8px;
  --css-inherit: inherit;

  position: fixed;
  width: var(--width);
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  z-index: 999999;
}

:where([data-toaster-clear-all]) {
  position: fixed;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 6px;
  margin: 0;
  z-index: 999999;
}

:where([data-sonner-toast]) {
  --y: translateY(100%);
  --lift-amount: calc(var(--lift) * var(--gap));

  z-index: var(--z-index);
  position: absolute;
  opacity: 0;
  transform: var(--y);
  filter: blur(0);

  /* https://stackoverflow.com/questions/48124372/pointermove-event-not-working-with-touch-why-not */
  touch-action: none;
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
  outline: none;
  overflow-wrap: anywhere;
}

:where([data-sonner-toast]) > * {
  transition: opacity 400ms;
}

:where([data-sonner-toaster][data-x-position="right"]) {
  right: max(var(--offset), env(safe-area-inset-right));
}

:where([data-toaster-clear-all][data-x-position="right"]) {
  right: calc(var(--width) - 24px);
}

:where([data-sonner-toaster][data-x-position="left"]) {
  left: max(var(--offset), env(safe-area-inset-left));
}

:where([data-sonner-toaster][data-x-position="center"]) {
  left: 50%;
  transform: translateX(-50%);
}

:where([data-sonner-toaster][data-y-position="top"]) {
  top: max(var(--offset), env(safe-area-inset-top));
}

:where([data-toaster-clear-all][data-y-position="top"]) {
  top: calc(var(--offset) - 16px);
}

:where([data-sonner-toaster][data-y-position="bottom"]) {
  bottom: max(var(--offset), env(safe-area-inset-bottom));
}

:where([data-sonner-toast][data-styled="true"]) {
  padding: 12px 16px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px #0000001A;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
}

:where([data-sonner-toast][data-y-position="top"]) {
  --y: translateY(-100%);
  --lift: 1;
  --lift-amount: calc(1 * var(--gap));

  top: 0;
}

:where([data-sonner-toast][data-y-position="bottom"]) {
  bottom: 0;

  --y: translateY(100%);
  --lift: -1;
  --lift-amount: calc(var(--lift) * var(--gap));
}

:where([data-sonner-toast][data-mounted="true"]) {
  --y: translateY(0);

  opacity: 1;
}

:where([data-sonner-toast][data-visible="false"]) {
  opacity: 0;
  pointer-events: none;
}

:where([data-toaster-clear-all]):hover {
  color: var(--content-primary);
  background: var(--background-primary);
}

:where([data-sonner-toast]) :where([data-close-button]) {
  position: absolute;
  left: unset;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transform: translate(-3px, 3px);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}

:where([data-sonner-toast][data-expanded="false"][data-front="false"]) {
  --scale: var(--toasts-before) * 0.05 + 1;
  --y: translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));

  height: var(--front-toast-height);
}

:where([data-sonner-toast][data-mounted="true"][data-expanded="true"]) {
  --y: translateY(calc(var(--lift) * var(--offset)));

  height: var(--initial-height);
}

:where([data-sonner-toast]) :where([data-icon]) {
  display: flex;
  height: 18px;
  width: 18px;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  margin-left: -3px;
}

:where([data-sonner-toast]) :where([data-content]) {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 12px;
}

:where([data-sonner-toast]) :where([data-icon]) > * {
  flex-shrink: 0;
}

:where([data-sonner-toast]):hover :where([data-close-button]):hover {
  background: var(--background-secondary);
  border-color: var(--content-tertiary);
}

/* Needed to avoid setting hover to false when inbetween toasts */

:where([data-sonner-toast])::after {
  content: "";
  position: absolute;
  left: 0;
  height: calc(var(--gap) + 1px);
  bottom: 100%;
  width: 100%;
}

:where([data-sonner-toast][data-expanded="false"][data-front="false"][data-styled="true"]) > * {
  opacity: 0;
}

/* Bump up the height to make sure hover state doesn"t get set to false */

:where([data-sonner-toast][data-removed="true"][data-front="false"])::before {
  height: calc(var(--initial-height) + 20%);
}

@media (max-width: 600px) {

  [data-sonner-toaster] {
    --mobile-offset: 16px;

    position: fixed;
    right: var(--mobile-offset);
    left: var(--mobile-offset);
    width: 100%;
  }

  [data-sonner-toaster] [data-sonner-toast] {
    left: 0;
    right: 0;
    width: calc(100% - var(--mobile-offset) * 2);
  }

  [data-sonner-toaster][data-x-position="left"] {
    left: var(--mobile-offset);
  }

  [data-sonner-toaster][data-y-position="bottom"] {
    bottom: 20px;
  }

  [data-sonner-toaster][data-y-position="top"] {
    top: 20px;
  }

  [data-sonner-toaster][data-x-position="center"] {
    left: var(--mobile-offset);
    right: var(--mobile-offset);
    transform: none;
  }
}

[data-sonner-toast][data-type="success"] {
  border-left: 3px solid var(--border-accent);
}

[data-sonner-toast][data-type="error"] {
  border-left: 3px solid var(--border-negative);
}

[data-sonner-toast][data-type="warning"] {
  border-left: 3px solid var(--content-warning);
}

[data-sonner-toast][data-type="info"] {
  border-left: 3px solid var(--content-accent-secondary);
}

.success {
  color: var(--content-accent);
}

.info {
  color: var(--content-accent-secondary);
}

.warning {
  color: var(--content-warning);
}

.error {
  color: var(--content-negative);
}

.datarow-inputContent {
  position: relative;
  display: flex;
  height: 32px;
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
  outline-offset: -2px;
}

.datarow-inputFocused {
  outline: 2px solid var(--border-neutral);
}

.datarow-input {
  width: 100%;
  font-size: 16px;
  caret-color: var(--content-accent);
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove any focus box-shadow */
  border: none;
  text-overflow: ellipsis;
  background: transparent;
}

.datarow-prefixContainer {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.datarow-inputPrefixIcon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

input::placeholder {
  color: var(--content-tertiary);
}

.datarow-inputBorderNeutral {
  outline: 2px solid var(--border-neutral);
}

.datarow-inputBorderNegative {
  outline: 2px solid var(--border-negative);
}

.datarow-inputBorderWarning {
  outline: 2px solid var(--content-warning);
}

.datarow-inputFocused.datarow-inputBorderNegative {
  outline: 2px solid var(--border-negative); 
}

.datarow-inputFocused.datarow-inputBorderWarning {
  outline: 2px solid var(--content-warning);
}

.iconButton {
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; 
}

.iconBtnSmall {
  height: 24px;
  width: 24px;
  min-height: 24px; 
  min-width: 24px;
}

.iconBtnMedium {
  height: 32px;
  width: 32px;
  min-height: 32px; 
  min-width: 32px;
}

.iconButton:focus {
  outline: none;
}

.iconButton:focus-visible {
  outline: 2px solid var(--content-accent-secondary); 
}

.freeform-inputWrapper {
  display: flex;
  width: 100%;
  border: none;
  flex-direction: column;
  gap: 8px;
  padding: 1px;
}

.freeform-inputContent {
  position: relative;
  display: flex;
  height: 48px;
  border-radius: 4px;
  padding: 0px;
  gap: 0px;
  align-items:center ;
  outline-offset: -2px;

}

.freeform-inputFocused {
  outline: 2px solid var(--border-neutral);
}

.freeform-input {
  width: 100%;
  font-size: 16px;
  caret-color: var(--content-accent);
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove any focus box-shadow */
  border: none;
  margin-right:12px ;
  margin-left: 12px;
  background: transparent;
}

.freeform-suffixContainer {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right:8px ;
  margin-left: 8px;
  height: 100%;
  gap:12px;
}

.freeform-inputPrefixIcon,
.freeform-inputSuffixIcon,
.freeform-inputClearIcon {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.freeform-inputClearIcon {
  cursor: pointer;
}

input::placeholder {
  color: var(--content-tertiary);
}

.freeform-inputBorderNeutral {
  outline: 2px solid var(--border-neutral);
}

.freeform-inputBorderNegative {
  outline: 2px solid var(--border-negative);
}

.freeform-inputErrorText {
  display: flex;
  gap: 4px;
  align-items: center;
}

.freeform-prefixContainer{
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  height: 100%;
  margin-left:12px ;
}

.freeform-helperText {
  padding-left: 1px;

}
.inputStepper-inputContent {
  height: 32px;
  border-radius: 4px;
  padding-left: 4px;
  padding-right: 4px;
  outline-offset: -2px;
}
  
.inputStepper-inputFocused {
  outline: 2px solid var(--border-neutral);
}
  
.inputStepper-input {
  caret-color: var(--content-accent);
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Remove any focus box-shadow */
  border: none;
  text-overflow: ellipsis;
}
  
input::placeholder {
  color: var(--content-tertiary);
}
  
.inputStepper-inputBorderNeutral {
  outline: 2px solid var(--border-neutral);
}
  
.inputStepper-inputBorderNegative {
  outline: 2px solid var(--border-negative);
}
  
.inputStepper-inputBorderWarning{
  outline: 2px solid var(--content-warning);
}
.dropdown-v2 {
  display: inline-block;
}

.dropdown-v2--content {
  display: none;
  position: absolute;
  z-index: var(--zindex10001);
  transition: all 0.15s ease-out;

  /* Default bottom-right positioning */
  top: 100%;
  bottom: auto;
  left: 0;
  right: auto;
}

.dropdown-v2--active .dropdown-v2--content {
  display: block;
}

/* Vertical positioning - content appears above trigger */

.dropdown-v2.dropdown-v2--position-top .dropdown-v2--content {
  top: auto;
  bottom: 100%;
}

/* Vertical positioning - content appears below trigger */

.dropdown-v2.dropdown-v2--position-bottom .dropdown-v2--content {
  top: 100%;
  bottom: auto;
}

/* Horizontal positioning - content appears to the right of trigger */

.dropdown-v2.dropdown-v2--position-right .dropdown-v2--content {
  left: 0;
  right: auto;
}

/* Horizontal positioning - content appears to the left of trigger */

.dropdown-v2.dropdown-v2--position-left .dropdown-v2--content {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 601px) {

  .dropdown-v2--active .dropdown-v2__fadein {
    animation: ddFadeIn 0.2s normal;
  }

  /* Update animation for top positioned dropdowns */

  .dropdown-v2--position-top .dropdown-v2__fadein {
    animation: ddFadeInFromTop 0.2s normal;
  }

  /* Animation for left positioned dropdowns */

  .dropdown-v2--position-left .dropdown-v2__fadein {
    animation: ddFadeInFromLeft 0.2s normal;
  }

  /* Animation for right positioned dropdowns */

  .dropdown-v2--position-right .dropdown-v2__fadein {
    animation: ddFadeInFromRight 0.2s normal;
  }

  @keyframes ddFadeIn {

    0% {
      transform: translateY(16px);
      opacity: 0;
    }

    80% {
      opacity: 1;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes ddFadeInFromTop {

    0% {
      transform: translateY(-16px);
      opacity: 0;
    }

    80% {
      opacity: 1;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes ddFadeInFromLeft {

    0% {
      transform: translateX(-16px);
      opacity: 0;
    }

    80% {
      opacity: 1;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes ddFadeInFromRight {

    0% {
      transform: translateX(16px);
      opacity: 0;
    }

    80% {
      opacity: 1;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
}

.radioCo11BoxReverse {
  justify-content: space-between !important;
}

.cbg29ParentDiv {
  justify-content: flex-end !important;
}

/* Slider */

.carousel14Slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.carousel14List {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.carousel14List:focus {
  outline: none;
}

.carousel14List.dragging {
  cursor: pointer;
  cursor: hand;
}

.carousel14Slider .carousel14Track,
.carousel14Slider .carousel14List {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.carousel14Track {
  position: relative;
  top: 0;
  left: 0;

  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.carousel14Track:before,
.carousel14Track:after {
  display: table;
  content: '';
}

.carousel14Track:after {
  clear: both;
}

.carousel14Loading .carousel14Track {
  visibility: hidden;
}

.carousel14Slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .carousel14Slide {
  float: right;
}

.carousel14Slide img {
  display: block;
}

.carousel14Slide.carousel14Loading img {
  display: none;
}

.carousel14Slide.dragging img {
  pointer-events: none;
}

.carousel14Initialized .carousel14Slide {
  display: block;
}

.carousel14Loading .carousel14Slide {
  visibility: hidden;
}

.carousel14Vertical .carousel14Slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.carousel14Arrow.carousel14Hidden {
  display: none;
}

/* Arrows */

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

.carousel14Prev,
.carousel14Next {
  position: absolute;
  cursor: pointer;
  top: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 0.6;
  background: var(--content-secondary);
  z-index: 1;
  border-radius: 50%;
  border: 1px transparent;
}

.carousel14Prev:hover,
.carousel14Prev:focus,
.carousel14Next:hover,
.carousel14Next:focus
{
  outline: none;
}

.carousel14Prev:hover:before,
.carousel14Prev:focus:before,
.carousel14Next:hover:before,
.carousel14Next:focus:before {
  opacity: 1;
}

.carousel14Prev.carousel14Disabled,
.carousel14Next.carousel14Disabled {
  /* opacity: 0.25;
  cursor: not-allowed; */
  display: none;
}

.carousel14Prev:before,
.carousel14Next:before
{
  font-size: 20px;
  line-height: 1;

  opacity: 0.75;
  color: var(--content-secondary);;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.carousel14Prev {
  left: -16px;
}

.carousel14Next {
  right: -16px;
}

/* Dots */

.carousel-dotted.carousel14Slider {
  margin-bottom: 30px;
}

.carousel14Dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}

.carousel14Dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}

.carousel14Dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.carousel14Dots li button:hover,
.carousel14Dots li button:focus {
  outline: none;
}

.carousel14Dots li button:hover:before,
.carousel14Dots li button:focus:before {
  opacity: 1;
}

.carousel14Dots li button:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: '•';
  text-align: center;

  opacity: 0.25;
  color: var(--content-primary);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.carousel14Dots li.carousel14Active button:before {
    opacity: 0.75;
    color: var(--content-primary);
}

@media screen and (max-width: 768px) {
  .carousel14List {
    max-width: 620px;
  }
}

.carousel,
.carousel__main {
  overflow: inherit;
  height: inherit;
}

.carousel__dot {
  background: var(--content-secondary) !important;
  transition: width 0.3s ease-in, background 0.2s ease-out;
}

.carousel__dot--active {
  width: 12px !important;
  background: var(--background-accent) !important;
}

.carousel-item-hidden {
  display: none;
}

.common171CarouselTitle {
  position: absolute;
  width: 100vw;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 57px;
  font-size: 20px;
  font-weight: 500;
}

.common171CarouselDesc {
  position: absolute;
  margin: 0 auto;
  width: 100vw;
  left: 0;
  right: 0;
  bottom: 33px;
  font-size: 13px;
  font-weight: 400;
}

.common171CarouselImg {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 140px;
}

.mn12Box {
  padding: 14px;
  width: 220px;
}

.mn12YearRow {
  justify-content: space-between;
}

.mn12Month {
  text-align: center;
  min-width: 33%;
}

.mn12MonthText {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  justify-content: center;
  margin: 3px auto;
}

.mn12MonthBackHover:hover{
  background-color: var(--color-bg-calendar-hover);
}

.mn12MonthBox {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 12px;
}

.mn12YearIcon {
  font-size: 22px !important;
}

.mn12Box{
    --color-bg-calendar-hover: var(--bg-transparent-hover);
}
.cc12Box {
  width: 300px;
  padding: 15px;
  cursor: auto;
}

.cc12YearBox {
  justify-content: space-between;
}

.cc12WeekNameBox {
  justify-content: space-between;
  margin-top: 14px;
  text-align: center;
}

.cc12WeekName {
  flex-basis: 14.285%;
}

.cc12DateBlock {
  flex-basis: 14.285%;
}

.cc12DateSelected {
  background: var(--background-accent);
}

.cc12Date {
  width: 32px;
  height: 32px;
  justify-content: center;
  margin: 0 auto;
}

.cc12DateNotSelectedHover:hover{
  background-color: var(--color-bg-calendar-hover);
}

.cc12DateRow {
  justify-content: space-between;
  margin-top: 8px;
}

.cc12Year {
  width: 100px;
  text-align: center;
}

.cc12DisableDate {
  opacity: 0.2;
}

.cc12Box{
    --color-bg-calendar-hover: var(--bg-transparent-hover);
}