/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.scrollbar-container {
  position: relative;
  height: 100%; }
@charset "UTF-8";
/* Animate css */
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}
.animate__animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both;
}
.animate__animated.animate__infinite {
    animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
    animation-delay: 1s;
    animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
    animation-delay: 3s;
    animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
    animation-delay: 5s;
    animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
    animation-duration: 0.5s;
    animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
    animation-duration: 0.8s;
    animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }
    .animate__animated[class*='Out'] {
        opacity: 0;
    }
}
@keyframes bounce {
    0%,
    20%,
    53%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}
.animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}
@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
.animate__flash {
    animation-name: flash;
}
@keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
    0% {
        transform: scaleX(1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__rubberBand {
    animation-name: rubberBand;
}
@keyframes shakeX {
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
}
.animate__shakeX {
    animation-name: shakeX;
}
@keyframes shakeY {
    0%,
    to {
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(0, -10px, 0);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(0, 10px, 0);
    }
}
.animate__shakeY {
    animation-name: shakeY;
}
@keyframes headShake {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}
.animate__headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    to {
        transform: rotate(0deg);
    }
}
.animate__swing {
    transform-origin: top center;
    animation-name: swing;
}
@keyframes tada {
    0% {
        transform: scaleX(1);
    }
    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        transform: scaleX(1);
    }
}
.animate__tada {
    animation-name: tada;
}
@keyframes wobble {
    0% {
        transform: translateZ(0);
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__wobble {
    animation-name: wobble;
}
@keyframes jello {
    0%,
    11.1%,
    to {
        transform: translateZ(0);
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.animate__jello {
    animation-name: jello;
    transform-origin: center;
}
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}
.animate__heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-duration: calc(var(--animate-duration) * 1.3);
    animation-timing-function: ease-in-out;
}
@keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInDown {
    animation-name: backInDown;
}
@keyframes backInLeft {
    0% {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInLeft {
    animation-name: backInLeft;
}
@keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInRight {
    animation-name: backInRight;
}
@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInUp {
    animation-name: backInUp;
}
@keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(700px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutDown {
    animation-name: backOutDown;
}
@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutLeft {
    animation-name: backOutLeft;
}
@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutRight {
    animation-name: backOutRight;
}
@keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }
    to {
        transform: translateY(-700px) scale(0.7);
        opacity: 0.7;
    }
}
.animate__backOutUp {
    animation-name: backOutUp;
}
@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
.animate__bounceIn {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceIn;
}
@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInDown {
    animation-name: bounceInDown;
}
@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInLeft {
    animation-name: bounceInLeft;
}
@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    75% {
        transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    90% {
        transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInRight {
    animation-name: bounceInRight;
}
@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    75% {
        transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__bounceInUp {
    animation-name: bounceInUp;
}
@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.animate__bounceOut {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceOut;
}
@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0) scaleY(3);
    }
}
.animate__bounceOutDown {
    animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutLeft {
    animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutRight {
    animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0) scaleY(3);
    }
}
.animate__bounceOutUp {
    animation-name: bounceOutUp;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.animate__fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInDown {
    animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInDownBig {
    animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInLeft {
    animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInLeftBig {
    animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInRight {
    animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInRightBig {
    animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInUp {
    animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInUpBig {
    animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInTopLeft {
    animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInTopRight {
    animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__fadeInBottomRight {
    animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.animate__fadeOut {
    animation-name: fadeOut;
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}
.animate__fadeOutDown {
    animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}
.animate__fadeOutDownBig {
    animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
.animate__fadeOutLeft {
    animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}
.animate__fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}
.animate__fadeOutRight {
    animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}
.animate__fadeOutRightBig {
    animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
.animate__fadeOutUp {
    animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
.animate__fadeOutUpBig {
    animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, -100%, 0);
    }
}
.animate__fadeOutTopLeft {
    animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, -100%, 0);
    }
}
.animate__fadeOutTopRight {
    animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 100%, 0);
    }
}
.animate__fadeOutBottomRight {
    animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 100%, 0);
    }
}
.animate__fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft;
}
@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
    }
    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
    }
}
.animate__animated.animate__flip {
    backface-visibility: visible;
    animation-name: flip;
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.animate__flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX;
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.animate__flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY;
}
@keyframes flipOutX {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
.animate__flipOutX {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: flipOutX;
    backface-visibility: visible !important;
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
.animate__flipOutY {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    backface-visibility: visible !important;
    animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(-5deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__lightSpeedInRight {
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
    0% {
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(5deg);
    }
    to {
        transform: translateZ(0);
    }
}
.animate__lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.animate__lightSpeedOutRight {
    animation-name: lightSpeedOutRight;
    animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
}
.animate__lightSpeedOutLeft {
    animation-name: lightSpeedOutLeft;
    animation-timing-function: ease-in;
}
@keyframes rotateIn {
    0% {
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateIn {
    animation-name: rotateIn;
    transform-origin: center;
}
@keyframes rotateInDownLeft {
    0% {
        transform: rotate(-45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: left bottom;
}
@keyframes rotateInDownRight {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: left bottom;
}
@keyframes rotateInUpRight {
    0% {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0);
        opacity: 1;
    }
}
.animate__rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: right bottom;
}
@keyframes rotateOut {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(200deg);
        opacity: 0;
    }
}
.animate__rotateOut {
    animation-name: rotateOut;
    transform-origin: center;
}
@keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(45deg);
        opacity: 0;
    }
}
.animate__rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.animate__rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.animate__rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
    0% {
        opacity: 1;
    }
    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}
.animate__rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: right bottom;
}
@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        transform: rotate(80deg);
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        transform: rotate(60deg);
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.animate__hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
    animation-name: hinge;
    transform-origin: top left;
}
@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    50% {
        transform: rotate(-10deg);
    }
    70% {
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate__jackInTheBox {
    animation-name: jackInTheBox;
}
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.animate__rollIn {
    animation-name: rollIn;
}
@keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
.animate__rollOut {
    animation-name: rollOut;
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.animate__zoomIn {
    animation-name: zoomIn;
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInDown {
    animation-name: zoomInDown;
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInLeft {
    animation-name: zoomInLeft;
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInRight {
    animation-name: zoomInRight;
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomInUp {
    animation-name: zoomInUp;
}
@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.animate__zoomOut {
    animation-name: zoomOut;
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomOutDown {
    animation-name: zoomOutDown;
    transform-origin: center bottom;
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
}
.animate__zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: left center;
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
    }
}
.animate__zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: right center;
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.animate__zoomOutUp {
    animation-name: zoomOutUp;
    transform-origin: center bottom;
}
@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInDown {
    animation-name: slideInDown;
}
@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInLeft {
    animation-name: slideInLeft;
}
@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInRight {
    animation-name: slideInRight;
}
@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}
.animate__slideInUp {
    animation-name: slideInUp;
}
@keyframes slideOutDown {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
.animate__slideOutDown {
    animation-name: slideOutDown;
}
@keyframes slideOutLeft {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}
.animate__slideOutLeft {
    animation-name: slideOutLeft;
}
@keyframes slideOutRight {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}
.animate__slideOutRight {
    animation-name: slideOutRight;
}
@keyframes slideOutUp {
    0% {
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}
.animate__slideOutUp {
    animation-name: slideOutUp;
}
/* ! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}
::backdrop{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}
.container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 640px){
    .container{
        max-width: 640px;
    }
}
@media (min-width: 768px){
    .container{
        max-width: 768px;
    }
}
@media (min-width: 1024px){
    .container{
        max-width: 1024px;
    }
}
@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}
@media (min-width: 1536px){
    .container{
        max-width: 1536px;
    }
}
.form-input,.form-textarea,.form-select,.form-multiselect{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0px;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-shadow: 0 0 #0000;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder{
    color: #6b7280;
    opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder{
    color: #6b7280;
    opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper{
    padding: 0;
}
.form-input::-webkit-date-and-time-value{
    min-height: 1.5em;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field{
    padding-top: 0;
    padding-bottom: 0;
}
.form-select{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
}
.form-checkbox,.form-radio{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    --tw-shadow: 0 0 #0000;
}
.form-checkbox{
    border-radius: 0px;
}
.form-radio{
    border-radius: 100%;
}
.form-checkbox:focus,.form-radio:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #2563eb;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.form-checkbox:checked,.form-radio:checked{
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.form-checkbox:checked{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
.form-radio:checked{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus{
    border-color: transparent;
    background-color: currentColor;
}
.form-checkbox:indeterminate{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus{
    border-color: transparent;
    background-color: currentColor;
}
html{
    scroll-behavior: smooth;
}
body{
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity));
    font-family: Nunito, sans-serif;
}
body.dark{
    --tw-bg-opacity: 1;
    background-color: rgb(6 8 24 / var(--tw-bg-opacity));
}
/* Panel */
/* Navbar */
.navbar-sticky header,
    .navbar-floating header{
    position: sticky;
    top: 0px;
    z-index: 20;
}
.navbar-floating header{
    background-color: rgb(250 250 250 / 0.9);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
}
:is(.dark .navbar-floating header){
    background-color: rgb(6 8 24 / 0.9);
}
.navbar-floating header > div .horizontal-menu{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* Sidebar */
.sidebar:hover .nav-item > a{
    width: auto;
}
.sidebar .nav-item > button,
    .sidebar .nav-item > a{
    margin-bottom: 0.25rem;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 0.375rem;
    padding: 0.625rem;
    --tw-text-opacity: 1;
    color: rgb(80 102 144 / var(--tw-text-opacity));
}
.sidebar .nav-item > button:hover,
    .sidebar .nav-item > a:hover{
    background-color: rgb(0 0 0 / 0.08);
    --tw-text-opacity: 1;
    color: rgb(14 23 38 / var(--tw-text-opacity));
}
:is(.dark .sidebar .nav-item > button:hover),:is(.dark 
    .sidebar .nav-item > a:hover){
    --tw-bg-opacity: 1;
    background-color: rgb(24 31 50 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
.sidebar .nav-item > button.active,
    .sidebar .nav-item > a.active{
    background-color: rgb(0 0 0 / 0.08);
    --tw-text-opacity: 1;
    color: rgb(14 23 38 / var(--tw-text-opacity));
}
:is(.dark .sidebar .nav-item > button.active),:is(.dark 
    .sidebar .nav-item > a.active){
    --tw-bg-opacity: 1;
    background-color: rgb(24 31 50 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
:is(.dark .sidebar .nav-item > button.active > div > span),:is(.dark 
    .sidebar .nav-item > a.active > div > span){
    --tw-text-opacity: 1 !important;
    color: rgb(136 142 168 / var(--tw-text-opacity)) !important;
}
.sidebar ul.sub-menu li button,
    .sidebar ul.sub-menu li a{
    display: flex;
    align-items: center;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.sidebar ul.sub-menu li button::before,
    .sidebar ul.sub-menu li a::before{
    height: 0.125rem;
    width: 0.5rem;
    border-radius: 0.25rem;
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.sidebar ul.sub-menu li button:hover,
    .sidebar ul.sub-menu li a:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
.sidebar ul.sub-menu li button:hover::before,
    .sidebar ul.sub-menu li a:hover::before{
    content: var(--tw-content) !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(67 97 238 / var(--tw-bg-opacity)) !important;
}
:is([dir="ltr"] .sidebar ul.sub-menu li button)::before,:is([dir="ltr"] 
    .sidebar ul.sub-menu li a)::before{
    content: var(--tw-content);
    margin-right: 0.5rem;
}
:is([dir="rtl"] .sidebar ul.sub-menu li button)::before,:is([dir="rtl"] 
    .sidebar ul.sub-menu li a)::before{
    content: var(--tw-content);
    margin-left: 0.5rem;
}
:is(.dark .sidebar ul.sub-menu li button)::before,:is(.dark 
    .sidebar ul.sub-menu li a)::before{
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}
:is(.dark .sidebar ul.sub-menu li button:hover),:is(.dark 
    .sidebar ul.sub-menu li a:hover){
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
.sidebar ul.sub-menu li button.active,
    .sidebar ul.sub-menu li a.active{
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
.sidebar ul.sub-menu li button.active::before,
    .sidebar ul.sub-menu li a.active::before{
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(67 97 238 / var(--tw-bg-opacity));
}
.sidebar .nav-item a div:first-child svg,
    .sidebar .nav-item button div:first-child svg{
    height: 1.25rem;
    width: 1.25rem;
    color: rgb(14 23 38 / 0.5);
}
:is(.dark .sidebar .nav-item a div:first-child svg),:is(.dark 
    .sidebar .nav-item button div:first-child svg){
    color: rgb(255 255 255 / 0.5);
}
.main-container .main-content{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
@media (min-width: 1024px){
    :is([dir="ltr"] .main-container .main-content){
        margin-left: 260px;
    }
    :is([dir="rtl"] .main-container .main-content){
        margin-right: 260px;
    }
}
/* Horizontal layouts */
.horizontal .horizontal-menu{
    display: none;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 1024px){
    .horizontal .horizontal-menu{
        display: flex;
    }
}
.horizontal .horizontal-logo{
    display: flex;
}
:is([dir="ltr"] .horizontal .main-container .main-content){
    margin-left: 0px;
}
:is([dir="rtl"] .horizontal .main-container .main-content){
    margin-right: 0px;
}
:is([dir="ltr"] .horizontal .sidebar){
    left: -260px;
}
:is([dir="rtl"] .horizontal .sidebar){
    right: -260px;
}
:is([dir="ltr"] .horizontal.toggle-sidebar .sidebar){
    left: 0px;
}
:is([dir="rtl"] .horizontal.toggle-sidebar .sidebar){
    right: 0px;
}
@media (min-width: 1024px){
    :is([dir="ltr"] .horizontal.toggle-sidebar .sidebar){
        left: -260px;
    }
    :is([dir="rtl"] .horizontal.toggle-sidebar .sidebar){
        right: -260px;
    }
}
.horizontal .nav-item a div:first-child svg,
    .horizontal .nav-item button div:first-child svg{
    height: 1.25rem;
    width: 1.25rem;
    color: rgb(14 23 38 / 0.5);
}
:is(.dark .horizontal .nav-item a div:first-child svg),:is(.dark 
    .horizontal .nav-item button div:first-child svg){
    color: rgb(255 255 255 / 0.5);
}
.horizontal .dark .nav-item a div:first-child svg,
    .dark.horizontal .nav-item a div:first-child svg,
    .horizontal .dark .nav-item button div:first-child svg,
    .dark.horizontal .nav-item button div:first-child svg{
    color: rgb(255 255 255 / 0.5);
}
.horizontal-menu .nav-link{
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.horizontal-menu .nav-link:hover{
    background-color: rgb(0 0 0 / 0.08);
    --tw-text-opacity: 1;
    color: rgb(14 23 38 / var(--tw-text-opacity));
}
:is(.dark .horizontal-menu .nav-link:hover){
    --tw-bg-opacity: 1;
    background-color: rgb(24 31 50 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
@media (min-width: 1280px){
    .horizontal-menu .nav-link{
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.horizontal-menu .nav-link.active{
    background-color: rgb(0 0 0 / 0.08);
    --tw-text-opacity: 1;
    color: rgb(14 23 38 / var(--tw-text-opacity));
}
:is(.dark .horizontal-menu .nav-link.active){
    --tw-bg-opacity: 1;
    background-color: rgb(24 31 50 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
.horizontal-menu ul.sub-menu{
    position: absolute;
    top: 100%;
    z-index: 10;
    display: none;
    min-width: 180px;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 0px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    --tw-text-opacity: 1;
    color: rgb(59 63 92 / var(--tw-text-opacity));
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(.dark .horizontal-menu ul.sub-menu){
    --tw-bg-opacity: 1;
    background-color: rgb(27 46 75 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
.horizontal-menu ul.sub-menu a,
    .horizontal-menu ul.sub-menu button{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.horizontal-menu ul.sub-menu a:hover,
    .horizontal-menu ul.sub-menu button:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
:is(.dark .horizontal-menu ul.sub-menu a:hover),:is(.dark 
    .horizontal-menu ul.sub-menu button:hover){
    background-color: rgb(67 97 238 / 0.1);
}
.horizontal-menu ul.sub-menu a.active,
    .horizontal-menu ul.sub-menu button.active{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
:is(.dark .horizontal-menu ul.sub-menu a.active),:is(.dark 
    .horizontal-menu ul.sub-menu button.active){
    background-color: rgb(67 97 238 / 0.1);
}
.horizontal-menu > li.nav-item:hover > ul.sub-menu,
    .horizontal-menu > li.nav-item > ul.sub-menu > li:hover > ul{
    display: block;
}
/* Vertical layouts */
.vertical.toggle-sidebar .horizontal-logo,
    .vertical.toggle-sidebar .collapse-icon{
    display: flex;
}
:is([dir="ltr"] .vertical.toggle-sidebar .main-container .main-content){
    margin-left: 0px;
}
:is([dir="rtl"] .vertical.toggle-sidebar .main-container .main-content){
    margin-right: 0px;
}
:is([dir="ltr"] .vertical .sidebar){
    left: -260px;
}
:is([dir="rtl"] .vertical .sidebar){
    right: -260px;
}
@media (min-width: 1024px){
    :is([dir="ltr"] .vertical .sidebar){
        left: 0px;
    }
    :is([dir="rtl"] .vertical .sidebar){
        right: 0px;
    }
}
:is([dir="ltr"] .vertical.toggle-sidebar .sidebar){
    left: 0px;
}
:is([dir="rtl"] .vertical.toggle-sidebar .sidebar){
    right: 0px;
}
@media (min-width: 1024px){
    :is([dir="ltr"] .vertical.toggle-sidebar .sidebar){
        left: -260px;
    }
    :is([dir="rtl"] .vertical.toggle-sidebar .sidebar){
        right: -260px;
    }
}
/* Collapsible vertical layouts */
.collapsible-vertical .sidebar:hover{
    width: 260px;
}
:is([dir="ltr"] .collapsible-vertical .sidebar){
    left: -260px;
}
:is([dir="rtl"] .collapsible-vertical .sidebar){
    right: -260px;
}
@media (min-width: 1024px){
    .collapsible-vertical .sidebar{
        width: 70px;
    }
    :is([dir="ltr"] .collapsible-vertical .sidebar){
        left: 0px;
    }
    :is([dir="rtl"] .collapsible-vertical .sidebar){
        right: 0px;
    }
}
:is([dir="ltr"] .collapsible-vertical.toggle-sidebar .sidebar){
    left: 0px;
}
:is([dir="rtl"] .collapsible-vertical.toggle-sidebar .sidebar){
    right: 0px;
}
@media (min-width: 1024px){
    .collapsible-vertical.toggle-sidebar .sidebar{
        width: 260px;
    }
}
.collapsible-vertical.toggle-sidebar .sidebar .nav-item > a{
    width: auto;
}
@media (min-width: 1024px){
    .collapsible-vertical.toggle-sidebar .main-content{
        width: calc(100% - 260px);
    }
    :is([dir="ltr"] .collapsible-vertical.toggle-sidebar .main-content){
        margin-left: 260px;
    }
    :is([dir="rtl"] .collapsible-vertical.toggle-sidebar .main-content){
        margin-right: 260px;
    }
    .collapsible-vertical .sidebar .sub-menu{
        display: none;
    }
}
.collapsible-vertical .sidebar:hover .sub-menu,
    .collapsible-vertical .sidebar:hover .sub-menu.recent-submenu,
    .collapsible-vertical.toggle-sidebar .sidebar .sub-menu{
    display: block;
}
@media (min-width: 1024px){
    .collapsible-vertical .main-content{
        width: calc(100% - 70px);
    }
    :is([dir="ltr"] .collapsible-vertical .main-content){
        margin-left: 70px;
    }
    :is([dir="rtl"] .collapsible-vertical .main-content){
        margin-right: 70px;
    }
}
.collapsible-vertical .sidebar .collapse-icon,
    .collapsible-vertical .main-logo > span{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
@media (min-width: 1024px){
    .collapsible-vertical .sidebar .collapse-icon,
    .collapsible-vertical .main-logo > span{
        opacity: 0;
    }
}
.collapsible-vertical .sidebar:hover .collapse-icon,
    .collapsible-vertical.toggle-sidebar .collapse-icon,
    .collapsible-vertical .sidebar:hover .main-logo > span,
    .collapsible-vertical.toggle-sidebar .main-logo > span{
    transition-duration: 500ms;
}
@media (min-width: 1024px){
    .collapsible-vertical .sidebar:hover .collapse-icon,
    .collapsible-vertical.toggle-sidebar .collapse-icon,
    .collapsible-vertical .sidebar:hover .main-logo > span,
    .collapsible-vertical.toggle-sidebar .main-logo > span{
        opacity: 1;
    }
}
.collapsible-vertical.toggle-sidebar .sidebar .collapse-icon{
    display: flex;
    --tw-rotate: 0deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.collapsible-vertical .sidebar:hover .collapse-icon{
    display: flex;
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.collapsible-vertical .sidebar ul > h2 span{
    display: none;
    white-space: nowrap;
}
.collapsible-vertical .sidebar ul > h2 svg{
    display: block;
}
.collapsible-vertical .sidebar:hover ul > h2 span,
    .collapsible-vertical.toggle-sidebar .sidebar ul > h2 span{
    display: inline;
}
.collapsible-vertical .sidebar:hover ul > h2 svg,
    .collapsible-vertical.toggle-sidebar .sidebar ul > h2 svg{
    display: none;
}
/* boxed-layout */
.boxed-layout{
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
}
.boxed-layout.vertical .sidebar,
    .boxed-layout.collapsible-vertical .sidebar{
    overflow: hidden;
}
@media (min-width: 1024px){
    :is([dir="ltr"] .boxed-layout.vertical .sidebar),:is([dir="ltr"] 
    .boxed-layout.collapsible-vertical .sidebar){
        left: auto;
    }
    :is([dir="rtl"] .boxed-layout.vertical .sidebar),:is([dir="rtl"] 
    .boxed-layout.collapsible-vertical .sidebar){
        right: auto;
    }
    .boxed-layout.vertical.toggle-sidebar .sidebar{
        width: 0px;
    }
}
/* Buttons */
.btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border-width: 1px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    --tw-shadow: 0 10px 20px -10px;
    --tw-shadow-colored: 0 10px 20px -10px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.btn:hover{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.btn[disabled]{
    cursor: not-allowed;
    opacity: 0.6;
}
.btn-primary{
    --tw-border-opacity: 1;
    border-color: rgb(67 97 238 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(67 97 238 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    --tw-shadow-color: rgb(67 97 238 / 0.6);
    --tw-shadow: var(--tw-shadow-colored);
}
.btn-outline-primary{
    --tw-border-opacity: 1;
    border-color: rgb(67 97 238 / var(--tw-border-opacity));
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.btn-outline-primary:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(67 97 238 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
/* Badge */
.badge{
    position: relative;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    border-radius: 0.25rem;
    border-width: 1px;
    border-color: transparent;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
/* Form */
.form-input,
    .form-textarea,
    .form-select,
    .form-multiselect{
    width: 100%;
    border-radius: 0.375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(224 230 237 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(14 23 38 / var(--tw-text-opacity));
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
}
.form-input:focus,
    .form-textarea:focus,
    .form-select:focus,
    .form-multiselect:focus{
    --tw-border-opacity: 1;
    border-color: rgb(67 97 238 / var(--tw-border-opacity));
    --tw-ring-color: transparent;
}
:is(.dark .form-input),:is(.dark 
    .form-textarea),:is(.dark 
    .form-select),:is(.dark 
    .form-multiselect){
    --tw-border-opacity: 1;
    border-color: rgb(23 38 60 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(18 30 50 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
:is(.dark .form-input:focus),:is(.dark 
    .form-textarea:focus),:is(.dark 
    .form-select:focus),:is(.dark 
    .form-multiselect:focus){
    --tw-border-opacity: 1;
    border-color: rgb(67 97 238 / var(--tw-border-opacity));
}
label{
    margin-bottom: 0.375rem;
    display: block;
    font-weight: 600;
}
[dir='rtl'] select {
        background-position: left 0.5rem center;
    }
.has-error .form-input,
    .has-error .form-textarea,
    .has-error .form-select,
    .has-error .form-multiselect,
    .has-error .multiselect__tags{
    --tw-border-opacity: 1;
    border-color: rgb(231 81 90 / var(--tw-border-opacity));
    background-color: rgb(231 81 90 / 0.08);
    --tw-text-opacity: 1;
    color: rgb(231 81 90 / var(--tw-text-opacity));
}
.has-error .form-input::-moz-placeholder, .has-error .form-textarea::-moz-placeholder, .has-error .form-select::-moz-placeholder, .has-error .form-multiselect::-moz-placeholder, .has-error .multiselect__tags::-moz-placeholder{
    color: rgb(231 81 90 / 0.7);
}
.has-error .form-input::placeholder,
    .has-error .form-textarea::placeholder,
    .has-error .form-select::placeholder,
    .has-error .form-multiselect::placeholder,
    .has-error .multiselect__tags::placeholder{
    color: rgb(231 81 90 / 0.7);
}
.has-error .form-input:focus,
    .has-error .form-textarea:focus,
    .has-error .form-select:focus,
    .has-error .form-multiselect:focus,
    .has-error .multiselect__tags:focus{
    --tw-border-opacity: 1;
    border-color: rgb(231 81 90 / var(--tw-border-opacity));
}
.has-error .multiselect__tags:hover,
    .has-error .form-checkbox{
    --tw-border-opacity: 1;
    border-color: rgb(231 81 90 / var(--tw-border-opacity));
}
.has-success .form-input,
    .has-success .form-textarea,
    .has-success .form-select,
    .has-success .form-multiselect,
    .has-success .multiselect__tags{
    --tw-border-opacity: 1;
    border-color: rgb(0 171 85 / var(--tw-border-opacity));
    background-color: rgb(0 171 85 / 0.08);
    --tw-text-opacity: 1;
    color: rgb(0 171 85 / var(--tw-text-opacity));
}
.has-success .form-input::-moz-placeholder, .has-success .form-textarea::-moz-placeholder, .has-success .form-select::-moz-placeholder, .has-success .form-multiselect::-moz-placeholder, .has-success .multiselect__tags::-moz-placeholder{
    color: rgb(0 171 85 / 0.7);
}
.has-success .form-input::placeholder,
    .has-success .form-textarea::placeholder,
    .has-success .form-select::placeholder,
    .has-success .form-multiselect::placeholder,
    .has-success .multiselect__tags::placeholder{
    color: rgb(0 171 85 / 0.7);
}
.has-success .form-input:focus,
    .has-success .form-textarea:focus,
    .has-success .form-select:focus,
    .has-success .form-multiselect:focus,
    .has-success .multiselect__tags:focus{
    --tw-border-opacity: 1;
    border-color: rgb(0 171 85 / var(--tw-border-opacity));
}
/* checkbox & radio */
.form-radio,
    .form-checkbox{
    height: 1.25rem;
    width: 1.25rem;
    cursor: pointer;
    border-radius: 0.25rem;
    border-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgb(224 230 237 / var(--tw-border-opacity));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
    --tw-shadow: 0 0 #0000 !important;
    --tw-shadow-colored: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
    --tw-ring-offset-width: 0px !important;
}
.form-radio:checked,
    .form-checkbox:checked{
    background-size: 90% 90%;
}
.form-radio:disabled,
    .form-checkbox:disabled{
    cursor: not-allowed;
    --tw-bg-opacity: 1;
    background-color: rgb(238 238 238 / var(--tw-bg-opacity));
}
:is([dir="ltr"] .form-radio),:is([dir="ltr"] 
    .form-checkbox){
    margin-right: 0.375rem;
}
:is([dir="rtl"] .form-radio),:is([dir="rtl"] 
    .form-checkbox){
    margin-left: 0.375rem;
}
:is(.dark .form-radio),:is(.dark 
    .form-checkbox){
    --tw-border-opacity: 1;
    border-color: rgb(37 59 92 / var(--tw-border-opacity));
}
:is(.dark .form-radio:checked),:is(.dark 
    .form-checkbox:checked){
    border-color: transparent;
}
:is(.dark .form-radio:disabled),:is(.dark 
    .form-checkbox:disabled){
    --tw-bg-opacity: 1;
    background-color: rgb(27 46 75 / var(--tw-bg-opacity));
}
.form-checkbox.outline-primary:checked{
    --tw-border-opacity: 1;
    border-color: rgb(67 97 238 / var(--tw-border-opacity));
    background-color: transparent;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%234361ee' xmlns='http://www.w3.org/2000/svg'><path d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/></svg>");
}
.form-checkbox.outline-secondary:checked{
    --tw-border-opacity: 1;
    border-color: rgb(128 93 202 / var(--tw-border-opacity));
    background-color: transparent;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23805dca' xmlns='http://www.w3.org/2000/svg'><path d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/></svg>");
}
.form-checkbox.outline-success:checked{
    --tw-border-opacity: 1;
    border-color: rgb(0 171 85 / var(--tw-border-opacity));
    background-color: transparent;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%2300ab55' xmlns='http://www.w3.org/2000/svg'><path d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/></svg>");
}
.form-checkbox.outline-danger:checked{
    --tw-border-opacity: 1;
    border-color: rgb(231 81 90 / var(--tw-border-opacity));
    background-color: transparent;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23e7515a' xmlns='http://www.w3.org/2000/svg'><path d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/></svg>");
}
.form-checkbox.outline-warning:checked{
    --tw-border-opacity: 1;
    border-color: rgb(226 160 63 / var(--tw-border-opacity));
    background-color: transparent;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23e2a03f' xmlns='http://www.w3.org/2000/svg'><path d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/></svg>");
}
.form-checkbox.outline-info:checked{
    --tw-border-opacity: 1;
    border-color: rgb(33 150 243 / var(--tw-border-opacity));
    background-color: transparent;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%232196f3' xmlns='http://www.w3.org/2000/svg'><path d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/></svg>");
}
.form-checkbox.outline-dark:checked{
    --tw-border-opacity: 1;
    border-color: rgb(59 63 92 / var(--tw-border-opacity));
    background-color: transparent;
        background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%233b3f5c' xmlns='http://www.w3.org/2000/svg'><path d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/></svg>");
}
.form-radio{
    border-radius: 9999px;
}
.form-radio.outline-primary:checked{
    --tw-border-opacity: 1;
    border-color: rgb(67 97 238 / var(--tw-border-opacity));
    background-color: transparent;
    background-image: none;
}
.form-radio.outline-secondary:checked{
    --tw-border-opacity: 1;
    border-color: rgb(128 93 202 / var(--tw-border-opacity));
    background-color: transparent;
    background-image: none;
}
.form-radio.outline-success:checked{
    --tw-border-opacity: 1;
    border-color: rgb(0 171 85 / var(--tw-border-opacity));
    background-color: transparent;
    background-image: none;
}
.form-radio.outline-danger:checked{
    --tw-border-opacity: 1;
    border-color: rgb(231 81 90 / var(--tw-border-opacity));
    background-color: transparent;
    background-image: none;
}
.form-radio.outline-warning:checked{
    --tw-border-opacity: 1;
    border-color: rgb(226 160 63 / var(--tw-border-opacity));
    background-color: transparent;
    background-image: none;
}
.form-radio.outline-info:checked{
    --tw-border-opacity: 1;
    border-color: rgb(33 150 243 / var(--tw-border-opacity));
    background-color: transparent;
    background-image: none;
}
.form-radio.outline-dark:checked{
    --tw-border-opacity: 1;
    border-color: rgb(59 63 92 / var(--tw-border-opacity));
    background-color: transparent;
    background-image: none;
}
/* dropdown */
.dropdown{
    position: relative;
}
.dropdown > button{
    display: flex;
}
.dropdown ul{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    min-width: 120px;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    padding: 0px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    --tw-text-opacity: 1;
    color: rgb(14 23 38 / var(--tw-text-opacity));
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
:is(.dark .dropdown ul){
    --tw-bg-opacity: 1;
    background-color: rgb(27 46 75 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
.dropdown ul li > a,
    .dropdown ul li > button{
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.dropdown ul li > a:hover,
    .dropdown ul li > button:hover{
    background-color: rgb(67 97 238 / 0.1);
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
.dropdown ul li > button{
    width: 100%;
}
/* tables */
table{
    width: 100%;
    border-collapse: collapse !important;
}
table thead tr,
    table tfoot tr{
    border-bottom-width: 0px;
    background-color: rgb(224 230 237 / 0.3);
}
:is(.dark table thead tr),:is(.dark 
    table tfoot tr){
    --tw-bg-opacity: 1 !important;
    background-color: rgb(26 41 65 / var(--tw-bg-opacity)) !important;
}
table thead tr th,
    table tfoot tr th,
    table tbody tr td{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
:is([dir="ltr"] table thead tr th),:is([dir="ltr"] 
    table tfoot tr th),:is([dir="ltr"] 
    table tbody tr td){
    text-align: left;
}
:is([dir="rtl"] table thead tr th),:is([dir="rtl"] 
    table tfoot tr th),:is([dir="rtl"] 
    table tbody tr td){
    text-align: right;
}
table thead tr th,
    table tfoot tr th{
    font-weight: 600;
}
table tbody tr{
    border-bottom-width: 1px;
    border-color: rgb(224 230 237 / 0.4) !important;
}
:is(.dark table tbody tr){
    --tw-border-opacity: 1 !important;
    border-color: rgb(25 30 58 / var(--tw-border-opacity)) !important;
}
/* code hightlight */
pre {
        direction: ltr;
    }
.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.static{
    position: static;
}
.fixed{
    position: fixed;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.sticky{
    position: sticky;
}
.inset-0{
    inset: 0px;
}
.inset-x-0{
    left: 0px;
    right: 0px;
}
.-top-\[3px\]{
    top: -3px;
}
.bottom-0{
    bottom: 0px;
}
.bottom-6{
    bottom: 1.5rem;
}
.left-0{
    left: 0px;
}
.right-0{
    right: 0px;
}
.right-\[6px\]{
    right: 6px;
}
.top-0{
    top: 0px;
}
.top-1\/2{
    top: 50%;
}
.z-10{
    z-index: 10;
}
.z-20{
    z-index: 20;
}
.z-40{
    z-index: 40;
}
.z-50{
    z-index: 50;
}
.z-\[10\]{
    z-index: 10;
}
.z-\[51\]{
    z-index: 51;
}
.z-\[60\]{
    z-index: 60;
}
.order-1{
    order: 1;
}
.order-first{
    order: -9999;
}
.m-0{
    margin: 0px;
}
.m-1{
    margin: 0.25rem;
}
.m-1\.5{
    margin: 0.375rem;
}
.m-auto{
    margin: auto;
}
.-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
}
.-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}
.-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}
.mx-0{
    margin-left: 0px;
    margin-right: 0px;
}
.mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.my-0{
    margin-top: 0px;
    margin-bottom: 0px;
}
.my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.my-auto{
    margin-top: auto;
    margin-bottom: auto;
}
.-ml-5{
    margin-left: -1.25rem;
}
.-mr-16{
    margin-right: -4rem;
}
.-mt-2{
    margin-top: -0.5rem;
}
.mb-0{
    margin-bottom: 0px;
}
.mb-1{
    margin-bottom: 0.25rem;
}
.mb-12{
    margin-bottom: 3rem;
}
.mb-2{
    margin-bottom: 0.5rem;
}
.mb-3{
    margin-bottom: 0.75rem;
}
.mb-4{
    margin-bottom: 1rem;
}
.mb-5{
    margin-bottom: 1.25rem;
}
.mb-6{
    margin-bottom: 1.5rem;
}
.mb-8{
    margin-bottom: 2rem;
}
.me-3{
    margin-inline-end: 0.75rem;
}
.ml-1{
    margin-left: 0.25rem;
}
.ml-4{
    margin-left: 1rem;
}
.ml-5{
    margin-left: 1.25rem;
}
.ml-\[5px\]{
    margin-left: 5px;
}
.mr-0{
    margin-right: 0px;
}
.mr-1{
    margin-right: 0.25rem;
}
.mr-2{
    margin-right: 0.5rem;
}
.mr-4{
    margin-right: 1rem;
}
.mr-5{
    margin-right: 1.25rem;
}
.ms-3{
    margin-inline-start: 0.75rem;
}
.mt-10{
    margin-top: 2.5rem;
}
.mt-12{
    margin-top: 3rem;
}
.mt-2{
    margin-top: 0.5rem;
}
.mt-3{
    margin-top: 0.75rem;
}
.mt-4{
    margin-top: 1rem;
}
.mt-5{
    margin-top: 1.25rem;
}
.mt-6{
    margin-top: 1.5rem;
}
.mt-8{
    margin-top: 2rem;
}
.mt-auto{
    margin-top: auto;
}
.box-border{
    box-sizing: border-box;
}
.\!block{
    display: block !important;
}
.block{
    display: block;
}
.inline-block{
    display: inline-block;
}
.inline{
    display: inline;
}
.flex{
    display: flex;
}
.inline-flex{
    display: inline-flex;
}
.table{
    display: table;
}
.table-row{
    display: table-row;
}
.\!grid{
    display: grid !important;
}
.grid{
    display: grid;
}
.hidden{
    display: none;
}
.\!h-\[48px\]{
    height: 48px !important;
}
.\!h-\[68px\]{
    height: 68px !important;
}
.h-0{
    height: 0px;
}
.h-0\.5{
    height: 0.125rem;
}
.h-10{
    height: 2.5rem;
}
.h-12{
    height: 3rem;
}
.h-14{
    height: 3.5rem;
}
.h-16{
    height: 4rem;
}
.h-2{
    height: 0.5rem;
}
.h-3{
    height: 0.75rem;
}
.h-4{
    height: 1rem;
}
.h-4\.5{
    height: 18px;
}
.h-5{
    height: 1.25rem;
}
.h-6{
    height: 1.5rem;
}
.h-8{
    height: 2rem;
}
.h-9{
    height: 2.25rem;
}
.h-\[100\%\]{
    height: 100%;
}
.h-\[100px\]{
    height: 100px;
}
.h-\[4\.5rem\]{
    height: 4.5rem;
}
.h-\[4rem\]{
    height: 4rem;
}
.h-\[6px\]{
    height: 6px;
}
.h-\[calc\(100vh-16rem\)\]{
    height: calc(100vh - 16rem);
}
.h-\[calc\(100vh-80px\)\]{
    height: calc(100vh - 80px);
}
.h-auto{
    height: auto;
}
.h-full{
    height: 100%;
}
.h-screen{
    height: 100vh;
}
.max-h-\[150px\]{
    max-height: 150px;
}
.max-h-\[200px\]{
    max-height: 200px;
}
.max-h-\[370px\]{
    max-height: 370px;
}
.min-h-\[200px\]{
    min-height: 200px;
}
.min-h-screen{
    min-height: 100vh;
}
.w-1\/3{
    width: 33.333333%;
}
.w-10{
    width: 2.5rem;
}
.w-12{
    width: 3rem;
}
.w-14{
    width: 3.5rem;
}
.w-16{
    width: 4rem;
}
.w-2{
    width: 0.5rem;
}
.w-3{
    width: 0.75rem;
}
.w-32{
    width: 8rem;
}
.w-4{
    width: 1rem;
}
.w-4\.5{
    width: 18px;
}
.w-44{
    width: 11rem;
}
.w-5{
    width: 1.25rem;
}
.w-6{
    width: 1.5rem;
}
.w-8{
    width: 2rem;
}
.w-9{
    width: 2.25rem;
}
.w-\[100\%\]{
    width: 100%;
}
.w-\[230px\]{
    width: 230px;
}
.w-\[260px\]{
    width: 260px;
}
.w-\[280px\]{
    width: 280px;
}
.w-\[300px\]{
    width: 300px;
}
.w-\[6px\]{
    width: 6px;
}
.w-full{
    width: 100%;
}
.min-w-\[180px\]{
    min-width: 180px;
}
.max-w-3xl{
    max-width: 48rem;
}
.max-w-6xl{
    max-width: 72rem;
}
.max-w-7xl{
    max-width: 80rem;
}
.max-w-\[100\%\]{
    max-width: 100%;
}
.max-w-\[400px\]{
    max-width: 400px;
}
.max-w-\[930px\]{
    max-width: 930px;
}
.max-w-lg{
    max-width: 32rem;
}
.max-w-md{
    max-width: 28rem;
}
.max-w-screen-xl{
    max-width: 1280px;
}
.flex-auto{
    flex: 1 1 auto;
}
.flex-none{
    flex: none;
}
.shrink-0{
    flex-shrink: 0;
}
.flex-grow{
    flex-grow: 1;
}
.-translate-y-1\/2{
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}
.animate-\[spin_3s_linear_infinite\]{
    animation: spin 3s linear infinite;
}
@keyframes ping{
    75%, 100%{
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping{
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pulse{
    50%{
        opacity: .5;
    }
}
.animate-pulse{
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}
.animate-spin{
    animation: spin 1s linear infinite;
}
.cursor-pointer{
    cursor: pointer;
}
.select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.resize-none{
    resize: none;
}
.resize{
    resize: both;
}
.appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-\[2fr_1fr\]{
    grid-template-columns: 2fr 1fr;
}
.grid-rows-\[1fr_1fr\]{
    grid-template-rows: 1fr 1fr;
}
.flex-col{
    flex-direction: column;
}
.flex-wrap{
    flex-wrap: wrap;
}
.place-content-center{
    place-content: center;
}
.content-center{
    align-content: center;
}
.items-start{
    align-items: flex-start;
}
.items-center{
    align-items: center;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.gap-2{
    gap: 0.5rem;
}
.gap-3{
    gap: 0.75rem;
}
.gap-4{
    gap: 1rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
}
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.overflow-auto{
    overflow: auto;
}
.overflow-hidden{
    overflow: hidden;
}
.overflow-scroll{
    overflow: scroll;
}
.overflow-x-auto{
    overflow-x: auto;
}
.overflow-y-auto{
    overflow-y: auto;
}
.overflow-x-hidden{
    overflow-x: hidden;
}
.overflow-y-scroll{
    overflow-y: scroll;
}
.truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.whitespace-normal{
    white-space: normal;
}
.whitespace-pre{
    white-space: pre;
}
.whitespace-pre-wrap{
    white-space: pre-wrap;
}
.break-words{
    overflow-wrap: break-word;
}
.rounded{
    border-radius: 0.25rem;
}
.rounded-3xl{
    border-radius: 1.5rem;
}
.rounded-full{
    border-radius: 9999px;
}
.rounded-lg{
    border-radius: 0.5rem;
}
.rounded-md{
    border-radius: 0.375rem;
}
.rounded-xl{
    border-radius: 0.75rem;
}
.rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.border{
    border-width: 1px;
}
.border-0{
    border-width: 0px;
}
.border-2{
    border-width: 2px;
}
.border-b-2{
    border-bottom-width: 2px;
}
.border-b-4{
    border-bottom-width: 4px;
}
.border-l{
    border-left-width: 1px;
}
.border-l-4{
    border-left-width: 4px;
}
.border-r{
    border-right-width: 1px;
}
.border-t{
    border-top-width: 1px;
}
.border-solid{
    border-style: solid;
}
.border-dashed{
    border-style: dashed;
}
.border-none{
    border-style: none;
}
.border-\[\#ebedf2\]{
    --tw-border-opacity: 1;
    border-color: rgb(235 237 242 / var(--tw-border-opacity));
}
.border-black{
    --tw-border-opacity: 1;
    border-color: rgb(14 23 38 / var(--tw-border-opacity));
}
.border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity));
}
.border-blue-700{
    --tw-border-opacity: 1;
    border-color: rgb(29 78 216 / var(--tw-border-opacity));
}
.border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-green-400{
    --tw-border-opacity: 1;
    border-color: rgb(74 222 128 / var(--tw-border-opacity));
}
.border-indigo-500{
    --tw-border-opacity: 1;
    border-color: rgb(99 102 241 / var(--tw-border-opacity));
}
.border-primary{
    --tw-border-opacity: 1;
    border-color: rgb(67 97 238 / var(--tw-border-opacity));
}
.border-red-400{
    --tw-border-opacity: 1;
    border-color: rgb(248 113 113 / var(--tw-border-opacity));
}
.border-transparent{
    border-color: transparent;
}
.border-white-light{
    --tw-border-opacity: 1;
    border-color: rgb(224 230 237 / var(--tw-border-opacity));
}
.bg-\[\#0097d7\]{
    --tw-bg-opacity: 1;
    background-color: rgb(0 151 215 / var(--tw-bg-opacity));
}
.bg-\[\#241f21\]{
    --tw-bg-opacity: 1;
    background-color: rgb(36 31 33 / var(--tw-bg-opacity));
}
.bg-\[\#ededed\]{
    --tw-bg-opacity: 1;
    background-color: rgb(237 237 237 / var(--tw-bg-opacity));
}
.bg-\[\#fafafa\]{
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}
.bg-\[black\]\/60{
    background-color: rgb(0 0 0 / 0.6);
}
.bg-black{
    --tw-bg-opacity: 1;
    background-color: rgb(14 23 38 / var(--tw-bg-opacity));
}
.bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}
.bg-blue-600{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}
.bg-danger-light{
    --tw-bg-opacity: 1;
    background-color: rgb(255 245 245 / var(--tw-bg-opacity));
}
.bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-green-100{
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity));
}
.bg-indigo-500{
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity));
}
.bg-indigo-600{
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity));
}
.bg-info-light{
    --tw-bg-opacity: 1;
    background-color: rgb(231 247 255 / var(--tw-bg-opacity));
}
.bg-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(67 97 238 / var(--tw-bg-opacity));
}
.bg-primary\/80{
    background-color: rgb(67 97 238 / 0.8);
}
.bg-purple-100{
    --tw-bg-opacity: 1;
    background-color: rgb(243 232 255 / var(--tw-bg-opacity));
}
.bg-red-100{
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity));
}
.bg-success{
    --tw-bg-opacity: 1;
    background-color: rgb(0 171 85 / var(--tw-bg-opacity));
}
.bg-success-light{
    --tw-bg-opacity: 1;
    background-color: rgb(221 245 240 / var(--tw-bg-opacity));
}
.bg-success\/50{
    background-color: rgb(0 171 85 / 0.5);
}
.bg-transparent{
    background-color: transparent;
}
.bg-warning-light{
    --tw-bg-opacity: 1;
    background-color: rgb(255 249 237 / var(--tw-bg-opacity));
}
.bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white-dark\/20{
    background-color: rgb(136 142 168 / 0.2);
}
.bg-white-light{
    --tw-bg-opacity: 1;
    background-color: rgb(224 230 237 / var(--tw-bg-opacity));
}
.bg-white-light\/30{
    background-color: rgb(224 230 237 / 0.3);
}
.bg-white-light\/40{
    background-color: rgb(224 230 237 / 0.4);
}
.bg-yellow-300{
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71 / var(--tw-bg-opacity));
}
.bg-zinc-900{
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity));
}
.bg-opacity-40{
    --tw-bg-opacity: 0.4;
}
.bg-\[url\(\/assets\/images\/menu-heade\.jpg\)\]{
    background-image: url(/assets/images/menu-heade.jpg);
}
.bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-blue-start{
    --tw-gradient-from: #7450ff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(116 80 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-600{
    --tw-gradient-from: #4f46e5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-start{
    --tw-gradient-from: #ff2db9 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 45 185 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-start{
    --tw-gradient-from: #f9c781 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(249 199 129 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-end{
    --tw-gradient-to: #9076ff var(--tw-gradient-to-position);
}
.to-indigo-500{
    --tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
}
.to-pink-end{
    --tw-gradient-to: #ff7d88 var(--tw-gradient-to-position);
}
.to-yellow-end{
    --tw-gradient-to: #fde291 var(--tw-gradient-to-position);
}
.bg-\[length\:100\%_100\%\]{
    background-size: 100% 100%;
}
.bg-contain{
    background-size: contain;
}
.bg-cover{
    background-size: cover;
}
.bg-\[bottom\]{
    background-position: bottom;
}
.bg-center{
    background-position: center;
}
.bg-no-repeat{
    background-repeat: no-repeat;
}
.object-cover{
    -o-object-fit: cover;
       object-fit: cover;
}
.p-0{
    padding: 0px;
}
.p-1{
    padding: 0.25rem;
}
.p-2{
    padding: 0.5rem;
}
.p-3{
    padding: 0.75rem;
}
.p-4{
    padding: 1rem;
}
.p-5{
    padding: 1.25rem;
}
.p-6{
    padding: 1.5rem;
}
.p-8{
    padding: 2rem;
}
.\!px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}
.\!py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.\!py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}
.\!py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.px-0{
    padding-left: 0px;
    padding-right: 0px;
}
.px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-16{
    padding-left: 4rem;
    padding-right: 4rem;
}
.px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-4{
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-7{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}
.px-8{
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-0{
    padding-top: 0px;
    padding-bottom: 0px;
}
.py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}
.py-11{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}
.py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pb-12{
    padding-bottom: 3rem;
}
.pb-5{
    padding-bottom: 1.25rem;
}
.pb-6{
    padding-bottom: 1.5rem;
}
.pb-7{
    padding-bottom: 1.75rem;
}
.pb-8{
    padding-bottom: 2rem;
}
.pl-0{
    padding-left: 0px;
}
.pl-4{
    padding-left: 1rem;
}
.pl-6{
    padding-left: 1.5rem;
}
.pl-7{
    padding-left: 1.75rem;
}
.pr-5{
    padding-right: 1.25rem;
}
.pt-10{
    padding-top: 2.5rem;
}
.pt-2{
    padding-top: 0.5rem;
}
.pt-4{
    padding-top: 1rem;
}
.pt-7{
    padding-top: 1.75rem;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.align-middle{
    vertical-align: middle;
}
.font-nunito{
    font-family: Nunito, sans-serif;
}
.font-sans{
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-5xl{
    font-size: 3rem;
    line-height: 1;
}
.text-6xl{
    font-size: 3.75rem;
    line-height: 1;
}
.text-\[1\.1rem\]{
    font-size: 1.1rem;
}
.text-\[1\.25rem\]{
    font-size: 1.25rem;
}
.text-\[1\.3rem\]{
    font-size: 1.3rem;
}
.text-base{
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
}
.font-black{
    font-weight: 900;
}
.font-bold{
    font-weight: 700;
}
.font-extrabold{
    font-weight: 800;
}
.font-medium{
    font-weight: 500;
}
.font-normal{
    font-weight: 400;
}
.font-semibold{
    font-weight: 600;
}
.uppercase{
    text-transform: uppercase;
}
.capitalize{
    text-transform: capitalize;
}
.italic{
    font-style: italic;
}
.leading-6{
    line-height: 1.5rem;
}
.leading-7{
    line-height: 1.75rem;
}
.leading-none{
    line-height: 1;
}
.leading-normal{
    line-height: 1.5;
}
.leading-tight{
    line-height: 1.25;
}
.tracking-tight{
    letter-spacing: -0.025em;
}
.tracking-wider{
    letter-spacing: 0.05em;
}
.text-black{
    --tw-text-opacity: 1;
    color: rgb(14 23 38 / var(--tw-text-opacity));
}
.text-black\/60{
    color: rgb(14 23 38 / 0.6);
}
.text-blue-600{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-danger{
    --tw-text-opacity: 1;
    color: rgb(231 81 90 / var(--tw-text-opacity));
}
.text-dark{
    --tw-text-opacity: 1;
    color: rgb(59 63 92 / var(--tw-text-opacity));
}
.text-dark\/60{
    color: rgb(59 63 92 / 0.6);
}
.text-gray-200{
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-400{
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700{
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-800{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity));
}
.text-gray-900{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-green-500{
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-green-600{
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-indigo-500{
    --tw-text-opacity: 1;
    color: rgb(99 102 241 / var(--tw-text-opacity));
}
.text-indigo-600{
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}
.text-info{
    --tw-text-opacity: 1;
    color: rgb(33 150 243 / var(--tw-text-opacity));
}
.text-neutral-300{
    --tw-text-opacity: 1;
    color: rgb(212 212 212 / var(--tw-text-opacity));
}
.text-pink-500{
    --tw-text-opacity: 1;
    color: rgb(236 72 153 / var(--tw-text-opacity));
}
.text-primary{
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
.text-purple-500{
    --tw-text-opacity: 1;
    color: rgb(168 85 247 / var(--tw-text-opacity));
}
.text-red-600{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-success{
    --tw-text-opacity: 1;
    color: rgb(0 171 85 / var(--tw-text-opacity));
}
.text-warning{
    --tw-text-opacity: 1;
    color: rgb(226 160 63 / var(--tw-text-opacity));
}
.text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-white-dark{
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
.text-yellow-500{
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity));
}
.no-underline{
    text-decoration-line: none;
}
.antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.opacity-0{
    opacity: 0;
}
.opacity-30{
    opacity: 0.3;
}
.opacity-75{
    opacity: 0.75;
}
.shadow{
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[5px_0_25px_0_rgba\(94\2c 92\2c 154\2c 0\.1\)\]{
    --tw-shadow: 5px 0 25px 0 rgba(94,92,154,0.1);
    --tw-shadow-colored: 5px 0 25px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.outline{
    outline-style: solid;
}
.outline-0{
    outline-width: 0px;
}
.ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-primary\/30{
    --tw-ring-color: rgb(67 97 238 / 0.3);
}
.blur{
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.saturate-50{
    --tw-saturate: saturate(.5);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter{
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-\[display\]{
    transition-property: display;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-\[right\]{
    transition-property: right;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-150{
    transition-duration: 150ms;
}
.duration-300{
    transition-duration: 300ms;
}
.ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* perfect scrollbar */
.ps__rail-y > .ps__thumb-y,
.ps__rail-y > .ps__thumb-y{
    width: 0.375rem !important;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(221 221 221 / var(--tw-bg-opacity)) !important;
}
:is(.dark .ps__rail-y > .ps__thumb-y),:is(.dark 
.ps__rail-y > .ps__thumb-y){
    --tw-bg-opacity: 1 !important;
    background-color: rgb(45 51 76 / var(--tw-bg-opacity)) !important;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking{
    opacity: 0.6 !important;
    background-color: transparent !important;
}
/* Animations */
.slide-down-enter-active{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 100ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.slide-down-leave-active{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 75ms;
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.slide-down-enter-from,
.slide-down-leave-to{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0;
}
.slide-down-enter-to,
.slide-down-leave-from{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1;
}
.modal-fade-enter-active{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.modal-fade-leave-active{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.modal-fade-enter-from,
.modal-fade-leave-to{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0;
}
.modal-fade-enter-to,
.modal-fade-leave-from{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 1;
}
/* Hightlight JS */
pre.hljs{
    overflow-x: auto;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1 !important;
    background-color: rgb(25 30 58 / var(--tw-bg-opacity)) !important;
    padding: 1.5rem;
}
/* apex chart */
.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light,
.apexcharts-canvas .apexcharts-xaxistooltip.apexcharts-theme-light {
    box-shadow: none;
    border-color: #050717cc;
    background-color: #050717cc;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.apexcharts-canvas .apexcharts-xaxistooltip-bottom:before,
.apexcharts-canvas .apexcharts-xaxistooltip-bottom:after{
    border-bottom-color: #050717cc;
}
.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title{
    --tw-border-opacity: 1;
    border-color: rgb(59 63 92 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(6 8 24 / var(--tw-bg-opacity));
}
:is([dir="ltr"] .apexcharts-legend-series){
    margin-right: 0.5rem !important;
}
:is([dir="rtl"] .apexcharts-legend-series){
    margin-left: 0.5rem !important;
}
.dark .apexcharts-title-text {
    fill: #e0e6ed;
}
.dark .apexcharts-canvas .apexcharts-text.apexcharts-xaxis-label,
.dark .apexcharts-canvas .apexcharts-text.apexcharts-yaxis-label {
    fill: #e0e6ed;
}
.dark .apexcharts-canvas .apexcharts-text,
.dark .apexcharts-canvas .apexcharts-text {
    fill: #e0e6ed;
}
.dark .apexcharts-canvas .apexcharts-legend-text {
    color: #e0e6ed !important;
}
.dark .apexcharts-canvas .apexcharts-radialbar-track.apexcharts-track .apexcharts-radialbar-area {
    stroke: #191e3a;
}
.dark .apexcharts-canvas .apexcharts-series-markers.apexcharts-series-bubble .apexcharts-marker {
    stroke: #191e3a;
}
.dark .apexcharts-canvas .apexcharts-pie-label,
.dark .apexcharts-canvas .apexcharts-datalabel,
.dark .apexcharts-canvas .apexcharts-datalabel-label,
.dark .apexcharts-canvas .apexcharts-datalabel-value {
    fill: #bfc9d4;
}
.dark .apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-dark {
    box-shadow: none;
}
:is([dir="ltr"] .apexcharts-canvas .apexcharts-legend-marker){
    margin-right: 0.375rem !important;
}
:is([dir="rtl"] .apexcharts-canvas .apexcharts-legend-marker){
    margin-left: 0.375rem;
    margin-right: 0px !important;
}
[dir='rtl'] .apexcharts-tooltip-marker{
    margin-right: 0px;
    margin-left: 0.625rem;
}
/* swal2 */
.swal2-container .swal2-close{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.swal2-container .swal2-close:hover{
    --tw-text-opacity: 1;
    color: rgb(234 234 236 / var(--tw-text-opacity));
}
.swal2-container .swal2-close:focus{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.swal2-container .swal2-popup.swal2-toast{
    --tw-bg-opacity: 1;
    background-color: rgb(59 63 92 / var(--tw-bg-opacity));
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.swal2-popup.swal2-toast .swal2-title,
.swal2-container .swal2-popup.swal2-toast .swal2-html-container{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.swal2-container .swal2-popup.swal2-toast.color-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(67 97 238 / var(--tw-bg-opacity));
}
.swal2-container .swal2-popup.swal2-toast.color-secondary{
    --tw-bg-opacity: 1;
    background-color: rgb(128 93 202 / var(--tw-bg-opacity));
}
.swal2-container .swal2-popup.swal2-toast.color-warning{
    --tw-bg-opacity: 1;
    background-color: rgb(226 160 63 / var(--tw-bg-opacity));
}
.swal2-container .swal2-popup.swal2-toast.color-info{
    --tw-bg-opacity: 1;
    background-color: rgb(33 150 243 / var(--tw-bg-opacity));
}
.swal2-container .swal2-popup.swal2-toast.color-danger{
    --tw-bg-opacity: 1;
    background-color: rgb(231 81 90 / var(--tw-bg-opacity));
}
.swal2-container .swal2-popup.swal2-toast.color-success{
    --tw-bg-opacity: 1;
    background-color: rgb(0 171 85 / var(--tw-bg-opacity));
}
.placeholder\:tracking-widest::-moz-placeholder{
    letter-spacing: 0.1em;
}
.placeholder\:tracking-widest::placeholder{
    letter-spacing: 0.1em;
}
.before\:h-px::before{
    content: var(--tw-content);
    height: 1px;
}
.before\:flex-1::before{
    content: var(--tw-content);
    flex: 1 1 0%;
}
.before\:bg-gradient-to-r::before{
    content: var(--tw-content);
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.before\:from-transparent::before{
    content: var(--tw-content);
    --tw-gradient-from: transparent var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.before\:via-gray-400\/25::before{
    content: var(--tw-content);
    --tw-gradient-to: rgb(156 163 175 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgb(156 163 175 / 0.25) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.after\:h-px::after{
    content: var(--tw-content);
    height: 1px;
}
.after\:flex-1::after{
    content: var(--tw-content);
    flex: 1 1 0%;
}
.after\:bg-gradient-to-r::after{
    content: var(--tw-content);
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.after\:from-transparent::after{
    content: var(--tw-content);
    --tw-gradient-from: transparent var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.after\:via-gray-400\/25::after{
    content: var(--tw-content);
    --tw-gradient-to: rgb(156 163 175 / 0)  var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), rgb(156 163 175 / 0.25) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.hover\:border-blue-600:hover{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity));
}
.hover\:\!bg-transparent:hover{
    background-color: transparent !important;
}
.hover\:bg-blue-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.hover\:bg-gray-500\/10:hover{
    background-color: rgb(107 114 128 / 0.1);
}
.hover\:bg-indigo-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241 / var(--tw-bg-opacity));
}
.hover\:bg-indigo-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(67 56 202 / var(--tw-bg-opacity));
}
.hover\:bg-white-light\/90:hover{
    background-color: rgb(224 230 237 / 0.9);
}
.hover\:bg-\[length\:100\%_150\%\]:hover{
    background-size: 100% 150%;
}
.hover\:text-danger:hover{
    --tw-text-opacity: 1;
    color: rgb(231 81 90 / var(--tw-text-opacity));
}
.hover\:text-gray-500:hover{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
}
.hover\:text-gray-600:hover{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity));
}
.hover\:text-gray-900:hover{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity));
}
.hover\:text-primary:hover{
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
.hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:opacity-100:hover{
    opacity: 1;
}
.hover\:opacity-80:hover{
    opacity: 0.8;
}
.focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.focus\:ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-indigo-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity));
}
.focus\:ring-offset-2:focus{
    --tw-ring-offset-width: 2px;
}
.group:hover .group-hover\:translate-x-1{
    --tw-translate-x: 0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:\!text-primary{
    --tw-text-opacity: 1 !important;
    color: rgb(67 97 238 / var(--tw-text-opacity)) !important;
}
.group:hover .group-hover\:underline{
    text-decoration-line: underline;
}
.group:hover .group-hover\:opacity-100{
    opacity: 1;
}
.group:hover .group-hover\:saturate-100{
    --tw-saturate: saturate(1);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.peer:focus ~ .peer-focus\:text-primary{
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
:is([dir="ltr"] .ltr\:\!right-0){
    right: 0px !important;
}
:is([dir="ltr"] .ltr\:-left-12){
    left: -3rem;
}
:is([dir="ltr"] .ltr\:-left-\[3px\]){
    left: -3px;
}
:is([dir="ltr"] .ltr\:-right-\[400px\]){
    right: -400px;
}
:is([dir="ltr"] .ltr\:left-\[95\%\]){
    left: 95%;
}
:is([dir="ltr"] .ltr\:right-0){
    right: 0px;
}
:is([dir="ltr"] .ltr\:right-2){
    right: 0.5rem;
}
:is([dir="ltr"] .ltr\:right-6){
    right: 1.5rem;
}
:is([dir="ltr"] .ltr\:right-auto){
    right: auto;
}
:is([dir="ltr"] .ltr\:-ml-1){
    margin-left: -0.25rem;
}
:is([dir="ltr"] .ltr\:ml-1){
    margin-left: 0.25rem;
}
:is([dir="ltr"] .ltr\:ml-1\.5){
    margin-left: 0.375rem;
}
:is([dir="ltr"] .ltr\:ml-2){
    margin-left: 0.5rem;
}
:is([dir="ltr"] .ltr\:ml-3){
    margin-left: 0.75rem;
}
:is([dir="ltr"] .ltr\:ml-auto){
    margin-left: auto;
}
:is([dir="ltr"] .ltr\:mr-1){
    margin-right: 0.25rem;
}
:is([dir="ltr"] .ltr\:mr-2){
    margin-right: 0.5rem;
}
:is([dir="ltr"] .ltr\:rounded-bl-full){
    border-bottom-left-radius: 9999px;
}
:is([dir="ltr"] .ltr\:rounded-tl-full){
    border-top-left-radius: 9999px;
}
:is([dir="ltr"] .ltr\:pl-3){
    padding-left: 0.75rem;
}
:is([dir="ltr"] .ltr\:pl-4){
    padding-left: 1rem;
}
:is([dir="ltr"] .ltr\:pl-9){
    padding-left: 2.25rem;
}
:is([dir="ltr"] .ltr\:pr-3){
    padding-right: 0.75rem;
}
:is([dir="ltr"] .ltr\:pr-9){
    padding-right: 2.25rem;
}
:is([dir="rtl"] .rtl\:\!left-0){
    left: 0px !important;
}
:is([dir="rtl"] .rtl\:-left-\[400px\]){
    left: -400px;
}
:is([dir="rtl"] .rtl\:-right-12){
    right: -3rem;
}
:is([dir="rtl"] .rtl\:-right-\[3px\]){
    right: -3px;
}
:is([dir="rtl"] .rtl\:left-0){
    left: 0px;
}
:is([dir="rtl"] .rtl\:left-2){
    left: 0.5rem;
}
:is([dir="rtl"] .rtl\:left-6){
    left: 1.5rem;
}
:is([dir="rtl"] .rtl\:left-auto){
    left: auto;
}
:is([dir="rtl"] .rtl\:right-\[95\%\]){
    right: 95%;
}
:is([dir="rtl"] .rtl\:-mr-1){
    margin-right: -0.25rem;
}
:is([dir="rtl"] .rtl\:ml-1){
    margin-left: 0.25rem;
}
:is([dir="rtl"] .rtl\:ml-2){
    margin-left: 0.5rem;
}
:is([dir="rtl"] .rtl\:mr-1){
    margin-right: 0.25rem;
}
:is([dir="rtl"] .rtl\:mr-1\.5){
    margin-right: 0.375rem;
}
:is([dir="rtl"] .rtl\:mr-2){
    margin-right: 0.5rem;
}
:is([dir="rtl"] .rtl\:mr-3){
    margin-right: 0.75rem;
}
:is([dir="rtl"] .rtl\:mr-auto){
    margin-right: auto;
}
:is([dir="rtl"] .rtl\:rotate-180){
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
:is([dir="rtl"] .rtl\:space-x-reverse) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
}
:is([dir="rtl"] .rtl\:rounded-br-full){
    border-bottom-right-radius: 9999px;
}
:is([dir="rtl"] .rtl\:rounded-tr-full){
    border-top-right-radius: 9999px;
}
:is([dir="rtl"] .rtl\:pl-3){
    padding-left: 0.75rem;
}
:is([dir="rtl"] .rtl\:pl-9){
    padding-left: 2.25rem;
}
:is([dir="rtl"] .rtl\:pr-3){
    padding-right: 0.75rem;
}
:is([dir="rtl"] .rtl\:pr-4){
    padding-right: 1rem;
}
:is([dir="rtl"] .rtl\:pr-9){
    padding-right: 2.25rem;
}
:is(.dark .dark\:divide-white\/10) > :not([hidden]) ~ :not([hidden]){
    border-color: rgb(255 255 255 / 0.1);
}
:is(.dark .dark\:border-\[\#191e3a\]){
    --tw-border-opacity: 1;
    border-color: rgb(25 30 58 / var(--tw-border-opacity));
}
:is(.dark .dark\:border-\[\#1b2e4b\]){
    --tw-border-opacity: 1;
    border-color: rgb(27 46 75 / var(--tw-border-opacity));
}
:is(.dark .dark\:border-white-light\/10){
    border-color: rgb(224 230 237 / 0.1);
}
:is(.dark .dark\:border-white\/10){
    border-color: rgb(255 255 255 / 0.1);
}
:is(.dark .dark\:bg-\[\#060818\]){
    --tw-bg-opacity: 1;
    background-color: rgb(6 8 24 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-\[\#1b2e4b\]){
    --tw-bg-opacity: 1;
    background-color: rgb(27 46 75 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-black){
    --tw-bg-opacity: 1;
    background-color: rgb(14 23 38 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-danger){
    --tw-bg-opacity: 1;
    background-color: rgb(231 81 90 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-dark){
    --tw-bg-opacity: 1;
    background-color: rgb(59 63 92 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-dark\/40){
    background-color: rgb(59 63 92 / 0.4);
}
:is(.dark .dark\:bg-info){
    --tw-bg-opacity: 1;
    background-color: rgb(33 150 243 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-success){
    --tw-bg-opacity: 1;
    background-color: rgb(0 171 85 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-warning){
    --tw-bg-opacity: 1;
    background-color: rgb(226 160 63 / var(--tw-bg-opacity));
}
:is(.dark .dark\:bg-opacity-\[0\.08\]){
    --tw-bg-opacity: 0.08;
}
:is(.dark .dark\:text-\[\#506690\]){
    --tw-text-opacity: 1;
    color: rgb(80 102 144 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-\[\#d0d2d6\]){
    --tw-text-opacity: 1;
    color: rgb(208 210 214 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-danger-light){
    --tw-text-opacity: 1;
    color: rgb(255 245 245 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-dark-light\/60){
    color: rgb(234 234 236 / 0.6);
}
:is(.dark .dark\:text-gray-400){
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-gray-500){
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-info-light){
    --tw-text-opacity: 1;
    color: rgb(231 247 255 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-success-light){
    --tw-text-opacity: 1;
    color: rgb(221 245 240 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-warning-light){
    --tw-text-opacity: 1;
    color: rgb(255 249 237 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-white){
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-white-dark){
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-white-light){
    --tw-text-opacity: 1;
    color: rgb(224 230 237 / var(--tw-text-opacity));
}
:is(.dark .dark\:text-white-light\/90){
    color: rgb(224 230 237 / 0.9);
}
:is(.dark .dark\:hover\:bg-dark-light\/10:hover){
    background-color: rgb(234 234 236 / 0.1);
}
:is(.dark .dark\:hover\:bg-dark\/60:hover){
    background-color: rgb(59 63 92 / 0.6);
}
:is(.dark .dark\:hover\:bg-primary:hover){
    --tw-bg-opacity: 1;
    background-color: rgb(67 97 238 / var(--tw-bg-opacity));
}
:is(.dark .dark\:hover\:text-primary:hover){
    --tw-text-opacity: 1;
    color: rgb(67 97 238 / var(--tw-text-opacity));
}
:is(.dark .dark\:hover\:text-white:hover){
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
:is(.dark .group:hover .dark\:group-hover\:text-white-dark){
    --tw-text-opacity: 1;
    color: rgb(136 142 168 / var(--tw-text-opacity));
}
@media (min-width: 640px){
    .sm\:relative{
        position: relative;
    }
    .sm\:top-0{
        top: 0px;
    }
    .sm\:-mx-3{
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    .sm\:mx-0{
        margin-left: 0px;
        margin-right: 0px;
    }
    .sm\:mb-0{
        margin-bottom: 0px;
    }
    .sm\:mt-10{
        margin-top: 2.5rem;
    }
    .sm\:mt-8{
        margin-top: 2rem;
    }
    .sm\:block{
        display: block;
    }
    .sm\:hidden{
        display: none;
    }
    .sm\:w-\[350px\]{
        width: 350px;
    }
    .sm\:w-\[375px\]{
        width: 375px;
    }
    .sm\:w-auto{
        width: auto;
    }
    .sm\:max-w-md{
        max-width: 28rem;
    }
    .sm\:max-w-sm{
        max-width: 24rem;
    }
    .sm\:flex-1{
        flex: 1 1 0%;
    }
    .sm\:translate-y-0{
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }
    .sm\:flex-row{
        flex-direction: row;
    }
    .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(1rem * var(--tw-space-x-reverse));
        margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]){
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse));
    }
    .sm\:rounded-xl{
        border-radius: 0.75rem;
    }
    .sm\:bg-transparent{
        background-color: transparent;
    }
    .sm\:px-20{
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .sm\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .sm\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .sm\:py-12{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .sm\:py-8{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .sm\:pr-10{
        padding-right: 2.5rem;
    }
    .sm\:pr-12{
        padding-right: 3rem;
    }
    .sm\:pr-5{
        padding-right: 1.25rem;
    }
    .sm\:text-3xl{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .sm\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .sm\:text-5xl{
        font-size: 3rem;
        line-height: 1;
    }
    .sm\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    :is([dir="ltr"] .ltr\:sm\:ml-0){
        margin-left: 0px;
    }
    :is([dir="ltr"] .sm\:ltr\:mr-auto){
        margin-right: auto;
    }
    :is([dir="ltr"] .ltr\:sm\:pr-4){
        padding-right: 1rem;
    }
    :is([dir="ltr"] .ltr\:sm\:text-left){
        text-align: left;
    }
    :is([dir="rtl"] .sm\:rtl\:ml-auto){
        margin-left: auto;
    }
    :is([dir="rtl"] .sm\:rtl\:mr-0){
        margin-right: 0px;
    }
    :is([dir="rtl"] .rtl\:sm\:pl-4){
        padding-left: 1rem;
    }
    :is([dir="rtl"] .rtl\:sm\:text-right){
        text-align: right;
    }
}
@media (min-width: 768px){
    .md\:order-none{
        order: 0;
    }
    .md\:mb-0{
        margin-bottom: 0px;
    }
    .md\:ml-0{
        margin-left: 0px;
    }
    .md\:ml-8{
        margin-left: 2rem;
    }
    .md\:mt-0{
        margin-top: 0px;
    }
    .md\:mt-20{
        margin-top: 5rem;
    }
    .md\:inline{
        display: inline;
    }
    .md\:w-1\/2{
        width: 50%;
    }
    .md\:max-w-3xl{
        max-width: 48rem;
    }
    .md\:max-w-lg{
        max-width: 32rem;
    }
    .md\:max-w-none{
        max-width: none;
    }
    .md\:flex-row{
        flex-direction: row;
    }
    .md\:space-y-4 > :not([hidden]) ~ :not([hidden]){
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }
    .md\:border-l{
        border-left-width: 1px;
    }
    .md\:border-gray-200{
        --tw-border-opacity: 1;
        border-color: rgb(229 231 235 / var(--tw-border-opacity));
    }
    .md\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
    .md\:px-3{
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .md\:px-32{
        padding-left: 8rem;
        padding-right: 8rem;
    }
    .md\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .md\:px-8{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .md\:py-12{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .md\:py-16{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .md\:pb-0{
        padding-bottom: 0px;
    }
    .md\:pb-24{
        padding-bottom: 6rem;
    }
    .md\:pl-10{
        padding-left: 2.5rem;
    }
    .md\:pl-6{
        padding-left: 1.5rem;
    }
    .md\:pl-8{
        padding-left: 2rem;
    }
    .md\:pt-20{
        padding-top: 5rem;
    }
    .md\:text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .md\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-5xl{
        font-size: 3rem;
        line-height: 1;
    }
    .md\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}
@media (min-width: 1024px){
    .lg\:order-1{
        order: 1;
    }
    .lg\:mx-8{
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .lg\:mb-0{
        margin-bottom: 0px;
    }
    .lg\:inline-block{
        display: inline-block;
    }
    .lg\:flex{
        display: flex;
    }
    .lg\:hidden{
        display: none;
    }
    .lg\:min-h-\[370px\]{
        min-height: 370px;
    }
    .lg\:w-1\/2{
        width: 50%;
    }
    .lg\:w-1\/3{
        width: 33.333333%;
    }
    .lg\:w-2\/3{
        width: 66.666667%;
    }
    .lg\:w-auto{
        width: auto;
    }
    .lg\:max-w-full{
        max-width: 100%;
    }
    .lg\:max-w-lg{
        max-width: 32rem;
    }
    .lg\:max-w-md{
        max-width: 28rem;
    }
    .lg\:max-w-none{
        max-width: none;
    }
    .lg\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:flex-row{
        flex-direction: row;
    }
    .lg\:items-center{
        align-items: center;
    }
    .lg\:justify-end{
        justify-content: flex-end;
    }
    .lg\:justify-center{
        justify-content: center;
    }
    .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(0.25rem * var(--tw-space-x-reverse));
        margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(0.375rem * var(--tw-space-x-reverse));
        margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(0.5rem * var(--tw-space-x-reverse));
        margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]){
        --tw-space-y-reverse: 0;
        margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(2rem * var(--tw-space-y-reverse));
    }
    .lg\:border-gray-200{
        --tw-border-opacity: 1;
        border-color: rgb(229 231 235 / var(--tw-border-opacity));
    }
    .lg\:px-10{
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .lg\:px-16{
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .lg\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .lg\:px-8{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lg\:py-24{
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .lg\:pr-0{
        padding-right: 0px;
    }
    .lg\:pr-32{
        padding-right: 8rem;
    }
    .lg\:text-3xl{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .lg\:text-5xl{
        font-size: 3rem;
        line-height: 1;
    }
    .lg\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .lg\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}
@media (min-width: 1280px){
    .xl\:mb-6{
        margin-bottom: 1.5rem;
    }
    .xl\:mt-0{
        margin-top: 0px;
    }
    .xl\:inline{
        display: inline;
    }
    .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]){
        --tw-space-x-reverse: 0;
        margin-right: calc(2rem * var(--tw-space-x-reverse));
        margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]){
        --tw-space-y-reverse: 0;
        margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(2.25rem * var(--tw-space-y-reverse));
    }
    .xl\:px-5{
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .xl\:py-3{
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .xl\:pl-10{
        padding-left: 2.5rem;
    }
    .xl\:pl-16{
        padding-left: 4rem;
    }
    .xl\:pl-32{
        padding-left: 8rem;
    }
    .xl\:pr-20{
        padding-right: 5rem;
    }
    .xl\:pr-32{
        padding-right: 8rem;
    }
    .xl\:text-6xl{
        font-size: 3.75rem;
        line-height: 1;
    }
}



@import url(https://fonts.googleapis.com/css?family=Roboto:300);
/* @tailwind base;
@tailwind components;
@tailwind utilities; */
/*  */
/* @media (prefers-color-scheme: dark) {
  .w-tc-editor {
    --color-fg-default: #c9d1d9;
    --color-canvas-subtle: #161b22;
    --color-prettylights-syntax-comment: #8b949e;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-markup-bold: #c9d1d9;
  }
}
@media (prefers-color-scheme: light) {
  .w-tc-editor {
    --color-fg-default: #24292f;
    --color-canvas-subtle: #f6f8fa;
    --color-prettylights-syntax-comment: #6e7781;
    --color-prettylights-syntax-entity-tag: #116329;
    --color-prettylights-syntax-entity: #8250df;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-markup-bold: #24292f;
  }
}
.w-tc-editor[data-color-mode*="dark"],
[data-color-mode*="dark"] .w-tc-editor,
[data-color-mode*="dark"] .w-tc-editor-var,
body[data-color-mode*="dark"] {
  --color-fg-default: #c9d1d9;
  --color-canvas-subtle: #161b22;
  --color-prettylights-syntax-comment: #8b949e;
  --color-prettylights-syntax-entity-tag: #7ee787;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-keyword: #ff7b72;
  --color-prettylights-syntax-markup-bold: #c9d1d9;
}
.w-tc-editor[data-color-mode*="light"],
[data-color-mode*="light"] .w-tc-editor,
[data-color-mode*="light"] .w-tc-editor-var,
body[data-color-mode*="light"] {
  --color-fg-default: #24292f;
  --color-canvas-subtle: #f6f8fa;
  --color-prettylights-syntax-comment: #6e7781;
  --color-prettylights-syntax-entity-tag: #116329;
  --color-prettylights-syntax-entity: #8250df;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-keyword: #cf222e;
  --color-prettylights-syntax-markup-bold: #24292f;
}
.w-tc-editor {
  font-family: inherit;
  font-size: 12px;
  background-color: var(--color-canvas-subtle);
  color: var(--color-fg-default);
}
.w-tc-editor-text,
.w-tc-editor-preview {
  min-height: 16px;
}
.w-tc-editor-preview pre {
  margin: 0;
  padding: 0;
  white-space: inherit;
  font-family: inherit;
  font-size: inherit;
}
.w-tc-editor-preview pre code {
  font-family: inherit;
}
.w-tc-editor code[class*="language-"] .token.cdata,
.w-tc-editor pre[class*="language-"] .token.cdata,
.w-tc-editor code[class*="language-"] .token.comment,
.w-tc-editor pre[class*="language-"] .token.comment,
.w-tc-editor code[class*="language-"] .token.doctype,
.w-tc-editor pre[class*="language-"] .token.doctype,
.w-tc-editor code[class*="language-"] .token.prolog,
.w-tc-editor pre[class*="language-"] .token.prolog {
  color: var(--color-prettylights-syntax-comment);
}
.w-tc-editor code[class*="language-"] .token.punctuation,
.w-tc-editor pre[class*="language-"] .token.punctuation {
  color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
}
.w-tc-editor code[class*="language-"] .namespace,
.w-tc-editor pre[class*="language-"] .namespace {
  opacity: 0.7;
}
.w-tc-editor code[class*="language-"] .token.boolean,
.w-tc-editor pre[class*="language-"] .token.boolean,
.w-tc-editor code[class*="language-"] .token.constant,
.w-tc-editor pre[class*="language-"] .token.constant,
.w-tc-editor code[class*="language-"] .token.deleted,
.w-tc-editor pre[class*="language-"] .token.deleted,
.w-tc-editor code[class*="language-"] .token.number,
.w-tc-editor pre[class*="language-"] .token.number,
.w-tc-editor code[class*="language-"] .token.symbol,
.w-tc-editor pre[class*="language-"] .token.symbol {
  color: var(--color-prettylights-syntax-entity-tag);
}
.w-tc-editor code[class*="language-"] .token.builtin,
.w-tc-editor pre[class*="language-"] .token.builtin,
.w-tc-editor code[class*="language-"] .token.char,
.w-tc-editor pre[class*="language-"] .token.char,
.w-tc-editor code[class*="language-"] .token.inserted,
.w-tc-editor pre[class*="language-"] .token.inserted,
.w-tc-editor code[class*="language-"] .token.selector,
.w-tc-editor pre[class*="language-"] .token.selector,
.w-tc-editor code[class*="language-"] .token.string,
.w-tc-editor pre[class*="language-"] .token.string {
  color: var(--color-prettylights-syntax-constant);
}
.w-tc-editor code[class*="language-"] .style .token.string,
.w-tc-editor pre[class*="language-"] .style .token.string,
.w-tc-editor code[class*="language-"] .token.entity,
.w-tc-editor pre[class*="language-"] .token.entity,
.w-tc-editor code[class*="language-"] .token.property,
.w-tc-editor pre[class*="language-"] .token.property,
.w-tc-editor code[class*="language-"] .token.operator,
.w-tc-editor pre[class*="language-"] .token.operator,
.w-tc-editor code[class*="language-"] .token.url,
.w-tc-editor pre[class*="language-"] .token.url {
  color: var(--color-prettylights-syntax-constant);
}
.w-tc-editor code[class*="language-"] .token.atrule,
.w-tc-editor pre[class*="language-"] .token.atrule,
.w-tc-editor code[class*="language-"] .token.property-access .token.method,
.w-tc-editor pre[class*="language-"] .token.property-access .token.method,
.w-tc-editor code[class*="language-"] .token.keyword,
.w-tc-editor pre[class*="language-"] .token.keyword {
  color: var(--color-prettylights-syntax-keyword);
}
.w-tc-editor code[class*="language-"] .token.function,
.w-tc-editor pre[class*="language-"] .token.function {
  color: var(--color-prettylights-syntax-string);
}
.w-tc-editor code[class*="language-"] .token.important,
.w-tc-editor pre[class*="language-"] .token.important,
.w-tc-editor code[class*="language-"] .token.regex,
.w-tc-editor pre[class*="language-"] .token.regex,
.w-tc-editor code[class*="language-"] .token.variable,
.w-tc-editor pre[class*="language-"] .token.variable {
  color: var(--color-prettylights-syntax-string-regexp);
}
.w-tc-editor code[class*="language-"] .token.bold,
.w-tc-editor pre[class*="language-"] .token.bold,
.w-tc-editor code[class*="language-"] .token.important,
.w-tc-editor pre[class*="language-"] .token.important {
  color: var(--color-prettylights-syntax-markup-bold);
}
.w-tc-editor code[class*="language-"] .token.tag,
.w-tc-editor pre[class*="language-"] .token.tag {
  color: var(--color-prettylights-syntax-entity-tag);
}
.w-tc-editor code[class*="language-"] .token.attr-value,
.w-tc-editor pre[class*="language-"] .token.attr-value,
.w-tc-editor code[class*="language-"] .token.attr-name,
.w-tc-editor pre[class*="language-"] .token.attr-name {
  color: var(--color-prettylights-syntax-constant);
}
.w-tc-editor code[class*="language-"] .token.selector .class,
.w-tc-editor pre[class*="language-"] .token.selector .class,
.w-tc-editor code[class*="language-"] .token.class-name,
.w-tc-editor pre[class*="language-"] .token.class-name {
  color: var(--color-prettylights-syntax-entity);
}

/*  */
/* .navbar1 {
  width: 100%;
}

.body1 {
  display: flex;
  padding: 10px;
  height: calc(100% - 57px);
  margin-top: 5rem;
  background-color: #fff;
  box-sizing: border-box;
}
.sidebar1 {
  margin-right: 10px;
  max-height: 120px;
  flex-basis: 120px;
  border: 1px solid black;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
} */
#header 
{
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.content1 {
  padding: 10px;
  flex: 1;
}
/* cards css */
.ag-format-container {
  width: 1142px;
  margin: 0 auto;
  border: 0.5px solid black;
  margin-top: 5%;
  padding: 20px;
  border-radius: 25px;
}
.ag-courses_box {
  display: flex;
  /* background-color: rgb(242, 242, 242); */
  align-items: flex-start;
  flex-wrap: wrap;

  padding: 50px 0;
}
.ag-courses_item {
  flex-basis: calc(33.33333% - 30px);

  margin: 0 15px 30px;

  overflow: hidden;

  border-radius: 28px;
}
.ag-courses-item_link {
  display: block;
  padding: 30px 20px;
  background-color: #6f92a4;
  text-decoration: none;

  overflow: hidden;

  position: relative;
}
.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
  text-decoration: none;
  color: #fff;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
  transform: scale(10);
}
.ag-courses-item_title {
  min-height: 87px;
  margin: 0 0 25px;

  overflow: hidden;

  font-weight: bold;
  font-size: 30px;
  color: #ffffff;

  z-index: 2;
  position: relative;
}
.ag-courses-item_date-box {
  font-size: 18px;
  color: #fff;

  z-index: 2;
  position: relative;
}
.ag-courses-item_date {
  font-weight: bold;
  color: #ffffff;
  transition: color 0.5s ease;
}
.ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: #ffa740;

  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;

  border-radius: 50%;
  transition: all 0.5s ease;
}
.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
  background-color: #09691e;
}
.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
  background-color: #e44002;
}
.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
  background-color: #609;
}
.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
  background-color: #cd3e94;
}
.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
  background-color: #4c49ea;
}
@media only screen and (max-width: 979px) {
  .ag-courses_item {
    flex-basis: calc(50% - 30px);
  }
  .ag-courses-item_title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }
}
@media only screen and (max-width: 639px) {
  .ag-courses_item {
    flex-basis: 100%;
  }
  .ag-courses-item_title {
    min-height: 72px;
    line-height: 1;

    font-size: 24px;
  }
  .ag-courses-item_link {
    padding: 22px 40px;
  }
  .ag-courses-item_date-box {
    font-size: 16px;
  }
}
/* chat css  */
:root {
  --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --msger-bg: #fff;
  --border: 2px solid #ddd;
  --left-msg-bg: #ececec;
  --right-msg-bg: #579ffb;
}
.msger {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 100%;
  margin: 25px 10px;
  height: 80vh;
  /* height: calc(100% - 50px); */
  border: var(--border);
  border-radius: 5px;
  background: var(--msger-bg);
  box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
}
.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: var(--border);
  background: #eee;
  color: #666;
}
.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}
.msger-chat::-webkit-scrollbar {
  width: 6px;
}
.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}
.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.msg:last-of-type {
  margin: 0;
}
.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
.msg-bubble {
  max-width: 450px;
  padding: 15px;
  border-radius: 15px;
  background: var(--left-msg-bg);
}
.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}
.msg-info-time {
  font-size: 0.85em;
}
.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}
.right-msg {
  flex-direction: row-reverse;
}
.right-msg .msg-bubble {
  background: var(--right-msg-bg);
  color: #fff;
  border-bottom-right-radius: 0;
}
.right-msg .msg-img {
  margin: 0 0 0 10px;
}
.msger-inputarea {
  display: flex;
  padding: 10px;
  border-top: var(--border);
  background: #eee;
}
.msger-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}
.msger-input {
  flex: 1;
  background: #ddd;
}
.msger-send-btn {
  margin-left: 10px;
  background: rgb(0, 196, 65);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.23s;
}
.msger-send-btn:hover {
  background: rgb(0, 180, 50);
}
.msger-chat {
  background-color: #fcfcfe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23dddddd' fill-opacity='0.4'%3E%3Cpath d='M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z'/%3E%3Cpath id='path6_fill-copy' d='M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z'/%3E%3Cpath d='M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z'/%3E%3Cpath d='M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z'/%3E%3Cpath d='M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z'/%3E%3Cpath d='M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z'/%3E%3Cpath d='M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/*  */
.live {
  overflow: hidden;
}
.live  > li {
    list-style: none;
    position: relative;
    padding: 0 0 0 2em;
    margin: 0 0 0.5em 10px;
    transition: 0.12s;
  }
:is(.live > li)::before {
      position: absolute;
      content: "\2022";
      font-family: Arial;
      color: #fff;
      top: 0;
      left: 0;
      text-align: center;
      font-size: 2em;
      opacity: 0.5;
      line-height: 0.75;
      transition: 0.5s;
    }
:is(.live > li):hover {
      color: #463c3c;
    }
:is(.live > li):hover::before {
        transform: scale(2);
        opacity: 1;
        text-shadow: 0 0 4px;
        transition: 0.1s;
      }
:is(.live.type2 > li)::before {
        content: "";
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 3px;
        line-height: 0;
        top: 0.27em;
        left: 5px;
      }
:is(.live.type2 > li):hover::before {
        transform: none;
        border-radius: 5px;
        width: 25px;
        left: -10px;
        background: #ba5353;
      }
.live.numbers {
  counter-reset: xxx 0;
}
:is(.live.numbers > li)::before {
      content: counter(xxx, decimal) ".";
      counter-increment: xxx 1;
      font-family: "Roboto Condensed";
      font-size: 1em;
      opacity: 0.5;
      line-height: 1.4;
      transition: 0.5s;
    }
:is(.live.numbers > li):hover:before {
      opacity: 1;
      left: -10px;
      transform: none;
      text-shadow: none;
      transition: 0.12s;
    }
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Condensed Regular"), local("RobotoCondensed-Regular"),
    url(http://themes.googleusercontent.com/static/fonts/robotocondensed/v7/Zd2E9abXLFGSr9G3YK2MsFzqCfRpIA3W6ypxnPISCPA.woff)
      format("woff");
}
*/

/*  */

.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}
/* 3 */
.btn-3 {
  background: rgb(0, 172, 238);
  background: linear-gradient(
    0deg,
    rgba(0, 172, 238, 1) 0%,
    rgba(2, 126, 251, 1) 100%
  );
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: rgba(2, 126, 251, 1);
  transition: all 0.3s ease;
}
.btn-3:before {
  height: 0%;
  width: 2px;
}
.btn-3:after {
  width: 0%;
  height: 2px;
}
.btn-3:hover {
  background: transparent;
  box-shadow: none;
}
.btn-3:hover:before {
  height: 100%;
}
.btn-3:hover:after {
  width: 100%;
}
.btn-3 span:hover {
  color: rgba(2, 126, 251, 1);
}
.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: rgba(2, 126, 251, 1);
  transition: all 0.3s ease;
}
.btn-3 span:before {
  width: 2px;
  height: 0%;
}
.btn-3 span:after {
  width: 0%;
  height: 2px;
}
.btn-3 span:hover:before {
  height: 100%;
}
.btn-3 span:hover:after {
  width: 100%;
}
/*  */
/* @import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap");
:root {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "Source Sans Pro", sans-serif;
  scroll-behavior: smooth;
}

.containerBox {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  background-color: #141616;
}

@media (max-width: 700px) {
  .containerBox {
    flex-flow: column wrap;
  }
} */
/* #navbarContainer {
  background-color: #212129;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 2rem 1rem;
  padding-bottom: 5rem;
  border-radius: 0.4rem;
  position: sticky;
  top: 0;
  left: 0;
  flex: 1;
  height: 90vh;
  min-width: min-content;
  transition: all 0.2s ease-in-out;
  overflow-x: hidden;
  overflow-y: scroll;
}

#navbarContainer::-webkit-scrollbar {
  width: 0.7rem;
}

#navbarContainer::-webkit-scrollbar-track {
  background: #1e1e26;
}

#navbarContainer::-webkit-scrollbar-thumb {
  background: #393942;
  border-radius: 0.4rem;
}

#navbarContainer::-webkit-scrollbar-thumb:hover {
  background: #5a3d5c;
}

@media (max-width: 700px) {
  #navbarContainer {
    height: max-content;
    overflow-y: hidden;
    position: static;
    padding: 0 2rem;
  }
}

#navbarContainer header {
  font-size: 4rem;
  padding: 2rem 1rem;
  font-weight: 600;
  color: #fafafa;
}
@media (max-width: 700px) {
  #navbarContainer header {
    padding: 2rem 0;
  }
}
#navbarContainer h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 600;
  padding: 0;
  display: inline-block;
} */
#menu-lbl {
  display: none;
  font-size: 2.5rem;
  font-weight: 400;
  float: right;
  width: 3rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  box-sizing: content-box;
  margin-top: 0.5rem;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
}
#menu-lbl img {
  width: auto;
  max-width: 100%;
  height: auto;
}
#menu-lbl:hover {
  box-shadow: 0 0 5px #f638dc;
}
#menu-lbl:active {
  background-color: #5a3d5c;
  color: #1e1e26;
}
@media (max-width: 700px) {
  #menu-lbl {
    display: block;
  }
}
/* .nav-link {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 1rem;
  transition: border-width 0.2s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  color: #bbe1fa;
}
.nav-link:hover {
  background-color: #131418;
  border-left: 0.4rem solid #f638dc;
  border-radius: 0.4rem;
  color: #fafafa;
  padding-left: 0.6rem;
}

@media (max-width: 700px) {
  #nav-links {
    display: none;
  }
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked ~ #nav-links {
  display: block;
}
#main-doc {
  flex: 3;
  padding: 1rem 2rem;
}
@media (max-width: 700px) {
  #main-doc {
    padding: 0;
  }
}
.main-section {
  border: 0.2rem solid #2f5869;
  border-style: solid none;
  padding: 4rem 3rem;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .main-section {
    padding: 4rem 2rem;
  }
}
.main-section h2 {
  font-size: 3.5rem;
  color: #fafafa;
  font-weight: 400;
}

.main-section > p,
.main-section > ul,
.main-section > img,
.note {
  font-size: 1.8rem;
  max-width: 65rem;
  width: auto;
  color: #fafafa;
}

@media (max-width: 960px) {
  .main-section > p,
  .main-section > ul,
  .main-section > img,
  .main-section > pre,
  .note {
    max-width: 100%;
    font-size: 1.6rem;
  }
}

.main-section li {
  padding: 0.5rem 0;
}

.main-section a,
.main-section code {
  text-decoration: none;
  color: #bbe1fa;
}

.main-section a:hover {
  text-decoration: underline;
}

.main-section code {
  background-color: #5a3d5c;
} */
.code-snip {
  background-color: #393846;
  font-family: "Courier New", Courier, monospace;
  border-radius: 0.4rem;
  border-left: 0.4rem solid #f638dc;
  line-height: 1.5;
  white-space: pre-line;
  width: auto;
  max-width: 65rem;
  margin: 2rem 0;
  /* padding: 0 3rem 2rem 3rem; */
  padding: 10px;
}
@media (max-width: 700px) {
  .code-snip {
    padding: 0 1rem 2rem 1rem;
  }
}
.token {
  color: #7bb9e2;
}
.selector {
  color: rgb(215, 157, 75);
}
.property {
  color: rgb(156, 220, 240);
  padding-left: 3rem;
}
@media (max-width: 700px) {
  .property {
    padding-left: 1rem;
  }
}
.note {
  background-color: #3d2c00;
  border-radius: 0.4rem;
  border-left: 0.4rem solid #f7b73c;
  padding: 0.5rem 3rem;
}
/* footer {
  text-align: center;
  padding: 1rem;
  background-color: #5a3d5c;
}
footer a {
  color: #7bb9e2;
  text-decoration: none;
}
footer a:hover {
  color: #f638dc;
} */
/*  */
.NextButtonContainer {
  position: absolute;
  right: 0;
  margin-right: 5rem;
  margin-bottom: 2rem;
}
/*  */
div.cards {
  margin: 80px auto;
  max-width: 960px;
  text-align: center;
}
div.card {
  background: "black";
  display: inline-block;
  margin: 8px;
  max-width: 300px;
  perspective: 1000;
  position: relative;
  text-align: left;
  transition: all 0.3s 0s ease-in;
  width: 300px;
  z-index: 1;
}
/*  */
.u-btn {
  all: unset;
  cursor: pointer;
}
.chatbox {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
  bottom: 0;
  position: fixed;
  right: 2em;
  transform: translatey(23.5em);
  transition: all 300ms ease;
  width: 50em;
}
.chatbox--is-visible {
  transform: translatey(0);
}
.chatbox__header {
  background: #212129;
  border-top-right-radius: 0.5em;
  border-top-left-radius: 0.5em;
  display: flex;
  justify-content: space-between;
  padding: 0 0.75em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.chatbox__header-cta-text {
  color: #fff;
  font-weight: 300;
  font-size: 1.8rem;
}
.chatbox__header-cta-icon {
  color: #fff;
  margin-right: 0.75em;
}
.chatbox__header-cta-btn {
  background: none;
  border: none;
  color: #aaa;
  padding: 0.5em;
  transition: all 300ms ease;
}
.chatbox__header-cta-btn:hover {
  color: #fff;
}
.chatbox__display {
  background: #0e2838;
  height: 17em;
  overflow: auto;
  padding: 0.75em;
}
.chatbox__display2 {
  background: #0e2838;
  height: 44em;
  overflow: auto;
  padding: 0.75em;
}
.chatbox__display-chat {
  background: #fff;
  border-radius: 0.5em;
  color: #000000;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.75em;
  text-align: justify;
}
.chatbox__form {
  display: flex;
}
.chatbox__form-input {
  border: none;
  color: #222;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 1.25em 1em;
  width: 100%;
}
.chatbox__form-input:required {
  box-shadow: none;
}
.chatbox__form-submit {
  background: none;
  border: none;
  color: #aaa;
  padding: 1em;
}
/*  */
.chatbox__display-message {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.chatbox__display-message-content {
  padding: 10px;
  border-radius: 10px;
  max-width: 80%;
  word-break: break-word;
  background-color: #f0f0f0;
  align-self: flex-end;
  font-size: larger;
  font-weight: 500;
}
.chatbox__display-message-timestamp {
  align-self: flex-end;
  margin-top: 5px;
  font-size: 0.8em;
  color: #aaa;
}
.chatbox__display-message--support .chatbox__display-message-content {
  align-self: flex-start;
  background-color: #e6e6e6;
}
.chatbox__display-message--support .chatbox__display-message-timestamp {
  align-self: flex-start;
}
.chatbox__display-message--customer .chatbox__display-message-content {
  background-color: #007aff;
  color: #fff;
  align-self: flex-end;
  width: 15%;
}
.chatbox__display-message--customer .chatbox__display-message-timestamp {
  align-self: flex-end;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.typing-demo {
  color: #333;
  overflow: hidden;
  font-weight: bold;
  white-space: nowrap;
  animation: typing 2s steps(10, end) forwards;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.typing {
  display: inline-block;
}
.typing .typing-dot {
    float: left;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 2px;
    background: #444;
    animation-name: show;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
:is(.typing .typing-dot):nth-child(2) {
      animation-delay: 0.3s;
    }
:is(.typing .typing-dot):nth-child(3) {
      animation-delay: 0.6s;
    }
@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* quesionnaire */
.listsContainer {
  width: 70%;
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a {
  text-decoration: none;
}
ul {
  text-decoration: none;
}
/**
 * Hidden fallback
 */
[hidden] {
  display: none;
  visibility: hidden;
}
/* .nav a,
.nav label {
  display: block;
  padding: 0.85rem;
  color: #fff;
  background-color: #285e78;
  box-shadow: inset 0 -1px lighten(#151515, 3%);
  transition: all 0.25s ease-in;
  &:focus,
  &:hover {
    color: "white";
    background-color: #323c43;
  }
}

.nav label {
  cursor: pointer;
} */
/**
 * Styling first level lists items
 */
.group-list a,
.group-list label {
  padding-left: 2rem;
  background: #2c7597;
  margin-top: 2px;

  box-shadow: inset 0 -1px lighten(#252525, 7%);
}
:is(.group-list a,.group-list label):focus,:is(.group-list a,.group-list label):hover {
    background: darken(#252525, 7%);
  }
/**
 * Styling second level list items
 */
.sub-group-list a,
.sub-group-list label {
  padding-left: 4rem;
  background: #3784a6;
  box-shadow: inset 0 -1px lighten(#353535, 7%);
}
:is(.sub-group-list a,.sub-group-list label):focus,:is(.sub-group-list a,.sub-group-list label):hover {
    background: darken(#353535, 7%);
  }
/**
 * Styling third level list items
 */
.sub-sub-group-list a,
.sub-sub-group-list label {
  padding-left: 6rem;

  background: #508da7;
  box-shadow: inset 0 -1px lighten(#454545, 7%);
}
:is(.sub-sub-group-list a,.sub-sub-group-list label):focus,:is(.sub-sub-group-list a,.sub-sub-group-list label):hover {
    background: darken(#454545, 7%);
  }
/**
 * Hide nested lists
 */
.group-list,
.sub-group-list,
.sub-sub-group-list {
  height: 100%;
  margin-bottom: 10px;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.nav__list input[type="checkbox"]:checked + label + ul {
  /* reset the height when checkbox is checked */
  max-height: 1000px;
}
/*  */
.rowContainer {
  display: flex;
}
.colContainer {
  flex-basis: 50%;
  padding: 10px;
}
.WelcomeToWebsiteTitle {
  font-weight: 800;
}
/*  */
.questionContainer {
  /*  */
  padding: 10px;
}
.containerQuestion {
  width: 100%;
  height: 100%;
  background: rgba(222, 244, 255, 1);
}
.main_div_container {
  width: 100%;
  height: 650px;
  padding: 2%;
  display: flex;
  justify-content: space-between;
}
.question_container {
  width: 60%;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 100, 0.2);
  overflow: hidden;
}
.question_container h1 {
  color: #000000;
  font-size: 25px;
}
.question_container h2 {
  height: 60px;
  padding: 30px;
  color: #fff;
  background: #2c7597;
  font-size: 25px;
}
.options_container {
  height: 350px;
  padding: 10px 0px;
  padding-left: 100px;
}
.option_input {
  padding: 10px 0;
}
.option_input input {
  width: 20px;
  height: 20px;
  margin: 10px;
  cursor: pointer;
}
.buttonsContainer {
  flex: 1 0 100px;
}
.btns_container {
  background-color: #fff;
  border-radius: 5px;
  padding-left: 100px;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
}
/* .btn {
  width: 80px;
  padding: 5px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 100, 0.2),
    inset 0px 0px 10px rgba(0, 0, 100, 0.1);
  color: #fff;
  border: 2px solid rgba(42, 199, 242, 1);
  background: #2c7597;
  transition: all 0.1s;
}

.btn:nth-child(2) {
  display: none;
}

.btn:active {
  transform: scale(0.98);
  box-shadow: 0px 0px 10px rgba(0, 0, 100, 0.2),
    inset 0px 0px 10px rgba(0, 0, 100, 0.3);
} */
/********************************************/
.store_result_container {
  width: 35%;
  height: 100%;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 100, 0.2);
}
/********************************************/
.answer_store {
  width: 90%;
  height: 38%;
  margin: 5%;
  color: #fff;
  background: #2c7597;
  border: 2px solid rgba(42, 199, 242, 1);
  box-shadow: inset 0px 0px 5px rgba(0, 0, 100, 0.2);
  overflow: hidden;
  border-radius: 10px;
  text-align: center;
}
.your_choice {
  width: 100%;
  padding: 5px;
  font-size: large;
}
.your_choice > div {
  width: 40%;
  display: inline-block;
  vertical-align: top;
}
.your_choice > div:nth-child(2) {
  color: rgb(104, 255, 104);
}
/********************************************/
.result_show {
  width: 90%;
  height: 38%;
  margin: 5%;
  color: #fff;
  background: #2c7597;
  border: 2px solid rgba(42, 199, 242, 1);
  box-shadow: inset 0px 0px 5px rgba(0, 0, 100, 0.2);
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
}
#score {
  width: 90%;
  height: 50px;
  margin: 5%;
  padding: 5px;
  color: #fff;
  background: #2c7597;
  border: 2px solid rgba(42, 199, 242, 1);
  box-shadow: inset 0px 0px 5px rgba(0, 0, 100, 0.2);
  text-align: center;
  border-radius: 10px;
  font-size: 30px;
}
/*  */
.radio-label {
  font-size: 15px;
}
/*  */
.loaderContainer {
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
}
.loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2em;
  height: 2em;
  border-radius: 0.5em;
  transform: translate(-50%, -50%);
}
.loader:before {
  animation: before 2s infinite;
}
.loader:after {
  animation: after 2s infinite;
}
@keyframes before {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75),
      0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75),
      1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75),
      -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75),
      -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}
/**
 * Attempt to center the whole thing!
 */
.loader {
  position: absolute;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
}
/*  */
.wrongAnswerContainer {
  padding: 10px;
}
/* starts */
.start_btn,
.info_box,
.quiz_box,
.result_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.info_box.activeInfo,
.quiz_box.activeQuiz,
.result_box.activeResult {
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.answerExplanation {
  padding: 2px;
  font-size: 18px;
  background-color: #bfd2e56d;
  /*  */
}
.answerInfo {
  font-size: 15px;
  padding: 10px;
  border: 1px solid #007bff;
  width: 40%;
  margin-left: 10px;
  color: #097af4;
  border-radius: 15px;
  cursor: pointer;
  margin-bottom: 10px;
}
.start_btn button {
  font-size: 25px;
  font-weight: 500;
  color: #007bff;
  padding: 15px 30px;
  outline: none;
  border: none;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}
.info_box {
  width: 540px;
  background: #fff;
  border-radius: 5px;
  transform: translate(-50%, -50%) scale(0.9);
  /* opacity: 0; */
  /* pointer-events: none; */
  transition: all 0.3s ease;
}
.info_box .info-title {
  height: 60px;
  width: 90%;
  border-bottom: 1px solid lightgrey;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 5px 5px 0 0;
  font-size: 20px;
  font-weight: 600;
}
.info_box .info-list {
  padding: 15px 30px;
}
.info_box .info-list .info {
  margin: 5px 0;
  font-size: 17px;
  padding: 5px;
}
.info_box .info-list .info span {
  font-weight: 600;
  color: #007bff;
}
.info_box .buttons {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px;
  border-top: 1px solid lightgrey;
}
.info_box .buttons button {
  margin: 0 5px;
  height: 40px;
  width: 100px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 5px;
  border: 1px solid #007bff;
  transition: all 0.3s ease;
}
.quiz_box {
  max-width: 650px;
  background: #fff;
  border-radius: 5px;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.3s ease;
}
.quiz_box header {
  position: relative;
  z-index: 2;
  height: 70px;
  padding: 0 30px;
  background: #fff;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
  gap: 1rem;
}
.quiz_box header .title {
  font-size: 20px;
  font-weight: 600;
}
.quiz_box header .titlelength {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 5px;
  border-radius: 10px;
  background-color: #c3cfdc;
  width: 100px;
  text-align: center;
}
.quiz_box header .timer {
  color: #004085;
  background: #cce5ff;
  border: 1px solid #b8daff;
  padding: 8px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  margin-left: 10px;
}
.quiz_box header .timer .time_left_txt {
  font-weight: 400;
  font-size: 17px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.quiz_box header .timer .timer_sec {
  font-size: 18px;
  font-weight: 500;
  height: 30px;
  width: 60px;
  color: #fff;
  border-radius: 5px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #343a40;
}
.quiz_box header .time_line {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 3px;
  background: #007bff;
}
.sectionContainer {
  padding: 0 30px;
  /* background: #fff; */
}
.sectionContainer .que_text {
  font-size: 22px;
  /* pointer-events: none; */
  font-weight: 600;
  line-height: 30px;
  max-height: 150px;
  overflow-y: auto;
  padding: 15px 0;
}
.sectionContainer .option_list {
  padding: 20px 0 0 0;
  display: block;
}
.sectionContainer .option_list .option {
  background: aliceblue;
  border: 1px solid #84c5fe;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 17px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.sectionContainer .option_list .option:last-child {
  margin-bottom: 0px;
}
.sectionContainer .option_list .option:hover {
  color: #004085;
  background: #cce5ff;
  border: 1px solid #b8daff;
}
.sectionContainer .option_list .option.correct {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}
.sectionContainer .option_list .option.incorrect {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}
.sectionContainer .option_list .option .icon {
  height: 26px;
  width: 26px;
  border: 2px solid transparent;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  transition: all 0.3s ease;
  line-height: 24px;
}
.option_list .option .icon.tick {
  color: #23903c;
  border-color: #23903c;
  background: #d4edda;
}
.option_list .option .icon.cross {
  color: #a42834;
  background: #f8d7da;
  border-color: #a42834;
}
/* 
footer {
  height: 60px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid lightgrey;
}

footer .total_que span {
  display: flex;
  user-select: none;
}

footer .total_que span p {
  font-weight: 500;
  padding: 0 5px;
}

footer .total_que span p:first-child {
  padding-left: 0px;
}

footer button {
  height: 40px;
  padding: 0 13px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  background: #007bff;
  border: 1px solid #ffffff;
  line-height: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

footer button:hover {
  background: #0263ca;
}

footer button.show {
  opacity: 1;
  transform: scale(1);
} */
.result_box {
  background: #fff;
  border-radius: 5px;
  display: flex;
  padding: 100px 30px;
  width: 640px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.3s ease;
}
.result_box .iconSuccess {
  font-size: 100px;
  color: #09691e;
  margin-bottom: 10px;
}
.result_box .iconFailed {
  font-size: 100px;
  color: #e44002;
  margin-bottom: 10px;
}
.result_box .complete_text {
  font-size: 20px;
  font-weight: 500;
}
.result_box .complete_textSuccess {
  font-size: 20px;
  color: #09691e;
  font-weight: 500;
}
.result_box .complete_texFailed {
  font-size: 20px;
  color: #e44002;
  font-weight: 500;
}
.result_box .score_text .CorrectVal {
  display: flex;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 500;
  color: #09691e;
}
.result_box .score_text .IncorrectVal {
  display: flex;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 500;
  color: #e44002;
}
.result_box .score_text .timeoutVal {
  display: flex;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 500;
  color: #007aff;
}
.result_box .score_text p {
  padding: 0 4px;
  font-weight: 600;
  color: #007aff;
}
.result_box .buttons {
  display: flex;
  margin: 20px 0;
}
.result_box .buttons button {
  margin: 0 10px;
  height: 45px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 5px;
  border: 1px solid #007bff;
  transition: all 0.3s ease;
}
.buttons button.restart {
  color: #fff;
  background: #007bff;
}
.buttons button.restart:hover {
  background: #0263ca;
}
.buttons button.quit {
  color: #007bff;
  background: #fff;
}
.buttons button.quit:hover {
  color: #fff;
  background: #007bff;
}
.front-content {
  width: 50%;
  float: left;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.front-content .hero-txt {
  font-size: 4.2em;
  font-weight: bold;
  color: #4a5080;
  line-height: 1.2;
  margin-bottom: 20px;
}
.secondary-txt {
  font-size: 2em;
  line-height: 1.3;
  margin-bottom: 30px;
}
.__next-prerender-indicator {
  display: none !important;
}
/*  */
.fullContainer {
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  height: 100vh;
  background-color: #fff;

}
.outerDiv {
  /* width: 97%; */
  height: 90vh;
  border: 3px solid red;
}
.fullscreenMoreInfo {
  display: none;
}
.fullscreenEnabled:fullscreen .fullscreenintro {
  display: none;
}
.fullscreenEnabled:fullscreen .fullscreenMoreInfo {
  display: block;
}
/* login page css  */
.login-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loginForm {
  max-width: 500px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 45px 100px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  border-radius: 10px;
}
.loginForm input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #fff;
  width: 100%;
  border: 1px solid black;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.loginForm input::-moz-placeholder {
  color: rgb(194, 196, 201);
  font-weight: 400;
}
.loginForm input::placeholder {
  color: rgb(194, 196, 201);
  font-weight: 400;
}
.signUpForm input::-moz-placeholder {
  color: rgb(194, 196, 201);
  font-weight: 400;
}
.signUpForm input::placeholder {
  color: rgb(194, 196, 201);
  font-weight: 400;
}
.loginForm button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4688ce;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3 ease;
  cursor: pointer;
}
.loginForm button:hover,
.loginForm button:active,
.loginForm button:focus {
  background: #004085;
}
.loginForm .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before,
.container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #ef3b3a;
}
.inputErrors {
  color: #ef3b3a;
  margin-bottom: 5px;
  text-align: start;
}
.cardSummaryFooter {
  font-size: 12px;
}
.tableContainer {
  margin-right: 40px;
}
/* table css  */
.responsive-table li {
  border-radius: 3px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.responsive-table .table-header {
  background-color: #285e78;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: white;
}
.responsive-table .table-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
.responsive-table .col-1 {
  flex-basis: 10%;
}
.responsive-table .col-2 {
  flex-basis: 40%;
}
.responsive-table .col-3 {
  flex-basis: 25%;
}
.responsive-table .col-4 {
  flex-basis: 25%;
}
@media all and (max-width: 767px) {
  .responsive-table .table-header {
    display: none;
  }
  .responsive-table li {
    display: block;
  }
  .responsive-table .col {
    flex-basis: 100%;
    display: flex;
    padding: 10px 0;
  }
  .responsive-table .col:before {
    color: #6c7a89;
    padding-right: 10px;
    content: attr(data-label);
    flex-basis: 50%;
    text-align: right;
  }
}
.customButton {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #285378;
  border: 0;
  padding: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bolder;
  transition: all 0.3 ease;
  border-radius: 5px;
  /* cursor: pointer; */
}
.customButtonDisable{
  cursor: auto;
}
.noselection .ace_marker-layer .ace_selection {
  background: transparent;
}
.noselection .ace_cursor {
  color: transparent;
}
.Codingnavbar {
  display: flex;
  align-items: center;
  padding-left: 20px;
  height: 50px;
  text-align: center;
  color: #000000;
  background-color: #2c7597;
  gap: 20px;
}
.Codingnavbar label {
  color: #ffffff;
}
.Codingnavbar h1 {
  color: #ffffff;
  font-size: 24px;
}
#no {
  height: 36px;
  width: 80px;
  font-size: 16px;
  color: rgb(185, 185, 185);
  border: 1px solid #afec3f;
  border-radius: 4px;
  background-color: #474747;
}
#no:focus {
  outline: none;
}
.css-2b097c-container {
  width: 120px;
  color: black;
  background-color: #474747;
}
.css-yk16xz-control {
  background-color: #474747 !important;
  border-color: #afec3f !important;
}
.questionContainer {
  padding: 20px;
}
.questionContainer h1 {
  font-weight: 500;
}
.compilerContainer {
  padding: 20px;
}
/*  */
.mainCoding {
  display: flex;
  /* height: calc(100vh - 50px); */
}
.left-container {
  position: relative;
  flex: 60%;
  /* height: calc(100vh - 50px); */
}
.right-container {
  flex: 40%;
  /* height: calc(100vh - 50px); */
  display: flex;
  flex-direction: column;
  background-color: #242424;
  border-left: 3px solid #1f65e6;
  padding: 5px;
}
.run-btn {
  height: 40px;
  font-size: 26px;
  background-color: #2c7597;
  color: white;
}
.sbm-btn {
  height: 40px;
  font-size: 26px;
  background-color: #33be1e;
  color: white;
}
.Codingcontainer {
  display: flex;
}
.column-60 {
  flex-basis: 60%;
}
.column-50 {
  flex-basis: 60%;
}
.column-40 {
  flex-basis: 40%;
}
.Codingrow {
  display: flex;
  flex-direction: column;
}
.Codingrowrow-item {
  flex-basis: 20%;
}
.btn-Containers {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 1rem;
  margin-top: 10%;
}
#wave {
  height: 70px;
  width: 70px;
  fill: #000;
}
/* Individual animations for each line */
#Line_1 {
  animation: pulse 1s infinite;
  animation-delay: 0.15s;
}
#Line_2 {
  animation: pulse 1s infinite;
  animation-delay: 0.3s;
}
#Line_3 {
  animation: pulse 1s infinite;
  animation-delay: 0.45s;
}
#Line_4 {
  animation: pulse 1s infinite;
  animation-delay: 0.6s;
}
#Line_5 {
  animation: pulse 1s infinite;
  animation-delay: 0.75s;
}
#Line_6 {
  animation: pulse 1s infinite;
  animation-delay: 0.9s;
}
#Line_7 {
  animation: pulse 1s infinite;
  animation-delay: 1.05s;
}
#Line_8 {
  animation: pulse 1s infinite;
  animation-delay: 1.2s;
}
#Line_9 {
  animation: pulse 1s infinite;
  animation-delay: 1.35s;
}
@keyframes pulse {
  0% {
    transform: scaleY(1);
    transform-origin: 50% 50%;
  }

  50% {
    transform: scaleY(0.7);
    transform-origin: 50% 50%;
  }

  100% {
    transform: scaleY(1);
    transform-origin: 50% 50%;
  }
}
.testContainer
{
  position: relative;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
}
.testContainer > *:not(.overlay) {
  z-index: 1;
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blur-background {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3); 
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 1.2rem;
  text-align: center;
}
.custom-code-editor textarea
{
  border: none;
  outline: none;
}
/* .languageSelector
{
  border: none;
  outline: none;
  margin: 0 0 20px 0;
} */
