@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200..1000&display=swap");

::-webkit-scrollbar {
  width: 3px;
  height: 8px;
  border-radius: 5px;
}

/* Track */

::-webkit-scrollbar-track {
  background: white;
}

/* Handle */

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #000;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #181818;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  color: #11181C;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1570px) {
  .container {
    padding: 0 15px;
  }
}

.default-switch input {
  display: none;
}

.default-switch input:checked ~ span {
  background-color: #FF592C;
}

.default-switch input:checked ~ span:after {
  left: 12px;
}

.default-switch span {
  width: 26px;
  min-width: 26px;
  height: 16px;
  background-color: #C1C8CD;
  border-radius: 10px;
  position: relative;
  display: block;
  transition: 0.3s;
  cursor: pointer;
}

.default-switch span:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFF;
  transition: 0.3s;
}

.slider-partners {
  transform: translateY(0);
}

.slider-partners.start {
  animation: anim-partners infinite 400s;
}

@keyframes anim-partners {
  0% {
    transform: translateY(0);
  }

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

.modal {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000000;
  display: none;
}

.modal.show {
  display: flex;
}

.modal-fon {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.41);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}

.modal-body {
  width: 100%;
  max-width: 500px;
  min-height: 200px;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 576px) {
  .modal-body {
    margin: 0 15px;
  }
}

@media (max-width: 576px) {
  .modal-body {
    width: 100% !important;
    max-width: 100% !important;
    height: 100dvh;
    /* Օգտագործում է փոփոխվող viewport-ի բարձրությունը */
    max-height: 100vh;
    /* Որոշ դեպքերում ավելի հուսալի է */
    border-radius: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 15px;
  transform: rotate(45deg);
  font-size: 30px;
  cursor: pointer;
}

.modal-content {
  width: 100%;
  padding: 40px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 40px 20px 20px;
  }
}

@media (max-width: 640px) {
  .modal-content {
    padding: 16px;
  }
}

.modal-tooltip {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.modal-tooltip.show {
  opacity: 1;
  visibility: visible;
}

.modal-tooltip-fon {
  background-color: rgba(0, 0, 0, 0.71);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal-tooltip-content {
  padding: 12px;
  border-radius: 16px;
  background: #FFF;
  width: calc(100% - 32px);
  height: auto;
  position: absolute;
  bottom: 16px;
  z-index: 1;
  left: 16px;
}

.def-input {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #D7DBDF;
  background: #FFF;
  display: flex;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  padding-left: 16px;
}

.def-input.disabled {
  background: #EDF3FF;
}

.def-input.disabled input {
  font-weight: bold;
}

.def-input input {
  width: 100%;
  height: 100%;
  padding-left: 8px;
  background-color: transparent;
}

.def-input i {
  color: #1150CB;
  font-size: 18px;
}

.mobile-menu-board {
  width: 30px;
  height: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  .mobile-menu-board {
    display: flex;
  }
}

.mobile-menu-board.active span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 10px;
}

.mobile-menu-board.active span:nth-of-type(2) {
  opacity: 0;
}

.mobile-menu-board.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: -10px;
}

.mobile-menu-board span {
  transition: 0.3s;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  margin-bottom: 8px;
  background-color: #1150CB;
  position: relative;
}

.mobile-menu-board span:last-child {
  margin: 0;
}

.mobile-menu-board span:nth-of-type(1) {
  transform: rotate(0);
  top: 0;
}

.mobile-menu-board span:nth-of-type(2) {
  opacity: 1;
}

.mobile-menu-board span:nth-of-type(3) {
  transform: rotate(0);
  top: 0;
}

.ticket-dashed-silid {
  width: 1px;
  height: auto;
  position: relative;
}

.ticket-dashed-silid:after {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  height: calc(100% - 42px);
  border: 1px dashed #D7DBDF;
}

.scroll-bottom-none::-webkit-scrollbar {
  height: 0;
}

.scroll-right-none::-webkit-scrollbar {
  width: 0;
}

.change-rate {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
}

.change-rate.show {
  opacity: 1;
  transform: translatey(0);
  visibility: visible;
}

.change-rate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  background: #fff;
  padding: 0 24px;
}

.change-rate-header i {
  font-size: 32px;
  cursor: pointer;
}

.change-rate-body {
  width: 100%;
  height: calc(100% - 78px);
  background-color: #EDF3FF;
}

.change-rate-body .container {
  padding: 24px;
}

.change-rate-body .container::-webkit-scrollbar {
  width: 0;
}

@media (max-width: 768px) {
  .change-rate-body .container {
    padding: 16px;
  }
}

.mobile-filter-body {
  display: none;
}

.mobile-filter-body.show {
  display: block;
}

.border-b {
  border-bottom: 1px solid #D7DBDF;
}

.def-checkout-input {
  position: relative;
  width: 100%;
}

.def-checkout-input.active input {
  border: 1px solid #484747;
}

.def-checkout-input.active .def-checkout-input-pl {
  opacity: 0;
}

.def-checkout-input input {
  width: 100%;
  display: block;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #C1C8CD;
  background: transparent;
  padding-left: 12px;
  transition: 0.3s;
  z-index: 1;
  position: relative;
}

.def-checkout-input-pl {
  position: absolute;
  left: 0;
  top: 22px;
  width: 100%;
  min-height: 52px;
  white-space: nowrap;
  color: #7E868C;
  font-size: 16px;
  overflow-x: auto;
  padding: 0 12px 2px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.def-checkout-input-pl::-webkit-scrollbar {
  height: 3px;
  cursor: pointer;
}

.def-checkout-input-pl::-webkit-scrollbar-thumb {
  background: #3FC431;
  border-radius: 10px;
}

.def-checkout-input-pl::-webkit-scrollbar-thumb:hover {
  background: #2a8f20;
}

.def-tooltip-body {
  position: fixed;
  background: #687076;
  color: #fff;
  z-index: 10;
  padding: 5px 8px;
  border-radius: 6px;
  transform: translate(-15px, calc(-100% - 10px));
  max-width: 223px;
  height: auto;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.5px;
  margin-left: calc(0px - var(--xpos));
}

.def-tooltip-body:after {
  content: "";
  position: absolute;
  left: 12px;
  top: calc(100% - 1px);
  width: 16px;
  height: 9px;
  background: #6a7076;
  clip-path: polygon(50% 100%, 1% 0, 100% 0);
  transform: translateX(var(--xpos));
}

.box-shadow-user {
  box-shadow: 0px 2px 4px 0px rgba(17, 80, 203, 0.1), 0px 24px 60px 0px rgba(17, 80, 203, 0.05), 0px 12px 24px 0px rgba(17, 80, 203, 0.05);
}

.checkout-shadow {
  box-shadow: 0px 2px 0px #E6E8EB;
}

.white-btn-shadow {
  box-shadow: 0px 1px 0px #E6E8EB;
}

.tg-icon-anim {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tg-icon-anim:after {
  content: "";
  width: 200px;
  height: 200px;
  background: #40B3E0;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: call 2s infinite;
}

.tg-icon-anim img {
  position: relative;
  z-index: 1;
}

@keyframes call {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

.time-picker {
  width: 100%;
  height: 212px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
}

.time-picker .active-massa {
  position: absolute;
  left: 0;
  top: 87px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time-picker .active-massa-item {
  width: 64px;
  height: 36px;
  background: #40B3E0;
  border-radius: 8px;
}

.time-picker .picker {
  width: 64px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  padding-bottom: 80px;
  padding-top: 88px;
}

.time-picker .picker::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.time-picker .picker .item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  height: 36px;
  align-self: stretch;
  border-radius: 8px;
  background: transparent;
  color: #7E868C;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  transform: scale(0.6);
}

.time-picker .picker .item:nth-of-type(2) {
  transform: scale(0.8);
}

.time-picker .picker .item.active {
  color: #11181C;
  transform: scale(1);
}

.desktop-select-time-fon {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1;
  display: none;
}

.desktop-select-time-fon.show {
  display: block;
}

.def-checkbox input {
  display: none;
}

.def-checkbox input:checked ~ span {
  border: 1px solid #1150CB;
  background: #1150CB;
}

.def-checkbox input:checked ~ span:after {
  opacity: 1;
}

.def-checkbox.green input:checked ~ span {
  border: 1px solid #3FC431;
  background: #3FC431;
}

.def-checkbox.green span:after {
  font-size: 14px;
  margin-top: -1px;
}

.def-checkbox span {
  width: 20px;
  min-width: 20px;
  height: 20px;
  gap: 8px;
  border-radius: 4px;
  background: #EDF8FF;
  border: 1px solid #C1C8CD;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.def-checkbox span:after {
  content: "\e901";
  font-family: "icomoon" !important;
  color: #fff;
  margin-top: 0;
  display: block;
  font-size: 15px;
  transition: 0.3s;
  opacity: 0;
}

.tab-filter {
  border-color: transparent !important;
}

.tab-filter.active {
  border-color: #1150CB !important;
}

.shadow-btn-slider {
  box-shadow: 0px 2px 4px 0px rgba(23, 74, 189, 0.1), 0px 24px 60px 0px rgba(23, 74, 189, 0.05), 0px 12px 24px 0px rgba(23, 74, 189, 0.05);
}

.btn-back-shadow {
  box-shadow: 0px -1px 0px 0px #B5B5B5 inset, -1px 0px 0px 0px #E3E3E3 inset, 1px 0px 0px 0px #E3E3E3 inset, 0px 1px 0px 0px #E3E3E3;
}

.scroll-gray::-webkit-scrollbar-thumb {
  background-color: #d3d3d3;
}

.def-radio {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.def-radio input {
  display: none;
}

.def-radio span {
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #C1C8CD;
  background-color: #EDF3FF;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.def-radio span:after {
  content: "";
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
  background: #1150CB;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}

.def-radio input:checked ~ span {
  border: 1px solid #1150CB;
}

.def-radio input:checked ~ span:after {
  opacity: 1;
}

.filter-is-sticky {
  background-color: #fff;
}

.filter-is-sticky:after {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  height: 20px;
  width: 100%;
  background: linear-gradient(0deg, #fff, transparent);
}

.swiper-button-disabled {
  cursor: default !important;
}

.swiper-button-disabled i {
  color: #DFE3E6 !important;
}

.border-tel-input {
  border-color: #484747 !important;
}

.shadow-free-item {
  box-shadow: 0 2px 4px 0 rgba(17, 80, 203, 0.1), 0px 24px 60px 0px rgba(17, 80, 203, 0.05), 0px 12px 24px 0px rgba(17, 80, 203, 0.05);
}

.lounges-title {
  background: linear-gradient(90deg, #FFF 50.12%, rgba(255, 255, 255, 0) 99.99%);
}

.nav {
  width: 100%;
  height: 5.125rem;
  background-color: #fff;
  position: relative;
  z-index: 9;
}

@media (max-width: 768px) {
  .nav {
    height: 56px;
  }
}

.mobile-menu-body {
  transition: 0.3s;
  opacity: 0;
  transform: translateX(-100%);
  visibility: hidden;
  margin-top: -2px;
  border-top: 1px solid #D7DBDF;
}

.mobile-menu-body.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 100000000;
  visibility: visible;
}

.search {
  width: 100%;
  background: #1150CB;
  position: relative;
  transition: 0.3s border-radius;
}

@media (max-width: 1280px) {
  .search {
    height: auto;
  }
}

.search.fixed-top {
  height: 82px;
  padding: 0;
  border-radius: 0 0 24px 24px;
  z-index: 999999;
}

.search.no-anim {
  background: #1150CB url("../images/search-bg.jpg") no-repeat center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .search.no-anim {
    background: #1150CB;
    background-size: cover;
  }
}

.search.no-bg {
  background: #1150CB;
}

.search.popular {
  background: #1150CB;
}

.search .vector {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  height: 110%;
  width: 110%;
}

@media (max-width: 768px) {
  .search .vector {
    top: -30%;
  }
}

.search .vector path {
  stroke-dasharray: 6500;
  stroke-dashoffset: 6500;
  transition: stroke-dashoffset 4s ease-out;
}

.search .vector.active path {
  stroke-dashoffset: 0;
}

.search-form {
  width: 100%;
  height: 4rem;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

@media (max-width: 1280px) {
  .search-form {
    flex-direction: column;
    height: auto;
    border-radius: 16px;
    position: relative;
    background-color: #fff;
  }
}

.search-form-inp {
  width: 100%;
  padding-left: 24px;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  height: 100%;
  transition: 0.3s;
  border: 2px solid transparent;
  background-color: #fff;
}

@media (max-width: 1280px) {
  .search-form-inp {
    height: 52px;
    border-bottom: 1px solid #C1C8CD;
  }
}

.search-form-inp.focus {
  border: 2px solid #FF7A00;
  position: relative;
  z-index: 1000000;
}

.search-form-inp.focus:after {
  opacity: 0;
}

.search-form-inp.focus .air-icon path {
  stroke: #FF7A00;
}

.search-form-inp.there {
  margin-right: -2px;
  border-radius: 16px 0 0 16px;
}

@media (max-width: 1280px) {
  .search-form-inp.there {
    border-radius: 16px 16px 0 0;
    margin-right: 0;
  }
}

.search-form-inp.back:after {
  left: -3px;
}

.search-form-inp:first-child:after {
  display: none;
}

.search-form-inp:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 48px;
  background-color: #D7DBDF;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: 1;
}

@media (max-width: 1280px) {
  .search-form-inp:after {
    display: none !important;
  }
}

.search-form-inp svg {
  margin-right: 8px;
  min-width: 24px;
}

.search-form-inp svg * {
  transition: 0.3s;
}

.search-form-inp input {
  color: #11181C;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.5px;
}

@media (max-width: 1280px) {
  .search-form-inp input {
    width: 100%;
  }
}

.search-form-inp input::-moz-placeholder {
  color: #687076;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.5px;
}

.search-form-inp input::placeholder {
  color: #687076;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.5px;
}

.search-form-lr {
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 40px;
  border: 1px solid #D7DBDF;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -14px;
  margin-left: -20px;
  position: relative;
  right: -3px;
  z-index: 10000000;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .search-form-lr {
    position: absolute;
    right: 40px;
    top: 34px;
  }
}

.search-form-select {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-right: 1.8125rem;
  cursor: pointer;
  padding-left: 1.5rem;
  background-color: #fff;
  position: relative;
}

@media (max-width: 1280px) {
  .search-form-select {
    height: 53px;
    border-bottom: 1px solid #C1C8CD;
  }
}

.search-form-select:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 48px;
  background-color: #D7DBDF;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: 1;
}

@media (max-width: 1280px) {
  .search-form-select:after {
    display: none !important;
  }
}

.search-form-select-body {
  width: 100%;
}

.search-form-select .icon-down {
  font-size: 8px;
  margin-left: 8px;
}

.search-form-select-name {
  color: #11181C;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.search-form-select-type {
  color: #687076;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.5px;
}

.search-form-submit {
  width: 100%;
  min-width: 156px;
  height: 100%;
  background-color: #FF7A00;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.4px;
  border-radius: 0 16px 16px 0;
}

@media (max-width: 1280px) {
  .search-form-submit {
    margin: 16px;
    width: calc(100% - 32px);
    border-radius: 10px;
    height: 44px;
  }
}

.noUi-horizontal {
  height: 2px;
  border: none;
}

.noUi-connect {
  background: #1150CB;
}

.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: -7px;
  right: -13px;
  border: 2px solid #1150CB;
  background: #fff;
}

.noUi-horizontal .noUi-handle:before, .noUi-horizontal .noUi-handle:after {
  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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.16 | 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: #D7DBDF;
  /* 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.
7. Disable tap highlights on iOS
*/

html,
:host {
  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, 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 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
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. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. 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-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
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-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: 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,
input:where([type='button']),
input:where([type='reset']),
input:where([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;
}

/*
Reset default styling for dialogs.
*/

dialog {
  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]:where(:not([hidden="until-found"])) {
  display: none;
}

.container{
  width: 100%;
}

@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;
  }
}

.flex-jsb-c{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-jsb-s{
  display: flex;
  justify-content: space-between;
  align-items: start;
}

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

.flex-js-s{
  display: flex;
  justify-content: flex-start;
  align-items: start;
}

.flex-js-e{
  display: flex;
  justify-content: flex-start;
  align-items: end;
}

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

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

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.bottom-0{
  bottom: 0px;
}

.bottom-\[-20px\]{
  bottom: -20px;
}

.bottom-\[-30px\]{
  bottom: -30px;
}

.bottom-\[-50px\]{
  bottom: -50px;
}

.bottom-\[11px\]{
  bottom: 11px;
}

.bottom-\[14px\]{
  bottom: 14px;
}

.bottom-\[16px\]{
  bottom: 16px;
}

.bottom-\[17px\]{
  bottom: 17px;
}

.bottom-\[19px\]{
  bottom: 19px;
}

.left-0{
  left: 0px;
}

.left-1{
  left: 0.25rem;
}

.left-\[-16px\]{
  left: -16px;
}

.left-\[15px\]{
  left: 15px;
}

.left-\[16px\]{
  left: 16px;
}

.left-\[20px\]{
  left: 20px;
}

.left-\[4px\]{
  left: 4px;
}

.left-\[50\%\]{
  left: 50%;
}

.left-\[5px\]{
  left: 5px;
}

.left-\[calc\(100\%_-_30px\)\]{
  left: calc(100% - 30px);
}

.right-0{
  right: 0px;
}

.right-2{
  right: 0.5rem;
}

.right-4{
  right: 1rem;
}

.right-6{
  right: 1.5rem;
}

.right-\[-20px\]{
  right: -20px;
}

.right-\[-8px\]{
  right: -8px;
}

.right-\[10px\]{
  right: 10px;
}

.right-\[12px\]{
  right: 12px;
}

.right-\[14px\]{
  right: 14px;
}

.right-\[19px\]{
  right: 19px;
}

.right-\[20px\]{
  right: 20px;
}

.right-\[30px\]{
  right: 30px;
}

.right-\[5px\]{
  right: 5px;
}

.right-\[60px\]{
  right: 60px;
}

.right-\[66px\]{
  right: 66px;
}

.top-0{
  top: 0px;
}

.top-1{
  top: 0.25rem;
}

.top-4{
  top: 1rem;
}

.top-6{
  top: 1.5rem;
}

.top-\[-10px\]{
  top: -10px;
}

.top-\[-5px\]{
  top: -5px;
}

.top-\[-70px\]{
  top: -70px;
}

.top-\[100\%\]{
  top: 100%;
}

.top-\[18px\]{
  top: 18px;
}

.top-\[1px\]{
  top: 1px;
}

.top-\[20\%\]{
  top: 20%;
}

.top-\[20px\]{
  top: 20px;
}

.top-\[24px\]{
  top: 24px;
}

.top-\[2px\]{
  top: 2px;
}

.top-\[38px\]{
  top: 38px;
}

.top-\[39px\]{
  top: 39px;
}

.top-\[50\%\]{
  top: 50%;
}

.top-\[55px\]{
  top: 55px;
}

.top-\[56px\]{
  top: 56px;
}

.top-\[57px\]{
  top: 57px;
}

.top-\[8px\]{
  top: 8px;
}

.top-\[calc\(100\%_\+_4px\)\]{
  top: calc(100% + 4px);
}

.left-\[-20px\]{
  left: -20px;
}

.z-0{
  z-index: 0;
}

.z-10{
  z-index: 10;
}

.z-20{
  z-index: 20;
}

.z-\[100000000\]{
  z-index: 100000000;
}

.z-\[100000\]{
  z-index: 100000;
}

.z-\[10000\]{
  z-index: 10000;
}

.z-\[1000\]{
  z-index: 1000;
}

.z-\[100\]{
  z-index: 100;
}

.z-\[10\]{
  z-index: 10;
}

.z-\[1\]{
  z-index: 1;
}

.order-1{
  order: 1;
}

.order-2{
  order: 2;
}

.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-\[-2px\]{
  margin-left: -2px;
  margin-right: -2px;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-10{
  margin-bottom: 2.5rem;
}

.mb-16{
  margin-bottom: 4rem;
}

.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-7{
  margin-bottom: 1.75rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.mb-\[-15px\]{
  margin-bottom: -15px;
}

.mb-\[-20px\]{
  margin-bottom: -20px;
}

.mb-\[-24px\]{
  margin-bottom: -24px;
}

.mb-\[-30px\]{
  margin-bottom: -30px;
}

.mb-\[-50px\]{
  margin-bottom: -50px;
}

.mb-\[12px\]{
  margin-bottom: 12px;
}

.mb-\[1px\]{
  margin-bottom: 1px;
}

.mb-\[2px\]{
  margin-bottom: 2px;
}

.mb-\[6px\]{
  margin-bottom: 6px;
}

.mb-\[8px\]{
  margin-bottom: 8px;
}

.me-2{
  margin-inline-end: 0.5rem;
}

.ml-1{
  margin-left: 0.25rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-3{
  margin-left: 0.75rem;
}

.ml-6{
  margin-left: 1.5rem;
}

.ml-\[-16px\]{
  margin-left: -16px;
}

.ml-\[-1px\]{
  margin-left: -1px;
}

.ml-\[1px\]{
  margin-left: 1px;
}

.ml-\[40px\]{
  margin-left: 40px;
}

.ml-\[50px\]{
  margin-left: 50px;
}

.ml-\[8px\]{
  margin-left: 8px;
}

.mr-1{
  margin-right: 0.25rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.mr-3{
  margin-right: 0.75rem;
}

.mr-4{
  margin-right: 1rem;
}

.mr-6{
  margin-right: 1.5rem;
}

.mr-\[-2px\]{
  margin-right: -2px;
}

.mr-\[-5px\]{
  margin-right: -5px;
}

.mr-\[10px\]{
  margin-right: 10px;
}

.mr-\[12px\]{
  margin-right: 12px;
}

.mr-\[14px\]{
  margin-right: 14px;
}

.mr-\[16px\]{
  margin-right: 16px;
}

.mr-\[2px\]{
  margin-right: 2px;
}

.mr-\[6px\]{
  margin-right: 6px;
}

.mr-\[8px\]{
  margin-right: 8px;
}

.ms-2{
  margin-inline-start: 0.5rem;
}

.mt-0{
  margin-top: 0px;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-12{
  margin-top: 3rem;
}

.mt-16{
  margin-top: 4rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-20{
  margin-top: 5rem;
}

.mt-3{
  margin-top: 0.75rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-40{
  margin-top: 10rem;
}

.mt-5{
  margin-top: 1.25rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-7{
  margin-top: 1.75rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-9{
  margin-top: 2.25rem;
}

.mt-\[-10px\]{
  margin-top: -10px;
}

.mt-\[-16px\]{
  margin-top: -16px;
}

.mt-\[-30px\]{
  margin-top: -30px;
}

.mt-\[-50px\]{
  margin-top: -50px;
}

.mt-\[-5px\]{
  margin-top: -5px;
}

.mt-\[-80px\]{
  margin-top: -80px;
}

.mt-\[100px\]{
  margin-top: 100px;
}

.mt-\[104px\]{
  margin-top: 104px;
}

.mt-\[14px\]{
  margin-top: 14px;
}

.mt-\[1px\]{
  margin-top: 1px;
}

.mt-\[200px\]{
  margin-top: 200px;
}

.mt-\[2px\]{
  margin-top: 2px;
}

.mt-\[33px\]{
  margin-top: 33px;
}

.mt-\[3px\]{
  margin-top: 3px;
}

.mt-\[42px\]{
  margin-top: 42px;
}

.mt-\[60px\]{
  margin-top: 60px;
}

.mt-\[64px\]{
  margin-top: 64px;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.\!h-\[14px\]{
  height: 14px !important;
}

.\!h-\[16px\]{
  height: 16px !important;
}

.h-16{
  height: 4rem;
}

.h-8{
  height: 2rem;
}

.h-9{
  height: 2.25rem;
}

.h-\[100\%\]{
  height: 100%;
}

.h-\[100dvh\]{
  height: 100dvh;
}

.h-\[100px\]{
  height: 100px;
}

.h-\[100vh\]{
  height: 100vh;
}

.h-\[10px\]{
  height: 10px;
}

.h-\[120\%\]{
  height: 120%;
}

.h-\[140px\]{
  height: 140px;
}

.h-\[14px\]{
  height: 14px;
}

.h-\[151px\]{
  height: 151px;
}

.h-\[16px\]{
  height: 16px;
}

.h-\[18px\]{
  height: 18px;
}

.h-\[1px\]{
  height: 1px;
}

.h-\[200px\]{
  height: 200px;
}

.h-\[20px\]{
  height: 20px;
}

.h-\[220px\]{
  height: 220px;
}

.h-\[22px\]{
  height: 22px;
}

.h-\[238px\]{
  height: 238px;
}

.h-\[240px\]{
  height: 240px;
}

.h-\[243px\]{
  height: 243px;
}

.h-\[245px\]{
  height: 245px;
}

.h-\[24px\]{
  height: 24px;
}

.h-\[250px\]{
  height: 250px;
}

.h-\[258px\]{
  height: 258px;
}

.h-\[260px\]{
  height: 260px;
}

.h-\[275px\]{
  height: 275px;
}

.h-\[288px\]{
  height: 288px;
}

.h-\[296px\]{
  height: 296px;
}

.h-\[2px\]{
  height: 2px;
}

.h-\[316px\]{
  height: 316px;
}

.h-\[321px\]{
  height: 321px;
}

.h-\[322px\]{
  height: 322px;
}

.h-\[32px\]{
  height: 32px;
}

.h-\[340px\]{
  height: 340px;
}

.h-\[36px\]{
  height: 36px;
}

.h-\[372px\]{
  height: 372px;
}

.h-\[38px\]{
  height: 38px;
}

.h-\[400px\]{
  height: 400px;
}

.h-\[40px\]{
  height: 40px;
}

.h-\[440px\]{
  height: 440px;
}

.h-\[44px\]{
  height: 44px;
}

.h-\[45px\]{
  height: 45px;
}

.h-\[48px\]{
  height: 48px;
}

.h-\[500px\]{
  height: 500px;
}

.h-\[52px\]{
  height: 52px;
}

.h-\[54px\]{
  height: 54px;
}

.h-\[56px\]{
  height: 56px;
}

.h-\[57px\]{
  height: 57px;
}

.h-\[64px\]{
  height: 64px;
}

.h-\[66px\]{
  height: 66px;
}

.h-\[70\%\]{
  height: 70%;
}

.h-\[72px\]{
  height: 72px;
}

.h-\[7px\]{
  height: 7px;
}

.h-\[80\%\]{
  height: 80%;
}

.h-\[83px\]{
  height: 83px;
}

.h-\[88px\]{
  height: 88px;
}

.h-\[8px\]{
  height: 8px;
}

.h-\[calc\(\(100\%_\/_2\)_\+_15px\)\]{
  height: calc((100% / 2) + 15px);
}

.h-\[calc\(100\%_-_240px\)\]{
  height: calc(100% - 240px);
}

.h-\[calc\(100\%_-_66px\)\]{
  height: calc(100% - 66px);
}

.h-\[calc\(100dvh_-_100px\)\]{
  height: calc(100dvh - 100px);
}

.h-\[calc\(100dvh_-_54px\)\]{
  height: calc(100dvh - 54px);
}

.h-\[calc\(100vh_-56px\)\]{
  height: calc(100vh - 56px);
}

.h-\[calc\(100vh_-_100px\)\]{
  height: calc(100vh - 100px);
}

.h-\[fit-content\]{
  height: -moz-fit-content;
  height: fit-content;
}

.h-auto{
  height: auto;
}

.h-full{
  height: 100%;
}

.h-screen{
  height: 100vh;
}

.h-\[calc\(100\%_\+_30px\)\]{
  height: calc(100% + 30px);
}

.max-h-\[100vh\]{
  max-height: 100vh;
}

.max-h-\[45dvh\]{
  max-height: 45dvh;
}

.max-h-\[calc\(100dvh_-_247px\)\]{
  max-height: calc(100dvh - 247px);
}

.max-h-\[calc\(100dvh_-_280px\)\]{
  max-height: calc(100dvh - 280px);
}

.max-h-\[calc\(100dvh_-_350px\)\]{
  max-height: calc(100dvh - 350px);
}

.max-h-\[calc\(100vh_-_100px\)\]{
  max-height: calc(100vh - 100px);
}

.max-h-\[calc\(100vh_-_300px\)\]{
  max-height: calc(100vh - 300px);
}

.max-h-\[calc\(100vh_-_320px\)\]{
  max-height: calc(100vh - 320px);
}

.min-h-\[100px\]{
  min-height: 100px;
}

.min-h-\[413px\]{
  min-height: 413px;
}

.min-h-\[47px\]{
  min-height: 47px;
}

.min-h-\[56px\]{
  min-height: 56px;
}

.min-h-\[57px\]{
  min-height: 57px;
}

.min-h-\[82px\]{
  min-height: 82px;
}

.\!w-\[14px\]{
  width: 14px !important;
}

.\!w-\[16px\]{
  width: 16px !important;
}

.w-8{
  width: 2rem;
}

.w-\[101px\]{
  width: 101px;
}

.w-\[104px\]{
  width: 104px;
}

.w-\[105px\]{
  width: 105px;
}

.w-\[10px\]{
  width: 10px;
}

.w-\[115px\]{
  width: 115px;
}

.w-\[120px\]{
  width: 120px;
}

.w-\[130px\]{
  width: 130px;
}

.w-\[134px\]{
  width: 134px;
}

.w-\[140px\]{
  width: 140px;
}

.w-\[150px\]{
  width: 150px;
}

.w-\[160px\]{
  width: 160px;
}

.w-\[16px\]{
  width: 16px;
}

.w-\[172px\]{
  width: 172px;
}

.w-\[173px\]{
  width: 173px;
}

.w-\[180px\]{
  width: 180px;
}

.w-\[190px\]{
  width: 190px;
}

.w-\[1px\]{
  width: 1px;
}

.w-\[200px\]{
  width: 200px;
}

.w-\[20px\]{
  width: 20px;
}

.w-\[220px\]{
  width: 220px;
}

.w-\[225px\]{
  width: 225px;
}

.w-\[240px\]{
  width: 240px;
}

.w-\[24px\]{
  width: 24px;
}

.w-\[2px\]{
  width: 2px;
}

.w-\[30\%\]{
  width: 30%;
}

.w-\[300px\]{
  width: 300px;
}

.w-\[30px\]{
  width: 30px;
}

.w-\[310px\]{
  width: 310px;
}

.w-\[316px\]{
  width: 316px;
}

.w-\[328px\]{
  width: 328px;
}

.w-\[338px\]{
  width: 338px;
}

.w-\[36px\]{
  width: 36px;
}

.w-\[396px\]{
  width: 396px;
}

.w-\[400px\]{
  width: 400px;
}

.w-\[40px\]{
  width: 40px;
}

.w-\[420px\]{
  width: 420px;
}

.w-\[440px\]{
  width: 440px;
}

.w-\[48px\]{
  width: 48px;
}

.w-\[50\%\]{
  width: 50%;
}

.w-\[56px\]{
  width: 56px;
}

.w-\[64px\]{
  width: 64px;
}

.w-\[70\%\]{
  width: 70%;
}

.w-\[7px\]{
  width: 7px;
}

.w-\[80\%\]{
  width: 80%;
}

.w-\[80px\]{
  width: 80px;
}

.w-\[8px\]{
  width: 8px;
}

.w-\[90px\]{
  width: 90px;
}

.w-\[calc\(100\%_\+_31px\)\]{
  width: calc(100% + 31px);
}

.w-\[calc\(100\%_\+_32px\)\]{
  width: calc(100% + 32px);
}

.w-\[calc\(100\%_-_2px\)\]{
  width: calc(100% - 2px);
}

.w-\[calc\(100\%_-_32px\)\]{
  width: calc(100% - 32px);
}

.w-\[calc\(50\%_-_12px\)\]{
  width: calc(50% - 12px);
}

.w-auto{
  width: auto;
}

.w-full{
  width: 100%;
}

.w-\[calc\(100\%_\+_20px\)\]{
  width: calc(100% + 20px);
}

.\!min-w-\[14px\]{
  min-width: 14px !important;
}

.\!min-w-\[16px\]{
  min-width: 16px !important;
}

.min-w-\[100px\]{
  min-width: 100px;
}

.min-w-\[110px\]{
  min-width: 110px;
}

.min-w-\[130px\]{
  min-width: 130px;
}

.min-w-\[150px\]{
  min-width: 150px;
}

.min-w-\[16px\]{
  min-width: 16px;
}

.min-w-\[173px\]{
  min-width: 173px;
}

.min-w-\[1px\]{
  min-width: 1px;
}

.min-w-\[20px\]{
  min-width: 20px;
}

.min-w-\[240px\]{
  min-width: 240px;
}

.min-w-\[24px\]{
  min-width: 24px;
}

.min-w-\[36px\]{
  min-width: 36px;
}

.min-w-\[400px\]{
  min-width: 400px;
}

.min-w-\[40px\]{
  min-width: 40px;
}

.min-w-\[48px\]{
  min-width: 48px;
}

.min-w-\[56px\]{
  min-width: 56px;
}

.min-w-\[7px\]{
  min-width: 7px;
}

.min-w-\[8px\]{
  min-width: 8px;
}

.min-w-\[calc\(100\%_\+_20px\)\]{
  min-width: calc(100% + 20px);
}

.max-w-7xl{
  max-width: 80rem;
}

.max-w-\[1160px\]{
  max-width: 1160px;
}

.max-w-\[1312px\]{
  max-width: 1312px;
}

.max-w-\[160px\]{
  max-width: 160px;
}

.max-w-\[170px\]{
  max-width: 170px;
}

.max-w-\[180px\]{
  max-width: 180px;
}

.max-w-\[210px\]{
  max-width: 210px;
}

.max-w-\[220px\]{
  max-width: 220px;
}

.max-w-\[250px\]{
  max-width: 250px;
}

.max-w-\[296px\]{
  max-width: 296px;
}

.max-w-\[300px\]{
  max-width: 300px;
}

.max-w-\[352px\]{
  max-width: 352px;
}

.max-w-\[379px\]{
  max-width: 379px;
}

.max-w-\[396px\]{
  max-width: 396px;
}

.max-w-\[400px\]{
  max-width: 400px;
}

.max-w-\[440px\]{
  max-width: 440px;
}

.max-w-\[532px\]{
  max-width: 532px;
}

.max-w-\[700px\]{
  max-width: 700px;
}

.max-w-\[768px\]{
  max-width: 768px;
}

.max-w-\[868px\]{
  max-width: 868px;
}

.max-w-\[900px\]{
  max-width: 900px;
}

.max-w-\[950px\]{
  max-width: 950px;
}

.max-w-\[960px\]{
  max-width: 960px;
}

.max-w-\[unset\]{
  max-width: unset;
}

.max-w-none{
  max-width: none;
}

.max-w-\[237px\]{
  max-width: 237px;
}

.translate-x-\[-50\%\]{
  --tw-translate-x: -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));
}

.translate-x-\[40\%\]{
  --tw-translate-x: 40%;
  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));
}

.translate-y-\[-33\%\]{
  --tw-translate-y: -33%;
  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));
}

.translate-y-\[-50\%\]{
  --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-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));
}

.rotate-0{
  --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));
}

.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));
}

.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));
}

.cursor-default{
  cursor: default;
}

.cursor-pointer{
  cursor: pointer;
}

.cursor-text{
  cursor: text;
}

.resize-none{
  resize: 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-7{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.flex-col{
  flex-direction: column;
}

.flex-col-reverse{
  flex-direction: column-reverse;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-start{
  align-items: flex-start;
}

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

.items-stretch{
  align-items: stretch;
}

.justify-start{
  justify-content: flex-start;
}

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

.justify-center{
  justify-content: center;
}

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

.justify-evenly{
  justify-content: space-evenly;
}

.gap-1{
  gap: 0.25rem;
}

.gap-10{
  gap: 2.5rem;
}

.gap-16{
  gap: 4rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-4{
  gap: 1rem;
}

.gap-5{
  gap: 1.25rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-8{
  gap: 2rem;
}

.gap-\[12px\]{
  gap: 12px;
}

.gap-\[16px\]{
  gap: 16px;
}

.gap-\[24px\]{
  gap: 24px;
}

.gap-\[45px\]{
  gap: 45px;
}

.gap-\[6px\]{
  gap: 6px;
}

.gap-\[7px\]{
  gap: 7px;
}

.gap-\[8px\]{
  gap: 8px;
}

.gap-\[9px\]{
  gap: 9px;
}

.gap-x-6{
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-y-2{
  row-gap: 0.5rem;
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.overflow-y-auto{
  overflow-y: auto;
}

.text-ellipsis{
  text-overflow: ellipsis;
}

.text-nowrap{
  text-wrap: nowrap;
}

.rounded-3xl{
  border-radius: 1.5rem;
}

.rounded-\[0_0_16px_16px\]{
  border-radius: 0 0 16px 16px;
}

.rounded-\[0_0_24px_0\]{
  border-radius: 0 0 24px 0;
}

.rounded-\[0_0_24px_24px\]{
  border-radius: 0 0 24px 24px;
}

.rounded-\[0_16px_0_0\]{
  border-radius: 0 16px 0 0;
}

.rounded-\[0_16px_16px_0\]{
  border-radius: 0 16px 16px 0;
}

.rounded-\[0_24px_0_0\]{
  border-radius: 0 24px 0 0;
}

.rounded-\[0_8px_8px_0\]{
  border-radius: 0 8px 8px 0;
}

.rounded-\[0px\]{
  border-radius: 0px;
}

.rounded-\[12px\]{
  border-radius: 12px;
}

.rounded-\[15px\]{
  border-radius: 15px;
}

.rounded-\[16px\]{
  border-radius: 16px;
}

.rounded-\[16px_0_0_16px\]{
  border-radius: 16px 0 0 16px;
}

.rounded-\[16px_16px_0_0\]{
  border-radius: 16px 16px 0 0;
}

.rounded-\[18px\]{
  border-radius: 18px;
}

.rounded-\[20px\]{
  border-radius: 20px;
}

.rounded-\[22px\]{
  border-radius: 22px;
}

.rounded-\[24px\]{
  border-radius: 24px;
}

.rounded-\[24px_24px_0_0\]{
  border-radius: 24px 24px 0 0;
}

.rounded-\[32px\]{
  border-radius: 32px;
}

.rounded-\[32px_32px_0_0\]{
  border-radius: 32px 32px 0 0;
}

.rounded-\[40px\]{
  border-radius: 40px;
}

.rounded-\[44px\]{
  border-radius: 44px;
}

.rounded-\[6px\]{
  border-radius: 6px;
}

.rounded-\[8px\]{
  border-radius: 8px;
}

.rounded-\[8px_0_0_8px\]{
  border-radius: 8px 0 0 8px;
}

.rounded-full{
  border-radius: 9999px;
}

.border{
  border-width: 1px;
}

.border-2{
  border-width: 2px;
}

.border-\[2px\]{
  border-width: 2px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-b-0{
  border-bottom-width: 0px;
}

.border-b-2{
  border-bottom-width: 2px;
}

.border-b-\[2px\]{
  border-bottom-width: 2px;
}

.border-l-\[2px\]{
  border-left-width: 2px;
}

.border-r{
  border-right-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-solid{
  border-style: solid;
}

.border-dashed{
  border-style: dashed;
}

.border-\[\#3FC431\]{
  --tw-border-opacity: 1;
  border-color: rgb(63 196 49 / var(--tw-border-opacity, 1));
}

.border-\[\#6A8AFF\]{
  --tw-border-opacity: 1;
  border-color: rgb(106 138 255 / var(--tw-border-opacity, 1));
}

.border-\[\#B9E1FF\]{
  --tw-border-opacity: 1;
  border-color: rgb(185 225 255 / var(--tw-border-opacity, 1));
}

.border-\[\#C1C8CD\]{
  --tw-border-opacity: 1;
  border-color: rgb(193 200 205 / var(--tw-border-opacity, 1));
}

.border-\[\#C4D7FF\]{
  --tw-border-opacity: 1;
  border-color: rgb(196 215 255 / var(--tw-border-opacity, 1));
}

.border-\[\#D7DBDF\]{
  --tw-border-opacity: 1;
  border-color: rgb(215 219 223 / var(--tw-border-opacity, 1));
}

.border-\[\#DFE3E6\]{
  --tw-border-opacity: 1;
  border-color: rgb(223 227 230 / var(--tw-border-opacity, 1));
}

.border-\[\#E6E8EB\]{
  --tw-border-opacity: 1;
  border-color: rgb(230 232 235 / var(--tw-border-opacity, 1));
}

.border-\[\#FF7A00\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 122 0 / var(--tw-border-opacity, 1));
}

.border-\[\#FFE3A5\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 227 165 / var(--tw-border-opacity, 1));
}

.border-blue{
  --tw-border-opacity: 1;
  border-color: rgb(17 80 203 / var(--tw-border-opacity, 1));
}

.border-orange{
  --tw-border-opacity: 1;
  border-color: rgb(255 122 0 / var(--tw-border-opacity, 1));
}

.border-transparent{
  border-color: transparent;
}

.bg-\[\#2994FF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(41 148 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#2C9821\]{
  --tw-bg-opacity: 1;
  background-color: rgb(44 152 33 / var(--tw-bg-opacity, 1));
}

.bg-\[\#3FC431\]{
  --tw-bg-opacity: 1;
  background-color: rgb(63 196 49 / var(--tw-bg-opacity, 1));
}

.bg-\[\#687076\]{
  --tw-bg-opacity: 1;
  background-color: rgb(104 112 118 / var(--tw-bg-opacity, 1));
}

.bg-\[\#6A8AFF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(106 138 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#A0BDFF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(160 189 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#B9E1FF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(185 225 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#C1C8CD\]{
  --tw-bg-opacity: 1;
  background-color: rgb(193 200 205 / var(--tw-bg-opacity, 1));
}

.bg-\[\#D7DBDF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(215 219 223 / var(--tw-bg-opacity, 1));
}

.bg-\[\#D8EEFF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(216 238 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#DEEAFF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(222 234 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#DFE3E6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(223 227 230 / var(--tw-bg-opacity, 1));
}

.bg-\[\#E1FADE\]{
  --tw-bg-opacity: 1;
  background-color: rgb(225 250 222 / var(--tw-bg-opacity, 1));
}

.bg-\[\#E6FCD6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(230 252 214 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ECEEF0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(236 238 240 / var(--tw-bg-opacity, 1));
}

.bg-\[\#EDF3FF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(237 243 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#EDF8FF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(237 248 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F1F3F5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(241 243 245 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F2F4F9\]{
  --tw-bg-opacity: 1;
  background-color: rgb(242 244 249 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F8F9FA\]{
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FE3A11\]{
  --tw-bg-opacity: 1;
  background-color: rgb(254 58 17 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FFD9D466\]{
  background-color: #FFD9D466;
}

.bg-\[\#FFE3D4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 227 212 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FFEBE2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 235 226 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FFF3D3\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 243 211 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FFFAEC\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 250 236 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff\]\/30{
  background-color: rgb(255 255 255 / 0.3);
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 28 / var(--tw-bg-opacity, 1));
}

.bg-black\/50{
  background-color: rgb(17 24 28 / 0.5);
}

.bg-black\/70{
  background-color: rgb(17 24 28 / 0.7);
}

.bg-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(17 80 203 / var(--tw-bg-opacity, 1));
}

.bg-blue\/80{
  background-color: rgb(17 80 203 / 0.8);
}

.bg-borderColor{
  --tw-bg-opacity: 1;
  background-color: rgb(215 219 223 / var(--tw-bg-opacity, 1));
}

.bg-gray\/10{
  background-color: rgb(104 112 118 / 0.1);
}

.bg-orange{
  --tw-bg-opacity: 1;
  background-color: rgb(255 122 0 / var(--tw-bg-opacity, 1));
}

.bg-purple{
  --tw-bg-opacity: 1;
  background-color: rgb(106 138 255 / var(--tw-bg-opacity, 1));
}

.bg-transparent{
  background-color: transparent;
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#060429\]{
  --tw-bg-opacity: 1;
  background-color: rgb(6 4 41 / var(--tw-bg-opacity, 1));
}

.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-transparent{
  --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);
}

.to-white{
  --tw-gradient-to: #FFF var(--tw-gradient-to-position);
}

.fill-white{
  fill: #FFF;
}

.stroke-\[\#C1C8CD\]{
  stroke: #C1C8CD;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center{
  -o-object-position: center;
     object-position: center;
}

.object-bottom{
  -o-object-position: bottom;
     object-position: bottom;
}

.object-right{
  -o-object-position: right;
     object-position: right;
}

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.p-6{
  padding: 1.5rem;
}

.p-\[0_16px\]{
  padding: 0 16px;
}

.p-\[0_24px\]{
  padding: 0 24px;
}

.p-\[10px\]{
  padding: 10px;
}

.p-\[12px\]{
  padding: 12px;
}

.p-\[15px\]{
  padding: 15px;
}

.p-\[16px_24px\]{
  padding: 16px 24px;
}

.p-\[16px_30px\]{
  padding: 16px 30px;
}

.p-\[20px\]{
  padding: 20px;
}

.p-\[32px\]{
  padding: 32px;
}

.p-\[4px_16px\]{
  padding: 4px 16px;
}

.p-\[7px_16px\]{
  padding: 7px 16px;
}

.p-\[8px_12px\]{
  padding: 8px 12px;
}

.p-\[8px_16px_10px_16px\]{
  padding: 8px 16px 10px 16px;
}

.p-\[8px_24px\]{
  padding: 8px 24px;
}

.px-0{
  padding-left: 0px;
  padding-right: 0px;
}

.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.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-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-\[12px\]{
  padding-left: 12px;
  padding-right: 12px;
}

.px-\[13px\]{
  padding-left: 13px;
  padding-right: 13px;
}

.px-\[14px\]{
  padding-left: 14px;
  padding-right: 14px;
}

.px-\[24px\]{
  padding-left: 24px;
  padding-right: 24px;
}

.px-\[25px\]{
  padding-left: 25px;
  padding-right: 25px;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[15px\]{
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-\[32px\]{
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}

.pb-1{
  padding-bottom: 0.25rem;
}

.pb-10{
  padding-bottom: 2.5rem;
}

.pb-16{
  padding-bottom: 4rem;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pb-8{
  padding-bottom: 2rem;
}

.pb-9{
  padding-bottom: 2.25rem;
}

.pb-\[100px\]{
  padding-bottom: 100px;
}

.pb-\[30px\]{
  padding-bottom: 30px;
}

.pb-\[35px\]{
  padding-bottom: 35px;
}

.pb-\[40px\]{
  padding-bottom: 40px;
}

.pb-\[41px\]{
  padding-bottom: 41px;
}

.pb-\[48px\]{
  padding-bottom: 48px;
}

.pb-\[50px\]{
  padding-bottom: 50px;
}

.pl-0{
  padding-left: 0px;
}

.pl-1{
  padding-left: 0.25rem;
}

.pl-2{
  padding-left: 0.5rem;
}

.pl-3{
  padding-left: 0.75rem;
}

.pl-4{
  padding-left: 1rem;
}

.pl-6{
  padding-left: 1.5rem;
}

.pl-\[12px\]{
  padding-left: 12px;
}

.pl-\[24px\]{
  padding-left: 24px;
}

.pl-\[32px\]{
  padding-left: 32px;
}

.pr-0{
  padding-right: 0px;
}

.pr-2{
  padding-right: 0.5rem;
}

.pr-3{
  padding-right: 0.75rem;
}

.pr-4{
  padding-right: 1rem;
}

.pr-6{
  padding-right: 1.5rem;
}

.pr-\[12px\]{
  padding-right: 12px;
}

.pr-\[40px\]{
  padding-right: 40px;
}

.pt-10{
  padding-top: 2.5rem;
}

.pt-12{
  padding-top: 3rem;
}

.pt-16{
  padding-top: 4rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-6{
  padding-top: 1.5rem;
}

.pt-\[24px\]{
  padding-top: 24px;
}

.pt-\[32px\]{
  padding-top: 32px;
}

.pt-\[40px\]{
  padding-top: 40px;
}

.pt-\[49px\]{
  padding-top: 49px;
}

.pt-\[57px\]{
  padding-top: 57px;
}

.pt-\[60px\]{
  padding-top: 60px;
}

.pt-\[71px\]{
  padding-top: 71px;
}

.pt-\[80px\]{
  padding-top: 80px;
}

.pl-8{
  padding-left: 2rem;
}

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

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

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

.\!text-\[22px\]{
  font-size: 22px !important;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-\[10px\]{
  font-size: 10px;
}

.text-\[12px\]{
  font-size: 12px;
}

.text-\[14px\]{
  font-size: 14px;
}

.text-\[15px\]{
  font-size: 15px;
}

.text-\[16px\]{
  font-size: 16px;
}

.text-\[18px\]{
  font-size: 18px;
}

.text-\[20px\]{
  font-size: 20px;
}

.text-\[22px\]{
  font-size: 22px;
}

.text-\[24px\]{
  font-size: 24px;
}

.text-\[25px\]{
  font-size: 25px;
}

.text-\[26px\]{
  font-size: 26px;
}

.text-\[30px\]{
  font-size: 30px;
}

.text-\[32px\]{
  font-size: 32px;
}

.text-\[40px\]{
  font-size: 40px;
}

.text-\[5px\]{
  font-size: 5px;
}

.text-\[6px\]{
  font-size: 6px;
}

.text-\[7px\]{
  font-size: 7px;
}

.text-\[8px\]{
  font-size: 8px;
}

.text-\[9px\]{
  font-size: 9px;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.\!font-light{
  font-weight: 300 !important;
}

.font-\[500\]{
  font-weight: 500;
}

.font-bold{
  font-weight: 700;
}

.font-light{
  font-weight: 300;
}

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.leading-\[116\%\]{
  line-height: 116%;
}

.leading-\[12px\]{
  line-height: 12px;
}

.leading-\[130\%\]{
  line-height: 130%;
}

.leading-\[140\%\]{
  line-height: 140%;
}

.leading-\[16px\]{
  line-height: 16px;
}

.leading-\[18px\]{
  line-height: 18px;
}

.leading-\[7px\]{
  line-height: 7px;
}

.leading-none{
  line-height: 1;
}

.tracking-\[-0\.4px\]{
  letter-spacing: -0.4px;
}

.tracking-\[-0\.5px\]{
  letter-spacing: -0.5px;
}

.\!text-\[\#889096\]{
  --tw-text-opacity: 1 !important;
  color: rgb(136 144 150 / var(--tw-text-opacity, 1)) !important;
}

.\!text-orange{
  --tw-text-opacity: 1 !important;
  color: rgb(255 122 0 / var(--tw-text-opacity, 1)) !important;
}

.text-\[\#11181C\]{
  --tw-text-opacity: 1;
  color: rgb(17 24 28 / var(--tw-text-opacity, 1));
}

.text-\[\#1150CB\]{
  --tw-text-opacity: 1;
  color: rgb(17 80 203 / var(--tw-text-opacity, 1));
}

.text-\[\#17922F\]{
  --tw-text-opacity: 1;
  color: rgb(23 146 47 / var(--tw-text-opacity, 1));
}

.text-\[\#252A31\]{
  --tw-text-opacity: 1;
  color: rgb(37 42 49 / var(--tw-text-opacity, 1));
}

.text-\[\#25781D\]{
  --tw-text-opacity: 1;
  color: rgb(37 120 29 / var(--tw-text-opacity, 1));
}

.text-\[\#687076\]{
  --tw-text-opacity: 1;
  color: rgb(104 112 118 / var(--tw-text-opacity, 1));
}

.text-\[\#6E7491\]{
  --tw-text-opacity: 1;
  color: rgb(110 116 145 / var(--tw-text-opacity, 1));
}

.text-\[\#7E868C\]{
  --tw-text-opacity: 1;
  color: rgb(126 134 140 / var(--tw-text-opacity, 1));
}

.text-\[\#8391AA\]{
  --tw-text-opacity: 1;
  color: rgb(131 145 170 / var(--tw-text-opacity, 1));
}

.text-\[\#889096\]{
  --tw-text-opacity: 1;
  color: rgb(136 144 150 / var(--tw-text-opacity, 1));
}

.text-\[\#9D110F\]{
  --tw-text-opacity: 1;
  color: rgb(157 17 15 / var(--tw-text-opacity, 1));
}

.text-\[\#C1C8CD\]{
  --tw-text-opacity: 1;
  color: rgb(193 200 205 / var(--tw-text-opacity, 1));
}

.text-\[\#C61208\]{
  --tw-text-opacity: 1;
  color: rgb(198 18 8 / var(--tw-text-opacity, 1));
}

.text-\[\#CC5802\]{
  --tw-text-opacity: 1;
  color: rgb(204 88 2 / var(--tw-text-opacity, 1));
}

.text-\[\#FF592C\]{
  --tw-text-opacity: 1;
  color: rgb(255 89 44 / var(--tw-text-opacity, 1));
}

.text-\[red\]{
  --tw-text-opacity: 1;
  color: rgb(255 0 0 / var(--tw-text-opacity, 1));
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(17 24 28 / var(--tw-text-opacity, 1));
}

.text-black\/50{
  color: rgb(17 24 28 / 0.5);
}

.text-blue{
  --tw-text-opacity: 1;
  color: rgb(17 80 203 / var(--tw-text-opacity, 1));
}

.text-gray{
  --tw-text-opacity: 1;
  color: rgb(104 112 118 / var(--tw-text-opacity, 1));
}

.text-orange{
  --tw-text-opacity: 1;
  color: rgb(255 122 0 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/70{
  color: rgb(255 255 255 / 0.7);
}

.underline{
  text-decoration-line: underline;
}

.opacity-0{
  opacity: 0;
}

.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);
}

.outline{
  outline-style: solid;
}

.outline-\[3px\]{
  outline-width: 3px;
}

.outline-white{
  outline-color: #FFF;
}

.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);
}

.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: 300ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.delay-\[1\.5s\]{
  transition-delay: 1.5s;
}

.delay-\[1\.8s\]{
  transition-delay: 1.8s;
}

.delay-\[2s\]{
  transition-delay: 2s;
}

.delay-\[3\.5s\]{
  transition-delay: 3.5s;
}

.delay-\[4\.4s\]{
  transition-delay: 4.4s;
}

.duration-300{
  transition-duration: 300ms;
}

@media (min-width: 397px){
  .min-\[397px\]\:flex-js-c{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (min-width: 640px){
  .sm\:flex-jsb-c{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sm\:flex-jsb-e{
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .sm\:flex-js-c{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .sm\:flex-jc-c{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 768px){
  .md\:flex-jsb-c{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .md\:flex-js-c{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .md\:flex-js-s{
    display: flex;
    justify-content: flex-start;
    align-items: start;
  }
}

@media (min-width: 1281px){
  .min-\[1281px\]\:flex-jc-c{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.placeholder\:text-\[\#687076\]::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(104 112 118 / var(--tw-text-opacity, 1));
}

.placeholder\:text-\[\#687076\]::placeholder{
  --tw-text-opacity: 1;
  color: rgb(104 112 118 / var(--tw-text-opacity, 1));
}

.placeholder\:text-gray::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(104 112 118 / var(--tw-text-opacity, 1));
}

.placeholder\:text-gray::placeholder{
  --tw-text-opacity: 1;
  color: rgb(104 112 118 / var(--tw-text-opacity, 1));
}

.after\:block::after{
  content: var(--tw-content);
  display: block;
}

.after\:hidden::after{
  content: var(--tw-content);
  display: none;
}

.after\:h-\[48px\]::after{
  content: var(--tw-content);
  height: 48px;
}

.after\:w-\[1px\]::after{
  content: var(--tw-content);
  width: 1px;
}

.after\:bg-\[\#D7DBDF\]::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(215 219 223 / var(--tw-bg-opacity, 1));
}

.after\:\!text-\[13px\]::after{
  content: var(--tw-content);
  font-size: 13px !important;
}

.hover\:border-black:hover{
  --tw-border-opacity: 1;
  border-color: rgb(17 24 28 / var(--tw-border-opacity, 1));
}

.hover\:border-blue:hover{
  --tw-border-opacity: 1;
  border-color: rgb(17 80 203 / var(--tw-border-opacity, 1));
}

.hover\:border-gray\/30:hover{
  border-color: rgb(104 112 118 / 0.3);
}

.hover\:border-white:hover{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#248aef\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(36 138 239 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#51B5FF\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(81 181 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#F8F9FA\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(248 249 250 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#FFFAEC\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 250 236 / var(--tw-bg-opacity, 1));
}

.hover\:text-\[\#EDF3FF\]:hover{
  --tw-text-opacity: 1;
  color: rgb(237 243 255 / var(--tw-text-opacity, 1));
}

.focus\:z-10:focus{
  z-index: 10;
}

.focus\:border:focus{
  border-width: 1px;
}

.focus\:border-orange:focus{
  --tw-border-opacity: 1;
  border-color: rgb(255 122 0 / var(--tw-border-opacity, 1));
}

.focus\:border-purple:focus{
  --tw-border-opacity: 1;
  border-color: rgb(106 138 255 / var(--tw-border-opacity, 1));
}

.disabled\:border-0:disabled{
  border-width: 0px;
}

.disabled\:border-\[\#ECEEF0\]:disabled{
  --tw-border-opacity: 1;
  border-color: rgb(236 238 240 / var(--tw-border-opacity, 1));
}

.disabled\:bg-\[\#DFE3E6\]:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(223 227 230 / var(--tw-bg-opacity, 1));
}

.disabled\:bg-\[\#ECEEF0\]:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(236 238 240 / var(--tw-bg-opacity, 1));
}

.disabled\:text-\[\#889096\]:disabled{
  --tw-text-opacity: 1;
  color: rgb(136 144 150 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:right-\[-160px\]{
  right: -160px;
}

.group:hover .group-hover\:top-\[-60px\]{
  top: -60px;
}

.group:hover .group-hover\:h-\[600px\]{
  height: 600px;
}

.group:hover .group-hover\:w-\[900px\]{
  width: 900px;
}

.group:hover .group-hover\:scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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\:bg-\[\#6A8AFF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(106 138 255 / var(--tw-bg-opacity, 1));
}

.group:hover .group-hover\:stroke-orange{
  stroke: #FF7A00;
}

.group:hover .group-hover\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.group.active .group-\[\.active\]\:mb-1{
  margin-bottom: 0.25rem;
}

.group.active .group-\[\.active\]\:block{
  display: block;
}

.group.active .group-\[\.active\]\:-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));
}

.group.active .group-\[\.active\]\: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));
}

.group.active .group-\[\.active\]\:bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.group.active .group-\[\.active\]\:fill-blue{
  fill: #1150CB;
}

@media (min-width: 397px){
  .min-\[397px\]\:flex-row{
    flex-direction: row;
  }
}

@media (min-width: 413px){
  .min-\[413px\]\:h-\[400px\]{
    height: 400px;
  }
}

@media (min-width: 435px){
  .min-\[435px\]\:bottom-\[-120px\]{
    bottom: -120px;
  }
}

@media (min-width: 487px){
  .min-\[487px\]\:w-\[80\%\]{
    width: 80%;
  }
}

@media (min-width: 490px){
  .min-\[490px\]\:pl-8{
    padding-left: 2rem;
  }
}

@media (min-width: 500px){
  .min-\[500px\]\:h-\[538px\]{
    height: 538px;
  }

  .min-\[500px\]\:max-w-\[250px\]{
    max-width: 250px;
  }
}

@media (min-width: 576px){
  .min-\[576px\]\:min-h-\[57px\]{
    min-height: 57px;
  }
}

@media (min-width: 584px){
  .min-\[584px\]\:w-\[60\%\]{
    width: 60%;
  }
}

@media (min-width: 640px){
  .sm\:absolute{
    position: absolute;
  }

  .sm\:bottom-\[-250px\]{
    bottom: -250px;
  }

  .sm\:bottom-\[-40px\]{
    bottom: -40px;
  }

  .sm\:left-0{
    left: 0px;
  }

  .sm\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .sm\:mb-0{
    margin-bottom: 0px;
  }

  .sm\:mb-2{
    margin-bottom: 0.5rem;
  }

  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }

  .sm\:mb-\[8px\]{
    margin-bottom: 8px;
  }

  .sm\:ml-0{
    margin-left: 0px;
  }

  .sm\:ml-2{
    margin-left: 0.5rem;
  }

  .sm\:mt-0{
    margin-top: 0px;
  }

  .sm\:mt-12{
    margin-top: 3rem;
  }

  .sm\:mt-14{
    margin-top: 3.5rem;
  }

  .sm\:mt-3{
    margin-top: 0.75rem;
  }

  .sm\:mt-4{
    margin-top: 1rem;
  }

  .sm\:mt-6{
    margin-top: 1.5rem;
  }

  .sm\:mt-8{
    margin-top: 2rem;
  }

  .sm\:mt-\[-50px\]{
    margin-top: -50px;
  }

  .sm\:block{
    display: block;
  }

  .sm\:inline-block{
    display: inline-block;
  }

  .sm\:flex{
    display: flex;
  }

  .sm\:hidden{
    display: none;
  }

  .sm\:h-16{
    height: 4rem;
  }

  .sm\:h-\[150\%\]{
    height: 150%;
  }

  .sm\:h-\[22px\]{
    height: 22px;
  }

  .sm\:h-\[26px\]{
    height: 26px;
  }

  .sm\:h-\[336px\]{
    height: 336px;
  }

  .sm\:h-\[39px\]{
    height: 39px;
  }

  .sm\:h-\[48px\]{
    height: 48px;
  }

  .sm\:h-\[600px\]{
    height: 600px;
  }

  .sm\:h-\[607px\]{
    height: 607px;
  }

  .sm\:h-\[64px\]{
    height: 64px;
  }

  .sm\:h-\[662px\]{
    height: 662px;
  }

  .sm\:h-\[80px\]{
    height: 80px;
  }

  .sm\:h-\[95\%\]{
    height: 95%;
  }

  .sm\:h-auto{
    height: auto;
  }

  .sm\:h-full{
    height: 100%;
  }

  .sm\:h-\[372px\]{
    height: 372px;
  }

  .sm\:min-h-\[252px\]{
    min-height: 252px;
  }

  .sm\:w-16{
    width: 4rem;
  }

  .sm\:w-\[169px\]{
    width: 169px;
  }

  .sm\:w-\[22px\]{
    width: 22px;
  }

  .sm\:w-\[300px\]{
    width: 300px;
  }

  .sm\:w-\[316px\]{
    width: 316px;
  }

  .sm\:w-\[40px\]{
    width: 40px;
  }

  .sm\:w-\[50\%\]{
    width: 50%;
  }

  .sm\:w-\[calc\(100\%_-_\(100\%\/3\)\)\]{
    width: calc(100% - (100% / 3));
  }

  .sm\:w-auto{
    width: auto;
  }

  .sm\:w-full{
    width: 100%;
  }

  .sm\:max-w-\[217px\]{
    max-width: 217px;
  }

  .sm\:max-w-\[268px\]{
    max-width: 268px;
  }

  .sm\:max-w-\[334px\]{
    max-width: 334px;
  }

  .sm\:max-w-\[50\%\]{
    max-width: 50%;
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:flex-row{
    flex-direction: row;
  }

  .sm\:items-center{
    align-items: center;
  }

  .sm\:justify-start{
    justify-content: flex-start;
  }

  .sm\:gap-0{
    gap: 0px;
  }

  .sm\:gap-2{
    gap: 0.5rem;
  }

  .sm\:gap-6{
    gap: 1.5rem;
  }

  .sm\:gap-\[40px\]{
    gap: 40px;
  }

  .sm\:gap-\[8px\]{
    gap: 8px;
  }

  .sm\:rounded-3xl{
    border-radius: 1.5rem;
  }

  .sm\:rounded-\[0\]{
    border-radius: 0;
  }

  .sm\:rounded-\[0_16px_16px_0\]{
    border-radius: 0 16px 16px 0;
  }

  .sm\:rounded-\[0_8px_8px_0\]{
    border-radius: 0 8px 8px 0;
  }

  .sm\:rounded-\[12px\]{
    border-radius: 12px;
  }

  .sm\:rounded-\[16px_0_0_16px\]{
    border-radius: 16px 0 0 16px;
  }

  .sm\:rounded-\[24px\]{
    border-radius: 24px;
  }

  .sm\:rounded-\[8px\]{
    border-radius: 8px;
  }

  .sm\:rounded-\[8px_0_0_8px\]{
    border-radius: 8px 0 0 8px;
  }

  .sm\:rounded-\[9px_0_0_8px\]{
    border-radius: 9px 0 0 8px;
  }

  .sm\:border-0{
    border-width: 0px;
  }

  .sm\:border-\[2px\]{
    border-width: 2px;
  }

  .sm\:border-b{
    border-bottom-width: 1px;
  }

  .sm\:border-b-0{
    border-bottom-width: 0px;
  }

  .sm\:border-orange{
    --tw-border-opacity: 1;
    border-color: rgb(255 122 0 / var(--tw-border-opacity, 1));
  }

  .sm\:bg-\[\#D8EEFF\]{
    --tw-bg-opacity: 1;
    background-color: rgb(216 238 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:p-0{
    padding: 0px;
  }

  .sm\:p-6{
    padding: 1.5rem;
  }

  .sm\:p-\[16px_24px\]{
    padding: 16px 24px;
  }

  .sm\:p-\[32px\]{
    padding: 32px;
  }

  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:pb-0{
    padding-bottom: 0px;
  }

  .sm\:pb-10{
    padding-bottom: 2.5rem;
  }

  .sm\:pb-3{
    padding-bottom: 0.75rem;
  }

  .sm\:pb-\[88px\]{
    padding-bottom: 88px;
  }

  .sm\:pl-6{
    padding-left: 1.5rem;
  }

  .sm\:pl-8{
    padding-left: 2rem;
  }

  .sm\:pl-\[24px\]{
    padding-left: 24px;
  }

  .sm\:pt-0{
    padding-top: 0px;
  }

  .sm\:pt-4{
    padding-top: 1rem;
  }

  .sm\:pt-8{
    padding-top: 2rem;
  }

  .sm\:pt-\[80px\]{
    padding-top: 80px;
  }

  .sm\:pr-10{
    padding-right: 2.5rem;
  }

  .sm\:text-left{
    text-align: left;
  }

  .sm\:text-right{
    text-align: right;
  }

  .sm\:text-\[16px\]{
    font-size: 16px;
  }

  .sm\:text-\[18px\]{
    font-size: 18px;
  }

  .sm\:text-\[22px\]{
    font-size: 22px;
  }

  .sm\:text-\[26px\]{
    font-size: 26px;
  }

  .sm\:text-\[36px\]{
    font-size: 36px;
  }

  .sm\:font-light{
    font-weight: 300;
  }

  .sm\:text-gray{
    --tw-text-opacity: 1;
    color: rgb(104 112 118 / var(--tw-text-opacity, 1));
  }
}

@media (min-width: 768px){
  .md\:relative{
    position: relative;
  }

  .md\:sticky{
    position: sticky;
  }

  .md\:bottom-0{
    bottom: 0px;
  }

  .md\:bottom-5{
    bottom: 1.25rem;
  }

  .md\:left-\[50\%\]{
    left: 50%;
  }

  .md\:right-\[-12px\]{
    right: -12px;
  }

  .md\:right-\[unset\]{
    right: unset;
  }

  .md\:top-0{
    top: 0px;
  }

  .md\:top-\[-10px\]{
    top: -10px;
  }

  .md\:top-\[-30px\]{
    top: -30px;
  }

  .md\:top-\[80px\]{
    top: 80px;
  }

  .md\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .md\:mb-0{
    margin-bottom: 0px;
  }

  .md\:mb-4{
    margin-bottom: 1rem;
  }

  .md\:mb-\[40px\]{
    margin-bottom: 40px;
  }

  .md\:ml-0{
    margin-left: 0px;
  }

  .md\:mr-3{
    margin-right: 0.75rem;
  }

  .md\:mt-0{
    margin-top: 0px;
  }

  .md\:mt-10{
    margin-top: 2.5rem;
  }

  .md\:mt-8{
    margin-top: 2rem;
  }

  .md\:mt-\[46px\]{
    margin-top: 46px;
  }

  .md\:block{
    display: block;
  }

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

  .md\:h-\[269px\]{
    height: 269px;
  }

  .md\:h-\[335px\]{
    height: 335px;
  }

  .md\:h-\[412px\]{
    height: 412px;
  }

  .md\:h-\[48px\]{
    height: 48px;
  }

  .md\:h-\[500px\]{
    height: 500px;
  }

  .md\:h-\[562px\]{
    height: 562px;
  }

  .md\:h-\[56px\]{
    height: 56px;
  }

  .md\:h-\[60\%\]{
    height: 60%;
  }

  .md\:h-\[622px\]{
    height: 622px;
  }

  .md\:h-\[64px\]{
    height: 64px;
  }

  .md\:h-\[80px\]{
    height: 80px;
  }

  .md\:h-auto{
    height: auto;
  }

  .md\:h-full{
    height: 100%;
  }

  .md\:w-\[110\%\]{
    width: 110%;
  }

  .md\:w-\[150px\]{
    width: 150px;
  }

  .md\:w-\[198px\]{
    width: 198px;
  }

  .md\:w-\[1px\]{
    width: 1px;
  }

  .md\:w-\[200px\]{
    width: 200px;
  }

  .md\:w-\[240px\]{
    width: 240px;
  }

  .md\:w-\[40\%\]{
    width: 40%;
  }

  .md\:w-\[60\%\]{
    width: 60%;
  }

  .md\:w-\[64px\]{
    width: 64px;
  }

  .md\:w-\[calc\(100\%_-_198px\)\]{
    width: calc(100% - 198px);
  }

  .md\:w-auto{
    width: auto;
  }

  .md\:w-full{
    width: 100%;
  }

  .md\:w-\[90\%\]{
    width: 90%;
  }

  .md\:w-\[80\%\]{
    width: 80%;
  }

  .md\:w-\[70\%\]{
    width: 70%;
  }

  .md\:max-w-\[110\%\]{
    max-width: 110%;
  }

  .md\:max-w-\[334px\]{
    max-width: 334px;
  }

  .md\:max-w-\[456px\]{
    max-width: 456px;
  }

  .md\:max-w-\[478px\]{
    max-width: 478px;
  }

  .md\:max-w-\[536px\]{
    max-width: 536px;
  }

  .md\:max-w-full{
    max-width: 100%;
  }

  .md\:translate-x-\[-50\%\]{
    --tw-translate-x: -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));
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:items-center{
    align-items: center;
  }

  .md\:gap-10{
    gap: 2.5rem;
  }

  .md\:gap-20{
    gap: 5rem;
  }

  .md\:gap-8{
    gap: 2rem;
  }

  .md\:gap-\[32px\]{
    gap: 32px;
  }

  .md\:overflow-visible{
    overflow: visible;
  }

  .md\:rounded-\[24px\]{
    border-radius: 24px;
  }

  .md\:border-b{
    border-bottom-width: 1px;
  }

  .md\:border-t-0{
    border-top-width: 0px;
  }

  .md\:bg-transparent{
    background-color: transparent;
  }

  .md\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }

  .md\:p-0{
    padding: 0px;
  }

  .md\:p-6{
    padding: 1.5rem;
  }

  .md\:p-\[16px_24px\]{
    padding: 16px 24px;
  }

  .md\:p-\[32px\]{
    padding: 32px;
  }

  .md\:p-\[40px\]{
    padding: 40px;
  }

  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:pb-16{
    padding-bottom: 4rem;
  }

  .md\:pb-4{
    padding-bottom: 1rem;
  }

  .md\:pl-6{
    padding-left: 1.5rem;
  }

  .md\:pr-\[76px\]{
    padding-right: 76px;
  }

  .md\:pt-0{
    padding-top: 0px;
  }

  .md\:pt-12{
    padding-top: 3rem;
  }

  .md\:pt-8{
    padding-top: 2rem;
  }

  .md\:pt-\[32px\]{
    padding-top: 32px;
  }

  .md\:pt-\[40px\]{
    padding-top: 40px;
  }

  .md\:text-left{
    text-align: left;
  }

  .md\:text-right{
    text-align: right;
  }

  .md\:text-\[16px\]{
    font-size: 16px;
  }

  .md\:text-\[18px\]{
    font-size: 18px;
  }

  .md\:text-\[22px\]{
    font-size: 22px;
  }

  .md\:text-\[26px\]{
    font-size: 26px;
  }

  .md\:text-\[36px\]{
    font-size: 36px;
  }

  .md\:shadow-none{
    --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);
  }

  .min-\[768px\]\:max-w-\[768px\]{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .lg\:left-\[-18px\]{
    left: -18px;
  }

  .lg\:right-\[-19px\]{
    right: -19px;
  }

  .lg\:order-1{
    order: 1;
  }

  .lg\:order-2{
    order: 2;
  }

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:mt-\[180px\]{
    margin-top: 180px;
  }

  .lg\:block{
    display: block;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:w-\[30\%\]{
    width: 30%;
  }

  .lg\:w-\[310px\]{
    width: 310px;
  }

  .lg\:w-\[420px\]{
    width: 420px;
  }

  .lg\:w-\[80\%\]{
    width: 80%;
  }

  .lg\:w-\[calc\(100\%_-_197px\)\]{
    width: calc(100% - 197px);
  }

  .lg\:w-\[calc\(100\%_-_310px\)\]{
    width: calc(100% - 310px);
  }

  .lg\:w-\[calc\(100\%_-_420px\)\]{
    width: calc(100% - 420px);
  }

  .lg\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .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\:gap-10{
    gap: 2.5rem;
  }

  .lg\:gap-6{
    gap: 1.5rem;
  }

  .lg\:p-8{
    padding: 2rem;
  }

  .lg\:pb-16{
    padding-bottom: 4rem;
  }

  .lg\:pb-\[120px\]{
    padding-bottom: 120px;
  }

  .lg\:pr-16{
    padding-right: 4rem;
  }

  .lg\:text-left{
    text-align: left;
  }

  .lg\:text-\[22px\]{
    font-size: 22px;
  }

  .lg\:text-\[58px\]{
    font-size: 58px;
  }

  .min-\[1024px\]\:max-w-\[952px\]{
    max-width: 952px;
  }
}

@media (min-width: 1025px){
  .min-\[1025px\]\:h-\[335px\]{
    height: 335px;
  }
}

@media (min-width: 1107px){
  .min-\[1107px\]\:w-\[231px\]{
    width: 231px;
  }
}

@media (min-width: 1117px){
  .min-\[1117px\]\:w-\[189px\]{
    width: 189px;
  }
}

@media (min-width: 1133px){
  .min-\[1133px\]\:w-\[196px\]{
    width: 196px;
  }
}

@media (min-width: 1178px){
  .min-\[1178px\]\:w-\[164px\]{
    width: 164px;
  }
}

@media (min-width: 1188px){
  .min-\[1188px\]\:w-\[237px\]{
    width: 237px;
  }
}

@media (min-width: 1280px){
  .xl\:relative{
    position: relative;
  }

  .xl\:left-\[-10px\]{
    left: -10px;
  }

  .xl\:top-0{
    top: 0px;
  }

  .xl\:block{
    display: block;
  }

  .xl\:hidden{
    display: none;
  }

  .xl\:h-\[450px\]{
    height: 450px;
  }

  .xl\:h-\[48px\]{
    height: 48px;
  }

  .xl\:h-\[80px\]{
    height: 80px;
  }

  .xl\:h-\[95\%\]{
    height: 95%;
  }

  .xl\:w-\[180px\]{
    width: 180px;
  }

  .xl\:w-\[calc\(\(100\%_\/_3\)_-_17px\)\]{
    width: calc((100% / 3) - 17px);
  }

  .xl\:w-\[calc\(100\%_\/_3\)\]{
    width: calc(100% / 3);
  }

  .xl\:w-\[calc\(50\%_-_12px\)\]{
    width: calc(50% - 12px);
  }

  .xl\:max-w-\[calc\(100\%_\/_2\)\]{
    max-width: calc(100% / 2);
  }

  .xl\:max-w-\[calc\(100\%_\/_6\)\]{
    max-width: calc(100% / 6);
  }

  .xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:flex-row{
    flex-direction: row;
  }

  .xl\:gap-10{
    gap: 2.5rem;
  }

  .xl\:overflow-visible{
    overflow: visible;
  }

  .xl\:\!rounded-\[8px_0_0_8px\]{
    border-radius: 8px 0 0 8px !important;
  }

  .xl\:rounded-\[0_8px_0_0\]{
    border-radius: 0 8px 0 0;
  }

  .xl\:rounded-\[0_8px_8px_0\]{
    border-radius: 0 8px 8px 0;
  }

  .xl\:rounded-none{
    border-radius: 0px;
  }

  .xl\:pb-14{
    padding-bottom: 3.5rem;
  }

  .xl\:text-\[16px\]{
    font-size: 16px;
  }
}

@media (min-width: 1281px){
  .min-\[1281px\]\:\!mr-\[-4px\]{
    margin-right: -4px !important;
  }

  .min-\[1281px\]\:mr-\[-2px\]{
    margin-right: -2px;
  }

  .min-\[1281px\]\:block{
    display: block;
  }

  .min-\[1281px\]\:max-w-\[calc\(\(100\%_\/_2\)_\+_4px\)\]{
    max-width: calc((100% / 2) + 4px);
  }

  .min-\[1281px\]\:max-w-\[calc\(\(100\%_\/_3\)_\+_2px\)\]{
    max-width: calc((100% / 3) + 2px);
  }

  .min-\[1281px\]\:max-w-\[calc\(\(100\%_\/_3\)_\+_4px\)\]{
    max-width: calc((100% / 3) + 4px);
  }

  .min-\[1281px\]\:max-w-\[calc\(100\%_\/_2\)\]{
    max-width: calc(100% / 2);
  }

  .min-\[1281px\]\:max-w-\[calc\(100\%_\/_3\)\]{
    max-width: calc(100% / 3);
  }

  .min-\[1281px\]\:max-w-\[calc\(100\%_\/_6\)\]{
    max-width: calc(100% / 6);
  }

  .min-\[1281px\]\:rounded-\[16px_0_0_16px\]{
    border-radius: 16px 0 0 16px;
  }

  .min-\[1281px\]\:rounded-none{
    border-radius: 0px;
  }

  .min-\[1281px\]\:p-0{
    padding: 0px;
  }
}

/*# sourceMappingURL=output.css.map */