@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");


/* Fonts */
/* Import styles components */
:root {
    --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --msger-bg: #fff;
    --border: 2px solid #ddd;
    --left-msg-bg: #6B7280;
    --right-msg-bg: #F97316;
  }
html {
    box-sizing: border-box;
  }
*,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
  }
.msger {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
    min-width: 515px;
    margin: 25px 10px;
    height: calc(100% - 50px);
    border: var(--border);
    border-radius: 5px;
    overflow-y: auto;
    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); */
    overflow-x: auto;
    min-width: 450px;
    color: #666;
  }
.msger-chat {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    max-height: 300px;
  }
.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 {
    min-width: 50px;
    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;
    color: #fff;
  }
.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;
    height: 80px;
  }
.msger-inputarea * {
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
  }
.msger-input {
    flex: 1;
    background: #ddd;
  }
.msger-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 10px;
    background: rgb(239, 122, 20);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.23s;
    /* width: 5%; */

  }
.msger-send-btn:disabled {
    background-color: #cccccc;
    color: #777777;
    cursor: not-allowed; 
  }
.msger-attach-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 10px;
    background: #fff;
    color: #fff;
    font-weight: bold;
    border: 1px solid #F97316;
    cursor: pointer;
    transition: background 0.23s;
    /* width: 5%; */

  }
.msger-attach-btn img {
    margin-bottom: 0; /* ajuste este valor conforme necessário */
    vertical-align: middle;
  }
.msger-chat {
    background-color: #fcfcfe;
  }
/* MOBILE */
.msger-chat-mobile {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    height: calc(100% - 4em);
  }
.msger-chat-mobile::-webkit-scrollbar {
    width: 6px;
  }
.msger-chat-mobile::-webkit-scrollbar-track {
    background: #ddd;
  }
.msger-chat-mobile::-webkit-scrollbar-thumb {
    background: #bdbdbd;
  }
.msger-input-mobile {
    flex: 1;
    background: #ddd;
    border-radius: 10px !important;
  }
.msger-inputarea-mobile {
    height: 4em;
    display: flex;
    padding: 10px;
    border-top: var(--border);
    background: #eee;
    width: -webkit-fill-available;
    left: 0;
  }
.msger-inputarea-mobile * {
    padding: 2px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
  }
.msger-attach-btn-mobile {
    color: #fff;
    cursor: pointer;

  }
.msger-send-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 10px;
    background: rgb(239, 122, 20);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.23s;
  }
.msger-send-btn-mobile:disabled {
    background-color: #cccccc;
    color: #777777;
    cursor: not-allowed; 
  }
@media (max-width: 450px) {
    .status-arremat{
        font-size: 8px;
    }

    .msger-chat {
      display: none;
      }

      .msger-inputarea * {
     display: none;
      }


    /* .msger{
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
        width: 100% !IMPORTANT;
        max-width: 301px;
        margin: 25px 10px;
        height: calc(100% - 50px);
        width: 100%;
        border: var(--border);
        border-radius: 5px;
        overflow-y: auto;
        overflow-x: block;
        background: var(--msger-bg);
        box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
    } */


  }
@media (max-width: 1050px) {
    .status-arremat{
        font-size: 11px;
    }

  }
@media (min-width: 450px) {
    .open-chat-mobile{
        display: none ;
      }

  }
.truncate-text {
    max-width: 15em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
@media (max-width: 1280px){
    .truncate-text {
      max-width: 5em;
    }  

  }
.truncate-text:hover {
    max-width: 20em;
    color: #F97316;
  }
.arrematacao_tr:hover{
  background-color: #f5f7fa!important;
  cursor: pointer;
}
.vertical-bar {
  max-width: 1.5em;
}
.vertical-bar::before {
  content: '';
  display: block;
  width: 1px; /* ou a largura desejada para a barra */
  height: 50%;
  background: #E5E7EB; /* ou a cor desejada */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* Certifique-se de posicionar o elemento pai relativamente para que o pseudo-elemento se posicione corretamente em relação a ele. */
.relative {
  position: relative;
}
.title-table-chat{
  font-size: 15px;
  text-align: left;
}
.data, title-table-chat{
  font-weight: 600;
}
.chat-opened-content{
  border-top: 1px solid #D1D5DB;
}
.text-modalidade-leilao-chat{
  font-size: 12px;
  color: #6B7280;
}
/* .fechar_modal_habilitacao {
  min-height: 4em;
} */
#modal-arrematacao-chat {
  position: unset !important;
  background-image: unset !important;
}
.modal-content-arrematacao{
  position: unset !important;
  background-image: unset !important;
}
table th {

  border-bottom: 1px solid #ccc;
}
table th, table td {
  padding: .3em;


}
.fold-table{
    min-width: 600px;
}
/* tabela colapsável */
table.fold-table tbody tr.view {
  cursor: pointer;
}
.table-container {
    overflow-x: auto; /* permite scroll horizontal */
  }
table.fold-table tbody tr:nth-child(3n-1) {
  /* background: #7ccc0c41;
  border-bottom: 1px solid green !important; */

}
table.fold-table tbody tr.view:hover {
  background: #7ccc0c41;
  /* border-top: 3px solid rgba(55, 241, 55, 0.383) !important; */
  border-bottom: 1px solid rgba(55, 241, 55, 0.383) !important;

}
table.fold-table tbody tr.view.open {

  background: #F3F4F6;
  color: #1F2937;
}
table.fold-table tbody tr.fold {
  display: none;
}
table.fold-table tbody tr.fold.open {
    background-color: #F3F4F6;
  display:table-row;
}
.fold-content {
  padding: .5em;
  border-bottom: 2px solid black;
}
.fold-content h3 {
  margin-top:0;
}
.fold-content > table {
  border: 2px solid #ccc;
}
.fold-content > table > tbody > tr:nth-child(even) {
  background: #9b1e1e;
}
.data {
    color: #1F2937;
  }
.teste-mobile{
     display: none;
}
.chat-desktop{
    display: flex;
   }
.box-info{
      flex: 1;
      background-color:white;
      padding: 20px;
      border: 1px solid #cfd0d2;
      border-radius: 7px;
      -webkit-border-radius: 7px;
      -moz-border-radius: 7px;
      -ms-border-radius: 7px;
      -o-border-radius: 7px;
}
.box-table{
    flex: 2;
    background-color: white;
    margin-left: 20px;
    padding: 20px;
    border: 1px solid #cfd0d2;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.table-container {
    overflow-x: auto;
    max-width: 800px; /* largura máxima do contêiner */
  }
.title-table{
    font-size: 15px;
    text-align: center;
  }
@media (max-width: 1068px) {
    .img-leilao{
        display: none !important;
    }
    .chat-desktop{
        display: grid;
       }
       .title-table{
        font-size: 11px;
      }

   .box-info{
    margin-bottom: 10px;
    flex: 1 1 100% !important;
     max-width: 100% !important;
      background-color: white !important;
      padding: 20px !important;
   }
   .box-table{
    flex: 1 1 100% !important;
    max-width: 100% !important;
    margin-left: 0px;
    background-color: white !important;
    padding: 20px !important;

   }



}
@media (max-width: 450px){

    .tabela-container{
        overflow-x: auto;
        max-width: 370px;
       }
}
@media (max-width: 375px){

    .tabela-container{
        overflow-x: auto;
        max-width: 330px;
       }
}
#encolher_apelido_meus_lances {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}
@media screen and (min-width: 280px) and (max-width: 600px) {
  #encolher_apelido_meus_lances {
      max-width: 20ch;
  }
}
@media screen and (min-width: 640px) {
  #encolher_apelido_meus_lances {
      max-width: 10ch;
  }
}
@media screen and (min-width:768px) {
  #encolher_apelido_meus_lances {
      max-width: 15ch;
  }
}
@media screen and (min-width:1024px) {
  #encolher_apelido_meus_lances {
      max-width: 30ch;
  }
}
@media screen and (min-width:1100px) {
  #encolher_apelido_meus_lances {
      max-width: 12ch;
  }
}
.after-arrow:after{
    position: absolute;
    bottom: -21px;
    left: 50%;
    z-index: 20;
    height: 0.75rem;
    width: 0.75rem;
    --tw-translate-x: -50%;
    --tw-rotate: -45deg;
    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));
    border-top-width: 1px;
    border-right-width: 1px;
    border-style: solid;
    border-color: rgb(17 24 39 / .08);
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-content: '';
    content: var(--tw-content);
    display: none;
}
.notification-close{
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 0.375rem;
    line-height: .75rem;
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.notification-close:hover{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.esconder {
    display: none !important;
}
#show-confirmation-password,
#show-new-password,
#show-password {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 10px;
    background-color: transparent;
    border: none;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    outline: none;
    z-index: 9999;
}
:root {
    --primary-color: #f97316;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* .main {
    display: flex;
    flex-direction: column;
    align-items: center;
} */
/* .card-steps {
    margin-top: 200px;
} */
.form-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.text-center {
    text-align: center;
}
/* Progressbar */
.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    /* counter-reset: step;
    margin: 2rem 0 4rem; */
    overflow-x: auto;
    width: 100%;
    max-width: 1200px;
}
.progressbar::before,
.progress {
    content: "";
    position: absolute;
    /* bottom: 15%; */
    /* transform: translateY(-50%); */
    height: 2px;
    width: 100%;
    background-color: #fed7aa;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}
.progress {
    left: 10%;
    background-color: var(--primary-color);
    width: 0%;
    transition: 01.3s;
    -webkit-transition: 01.3s;
    -moz-transition: 01.3s;
    -ms-transition: 01.3s;
    -o-transition: 01.3s;
}
.progress-step {
    /* width: 2.1875rem;
    height: 2.1875rem; */
    /* background-color: #fcfcfc;
    border: 1px solid #fed7aa; */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    /* flex: 1; */
    position: relative;
    /* white-space: nowrap; */
    justify-content: center;
    align-items: center;
    min-width: 20%;
}
/* .progress-step::before {
    counter-increment: step;
    content: counter(step);
} */
.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + -5.2rem);
    font-size: 0.85rem;
    color: #000000;
    font-size: 16px;
}
/* quando ativa o step */
.progress-step-active {
    /* background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-position: center center;
    color: #f97316; */
}
/* Form */
.form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
}
.form-step-active {
    display: block;
}
/* .input-group {
    margin: 2rem 0;
    display: block;
} */
@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}
/* Button */
.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.btn {
    padding: 0.75rem;
    display: block;
    text-decoration: none;
    background-color: #f97316 !important;
    color: #ffffff;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}
/* RESPONSIVO  */
@media (max-width: 1400px) {
    /* .input-group {
        display: block;
        margin-bottom: 20px;
    } */

    .btns-group {
        display: block;
        margin-top: 20px;
    }

    .btn {
        display: block;
        margin-top: 20px;
    }

    .progress {
        background-color: var(--primary-color);
        width: 0%;
        transition: 0.3s;
    }

    /* .icon {
        font-size: 65px;
        color: #a1a1a1;
        position: absolute;
        top: -180% !important;
    } */

    /* .main {
        margin: 55px;
    } */

    /* .progress-step::before {
        counter-increment: step;
        content: counter(step);
    } */

    .progress-step::after {
        content: none;
        top: calc(100% + -3.2rem);
        position: absolute;
        top: calc(100% + -5.2rem);
        font-size: 0.85rem;
        color: #000000;
    }
    /* .input-sms {
        width: 55px !important ;
        height: 56px !important ;
        border: 1px solid !important;
        border-color: rgb(197, 196, 196) !important;
        border-radius: 6px !important;

        margin: 3px !important;
    } */

    #confirm-button {
        display: inline-block;
        width: 270px !important;
        max-width: 480px;
        height: 56px;
        background-color: #f97316;
        color: #fff;
        font-size: 16px !important;
        border: none;
        border-radius: 5px;
        margin-top: 10px;
    }
}
@media (min-width: 1401px) and (max-width: 1650px) {
    /* .main {
        margin: 208px 300px;
    } */

    .divisa1 hr {
        margin-top: -7px !important;
        max-width: 839px !important;
        width: 975vw !important;
        background-color: #cac5c5 !important;
    }
    .divisa2 hr {
        margin-top: -11px !important;
        max-width: 840px !important;
        width: 975vw !important;
        background-color: #cac5c5 !important;
    }
    .divisa3 hr {
        margin-top: -9px !important;
        max-width: 839px !important;
        width: 975vw !important;
        background-color: #cac5c5 !important;
    }
    .divisa4 hr {
        margin-top: -9px !important;
        max-width: 839px !important;
        width: 975vw !important;
        background-color: #cac5c5 !important;
    }
}
@media (min-width: 1670px) and (max-width: 1920px) {
    .divisa1 hr {
        margin-top: -9px !important;
        max-width: 1076px !important;
        width: 100% !important;
        background-color: #cac5c5 !important;
    }
    .divisa2 hr {
        margin-top: -12px !important;
        max-width: 1076px !important;
        width: 100% !important;
        background-color: #cac5c5 !important;
    }
    .divisa3 hr {
        margin-top: -9px !important;
        max-width: 1074px !important;
        width: 100% !important;
        background-color: #cac5c5 !important;
    }
    .divisa4 hr {
        margin-top: -9px !important;
        max-width: 1074px !important;
        width: 100% !important;
        background-color: #cac5c5 !important;
    }
    .endereco {
        width: 525px !important;
    }
}
/* FIM RESPONSIVO */
.icon {
    filter: invert(11%) sepia(10%) saturate(2438%) hue-rotate(176deg)
        brightness(95%) contrast(88%);
}
.step-title {
    color: #1f2937;
    /* position: absolute;
    bottom: 130%; */
}
/* Progress Div Css  */
ul li .progress {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(68, 68, 68, 0.781);
    margin: 14px 0;
    display: grid;
    place-items: center;
    color: #fff;
    position: relative;
    cursor: pointer;
}
/* CSS STEP TOKEN SMS */
.token {
    display: inline-block;
    width: 96px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 5px;
}
#confirm-button {
    display: inline-block;
    width: 100%;
    max-width: 480px;
    height: 56px;
    background-color: #f97316;
    color: #fff;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}
#button-container {
    /* display: flex;
    flex-direction: column; */
    /* align-items: center; */
}
/* .form-sms {
    margin: 0 auto;
} */
/* .titulo-sms-token {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.titulo-sms-token span {
    color: #f97316;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}

.titulo-sms-token small {
    color: #1f2937;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}

.subtitulo-sms-token {
    color: #1f2937;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 10px;
}

.subtitulo-sms-token span {
    color: #f97316;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

.reenviar-sms,
.reenviar-email {
    cursor: pointer;
}

.input-sms {
    width: 15%;
    height: 56px;
    border: 1px solid !important;
    border-color: rgb(197, 196, 196) !important;
    border-radius: 6px !important;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin: 14px;
} */
/* CSS STEP UPLOAD FILE */
.cards-container-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: inherit;
}
.card-content-upload {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.card-title-upload {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}
.card-subtitle-upload {
    margin: 5px 0 0;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}
.card-upload {
    width: 100%;
    max-width: 240px;
    height: 140px;
    margin: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
}
/* Para dispositivos móveis */
@media (max-width: 800px) {
    .cards-container-upload {
        flex-direction: column !important;
    }

    .card-upload {
        width: 100% !important;
        margin: 10px 0 !important;
    }
    .token-alinhamento {
        margin-left: 13px;
    }
    .confirm-button-term {
        width: 100% !important;
        max-width: 120px !important;
        height: 36px !important;
        font-size: 14px !important;
        background-color: #f97316 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 5px !important;
        margin-top: -5px !important;
    }
}
.confirm-button-upload {
    width: 100% !important;
    max-width: 180px !important;
    height: 36px !important;
    font-size: 14px !important;
    background-color: #f97316 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    margin-top: 10px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 5px !important;
}
.flex-confirm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
}
.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #a8a8a8;
    cursor: pointer;
}
.file-input {
}
.file-name {
    color: transparent;
}
.file-input:not(:empty) + .file-name {
    color: #555555;
}
.custom-file-input::-webkit-file-upload-button {
}
/* CSS STEP 5 */
.image-container {
    display: flex;
    justify-content: center;
}
/* .titulo-sms-token {
    margin-top: 20px;
} */
.input-sms-upload {
    height: 144px !important;
    position: absolute !important ;
    top: 9px !important;
    background-color: transparent;
}
/* STYLE MODAL TERMOS  */
.modal-rounded {
    border-radius: 10px;
}
.rounded-3 {
    border-radius: 20px !important;
}
.titulo-modal {
    font-weight: 600 !important;
    font-family: roboto !important;
    font-size: 16px !important;
    color: #111827 !important;
}
.titulo-text-modal {
    font-style: bold !important;
    font-family: roboto !important;
    font-size: 16px !important;
    color: #4b5563 !important;
}
.sub-titulo-text-modal {
    font-weight: 400 !important;
    font-family: roboto !important;
    font-size: 16px !important;
    color: #6b7280 !important;
}
.modal-size {
    width: 1024px !important;
    height: 685px !important;
}
.flex-confirm-term {
    display: flex;
    justify-content: center;
    align-items: center;
}
.confirm-button-term {
    width: 100% !important;
    max-width: 120px !important;
    height: 36px !important;
    font-size: 14px !important;
    background-color: #f97316 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
}
/* style STEP 3 */
.body-cadastro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.form-cadastro {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1050px;
    max-height: 800px;
}
.form-group1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.form-group1 label,
.form-group1 input {
    width: 93%;
    margin-top: 5px;
}
.form-group1 input {
    margin-bottom: 10px;
    height: 40px;
    width: 100%;
    border: solid 0.1px;
    border-color: #d2d2d2;
    max-width: 544px !important;
    border-radius: 8px;
}
.form-group2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.form-group2 label,
.form-group2 input {
    width: 30%;
    margin-top: 5px;
}
.form-group2 input {
    margin-bottom: 10px;
    height: 40px;
    width: 100%;
    border: solid 0.1px;
    border-color: #d2d2d2;
    max-width: 544px !important;
    border-radius: 8px;
}
.divisa {
    display: flex;
}
.divisa h3 {
    white-space: nowrap;
}
.select-conheceu,
#estado_civil_cliente,
#regime,
#genero,
#nacionalidade,
#naturalidade_estado,
#naturalidade_cidade,
#genero_conjuge {
    margin-top: 5px;
    height: 40px !important;
    width: 100%;
    border-radius: 6px;
    border-color: #d1d1d1;
}
.choose-document {
    border-color: burlywood;
}
@media only screen and (max-width: 600px) {
    .form-group2 label,
    .form-group2 input {
        width: 100%;
    }
    .divisa hr {
        width: 0px;
    }
    .divisa {
        display: flex;
    }

    .form-cadastro {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        max-height: 800px;
    }
    .form-group1 > div {
        width: 100%;
    }
    .form-group2 > div {
        width: 100%;
    }
}
@media only screen and (min-width: 601px) {
    .form-group1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .form-group1 > div {
        width: 48%;
    }
    .form-group1 label {
        display: block;
    }

    .form-group2 > div {
    }
    .form-group2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
        grid-gap: 15px;
    }
    .form-group2 label,
    .form-group2 input {
        width: 100%;
    }
}
/*  */
#label_progress_step_1:before {
    content: "";
    display: block;
    height: 2px;
    width: 50%;
    background-color: #fff;
    position: absolute;
    left: 0;
    /* bottom: 15%; */
}
#label_progress_step_5:before {
    content: "";
    display: block;
    height: 2px;
    width: 50%;
    background-color: #fff;
    position: absolute;
    right: 0;
    /* bottom: 15%; */
}
:root {
    --menu-size: 350px;
}
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    outline: none;
}
.box {
    display: flex;
    height: auto;
    min-height: calc(100% - 97px);
}
.align-center {
    display: flex;
    align-items: center;
}
/* .notification-rounded {
    background: red;
    color: fff;
    border-radius: 23px;
    width: 26px;
    height: 20px;
    text-align: center;
} */
.one {
    flex: 0 1 auto;
    width: 150px;
}
.two {
    flex: 0 1 auto;
    width: 350px;
    border-left: 1px solid #e8e6e6;
    border-right: 1px solid #e8e6e6;
    margin-left: 1rem;
}
.three {
    flex: 1 1 auto;
}
body {
    /* background-color: #eee; */
}
.div1,
.div2 {
    display: inline-block; /* ou float: left; */
    width: 50%; /* ou um valor específico para cada div */
}
.content-body {
    background-color: #fff;
    padding: 30px;
}
.item {
    display: none;
}
.item.active {
    display: block;
}
.content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
}
#btnMenu {
    cursor: pointer;
    padding: 5px;
    transition: all 0.5s;
}
#btnMenu:hover {
    border-radius: 50%;
    cursor: pointer;
    background-color: rgb(182, 190, 211);
}
#btnMenu:active {
    background-color: rgb(186, 192, 210);
}
#btnClose {
    padding: 8px;
    background-color: rgb(78, 37, 37);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
#btnClose:active {
    background-color: rgb(151, 73, 73);
}
.menu {
    /* position: fixed; */
    top: 96px;
    left: 11%;
    width: var(--menu-size);
    height: 100%;
    /* background-color: #fff;
    border: 1px solid #e8e6e6; */
}
.menu ul {
    list-style: none;
    /* margin-top: 35px; */
}
/* .menu ul li {
    display: block;
} */
.menu ul li a {
    transition: background 0.3s;
    display: block;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 0px;
    /* padding: 13px 50px; */
}
.menu ul li:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
@media (min-width: 768px) {
    #btnClose {
        display: none;
    }
}
.user-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
/* .user-profile-mobile {
    display: flex;
    align-items: center;
    padding: 10px;
} */
/* .user-profile-mobile img {
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 8px;
} */
.user-profile p {
    font-weight: bold;
    margin: 0;
    color: #1f2937;
}
.user-profile img {
    border-radius: 50%;
    margin-right: 10px;
}
/* .user-profile-name {
    display: flex;
    justify-content: center;

    align-items: center;
} */
/* .user-profile-name p {
    margin: 0;
    font-size: 20px;
    color: #1f2937;
} */
/* .user-profile-status {
    display: flex;
    justify-content: center;

    align-items: center;
}
.user-profile-status p {
    margin: 3px;
    font-size: 14px;
    color: #1f2937;
} */
.mobile-header {
    /* display: none; */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.navbar-brand img {
    height: 40px;
}
.navbar-toggler {
    border: none;
    background-color: transparent;
}
.navbar-toggler:focus {
    outline: none;
}
.navbar-toggler-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
}
.collapse.show {
    display: block;
}
.navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.nav-item {
    margin: 10px;
}
.nav-link {
    color: #fff;
    font-size: 20px;
}
.navbar-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
/* .side-menu {
    height: 1080px;
} */
.status-green {
    border: 1px solid rgb(137, 176, 29);
    color: rgb(137, 176, 29) !important;
    padding: 0px 7px;
    background-color: #77e07f0d;
    font-size: 13px;
    border-radius: 6px;
    /* max-height: 33px; */
    width: 68px;
}
.notification {
    border: 1px solid red;
    border-radius: 20px;
    width: 20px !important;
    color: #fff;
    background-color: red;
}
/* .user-menu-mobile img {
    width: 40 !important;
    height: 40px !important;
    border-radius: 50%;
    border: -2px solid #da850dab;
} */
/* HEADER MOBILE÷ */
@media (max-width: 1250px) {
    /* .mobile-header {
        display: block;
    } */

    .one {
        display: none;
    }

    .two {
        display: none;
    }
    .content {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        margin-top: 50px;
    }
    .side-menu {
        display: none;
    }
    .content-body {
        background-color: #fff;
        padding: 20px;
        position: relative;
        top: 10px;
        left: 0% !important;
    }
    .item {
        display: none;
    }

    .item.active {
        display: block;
    }
    .user-profile-name p {
        /* display: block; */
        /* margin-top: 22px; */
        /* font-size: 18px; */
        /* remove margens padrão dos parágrafos */
    }

    /* .user-profile-container {
        display: flex;
        flex-direction: column;
    } */
    /* .user-profile-name {
        display: flex;
        justify-content: center;
        padding: 0px;
        align-items: center;
    } */
    /* .user-profile-status {
        display: flex;
        justify-content: center;
        text-align: justify;
        align-items: center;
    }
    .user-profile-status p {
        display: block;
        margin-top: 6px;
        font-size: 12px;
    }
    .user-profile-status-response {
        display: flex;
        justify-content: center;
        text-align: justify;
        align-items: center;
    }
    .user-profile-status-response p {
        text-align: justify;
        margin: -15px 0px 13px 2px;
        font-size: 11px;
        color: #22c309;
    } */
    /* .user-profile-container {
        width: 50%;
        float: left;
    } */

    /* .user-profile-container.right-0 {
        float: right;
        position: relative;
        right: 0;
    } */
    .user-profile-wrapper {
        /* display: flex;
        justify-content: space-between; */
        /* gap: 36px; */
    }

    .status-green {
        border: 1px solid rgb(137, 176, 29);
        color: rgb(137, 176, 29) !important;
        padding: 0px 4px;
        background-color: #77e07f0d;
        font-size: 13px;
        border-radius: 6px;
        /* max-height: 33px; */
        width: 52px;
    }
    .modal-content {
        background-color: #fefefe;
        /*margin: 17%;
        */
        position: fixed;
        top: 17% !important;
        left: 14% !important;
        right: 50% !important;
        padding: 20px;
        border: 1px solid #888;
        width: 73% !important;
        border-radius: 25px;
        max-width: 350px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
    }
}
.user-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
}
.user-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
}
.user-menu img {
    width: 192px;
    height: 192px;
    border-radius: 50%;
}
/* Change photo modal */
.modal-perfil {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-selecione {
    display: flex;
    justify-content: center;
    padding: 55px;
    color: red;
    margin-left: 10%;
    border-radius: 50%;
    align-items: center;
    /*cordefundoquandohover*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.modal-selecione p {
    color: none;
}
.modal-selecione p:hover {
    color: rgba(128, 128, 128, 0.542);
}
.modal-selecione:hover {
    background-color: #e8e8e870;
}
.modal-content {
    background-color: #fefefe;
    /*margin: 17%;
    */
    position: fixed;
    top: 25%;
    left: 50%;
    right: 50%;
    padding: 20px;
    border: 1px solid #888;
    width: 59%;
    border-radius: 25px;
    max-width: 350px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Adicione estilos para o popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}
.popup p {
    margin: 0;
    font-size: 18px;
}
/* Adicione estilos para o botão */
.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: #007bff;
    border-radius: 4px;
    cursor: pointer;
}
.btn:hover {
    background-color: #0062cc;
}
/* Esconda o input do tipo "file" */
.hidden {
    display: none;
}
/* .divisanotification hr {
    margin-top: -12px !important;
    background-color: #f0eeeeaa!important;
} */
.divisanotification {
    width: 100%;
}
.info-notification-hr {
    margin-top: -12px !important;
    width: 100%;
    background-color: #f0eeeeaa !important;
}
.info-notification {
    width: 75%;
}
/* .card-info-notification {
    border-radius: 9px;
    border: 1px solid #dedede8c;
    width: 100%;
    height: 120px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
} */
.info-notification h3 {
    background-color: #fff;
}
/* .card-header h2 {
    font-size: 32px;
} */
@media (min-width: 1900px) {
    .divisao-info {
        margin-left: 9%;
    }
    .divisao-aviso {
        margin-left: 12%;
    }
}
@media (max-width: 1500px) {
    .divisao-info {
        margin-left: 12%;
    }
    .divisao-aviso {
        margin-left: 17%;
    }
}
@media (max-width: 450px) {
    .divisao-info {
        margin-left: 35% !important;
    }
    .divisao-aviso {
        margin-left: 45% !important;
    }
}
.btn-red {
    background-color: #ef4444 !important;
    color: #fff;
    border-radius: 6px;
    width: 120;
    height: 40;
    font-size: 13;
}
.btn-orange {
    background-color: #f97316 !important;
    color: #fff;
    border-radius: 6px;
    width: 120;
    height: 40;
    font-size: 13;
}
.btn-green {
    background-color: #65a30d !important;
    color: #fff;
    border-radius: 6px;
    width: 120;
    height: 40;
    font-size: 13;
}
.sidebar li {
    cursor: pointer;
    /* padding: 14px 16px; */
    border-radius: 6px;
}
.sidebar li.active{
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.notfication-orange{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.notfication-orange p{
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.notfication-orange button{
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.notfication-lime{
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
}
.notfication-lime p{
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.notfication-lime button{
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
}
.notfication-red{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.notfication-red p{
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.notfication-red button{
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
table {
    border-collapse: separate !important;
    border-spacing: 0;
    width: 100%;
    border-bottom: 2px solid black;
    margin: 0 auto;
}
table th {
    border-bottom: 2px solid black;
}
thead {
    background-color: none;
}
.toggle-checkbox:checked{
    right: 0px;
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.toggle-checkbox:checked + .toggle-label{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.nome-table {
    padding: 10px;
    text-align: left;
}
.tabela-preferencia {
    border-bottom: 1px solid #e5e7eb;
}
.acoes-table {
    padding: 10px;
    text-align: right;
}
.container {
    display: flex;
    align-items: center;
}
hr {
    flex-grow: 1;
}
.contato {
    display: flex;
    align-items: center;
}
.titulo-contato {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
@media (min-width: 1650px) {
    .status-table {
        margin-left: 16rem;
    }
}
@media (width: 1440px) {
    .status-table {
        margin-left: 12rem;
    }
}
@media (max-width: 1100px) {
    .title-acoes {
        display: none;
    }
    .edit-button {
        border: none;
    }
    .delete-button {
        border: none;
    }
    .status-table {
        margin-left: 14rem;
    }
    .acoes-docs-table {
        text-align: center;
    }
}
@media (max-width: 760px) {
    .contato {
        display: inherit;
    }
    .status-table {
        margin-left: 6rem;
    }
    .acoes-docs-table {
        text-align: center;
    }
}
@media (width: 768px) {
    .contato {
        display: inherit;
    }
    .status-table {
        margin-left: 9rem;
    }
}
@media (width: 1024px) {
    .contato {
        display: inherit;
    }
    .status-table {
        margin-left: 16rem;
    }
}
@media (max-width: 568px) {
    .modal-interesse ul {
        column-count: 1 !important;
        column-gap: 0 !important;
    }
    .contato {
        display: inherit;
    }
    .status-table {
        margin-left: 1rem;
    }
    .acoes-docs-table {
        text-align: center !important;
    }
}
/* STYLE MODAL TERMOS  */
.titulo-modal {
    font-weight: 600 !important;
    font-family: roboto !important;
    font-size: 16px !important;
    color: #111827 !important;
}
.titulo-text-modal {
    font-style: bold !important;
    font-family: roboto !important;
    font-size: 16px !important;
    color: #4b5563 !important;
}
.sub-titulo-text-modal {
    font-weight: 400 !important;
    font-family: roboto !important;
    font-size: 16px !important;
    color: #6b7280 !important;
}
.x-close {
    float: right;
    color: #dbdbdb !important;
    cursor: pointer;
}
.flex-confirm-term {
    display: flex;
    justify-content: center;
    align-items: center;
}
.confirm-button-term {
    width: 100% !important;
    max-width: 90px !important;
    height: 36px !important;
    font-size: 14px !important;
    background-color: #f97316 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
}
.modal-interesse ul {
    list-style-type: none;
    column-count: 2;
    column-gap: 20px;
}
.modal-interesse li {
    margin-bottom: 10px;
    border: 1px solid #d1d1d1;
    padding: 6px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #6b7280;
}
.modal-interesse label {
    display: inline-block;
    margin-right: 5px;
    width: 16px;

    height: 16px;
    background-color: #eee;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}
.modal-interesse input[type="checkbox"] {
    display: none;
}
.modal-interesse input[type="checkbox"]:checked + label {
    background-color: #f97316;
    color: #fff;
}
.modal-interesse input[type="checkbox"]:checked + label::before {
    content: "\2713";
    font-size: 12px;
    position: absolute;
    top: 1px;
    left: 3px;
    color: #fff;
}
.select-modal-interesse {
    width: 100%;
    border-radius: 6px;
    color: #6b7280;
    border-color: #d1d1d1;
}
.input-modal-interesse {
    width: 100% !important;
    border-radius: 6px !important;
    color: #6b7280 !important;
    border-color: #d1d1d1 !important;
}
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
}
.acoes-docs-table {
    text-align: left;
}
/* .card-upload-painel {
    width: 100%;
    max-width: 285px;
    height: 161px;
    margin: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
} */
.texto-negrito {
    color: #0d0d0e !important;
    font-weight: bold;
}
.nao_mostrar {
    display: none !important;
}
.nao_mostrar_cidades {
    display: none;
}
.nao_mostrar_regioes {
    display: none;
}
.nao_mostrar_zonas {
    display: none;
}
#mostrar_cidades .select2-container {
    position: initial !important;
}
.select2-container .select2-selection__placeholder{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.select2-container .select2-selection__placeholder::placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.select2-container .select2-selection__placeholder {
    color: #6b7280;
    font-size: 1rem;
}
.currency-symbol {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 0.5rem;
    color: #a0aec0;
}
.placeholder-modal-interesse::placeholder {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 0.5rem;
    color: #a0aec0;
    margin-left: 0.3rem;
}
/* Tabs */
.tabs-container {
    width: 100%;
}
.tabs li {
    border-bottom: 6px solid transparent;
    cursor: pointer;
}
.tabs li:hover {
    border-bottom: 6px solid #d1d5db;
}
.tabs li.active {
    border-bottom: 6px solid #374151;
}
.tab-content {
    display: none;
}
.current {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Selects */
.optgroup{
    width: 100%;
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    z-index: 1;
}
.select-item span{
    display: block;
    white-space: nowrap;
    border-radius: 0.125rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.select-item span b{
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.select-item span:hover{
    cursor: pointer;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.select-item span:active{
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.select-item input[type="radio"]:checked + span{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.select-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.673177 12L0 11.3268L5.32682 6L0 0.673178L0.673177 0L6 5.32682L11.3268 0L12 0.673178L6.67318 6L12 11.3268L11.3268 12L6 6.67318L0.673177 12Z' fill='black'/%3E%3C/svg%3E");
    filter: invert(67%) sepia(21%) saturate(142%) hue-rotate(179deg)
        brightness(91%) contrast(98%);
    position: absolute;
    right: 0.25rem;
    top: 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));
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0.75rem;
    line-height: 1;
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.select-search-input::-webkit-search-cancel-button:hover {
    filter: invert(5%) sepia(29%) saturate(3291%) hue-rotate(201deg)
        brightness(95%) contrast(91%);
}
.favorite {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1074 15.9271V15.0104H6.02409V15.9271H16.1074ZM10.6533 10.9083L15.1908 6.37083L13.9074 5.04167L9.32409 9.57917L10.6533 10.9083ZM5.61159 5.86667L10.1491 1.28333L8.81992 0L4.28242 4.5375L5.61159 5.86667ZM1.00534 14.8271L12.3262 3.50625L11.6845 2.86458L0.363672 14.1854L1.00534 14.8271Z' fill='white'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto !important;
}
@keyframes skeleton {
    50% {
        opacity: 0.8;
    }
}
.skeleton{
    pointer-events: none;
}
.skeleton * {
    animation: skeleton 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    filter: brightness(1);
    pointer-events: none;
    user-select: none;
    border-radius: 0.25rem;
    border-color: transparent !important;
    background-color: rgb(17 24 39 / 0.05) !important;
    --tw-gradient-from: transparent var(--tw-gradient-from-position) !important;
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
    fill: transparent;
    color: transparent !important;
}
.skeleton img{
    visibility: hidden;
}
.group-d1 li {
    flex: 1;
}
.group-d1 li:nth-child(-n + 2):not(:hover) ~ li:last-child {
    flex: 2;
}
.group-d1 li:nth-child(-n + 2):is(:hover) ~ li:last-child {
    flex: 1;
}
.group-d1 li:is(:hover) {
    flex: 2;
}
.group-d1-card {
    height: clamp(
        300px,
        calc(300px + (496 - 300) * ((100vw - 360px) / (1536 - 360))),
        496px
    );
}
.breadcrumb li{
    display: flex;
    white-space: nowrap;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.breadcrumb li:hover{
    text-decoration-line: underline;
    text-underline-offset: 8px;
}
.breadcrumb li:last-child{
    font-weight: 700;
    text-decoration-line: underline;
    text-underline-offset: 8px;
}
.breadcrumb li + li::before {
    content: url(https://d1-assets-dev.s3.sa-east-1.amazonaws.com/public/site/img/breadcrumb/icon-arrow-right.svg);
    top: 0.125rem;
    height: 13px;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  position: relative;
}
/*
 * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
 * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
 * make sure you copy the url from the website since the url may change between versions.
 * */
.toast-title{font-weight:700}
.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}
.toast-message a,.toast-message label{color:#FFF}
.toast-message a:hover{color:#CCC;text-decoration:none}
.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}
.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}
.rtl .toast-close-button{left:-.3em;float:left;right:.3em}
button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}
.toast-top-center{top:0;right:0;width:100%}
.toast-bottom-center{bottom:0;right:0;width:100%}
.toast-top-full-width{top:0;right:0;width:100%}
.toast-bottom-full-width{bottom:0;right:0;width:100%}
.toast-top-left{top:12px;left:12px}
.toast-top-right{top:12px;right:12px}
.toast-bottom-right{right:12px;bottom:12px}
.toast-bottom-left{bottom:12px;left:12px}
#toast-container{position:fixed;z-index:999999;pointer-events:none}
#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}
#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}
#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}
#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}
#toast-container>.toast-error{z-index: 9999999;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}
#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}
#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}
#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}
#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}
.toast{background-color:#030303}
.toast-success{background-color:#51A351}
.toast-error{background-color:#BD362F;z-index: 1100;}
.toast-info{background-color:#2F96B4}
.toast-warning{background-color:#F89406}
.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}
@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}
@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}
@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}
.blog{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .blog li{
        grid-column: 1 / -1;
    }
    .blog li:nth-child(n + 2) a{
        flex-direction: row;
        align-items: center;
    }
    .blog li:nth-child(n + 2) a > div {
        flex: 2;
    }
    .blog li:nth-child(n + 2) a > div:last-child {
        flex: 3;
    }
}
@media (min-width: 1024px) {
    .blog li:nth-child(n + 2) a{
        gap: 2rem;
    }
    .blog li:nth-child(n + 2) a > div {
        flex: 1;
    }
    .blog li:nth-child(n + 2) a > div:last-child {
        flex: 2;
    }
}
@media (min-width: 1280px) {
    .blog{
        gap: 2rem;
    }
    .blog li:nth-child(n + 2) a > div {
        flex: 2.8;
    }
    .blog li:nth-child(n + 2) a > div:last-child {
        flex: 4;
    }
    .blog li:first-child{
        grid-column: span 4 / span 4;
        grid-row: span 2 / span 2;
    }
    .blog li:nth-child(n + 2){
        grid-column: span 7 / span 7;
        grid-column-start: 6;
    }
    .blog li:nth-child(n + 2):last-child{
        align-self: flex-end;
    }
}
@media (min-width: 1536px) {
    .blog li:first-child p{
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
    .blog li:nth-child(n + 2) p{
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }
}
/* @import "/node_modules/select2/dist/css/select2.css"; */
/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}
.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	flex: 1 1 auto;
}
.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: auto;
}
.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}
/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
	opacity: 1;
}
/* grow */
.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
/* swing */
.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}
/* fall */
.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}
/* slide */
.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}
/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.tooltipster-update-fade {
	animation: tooltipster-fading 400ms;
}
/* rotate */
@keyframes tooltipster-rotating {
	25% {
		transform: rotate(-2deg);
	}
	75% {
		transform: rotate(2deg);
	}
	100% {
		transform: rotate(0);
	}
}
.tooltipster-update-rotate {
	animation: tooltipster-rotating 600ms;
}
/* scale */
@keyframes tooltipster-scaling {
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
.tooltipster-update-scale {
	animation: tooltipster-scaling 600ms;
}
/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
	background: #565656;
	border: 2px solid black;
	border-radius: 4px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}
/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
	color: white;
	line-height: 18px;
	padding: 6px 14px;
}
/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
	overflow: hidden;
	position: absolute;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	height: 10px;
	/* half the width, for centering */
	margin-left: -10px;
	top: 0;
	width: 20px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	right: 0;
	/* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
	top: 0;
	width: 10px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	left: 0;
	/* same as .tooltipster-left .tooltipster-arrow */
	top: 0;
	width: 10px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
	bottom: 0;
	height: 10px;
	margin-left: -10px;
	width: 20px;
}
/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
	height: 0;
	position: absolute;
	width: 0;
}
/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
	border: 10px solid transparent;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #565656;
	left: 0;
	top: 3px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #565656;
	left: -3px;
	top: 0;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #565656;
	left: 3px;
	top: 0;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #565656;
	left: 0;
	top: -3px;
}
/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
	border: 10px solid transparent;
	left: 0;
	top: 0;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: black;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: black;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: black;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: black;
}
/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
	position: relative;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -10px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
	left: -10px;
}
.tabs-slide-container {
    width: 100%;
}
.tabs-slide {
    z-index: 400;
}
.tabs-slide li {
    cursor: pointer;
    position: relative;
}
.tabs-slide li + li:before {
    content: "";
    position: absolute;
    left: 5px;
    height: 1.5rem;
    width: 1px;
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
@media (min-width: 1024px){
    .tabs-slide li + li:before{
        left: 3px;
    }
}
.tabs-slide li:hover{
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.tabs-slide li:hover svg{
    fill: #f97316;
}
.tabs-slide li.active{
    z-index: 10;
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.tabs-slide li.active::before {
    content: none;
}
.tabs-slide li.active svg{
    fill: #fff;
}
.tabs-slide li.active:hover{
    cursor: default;
}
.tab-slide-content,
.tab-modal-content {
    display: none;
}
.current {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Calculadora */
.calculator{
    width: 100%;
    background: linear-gradient(270deg, #ef4444 28.26%, #84cc16 99.15%);
}
/* Tooltip */
/* .tooltipster-base {
    font-size: 12px;
}
.tooltipster-sidetip .tooltipster-content {
    color: white;
    line-height: 20px;
    padding: 8px 12px;
}
.tooltipster-sidetip .tooltipster-box {
    background: #1f2937;
    border: 2px solid #1f2937;
    border-radius: 6px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #1f2937;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #1f2937;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #1f2937;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #1f2937;
} */
/* .tooltipster-arrow-border */
/* .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #1f2937;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #1f2937;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #1f2937;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #1f2937;
} */
/* Galery */
.lg-backdrop{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.lg-outer .lg-thumb-outer{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.lg-counter,
.lg-next,
.lg-prev,
.lg-toolbar .lg-icon{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.lg-next:hover,
.lg-prev:hover,
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled),
.lg-toolbar .lg-icon:hover{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
    --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);
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.lg-video-cont img,
.lg-img-wrap img,
.lg-outer .lg-thumb-item{
    border-radius: 0.75rem;
}
.lg-video-cont img,
.lg-img-wrap img{
    padding: 0.25rem;
}
.lg .lg-thumbnail-item:first-child {
    margin-left: 10px;
}
.lg-outer .lg-thumb-item{
    border-width: 2px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.lg-thumb{
    margin-left: auto;
    margin-right: auto;
    display: flex !important;
    padding-left: 0.25rem !important;
}
.download_documento_lote {
    cursor: pointer;
}
/* .lg-next,
.lg-prev {
    @apply text-gray-500;
} */
/* .lg-next:hover,
.lg-prev:hover {
    @apply text-gray-500;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
    @apply text-gray-900;
} */
.apelido_cliente_lance_no_card {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}
@media screen and (min-width: 320px) and (max-width: 400px) {
    .apelido_cliente_lance_no_card {
        max-width: 16ch;
    }
}
@media screen and (min-width: 1280px) {
    .valor_para_lance_no_card {
        font-size: 0.75rem;
    }

    .apelido_cliente_lance_no_card {
        max-width: 16ch;
    }
}
@media screen and (min-width: 1440px) {
    .valor_para_lance_no_card {
        font-size: 1rem;
    }

    .apelido_cliente_lance_no_card {
        max-width: 20ch;
    }
}
.after-arrow-sala:after{
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    z-index: 20;
    height: 1rem;
    width: 1rem;
    --tw-translate-x: -50%;
    --tw-rotate: 135deg;
    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));
    border-right-width: 1px;
    border-top-width: 1px;
    border-style: solid;
    border-color: rgb(17 24 39 / .08);
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-content: '';
    content: var(--tw-content);
    display: none;
}
.history-info li::after{
    position: sticky;
    right: 0px;
    top: 0px;
    height: 2rem;
    width: 1.5rem;
    --tw-gradient-from: #fff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-content: '';
    content: var(--tw-content);
}
.history-info li:first-child::after{
    position: sticky;
    right: 0px;
    top: 0px;
    height: 2rem;
    width: 1.5rem;
    --tw-gradient-from: #f7fee7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(247 254 231 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-content: '';
    content: var(--tw-content);
}
/* Tabs sala */
.tab-sala-content {
    display: none;
}
.current {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cancel-history{
    opacity: 0.6;
}
.cancel-history strong{
    text-decoration-line: line-through;
}
.lance-ativo{
    border-top-width: 1px;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
}
.lote-subtitle {
    width:18em
}
@media screen and (max-width: 768px) {
    .lote-subtitle{
        width: 21em;
    }
    
}
.encolher_apelido_lance {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}
@media screen and (min-width: 280px) and (max-width: 700px) {
    .encolher_apelido_lance {
        max-width: 20ch;
    }
}
@media screen and (min-width: 768px) {
    .encolher_apelido_lance {
        max-width: 20ch;
    }
}
@media screen and (min-width: 1024px) {
    .encolher_apelido_lance {
        max-width: 10ch;
    }
}
.circle-marker-text {
    font-size: 16px;
    color: white;
    text-align: center;
    line-height: 32px;
}
.leaflet-control-attribution {
    display: none !important;
}
/* Tabs filter */
.tab-filter-content {
    display: none;
}
.current {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#filtro.modal-dialog::after {
    display: none;
}
.btn-filter-avancado::before{
    position: absolute;
    top: -49px;
    right: 0px;
    display: block;
    height: 3rem;
    width: 100%;
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
    --tw-gradient-from: #fff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-content: '';
    content: var(--tw-content);
}
.mapa-container-mobile{
    margin-top: -4rem;
    display: block;
    height: calc(100dvh - 63px);
    width: 100vw;
}
@media (min-width: 640px){
    .mapa-container-mobile{
        margin-top: 0px;
        height: 100%;
        width: 100%;
    }
}
#navegar_pelo_mapa_mobile,
#navegar_pelo_lista_mobile {
    z-index: 400;
}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #000;
    padding-bottom: 50%;
    max-width: 90%;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;

}
@media screen and (min-width: 344px) and (max-width: 750px) {
    .video-container {
        padding-bottom: 55%;
        max-width: 100%;
    }
}
@media screen and (min-width:768px) and (max-width: 1023px) {
    .video-container {
        padding-bottom: 55%;
        max-width: 100%;
    }

    #quadrado-laranja {
        grid-column-start: 1;
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 15px;
        margin-top: 15px;
    }
}
@media screen and (min-width:1024px) and (max-width: 1099px) {
    .video-container {
        padding-bottom: 55%;
        max-width: 100%;
    }

    #quadrado-laranja {
        grid-column-start: 1;
        margin-right: 0;
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 50px;
        margin-top: 50px;
    }
}
@media screen and (min-width:1100px) and (max-width: 1278px) {
    .video-container {
        padding-bottom: 55%;
        max-width: 100%;
    }
}
@media screen and (min-width:1280px) and (max-width: 1300px) {
    .video-container {
        margin-top: 70px;
    }

    #quadrado-laranja {
        grid-column-start: 8;
        margin-right: 0;
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 50px;
        margin-top: 50px;
    }
}
@media screen and (min-width:1320px) and (max-width: 1380px) {
    .video-container {
        margin-top: 50px;
        margin-left: 40px;
    }

    #quadrado-laranja {
        grid-column-start: 8;
        margin-right: 0;
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 50px;
        margin-top: 50px;
    }
}
@media screen and (min-width:1400px) and (max-width: 1430px) {
    .video-container {
        margin-top: 40px;
        margin-left: 50px;
    }

    #quadrado-laranja {
        grid-column-start: 8;
        margin-right: 0;
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 50px;
        margin-top: 50px;
    }
}
@media screen and (min-width:1440px) and (max-width: 1490px) {
    .video-container {
        margin-top: 20px;
        margin-left: 50px;
    }

    #quadrado-laranja {
        grid-column-start: 8;
        margin-right: 0;
        padding-bottom: 0;
        padding-top: 0;
        margin-bottom: 50px;
        margin-top: 50px;
    }
}
/* Tailwind */
*, ::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.15 | 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.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  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]) {
  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::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;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
    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;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select: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;
}
input::placeholder,textarea::placeholder{
    color: #6b7280;
    opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
    padding: 0;
}
::-webkit-date-and-time-value{
    min-height: 1.5em;
    text-align: inherit;
}
::-webkit-datetime-edit{
    display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
    padding-top: 0;
    padding-bottom: 0;
}
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;
    print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])){
    background-image: initial;
    background-position: initial;
    background-repeat: unset;
    background-size: initial;
    padding-right: 0.75rem;
    print-color-adjust: unset;
}
[type='checkbox'],[type='radio']{
    appearance: none;
    padding: 0;
    print-color-adjust: exact;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    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;
}
[type='checkbox']{
    border-radius: 0px;
}
[type='radio']{
    border-radius: 100%;
}
[type='checkbox']:focus,[type='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);
}
[type='checkbox']:checked,[type='radio']:checked{
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
[type='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");
}
@media (forced-colors: active) {
    [type='checkbox']:checked{
        appearance: auto;
    }
}
[type='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");
}
@media (forced-colors: active) {
    [type='radio']:checked{
        appearance: auto;
    }
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
    border-color: transparent;
    background-color: currentColor;
}
[type='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;
}
@media (forced-colors: active) {
    [type='checkbox']:indeterminate{
        appearance: auto;
    }
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
    border-color: transparent;
    background-color: currentColor;
}
[type='file']{
    background: unset;
    border-color: inherit;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-size: unset;
    line-height: inherit;
}
[type='file']:focus{
    outline: 1px solid ButtonText;
    outline: 1px auto -webkit-focus-ring-color;
}
[type="checkbox"],
    [type="radio"]{
    border-radius: 0.125rem;
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
[type="checkbox"]:focus,
    [type="radio"]:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 360px){
    .container{
        max-width: 360px;
    }
}
@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;
    }
}
.pointer-events-none{
    pointer-events: none;
}
.visible{
    visibility: visible;
}
.invisible{
    visibility: hidden;
}
.static{
    position: static;
}
.fixed{
    position: fixed;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.sticky{
    position: sticky;
}
.inset-0{
    inset: 0px;
}
.-left-4{
    left: -1rem;
}
.-top-4{
    top: -1rem;
}
.-top-7{
    top: -1.75rem;
}
.-top-px{
    top: -1px;
}
.bottom-0{
    bottom: 0px;
}
.bottom-1{
    bottom: 0.25rem;
}
.bottom-2\.5{
    bottom: 0.625rem;
}
.bottom-3{
    bottom: 0.75rem;
}
.bottom-4{
    bottom: 1rem;
}
.bottom-6{
    bottom: 1.5rem;
}
.bottom-full{
    bottom: 100%;
}
.left-0{
    left: 0px;
}
.left-1\/2{
    left: 50%;
}
.left-14{
    left: 3.5rem;
}
.left-3{
    left: 0.75rem;
}
.left-4{
    left: 1rem;
}
.left-5{
    left: 1.25rem;
}
.left-6{
    left: 1.5rem;
}
.right-0{
    right: 0px;
}
.right-0\.5{
    right: 0.125rem;
}
.right-1{
    right: 0.25rem;
}
.right-3{
    right: 0.75rem;
}
.right-4{
    right: 1rem;
}
.right-6{
    right: 1.5rem;
}
.right-8{
    right: 2rem;
}
.top-0{
    top: 0px;
}
.top-0\.5{
    top: 0.125rem;
}
.top-1{
    top: 0.25rem;
}
.top-1\/2{
    top: 50%;
}
.top-10{
    top: 2.5rem;
}
.top-14{
    top: 3.5rem;
}
.top-16{
    top: 4rem;
}
.top-24{
    top: 6rem;
}
.top-4{
    top: 1rem;
}
.top-6{
    top: 1.5rem;
}
.top-8{
    top: 2rem;
}
.top-\[97px\]{
    top: 97px;
}
.top-full{
    top: 100%;
}
.z-0{
    z-index: 0;
}
.z-10{
    z-index: 10;
}
.z-20{
    z-index: 20;
}
.z-30{
    z-index: 30;
}
.z-50{
    z-index: 50;
}
.z-\[9999\]{
    z-index: 9999;
}
.order-1{
    order: 1;
}
.order-2{
    order: 2;
}
.order-3{
    order: 3;
}
.col-span-12{
    grid-column: span 12 / span 12;
}
.col-span-3{
    grid-column: span 3 / span 3;
}
.col-span-full{
    grid-column: 1 / -1;
}
.col-start-1{
    grid-column-start: 1;
}
.col-start-2{
    grid-column-start: 2;
}
.col-start-3{
    grid-column-start: 3;
}
.col-start-4{
    grid-column-start: 4;
}
.col-start-5{
    grid-column-start: 5;
}
.col-start-7{
    grid-column-start: 7;
}
.col-end-14{
    grid-column-end: 14;
}
.col-end-15{
    grid-column-end: 15;
}
.row-span-2{
    grid-row: span 2 / span 2;
}
.row-span-3{
    grid-row: span 3 / span 3;
}
.row-span-4{
    grid-row: span 4 / span 4;
}
.row-start-1{
    grid-row-start: 1;
}
.row-start-2{
    grid-row-start: 2;
}
.row-start-3{
    grid-row-start: 3;
}
.row-start-4{
    grid-row-start: 4;
}
.row-start-5{
    grid-row-start: 5;
}
.row-end-4{
    grid-row-end: 4;
}
.float-right{
    float: right;
}
.-m-14{
    margin: -3.5rem;
}
.m-4{
    margin: 1rem;
}
.m-auto{
    margin: auto;
}
.-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}
.mx-0{
    margin-left: 0px;
    margin-right: 0px;
}
.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-auto{
    margin-left: auto;
    margin-right: auto;
}
.my-0\.5{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}
.my-1\.5{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
}
.my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
.my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-auto{
    margin-top: auto;
    margin-bottom: auto;
}
.\!mt-0{
    margin-top: 0px !important;
}
.-ml-1{
    margin-left: -0.25rem;
}
.-ml-px{
    margin-left: -1px;
}
.-mt-1{
    margin-top: -0.25rem;
}
.-mt-12{
    margin-top: -3rem;
}
.-mt-3{
    margin-top: -0.75rem;
}
.-mt-4{
    margin-top: -1rem;
}
.mb-0{
    margin-bottom: 0px;
}
.mb-0\.5{
    margin-bottom: 0.125rem;
}
.mb-1{
    margin-bottom: 0.25rem;
}
.mb-10{
    margin-bottom: 2.5rem;
}
.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-auto{
    margin-bottom: auto;
}
.ml-0{
    margin-left: 0px;
}
.ml-0\.5{
    margin-left: 0.125rem;
}
.ml-14{
    margin-left: 3.5rem;
}
.ml-2{
    margin-left: 0.5rem;
}
.ml-3{
    margin-left: 0.75rem;
}
.ml-4{
    margin-left: 1rem;
}
.ml-5{
    margin-left: 1.25rem;
}
.ml-auto{
    margin-left: auto;
}
.mr-0\.5{
    margin-right: 0.125rem;
}
.mr-2{
    margin-right: 0.5rem;
}
.mr-3{
    margin-right: 0.75rem;
}
.mr-4{
    margin-right: 1rem;
}
.mr-5{
    margin-right: 1.25rem;
}
.mr-auto{
    margin-right: auto;
}
.mt-0\.5{
    margin-top: 0.125rem;
}
.mt-1{
    margin-top: 0.25rem;
}
.mt-10{
    margin-top: 2.5rem;
}
.mt-11{
    margin-top: 2.75rem;
}
.mt-12{
    margin-top: 3rem;
}
.mt-14{
    margin-top: 3.5rem;
}
.mt-2{
    margin-top: 0.5rem;
}
.mt-20{
    margin-top: 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-\[77px\]{
    margin-top: 77px;
}
.line-clamp-5{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
.block{
    display: block;
}
.inline-block{
    display: inline-block;
}
.\!flex{
    display: flex !important;
}
.flex{
    display: flex;
}
.inline-flex{
    display: inline-flex;
}
.table{
    display: table;
}
.grid{
    display: grid;
}
.hidden{
    display: none;
}
.aspect-\[5_\/_3\]{
    aspect-ratio: 5 / 3;
}
.aspect-auto{
    aspect-ratio: auto;
}
.aspect-square{
    aspect-ratio: 1 / 1;
}
.aspect-video{
    aspect-ratio: 16 / 9;
}
.h-0\.5{
    height: 0.125rem;
}
.h-1\.5{
    height: 0.375rem;
}
.h-10{
    height: 2.5rem;
}
.h-11{
    height: 2.75rem;
}
.h-12{
    height: 3rem;
}
.h-14{
    height: 3.5rem;
}
.h-16{
    height: 4rem;
}
.h-2{
    height: 0.5rem;
}
.h-20{
    height: 5rem;
}
.h-24{
    height: 6rem;
}
.h-3{
    height: 0.75rem;
}
.h-4{
    height: 1rem;
}
.h-40{
    height: 10rem;
}
.h-48{
    height: 12rem;
}
.h-5{
    height: 1.25rem;
}
.h-6{
    height: 1.5rem;
}
.h-7{
    height: 1.75rem;
}
.h-8{
    height: 2rem;
}
.h-80{
    height: 20rem;
}
.h-9{
    height: 2.25rem;
}
.h-96{
    height: 24rem;
}
.h-\[10px\]{
    height: 10px;
}
.h-\[18px\]{
    height: 18px;
}
.h-\[23px\]{
    height: 23px;
}
.h-\[272px\]{
    height: 272px;
}
.h-\[30px\]{
    height: 30px;
}
.h-\[38px\]{
    height: 38px;
}
.h-\[77px\]{
    height: 77px;
}
.h-\[calc\(100dvh-112px\)\]{
    height: calc(100dvh - 112px);
}
.h-\[calc\(100dvh-63px\)\]{
    height: calc(100dvh - 63px);
}
.h-\[calc\(100dvh-64px\)\]{
    height: calc(100dvh - 64px);
}
.h-\[calc\(100vh-112px\)\]{
    height: calc(100vh - 112px);
}
.h-\[calc\(100vh-63px\)\]{
    height: calc(100vh - 63px);
}
.h-auto{
    height: auto;
}
.h-full{
    height: 100%;
}
.max-h-40{
    max-height: 10rem;
}
.max-h-52{
    max-height: 13rem;
}
.max-h-56{
    max-height: 14rem;
}
.max-h-screen{
    max-height: 100vh;
}
.min-h-\[320px\]{
    min-height: 320px;
}
.min-h-screen{
    min-height: 100vh;
}
.w-1\.5{
    width: 0.375rem;
}
.w-1\/2{
    width: 50%;
}
.w-10{
    width: 2.5rem;
}
.w-14{
    width: 3.5rem;
}
.w-2\/4{
    width: 50%;
}
.w-20{
    width: 5rem;
}
.w-28{
    width: 7rem;
}
.w-3{
    width: 0.75rem;
}
.w-32{
    width: 8rem;
}
.w-36{
    width: 9rem;
}
.w-4{
    width: 1rem;
}
.w-40{
    width: 10rem;
}
.w-5{
    width: 1.25rem;
}
.w-52{
    width: 13rem;
}
.w-6{
    width: 1.5rem;
}
.w-64{
    width: 16rem;
}
.w-7{
    width: 1.75rem;
}
.w-8{
    width: 2rem;
}
.w-96{
    width: 24rem;
}
.w-\[23px\]{
    width: 23px;
}
.w-\[286px\]{
    width: 286px;
}
.w-\[30px\]{
    width: 30px;
}
.w-\[96\%\]{
    width: 96%;
}
.w-\[calc\(100\%-24px\)\]{
    width: calc(100% - 24px);
}
.w-\[calc\(50\%-18px\)\]{
    width: calc(50% - 18px);
}
.w-\[clamp\(0px\2c \(768px-100\%\)\*999\2c 100\%\)\]{
    width: clamp(0px,(768px - 100%) * 999,100%);
}
.w-full{
    width: 100%;
}
.w-px{
    width: 1px;
}
.min-w-\[17px\]{
    min-width: 17px;
}
.min-w-\[200px\]{
    min-width: 200px;
}
.min-w-\[270px\]{
    min-width: 270px;
}
.min-w-\[328px\]{
    min-width: 328px;
}
.min-w-\[400px\]{
    min-width: 400px;
}
.min-w-\[600px\]{
    min-width: 600px;
}
.min-w-full{
    min-width: 100%;
}
.max-w-2xl{
    max-width: 42rem;
}
.max-w-4xl{
    max-width: 56rem;
}
.max-w-5xl{
    max-width: 64rem;
}
.max-w-6xl{
    max-width: 72rem;
}
.max-w-7xl{
    max-width: 80rem;
}
.max-w-\[1080px\]{
    max-width: 1080px;
}
.max-w-\[1126px\]{
    max-width: 1126px;
}
.max-w-\[17px\]{
    max-width: 17px;
}
.max-w-\[1920px\]{
    max-width: 1920px;
}
.max-w-\[192px\]{
    max-width: 192px;
}
.max-w-\[224px\]{
    max-width: 224px;
}
.max-w-\[270px\]{
    max-width: 270px;
}
.max-w-\[280px\]{
    max-width: 280px;
}
.max-w-\[296px\]{
    max-width: 296px;
}
.max-w-\[420px\]{
    max-width: 420px;
}
.max-w-\[480px\]{
    max-width: 480px;
}
.max-w-\[86\%\]{
    max-width: 86%;
}
.max-w-\[96px\]{
    max-width: 96px;
}
.max-w-max{
    max-width: max-content;
}
.max-w-md{
    max-width: 28rem;
}
.max-w-none{
    max-width: none;
}
.max-w-xl{
    max-width: 36rem;
}
.max-w-xs{
    max-width: 20rem;
}
.flex-1{
    flex: 1 1 0%;
}
.flex-2{
    flex: 2 2 0%;
}
.flex-\[4\]{
    flex: 4;
}
.flex-shrink-0{
    flex-shrink: 0;
}
.flex-grow-0{
    flex-grow: 0;
}
.basis-1\/2{
    flex-basis: 50%;
}
.basis-1\/4{
    flex-basis: 25%;
}
.basis-full{
    flex-basis: 100%;
}
.-translate-x-1\/2{
    --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-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));
}
.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));
}
.translate-y-full{
    --tw-translate-y: 100%;
    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 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-default{
    cursor: default;
}
.cursor-not-allowed{
    cursor: not-allowed;
}
.cursor-pointer{
    cursor: pointer;
}
.select-none{
    user-select: none;
}
.resize{
    resize: both;
}
.snap-x{
    scroll-snap-type: x var(--tw-scroll-snap-strictness);
}
.snap-mandatory{
    --tw-scroll-snap-strictness: mandatory;
}
.snap-start{
    scroll-snap-align: start;
}
.scroll-pt-2{
    scroll-padding-top: 0.5rem;
}
.list-decimal{
    list-style-type: decimal;
}
.list-disc{
    list-style-type: disc;
}
.list-none{
    list-style-type: none;
}
.appearance-none{
    appearance: none;
}
.auto-cols-\[310px\]{
    grid-auto-columns: 310px;
}
.grid-flow-col{
    grid-auto-flow: column;
}
.auto-rows-auto{
    grid-auto-rows: auto;
}
.grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-\[1fr_auto_1fr\]{
    grid-template-columns: 1fr auto 1fr;
}
.grid-cols-\[auto_1fr\]{
    grid-template-columns: auto 1fr;
}
.grid-cols-\[auto_1fr_auto\]{
    grid-template-columns: auto 1fr auto;
}
.grid-cols-\[repeat\(auto-fill\2c _minmax\(min\(298px\2c _100\%\)\2c 1fr\)\)\]{
    grid-template-columns: repeat(auto-fill, minmax(min(298px, 100%),1fr));
}
.grid-cols-\[repeat\(auto-fit\2c _minmax\(min\(296px\2c _100\%\)\2c _1fr\)\)\]{
    grid-template-columns: repeat(auto-fit, minmax(min(296px, 100%), 1fr));
}
.grid-cols-\[repeat\(auto-fit\2c minmax\(164px\2c 1fr\)\)\]{
    grid-template-columns: repeat(auto-fit,minmax(164px,1fr));
}
.grid-cols-\[repeat\(auto-fit\2c minmax\(280px\2c 1fr\)\)\]{
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
}
.grid-cols-\[repeat\(auto-fit\2c minmax\(min\(240px\2c _100\%\)\2c 1fr\)\)\]{
    grid-template-columns: repeat(auto-fit,minmax(min(240px, 100%),1fr));
}
.grid-cols-max-2xl-12{
    grid-template-columns: calc(50% - calc(1536px / 2)) repeat(12, minmax(0, 1fr)) calc(50% - calc(1536px / 2));;
}
.grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
}
.flex-row{
    flex-direction: row;
}
.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-end{
    align-items: flex-end;
}
.items-center{
    align-items: center;
}
.items-baseline{
    align-items: baseline;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.justify-items-center{
    justify-items: center;
}
.gap-0\.5{
    gap: 0.125rem;
}
.gap-1{
    gap: 0.25rem;
}
.gap-1\.5{
    gap: 0.375rem;
}
.gap-12{
    gap: 3rem;
}
.gap-14{
    gap: 3.5rem;
}
.gap-2{
    gap: 0.5rem;
}
.gap-2\.5{
    gap: 0.625rem;
}
.gap-3{
    gap: 0.75rem;
}
.gap-3\.5{
    gap: 0.875rem;
}
.gap-4{
    gap: 1rem;
}
.gap-5{
    gap: 1.25rem;
}
.gap-6{
    gap: 1.5rem;
}
.gap-8{
    gap: 2rem;
}
.gap-9{
    gap: 2.25rem;
}
.gap-px{
    gap: 1px;
}
.gap-x-8{
    column-gap: 2rem;
}
.gap-y-4{
    row-gap: 1rem;
}
.-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1px * var(--tw-space-x-reverse));
    margin-left: calc(-1px * 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-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-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));
}
.divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-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));
}
.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-divide-opacity, 1));
}
.self-start{
    align-self: flex-start;
}
.self-end{
    align-self: flex-end;
}
.self-center{
    align-self: center;
}
.justify-self-center{
    justify-self: center;
}
.overflow-auto{
    overflow: auto;
}
.overflow-hidden{
    overflow: hidden;
}
.overflow-x-auto{
    overflow-x: auto;
}
.overflow-y-auto{
    overflow-y: auto;
}
.overflow-x-scroll{
    overflow-x: scroll;
}
.scroll-smooth{
    scroll-behavior: smooth;
}
.whitespace-nowrap{
    white-space: nowrap;
}
.rounded{
    border-radius: 0.25rem;
}
.rounded-2xl{
    border-radius: 1rem;
}
.rounded-3xl{
    border-radius: 1.5rem;
}
.rounded-\[100px\]{
    border-radius: 100px;
}
.rounded-\[4px\]{
    border-radius: 4px;
}
.rounded-full{
    border-radius: 9999px;
}
.rounded-lg{
    border-radius: 0.5rem;
}
.rounded-md{
    border-radius: 0.375rem;
}
.rounded-none{
    border-radius: 0px;
}
.rounded-sm{
    border-radius: 0.125rem;
}
.rounded-xl{
    border-radius: 0.75rem;
}
.rounded-b-xl{
    border-bottom-right-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}
.rounded-l-3xl{
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}
.rounded-l-\[32px\]{
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
}
.rounded-l-md{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}
.rounded-l-xl{
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}
.rounded-r-md{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
.rounded-r-xl{
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}
.rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem;
}
.rounded-br-3xl{
    border-bottom-right-radius: 1.5rem;
}
.border{
    border-width: 1px;
}
.border-0{
    border-width: 0px;
}
.border-2{
    border-width: 2px;
}
.border-4{
    border-width: 4px;
}
.border-\[3px\]{
    border-width: 3px;
}
.border-y{
    border-top-width: 1px;
    border-bottom-width: 1px;
}
.border-y-8{
    border-top-width: 8px;
    border-bottom-width: 8px;
}
.border-b{
    border-bottom-width: 1px;
}
.border-l{
    border-left-width: 1px;
}
.border-l-4{
    border-left-width: 4px;
}
.border-l-8{
    border-left-width: 8px;
}
.border-r{
    border-right-width: 1px;
}
.border-t{
    border-top-width: 1px;
}
.border-none{
    border-style: none;
}
.border-black{
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-gray-800{
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-green-600{
    --tw-border-opacity: 1;
    border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.border-lime-600{
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
}
.border-orange-200{
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.border-orange-500{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.border-orange-600{
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}
.border-red-100{
    --tw-border-opacity: 1;
    border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.border-red-500{
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-600{
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.border-sky-600{
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}
.border-transparent{
    border-color: transparent;
}
.border-white{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-b-gray-300{
    --tw-border-opacity: 1;
    border-bottom-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-100{
    --tw-bg-opacity: 1;
    background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-300{
    --tw-bg-opacity: 1;
    background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-50{
    --tw-bg-opacity: 1;
    background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-600{
    --tw-bg-opacity: 1;
    background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
}
.bg-fuchsia-900{
    --tw-bg-opacity: 1;
    background-color: rgb(112 26 117 / var(--tw-bg-opacity, 1));
}
.bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300{
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-500{
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-gray-900\/60{
    background-color: rgb(17 24 39 / 0.6);
}
.bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-lime-50{
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
}
.bg-lime-500{
    --tw-bg-opacity: 1;
    background-color: rgb(132 204 22 / var(--tw-bg-opacity, 1));
}
.bg-lime-600{
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
}
.bg-orange-100{
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.bg-orange-200{
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}
.bg-orange-300{
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}
.bg-orange-50{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-orange-500{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-orange-600{
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-red-50{
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-sky-50{
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}
.bg-sky-500{
    --tw-bg-opacity: 1;
    background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}
.bg-sky-600{
    --tw-bg-opacity: 1;
    background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}
.bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/80{
    background-color: rgb(255 255 255 / 0.8);
}
.bg-yellow-600{
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.bg-opacity-75{
    --tw-bg-opacity: 0.75;
}
.fill-gray-400{
    fill: #9ca3af;
}
.fill-gray-700{
    fill: #374151;
}
.fill-gray-800{
    fill: #1f2937;
}
.fill-white{
    fill: #fff;
}
.object-contain{
    object-fit: contain;
}
.object-cover{
    object-fit: cover;
}
.object-center{
    object-position: center;
}
.object-left{
    object-position: left;
}
.object-right{
    object-position: right;
}
.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;
}
.p-px{
    padding: 1px;
}
.px-0{
    padding-left: 0px;
    padding-right: 0px;
}
.px-0\.5{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
}
.px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}
.px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}
.px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
}
.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;
}
.px-\[18px\]{
    padding-left: 18px;
    padding-right: 18px;
}
.px-\[22px\]{
    padding-left: 22px;
    padding-right: 22px;
}
.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-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-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-7{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}
.py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-\[18px\]{
    padding-top: 18px;
    padding-bottom: 18px;
}
.py-px{
    padding-top: 1px;
    padding-bottom: 1px;
}
.pb-0\.5{
    padding-bottom: 0.125rem;
}
.pb-1{
    padding-bottom: 0.25rem;
}
.pb-1\.5{
    padding-bottom: 0.375rem;
}
.pb-16{
    padding-bottom: 4rem;
}
.pb-2{
    padding-bottom: 0.5rem;
}
.pb-20{
    padding-bottom: 5rem;
}
.pb-3{
    padding-bottom: 0.75rem;
}
.pb-4{
    padding-bottom: 1rem;
}
.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\.5{
    padding-left: 0.125rem;
}
.pl-1{
    padding-left: 0.25rem;
}
.pl-16{
    padding-left: 4rem;
}
.pl-2{
    padding-left: 0.5rem;
}
.pl-3{
    padding-left: 0.75rem;
}
.pl-3\.5{
    padding-left: 0.875rem;
}
.pl-4{
    padding-left: 1rem;
}
.pl-5{
    padding-left: 1.25rem;
}
.pl-6{
    padding-left: 1.5rem;
}
.pl-8{
    padding-left: 2rem;
}
.pl-9{
    padding-left: 2.25rem;
}
.pl-\[26px\]{
    padding-left: 26px;
}
.pr-2\.5{
    padding-right: 0.625rem;
}
.pr-3{
    padding-right: 0.75rem;
}
.pr-3\.5{
    padding-right: 0.875rem;
}
.pr-4{
    padding-right: 1rem;
}
.pr-5{
    padding-right: 1.25rem;
}
.pr-6{
    padding-right: 1.5rem;
}
.pr-9{
    padding-right: 2.25rem;
}
.pt-0\.5{
    padding-top: 0.125rem;
}
.pt-1{
    padding-top: 0.25rem;
}
.pt-12{
    padding-top: 3rem;
}
.pt-14{
    padding-top: 3.5rem;
}
.pt-2{
    padding-top: 0.5rem;
}
.pt-3{
    padding-top: 0.75rem;
}
.pt-4{
    padding-top: 1rem;
}
.pt-5{
    padding-top: 1.25rem;
}
.pt-6{
    padding-top: 1.5rem;
}
.pt-7{
    padding-top: 1.75rem;
}
.pt-8{
    padding-top: 2rem;
}
.pt-9{
    padding-top: 2.25rem;
}
.pt-\[3px\]{
    padding-top: 3px;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-justify{
    text-align: justify;
}
.align-middle{
    vertical-align: middle;
}
.align-bottom{
    vertical-align: bottom;
}
.text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-7xl{
    font-size: 4.5rem;
    line-height: 1;
}
.text-\[10px\]{
    font-size: 10px;
}
.text-\[11px\]{
    font-size: 11px;
}
.text-\[12px\]{
    font-size: 12px;
}
.text-\[14px\]{
    font-size: 14px;
}
.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-sm\/\[26px\]{
    font-size: 0.875rem;
    line-height: 26px;
}
.text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
}
.font-bold{
    font-weight: 700;
}
.font-medium{
    font-weight: 500;
}
.font-normal{
    font-weight: 400;
}
.font-semibold{
    font-weight: 600;
}
.uppercase{
    text-transform: uppercase;
}
.leading-3{
    line-height: .75rem;
}
.leading-4{
    line-height: 1rem;
}
.leading-5{
    line-height: 1.25rem;
}
.leading-6{
    line-height: 1.5rem;
}
.leading-7{
    line-height: 1.75rem;
}
.leading-9{
    line-height: 2.25rem;
}
.leading-tight{
    line-height: 1.25;
}
.tracking-wider{
    letter-spacing: 0.05em;
}
.text-black{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-600{
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-fuchsia-500{
    --tw-text-opacity: 1;
    color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.text-fuchsia-600{
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.text-gray-300{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-500{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-600{
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-lime-500{
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.text-lime-600{
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.text-orange-400{
    --tw-text-opacity: 1;
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-orange-500{
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-orange-600{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-red-500{
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-sky-600{
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.text-sky-700{
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}
.text-sky-800{
    --tw-text-opacity: 1;
    color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/90{
    color: rgb(255 255 255 / 0.9);
}
.underline{
    text-decoration-line: underline;
}
.underline-offset-2{
    text-underline-offset: 2px;
}
.underline-offset-4{
    text-underline-offset: 4px;
}
.underline-offset-8{
    text-underline-offset: 8px;
}
.opacity-0{
    opacity: 0;
}
.opacity-25{
    opacity: 0.25;
}
.opacity-50{
    opacity: 0.5;
}
.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-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);
}
.shadow-gray-900\/\[\.16\]{
    --tw-shadow-color: rgb(17 24 39 / .16);
    --tw-shadow: var(--tw-shadow-colored);
}
.outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.ring-1{
    --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, 0 0 #0000);
}
.ring-2{
    --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);
}
.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-inset{
    --tw-ring-inset: inset;
}
.ring-fuchsia-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity, 1));
}
.ring-gray-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1));
}
.ring-gray-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.ring-gray-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(31 41 55 / var(--tw-ring-opacity, 1));
}
.ring-red-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.ring-white{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}
.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);
}
.grayscale{
    --tw-grayscale: grayscale(100%);
    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);
}
.invert{
    --tw-invert: invert(100%);
    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);
}
.transition{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    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;
}
.transition-colors{
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-opacity{
    transition-property: opacity;
    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-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.text-fluid-md{
    font-size: clamp(20px, calc(20px + (40 - 20) * ((100vw - 360px) / (1536 - 360))), 40px);
    line-height: clamp(30px, calc(30px + (41 - 30) * ((100vw - 360px) / (1536 - 360))), 41px);
}
.text-fluid-sm{
    font-size: clamp(18px, calc(18px + (32 - 18) * ((100vw - 360px) / (1536 - 360))), 32px);
}
.text-fluid-xs{
    font-size: clamp(16px, calc(16px + (24 - 16) * ((100vw - 360px) / (1536 - 360))), 24px);
}
.square-4{
    width: 1rem;
    height: 1rem;
}
.square-5{
    width: 1.25rem;
    height: 1.25rem;
}
.square-6{
    width: 1.5rem;
    height: 1.5rem;
}
.square-7{
    width: 1.75rem;
    height: 1.75rem;
}
.square-8{
    width: 2rem;
    height: 2rem;
}
.square-10{
    width: 2.5rem;
    height: 2.5rem;
}
.square-11{
    width: 2.75rem;
    height: 2.75rem;
}
.square-12{
    width: 3rem;
    height: 3rem;
}
.square-2\.5{
    width: 0.625rem;
    height: 0.625rem;
}
.p-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-p-space-x-reverse: 0;
    padding-right: calc(0.375rem * var(--tw-p-space-x-reverse));
    padding-left: calc(0.375rem * calc(1 - var(--tw-p-space-x-reverse)));
}
body.modal-open {
    overflow: hidden;
}
/* Dev utilities */
.devr {
    outline: 1px solid;
    outline-color: #ef4444;
  position: relative;
}
.devb {
    outline: 1px solid;
    outline-color: #3b82f6;
  position: relative;
}
.devg {
    outline: 1px solid;
    outline-color: #22c55e;
  position: relative;
}
@media (min-width: 360px) {
}
@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
/* Reset */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Roboto", sans-serif;
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
p{
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
/* Scrollbar CSS */
.overflow-y-auto {
    scrollbar-width: auto;
    scrollbar-color: #d1d5db #ffffff;
}
.overflow-y-auto::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.overflow-y-auto::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
.overflow-y-auto::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border: 1px solid #f3f4f6;
    border-radius: 50px;
}
.overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
.overflow-y-auto::-webkit-scrollbar-thumb:active {
    background: #6b7280;
}
.overflow-y-auto::-webkit-scrollbar-track {
    background: #f3f4f6;
    border: 0px solid #000;
    border-radius: 50px;
}
.overflow-y-auto::-webkit-scrollbar-track:hover {
    background: #f3f4f6;
}
.overflow-y-auto::-webkit-scrollbar-track:active {
    background: #f3f4f6;
}
.overflow-y-auto::-webkit-scrollbar-corner {
    background: transparent;
}
.overflow-x-scroll {
    scrollbar-width: none;
}
.overflow-x-scroll::-webkit-scrollbar {
    display: none;
}
/* Dialog */
.modal-dialog::after{
    position: sticky;
    bottom: 0px;
    right: 0px;
    display: block;
    height: 2rem;
    width: 100%;
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
    --tw-gradient-from: #fff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-content: '';
    content: var(--tw-content);
}
@media (min-width: 768px){
    .modal-dialog::after{
        height: 2rem;
    }
}
.modal-dialog {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.modal-dialog::-webkit-scrollbar {
    width: 0;
}
/* Select2 */
.select2-container{
    display: flex;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.select2-container .selection{
    width: 100% !important;
}
.select2-selection{
    display: flex;
    height: 2.5rem;
    align-items: center;
    border-radius: 0.375rem;
    padding-left: 0.75rem;
    --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);
}
.select2-selection:focus{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
    --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, 0 0 #0000);
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.select2-selection--single{
    border-radius: 0.375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.select2-selection__rendered{
    display: flex;
    height: 100%;
    width: 100%;
    flex: 1 1 0%;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.select2-selection__arrow{
    display: block;
    height: 0.375rem;
    width: 0.625rem;
    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='%231F2937' 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;
}
.select2-container--open {
    margin-top: 1px;
    border-radius: 6px;
    z-index: 10;
}
.select2-dropdown--below {
    margin-top: 6px;
    border-radius: 0.375rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.select2-dropdown{
    border-radius: 0.375rem;
    border-width: 1px !important;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
input.select2-search__field{
    width: 100%;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    border-width: 0px;
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
input.select2-search__field::placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
input.select2-search__field:focus{
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
    outline: 2px solid transparent;
    outline-offset: 2px;
    --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(0px + 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);
}
.select2-search {
    position: relative;
}
.select2-search::before {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 34 34" fill="%239CA3AF" xmlns="http://www.w3.org/2000/svg"><path d="M31.95 33.2998L19.45 20.7998C18.45 21.6331 17.3 22.2831 16 22.7498C14.7 23.2165 13.4 23.4498 12.1 23.4498C8.86664 23.4498 6.14198 22.3411 3.92598 20.1238C1.70864 17.9078 0.599976 15.1998 0.599976 11.9998C0.599976 8.7998 1.70864 6.09114 3.92598 3.8738C6.14198 1.6578 8.84997 0.549805 12.05 0.549805C15.25 0.549805 17.9666 1.6578 20.2 3.8738C22.4333 6.09114 23.55 8.7998 23.55 11.9998C23.55 13.3998 23.3 14.7498 22.8 16.0498C22.3 17.3498 21.65 18.4498 20.85 19.3498L33.4 31.8998L31.95 33.2998ZM12.1 21.4498C14.7333 21.4498 16.9666 20.5418 18.8 18.7258C20.6333 16.9085 21.55 14.6665 21.55 11.9998C21.55 9.33314 20.6333 7.09114 18.8 5.2738C16.9666 3.4578 14.7333 2.5498 12.1 2.5498C9.43331 2.5498 7.18331 3.4578 5.34998 5.2738C3.51664 7.09114 2.59998 9.33314 2.59998 11.9998C2.59998 14.6665 3.51664 16.9085 5.34998 18.7258C7.18331 20.5418 9.43331 21.4498 12.1 21.4498Z"></path></svg>');
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}
.select2-results__options{
    z-index: 10;
    padding: 0.5rem;
}
.select2-results__option{
    display: block;
    white-space: nowrap;
    border-radius: 0.125rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.select2-results__option--highlighted{
    cursor: pointer;
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.select2-results__option--selected{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}
.select2-search--dropdown.select2-search--hide {
    display: none;
}
/* Status Card */
.custom-swal-font {
    font-size: 12px; /* Altere o tamanho da fonte conforme necessário */
  }
.card.aberto .card-status{
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.card.aberto .card-status::before{
    --tw-content: 'ABERTO PARA LANCE';
    content: var(--tw-content);
}
.card.aguardando .card-status{
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.card.aguardando .card-status::before{
    --tw-content: 'AGUARDANDO INÍCIO';
    content: var(--tw-content);
}
.card.finalizado .card-status{
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.card.finalizado .card-status::before{
    --tw-content: 'FINALIZADO';
    content: var(--tw-content);
}
.card.arrematado .card-status{
    --tw-border-opacity: 1;
    border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.card.arrematado .card-status::before{
    --tw-content: 'ARREMATADO';
    content: var(--tw-content);
}
.card.suspenso .card-status{
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.card.suspenso .card-status::before{
    --tw-content: 'SUSPENSO';
    content: var(--tw-content);
}
.card.invisivel .card-status{
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.card.invisivel .card-status::before{
    --tw-content: 'INATIVO';
    content: var(--tw-content);
}
.card.aguardando-aprovacao .card-status{
    --tw-border-opacity: 1;
    border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.card.aguardando-aprovacao .card-status::before{
    --tw-content: 'AGUARDANDO APROVAÇÃO';
    content: var(--tw-content);
}
/* Animate Card */
@keyframes animate-one-minute {
    50%{
        --tw-border-opacity: 1;
        border-color: rgb(202 138 4 / var(--tw-border-opacity, 1));
    }
}
@keyframes animate-one-minute-message {
    50%{
        --tw-bg-opacity: 1;
        background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
        opacity: 1;
    }
}
@keyframes animate-thirty-seconds {
    50%{
        --tw-border-opacity: 1;
        border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
    }
}
@keyframes animate-thirty-seconds-message {
    50%{
        --tw-bg-opacity: 1;
        background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
        opacity: 1;
    }
}
@keyframes animate-fifteen-seconds {
    50%{
        --tw-border-opacity: 1;
        border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
    }
}
@keyframes animate-fifteen-seconds-message {
    50%{
        --tw-bg-opacity: 1;
        background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
        opacity: 1;
    }
}
@keyframes animate-novo-lance {
    50%{
        --tw-border-opacity: 1;
        border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
    }
}
@keyframes animate-novo-lance-message {
    50%{
        --tw-bg-opacity: 1;
        background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
        opacity: 1;
    }
}
@keyframes animate-arrematado {
    10%{
        --tw-border-opacity: 1;
        border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
    }
    95%{
        --tw-border-opacity: 1;
        border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
    }
}
@keyframes animate-arrematado-message {
    10%{
        --tw-bg-opacity: 1;
        background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
        opacity: 1;
    }
    95%{
        --tw-bg-opacity: 1;
        background-color: rgb(192 38 211 / var(--tw-bg-opacity, 1));
        opacity: 1;
    }
}
.animate-one-minute > div {
    animation: animate-one-minute 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-one-minute .animate-message::before{
    padding-top: 0.125rem;
    --tw-content: 'ÚLTIMOS SEGUNDOS';
    content: var(--tw-content);
}
.animate-one-minute .animate-message {
    animation: animate-one-minute-message 1s cubic-bezier(0.4, 0, 0.6, 1)
        infinite;
}
.animate-thirty-seconds > div {
    animation: animate-thirty-seconds 650ms cubic-bezier(0.4, 0, 0.6, 1)
        infinite;
}
.animate-thirty-seconds .animate-message::before{
    padding-top: 0.125rem;
    --tw-content: 'ÚLTIMOS SEGUNDOS';
    content: var(--tw-content);
}
.animate-thirty-seconds .animate-message {
    animation: animate-thirty-seconds-message 650ms cubic-bezier(0.4, 0, 0.6, 1)
        infinite;
}
.animate-fifteen-seconds > div {
    animation: animate-fifteen-seconds 350ms cubic-bezier(0.4, 0, 0.6, 1)
        infinite;
}
.animate-fifteen-seconds .animate-message::before{
    padding-top: 0.125rem;
    --tw-content: 'ÚLTIMOS SEGUNDOS';
    content: var(--tw-content);
}
.animate-fifteen-seconds .animate-message {
    animation: animate-fifteen-seconds-message 350ms
        cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-novo-lance > div {
    animation: animate-novo-lance 350ms cubic-bezier(0.4, 0, 0.6, 1) 5;
}
.animate-novo-lance .animate-message::before{
    padding-top: 0.125rem;
    --tw-content: 'NOVO LANCE';
    content: var(--tw-content);
}
.animate-novo-lance .animate-message {
    animation: animate-novo-lance-message 350ms cubic-bezier(0.4, 0, 0.6, 1) 5;
}
.animate-arrematado > div {
    animation: animate-arrematado 7s cubic-bezier(0.4, 0, 0.6, 1) 1;
}
.animate-arrematado .animate-message::before{
    padding-top: 0.125rem;
    --tw-content: 'ARREMATADO';
    content: var(--tw-content);
}
.animate-arrematado .animate-message {
    animation: animate-arrematado-message 7s cubic-bezier(0.4, 0, 0.6, 1) 1;
}
.btn-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
.info-block{
    --tw-border-opacity: 1;
    border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.note-block{
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.warning-block{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.error-block{
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
/* Tooltip */
.tooltipster-base {
    font-size: 10px;
}
.tooltipster-sidetip .tooltipster-content {
    color: white;
    line-height: 1.5;
    padding: 6px 10px;
}
.tooltipster-sidetip .tooltipster-box {
    background: #1f2937;
    border: 2px solid #1f2937;
    border-radius: 6px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #1f2937;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #1f2937;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #1f2937;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #1f2937;
}
/* tooltipster-arrow-border */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #1f2937;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #1f2937;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #1f2937;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #1f2937;
}
/* Select modal categoria */
.selected-category {
    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;
}
.dropdown-content{
    max-height: 18rem;
    overflow-y: auto;
    scrollbar-width: auto;
    scrollbar-color: #d1d5db #ffffff;
}
.dropdown-content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.dropdown-content::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
.dropdown-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border: 1px solid #f3f4f6;
    border-radius: 50px;
}
.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
.dropdown-content::-webkit-scrollbar-thumb:active {
    background: #6b7280;
}
.dropdown-content::-webkit-scrollbar-track {
    background: #f3f4f6;
    border: 0px solid #000;
    border-radius: 50px;
}
.dropdown-content::-webkit-scrollbar-track:hover {
    background: #f3f4f6;
}
.dropdown-content::-webkit-scrollbar-track:active {
    background: #f3f4f6;
}
.dropdown-content::-webkit-scrollbar-corner {
    background: transparent;
}
.selected-items span span{
    display: flex;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 0.25rem;
    padding-top: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.selected-items span span:last-child{
    margin-bottom: 0.5rem;
}
/* Habilitação status */
.habilitacao.habilitado .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.habilitacao.habilitado .status span:last-child::before{
    --tw-content: 'HABILITADO';
    content: var(--tw-content);
}
.habilitacao.aguardando_aprovacao .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}
.habilitacao.aguardando_aprovacao .status span:last-child::before{
    --tw-content: 'AGUARDANDO APROVAÇÃO';
    content: var(--tw-content);
}
.habilitacao.bloqueado .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.habilitacao.bloqueado .status span:last-child::before{
    --tw-content: 'BLOQUEADO';
    content: var(--tw-content);
}
/* Profile status */
.profile.previo .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.profile.previo .status span:last-child::before{
    --tw-content: 'AGUARDANDO VALIDAÇÕES';
    content: var(--tw-content);
}
.profile.aguardando-dados-cadastrais .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(192 38 211 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(253 244 255 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(192 38 211 / var(--tw-text-opacity, 1));
}
.profile.aguardando-dados-cadastrais .status span:last-child::before{
    --tw-content: 'AGUARDANDO DADOS CADASTRAIS';
    content: var(--tw-content);
}
.profile.liberado .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.profile.liberado .status span:last-child::before{
    --tw-content: 'LIBERADO';
    content: var(--tw-content);
}
.profile.em-analise .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.profile.em-analise .status span:last-child::before{
    --tw-content: 'EM ANÁLISE';
    content: var(--tw-content);
}
.profile.aguardando-documentos .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.profile.aguardando-documentos .status span:last-child::before{
    --tw-content: 'AGUARDANDO DOCUMENTOS';
    content: var(--tw-content);
}
.profile.bloqueado .status span:last-child{
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.profile.bloqueado .status span:last-child::before{
    --tw-content: 'BLOQUEADO';
    content: var(--tw-content);
}
.truncate-text-100 {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.truncate-text-100:hover {
max-width: unset;
}
.truncate-text-std {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.documento-selecionado-upload{
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity, 1));
}
.arrematacao-conjunta-aprovado {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #65A30D;
    color: #65A30D!important;
}
.arrematacao-conjunta-pendente {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #EA580C;
    color: #EA580C!important;
}
.arrematacao-conjunta-cancelado {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #DC2626;
    color: #DC2626!important;
}
.status_final_participacao_arrematacao_aprovado {
    color: #65A30D!important;
}
.status_final_participacao_arrematacao_aguardando {
    color: dodgerblue!important;
}
.status_final_participacao_arrematacao_cancelado {
    color: #DC2626!important;
}
.contao-confirmado {
    --tw-border-opacity: 1;
    border-color: rgb(101 163 13 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(247 254 231 / var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgb(101 163 13 / var(--tw-text-opacity));
}
.explorar_por_categoria_mobile {
    display: none;
}
@media (min-width: 320px) and (max-width: 799px) {
    .div_categorias_mobile {
        display: block;
    }

    #lista_tipos_de_leiloes {
        height: 100%;
    }
}
@media (min-width: 800px) and (max-width: 1240px) {
    .div_categorias_mobile {
        display: flex;
    }

    #lista_tipos_de_leiloes {
        margin-left: 30px;
    }
}
@media (max-width: 1240px) {
    .section_categorias_mobile {
        position: absolute;
        background-color: white;
        z-index: 9999;
        padding-top: 15px;
        width: 100%;
        overflow-y: auto;
        height: 100vh;
        box-sizing: border-box;
    }

    .explorar_por_categoria_mobile {
        display: block;
    }
}
.body-no-scroll {
    overflow: hidden;
    height: 100vh;
}
@media (min-width: 640px){
    .sm\:container{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    @media (min-width: 360px){
        .sm\:container{
            max-width: 360px;
        }
    }
    @media (min-width: 640px){
        .sm\:container{
            max-width: 640px;
        }
    }
    @media (min-width: 768px){
        .sm\:container{
            max-width: 768px;
        }
    }
    @media (min-width: 1024px){
        .sm\:container{
            max-width: 1024px;
        }
    }
    @media (min-width: 1280px){
        .sm\:container{
            max-width: 1280px;
        }
    }
    @media (min-width: 1536px){
        .sm\:container{
            max-width: 1536px;
        }
    }
}
@media (min-width: 768px){
    .md\:container{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    @media (min-width: 360px){
        .md\:container{
            max-width: 360px;
        }
    }
    @media (min-width: 640px){
        .md\:container{
            max-width: 640px;
        }
    }
    @media (min-width: 768px){
        .md\:container{
            max-width: 768px;
        }
    }
    @media (min-width: 1024px){
        .md\:container{
            max-width: 1024px;
        }
    }
    @media (min-width: 1280px){
        .md\:container{
            max-width: 1280px;
        }
    }
    @media (min-width: 1536px){
        .md\:container{
            max-width: 1536px;
        }
    }
}
@media (min-width: 1536px){
    .\32xl\:container{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    @media (min-width: 360px){
        .\32xl\:container{
            max-width: 360px;
        }
    }
    @media (min-width: 640px){
        .\32xl\:container{
            max-width: 640px;
        }
    }
    @media (min-width: 768px){
        .\32xl\:container{
            max-width: 768px;
        }
    }
    @media (min-width: 1024px){
        .\32xl\:container{
            max-width: 1024px;
        }
    }
    @media (min-width: 1280px){
        .\32xl\:container{
            max-width: 1280px;
        }
    }
    @media (min-width: 1536px){
        .\32xl\:container{
            max-width: 1536px;
        }
    }
}
.file\:hidden::file-selector-button{
    display: none;
}
.placeholder\:text-gray-500::placeholder{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.backdrop\:bg-gray-600\/40::backdrop{
    background-color: rgb(75 85 99 / 0.4);
}
.backdrop\:bg-gray-900\/60::backdrop{
    background-color: rgb(17 24 39 / 0.6);
}
.before\:absolute::before{
    content: var(--tw-content);
    position: absolute;
}
.before\:bottom-2\.5::before{
    content: var(--tw-content);
    bottom: 0.625rem;
}
.before\:left-3\.5::before{
    content: var(--tw-content);
    left: 0.875rem;
}
.before\:right-3\.5::before{
    content: var(--tw-content);
    right: 0.875rem;
}
.before\:top-1\/2::before{
    content: var(--tw-content);
    top: 50%;
}
.before\:-translate-y-1\/2::before{
    content: var(--tw-content);
    --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));
}
.before\:text-gray-400::before{
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.before\:content-\[\'\%\'\]::before{
    --tw-content: '%';
    content: var(--tw-content);
}
.before\:content-\[\'R\$\'\]::before{
    --tw-content: 'R$';
    content: var(--tw-content);
}
.before\:content-\[\'m\B2\'\]::before{
    --tw-content: 'm²';
    content: var(--tw-content);
}
.after\:left-8::after{
    content: var(--tw-content);
    left: 2rem;
}
.after\:left-auto::after{
    content: var(--tw-content);
    left: auto;
}
.after\:right-2::after{
    content: var(--tw-content);
    right: 0.5rem;
}
.odd\:bg-gray-100:nth-child(odd){
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.checked\:bg-orange-500:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.focus-within\:rounded-3xl:focus-within{
    border-radius: 1.5rem;
}
.focus-within\:ring-2:focus-within{
    --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-within\:ring-orange-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.hover\:cursor-pointer:hover{
    cursor: pointer;
}
.hover\:border-b-gray-800:hover{
    --tw-border-opacity: 1;
    border-bottom-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.hover\:bg-fuchsia-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(250 232 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-fuchsia-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(134 25 143 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-900\/70:hover{
    background-color: rgb(17 24 39 / 0.7);
}
.hover\:bg-lime-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(101 163 13 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:text-fuchsia-400:hover{
    --tw-text-opacity: 1;
    color: rgb(232 121 249 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-400:hover{
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-500:hover{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover{
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-500:hover{
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-600:hover{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.hover\:text-red-500:hover{
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:opacity-80:hover{
    opacity: 0.8;
}
.hover\:opacity-90:hover{
    opacity: 0.9;
}
.hover\:shadow-md:hover{
    --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);
}
.focus\:z-10:focus{
    z-index: 10;
}
.focus\:border-b:focus{
    border-bottom-width: 1px;
}
.focus\:border-blue-300:focus{
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.focus\:border-gray-700:focus{
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.focus\:border-orange-500:focus{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.focus\:border-b-gray-700:focus{
    --tw-border-opacity: 1;
    border-bottom-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.focus\:bg-gray-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.focus\:bg-orange-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.focus\:outline-0:focus{
    outline-width: 0px;
}
.focus\:ring: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(3px + 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-0: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(0px + 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-1: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(1px + 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-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-inset:focus{
    --tw-ring-inset: inset;
}
.focus\:ring-orange-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.focus\:ring-transparent:focus{
    --tw-ring-color: transparent;
}
.focus\:ring-offset-2:focus{
    --tw-ring-offset-width: 2px;
}
.active\:bg-gray-100:active{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-200:active{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-300:active{
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-500:active{
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.active\:bg-gray-700:active{
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.active\:bg-lime-700:active{
    --tw-bg-opacity: 1;
    background-color: rgb(77 124 15 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-100:active{
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-200:active{
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}
.active\:bg-orange-700:active{
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-200:active{
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202 / var(--tw-bg-opacity, 1));
}
.active\:bg-red-700:active{
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.active\:text-gray-500:active{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.active\:text-gray-700:active{
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.active\:text-orange-700:active{
    --tw-text-opacity: 1;
    color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.active\:opacity-100:active{
    opacity: 1;
}
.disabled\:bg-gray-100:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.disabled\:bg-gray-400:disabled{
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.disabled\:opacity-25:disabled{
    opacity: 0.25;
}
.group\/category:hover .group-hover\/category\:border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.peer\/four:checked ~ .peer-checked\/four\:border-orange-500{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.peer\/one:checked ~ .peer-checked\/one\:border-orange-500{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.peer\/three:checked ~ .peer-checked\/three\:border-orange-500{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.peer\/two:checked ~ .peer-checked\/two\:border-orange-500{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.peer\/zero:checked ~ .peer-checked\/zero\:border-orange-500{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.peer\/four:checked ~ .peer-checked\/four\:bg-orange-50{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.peer\/one:checked ~ .peer-checked\/one\:bg-orange-50{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.peer\/three:checked ~ .peer-checked\/three\:bg-orange-50{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.peer\/two:checked ~ .peer-checked\/two\:bg-orange-50{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.peer\/zero:checked ~ .peer-checked\/zero\:bg-orange-50{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.peer\/four:checked ~ .peer-checked\/four\:text-orange-600{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.peer\/one:checked ~ .peer-checked\/one\:text-orange-600{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.peer\/three:checked ~ .peer-checked\/three\:text-orange-600{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.peer\/two:checked ~ .peer-checked\/two\:text-orange-600{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.peer\/zero:checked ~ .peer-checked\/zero\:text-orange-600{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
@media (min-width: 360px){
    .xs\:mb-5{
        margin-bottom: 1.25rem;
    }
    .xs\:mt-16{
        margin-top: 4rem;
    }
    .xs\:mt-20{
        margin-top: 5rem;
    }
    .xs\:w-6{
        width: 1.5rem;
    }
    .xs\:w-\[120px\]{
        width: 120px;
    }
    .xs\:text-3xl{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .xs\:text-\[17px\]{
        font-size: 17px;
    }
    .xs\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .xs\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .xs\:text-xs{
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .xs\:\!leading-\[36px\]{
        line-height: 36px !important;
    }
}
@media (min-width: 415px){
    .min-\[415px\]\:block{
        display: block;
    }
}
@media (min-width: 420px){
    .min-\[420px\]\:text-fluid-md{
        font-size: clamp(20px, calc(20px + (40 - 20) * ((100vw - 360px) / (1536 - 360))), 40px);
        line-height: clamp(30px, calc(30px + (41 - 30) * ((100vw - 360px) / (1536 - 360))), 41px);
    }
}
@media (min-width: 480px){
    .min-\[480px\]\:block{
        display: block;
    }
    .min-\[480px\]\:hidden{
        display: none;
    }
    .min-\[480px\]\:text-fluid-xl{
        font-size: clamp(24px, calc(24px + (48 - 24) * ((100vw - 360px) / (1536 - 360))), 48px);
        line-height: clamp(30px, calc(30px + (62 - 30) * ((100vw - 360px) / (1536 - 360))), 62px);
    }
}
@media (min-width: 640px){
    .sm\:bottom-8{
        bottom: 2rem;
    }
    .sm\:left-8{
        left: 2rem;
    }
    .sm\:left-auto{
        left: auto;
    }
    .sm\:right-8{
        right: 2rem;
    }
    .sm\:right-\[calc\(25\%\+6px\)\]{
        right: calc(25% + 6px);
    }
    .sm\:top-8{
        top: 2rem;
    }
    .sm\:col-span-6{
        grid-column: span 6 / span 6;
    }
    .sm\:col-span-8{
        grid-column: span 8 / span 8;
    }
    .sm\:mx-0{
        margin-left: 0px;
        margin-right: 0px;
    }
    .sm\:mx-3\.5{
        margin-left: 0.875rem;
        margin-right: 0.875rem;
    }
    .sm\:my-10{
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }
    .sm\:my-3{
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
    .sm\:my-8{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .sm\:-mt-3{
        margin-top: -0.75rem;
    }
    .sm\:mb-4{
        margin-bottom: 1rem;
    }
    .sm\:mb-8{
        margin-bottom: 2rem;
    }
    .sm\:ml-24{
        margin-left: 6rem;
    }
    .sm\:mt-10{
        margin-top: 2.5rem;
    }
    .sm\:mt-12{
        margin-top: 3rem;
    }
    .sm\:mt-4{
        margin-top: 1rem;
    }
    .sm\:mt-7{
        margin-top: 1.75rem;
    }
    .sm\:mt-8{
        margin-top: 2rem;
    }
    .sm\:block{
        display: block;
    }
    .sm\:inline-block{
        display: inline-block;
    }
    .sm\:flex{
        display: flex;
    }
    .sm\:hidden{
        display: none;
    }
    .sm\:h-10{
        height: 2.5rem;
    }
    .sm\:h-11{
        height: 2.75rem;
    }
    .sm\:h-12{
        height: 3rem;
    }
    .sm\:h-16{
        height: 4rem;
    }
    .sm\:h-9{
        height: 2.25rem;
    }
    .sm\:h-auto{
        height: auto;
    }
    .sm\:h-screen{
        height: 100vh;
    }
    .sm\:w-10{
        width: 2.5rem;
    }
    .sm\:w-16{
        width: 4rem;
    }
    .sm\:w-2\/5{
        width: 40%;
    }
    .sm\:w-64{
        width: 16rem;
    }
    .sm\:w-7{
        width: 1.75rem;
    }
    .sm\:w-\[150px\]{
        width: 150px;
    }
    .sm\:w-\[calc\(25\%-18px\)\]{
        width: calc(25% - 18px);
    }
    .sm\:w-\[calc\(50\%-24px\)\]{
        width: calc(50% - 24px);
    }
    .sm\:w-full{
        width: 100%;
    }
    .sm\:max-w-\[592px\]{
        max-width: 592px;
    }
    .sm\:max-w-\[80\%\]{
        max-width: 80%;
    }
    .sm\:max-w-lg{
        max-width: 32rem;
    }
    .sm\:flex-1{
        flex: 1 1 0%;
    }
    .sm\:flex-initial{
        flex: 0 1 auto;
    }
    .sm\:basis-44{
        flex-basis: 11rem;
    }
    .sm\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sm\:grid-cols-5{
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .sm\:flex-row{
        flex-direction: row;
    }
    .sm\:flex-col{
        flex-direction: column;
    }
    .sm\:flex-wrap{
        flex-wrap: wrap;
    }
    .sm\:items-start{
        align-items: flex-start;
    }
    .sm\:items-end{
        align-items: flex-end;
    }
    .sm\:items-center{
        align-items: center;
    }
    .sm\:justify-between{
        justify-content: space-between;
    }
    .sm\:gap-1{
        gap: 0.25rem;
    }
    .sm\:gap-2{
        gap: 0.5rem;
    }
    .sm\:gap-28{
        gap: 7rem;
    }
    .sm\:gap-3{
        gap: 0.75rem;
    }
    .sm\:gap-4{
        gap: 1rem;
    }
    .sm\:gap-6{
        gap: 1.5rem;
    }
    .sm\:gap-8{
        gap: 2rem;
    }
    .sm\:gap-\[30px\]{
        gap: 30px;
    }
    .sm\:gap-x-2{
        column-gap: 0.5rem;
    }
    .sm\:gap-y-8{
        row-gap: 2rem;
    }
    .sm\:divide-x > :not([hidden]) ~ :not([hidden]){
        --tw-divide-x-reverse: 0;
        border-right-width: calc(1px * var(--tw-divide-x-reverse));
        border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
    }
    .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]){
        --tw-divide-y-reverse: 0;
        border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
        border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
    }
    .sm\:rounded-full{
        border-radius: 9999px;
    }
    .sm\:p-0{
        padding: 0px;
    }
    .sm\:p-4{
        padding: 1rem;
    }
    .sm\:p-6{
        padding: 1.5rem;
    }
    .sm\:p-8{
        padding: 2rem;
    }
    .sm\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
    .sm\:px-3{
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .sm\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .sm\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .sm\:px-\[18px\]{
        padding-left: 18px;
        padding-right: 18px;
    }
    .sm\:py-0{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .sm\:py-12{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .sm\:py-2{
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .sm\:py-3{
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .sm\:py-4{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .sm\:pb-10{
        padding-bottom: 2.5rem;
    }
    .sm\:pb-4{
        padding-bottom: 1rem;
    }
    .sm\:pb-6{
        padding-bottom: 1.5rem;
    }
    .sm\:pb-8{
        padding-bottom: 2rem;
    }
    .sm\:pl-24{
        padding-left: 6rem;
    }
    .sm\:pl-4{
        padding-left: 1rem;
    }
    .sm\:pr-4{
        padding-right: 1rem;
    }
    .sm\:pr-6{
        padding-right: 1.5rem;
    }
    .sm\:pr-\[31px\]{
        padding-right: 31px;
    }
    .sm\:pt-12{
        padding-top: 3rem;
    }
    .sm\:pt-2{
        padding-top: 0.5rem;
    }
    .sm\:pt-9{
        padding-top: 2.25rem;
    }
    .sm\:align-middle{
        vertical-align: middle;
    }
    .sm\:text-3xl{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .sm\:text-5xl{
        font-size: 3rem;
        line-height: 1;
    }
    .sm\:text-\[13px\]{
        font-size: 13px;
    }
    .sm\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .sm\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .sm\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .sm\:text-xs{
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .sm\:font-semibold{
        font-weight: 600;
    }
    .sm\:\!leading-\[50px\]{
        line-height: 50px !important;
    }
    .sm\:leading-7{
        line-height: 1.75rem;
    }
    .sm\:underline{
        text-decoration-line: underline;
    }
    .sm\:text-fluid-xl{
        font-size: clamp(24px, calc(24px + (48 - 24) * ((100vw - 360px) / (1536 - 360))), 48px);
        line-height: clamp(30px, calc(30px + (62 - 30) * ((100vw - 360px) / (1536 - 360))), 62px);
    }
    .sm\:text-fluid-lg{
        font-size: clamp(22px, calc(22px + (42 - 22) * ((100vw - 360px) / (1536 - 360))), 42px);
        line-height: clamp(30px, calc(30px + (50 - 30) * ((100vw - 360px) / (1536 - 360))), 50px);
    }
    .sm\:text-fluid-md{
        font-size: clamp(20px, calc(20px + (40 - 20) * ((100vw - 360px) / (1536 - 360))), 40px);
        line-height: clamp(30px, calc(30px + (41 - 30) * ((100vw - 360px) / (1536 - 360))), 41px);
    }
    .sm\:square-3\.5{
        width: 0.875rem;
        height: 0.875rem;
    }
}
@media (min-width: 768px){
    .md\:invisible{
        visibility: hidden;
    }
    .md\:right-4{
        right: 1rem;
    }
    .md\:right-\[calc\(25\%\+8px\)\]{
        right: calc(25% + 8px);
    }
    .md\:col-span-7{
        grid-column: span 7 / span 7;
    }
    .md\:col-span-full{
        grid-column: 1 / -1;
    }
    .md\:col-start-1{
        grid-column-start: 1;
    }
    .md\:col-start-9{
        grid-column-start: 9;
    }
    .md\:col-end-14{
        grid-column-end: 14;
    }
    .md\:col-end-9{
        grid-column-end: 9;
    }
    .md\:row-start-1{
        grid-row-start: 1;
    }
    .md\:m-auto{
        margin: auto;
    }
    .md\:mx-4{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .md\:my-4{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .md\:my-8{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .md\:-mt-4{
        margin-top: -1rem;
    }
    .md\:mb-0{
        margin-bottom: 0px;
    }
    .md\:mb-4{
        margin-bottom: 1rem;
    }
    .md\:mb-6{
        margin-bottom: 1.5rem;
    }
    .md\:mb-8{
        margin-bottom: 2rem;
    }
    .md\:ml-4{
        margin-left: 1rem;
    }
    .md\:ml-8{
        margin-left: 2rem;
    }
    .md\:mt-0{
        margin-top: 0px;
    }
    .md\:mt-12{
        margin-top: 3rem;
    }
    .md\:mt-20{
        margin-top: 5rem;
    }
    .md\:mt-6{
        margin-top: 1.5rem;
    }
    .md\:mt-8{
        margin-top: 2rem;
    }
    .md\:block{
        display: block;
    }
    .md\:flex{
        display: flex;
    }
    .md\:grid{
        display: grid;
    }
    .md\:hidden{
        display: none;
    }
    .md\:h-12{
        height: 3rem;
    }
    .md\:h-\[378px\]{
        height: 378px;
    }
    .md\:h-auto{
        height: auto;
    }
    .md\:min-h-\[358px\]{
        min-height: 358px;
    }
    .md\:w-\[130px\]{
        width: 130px;
    }
    .md\:w-\[calc\(25\%-24px\)\]{
        width: calc(25% - 24px);
    }
    .md\:w-\[calc\(50\%-32px\)\]{
        width: calc(50% - 32px);
    }
    .md\:w-auto{
        width: auto;
    }
    .md\:max-w-3xl{
        max-width: 48rem;
    }
    .md\:max-w-\[536px\]{
        max-width: 536px;
    }
    .md\:max-w-full{
        max-width: 100%;
    }
    .md\:flex-1{
        flex: 1 1 0%;
    }
    .md\:grid-cols-12{
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .md\:grid-cols-\[repeat\(auto-fit\2c _minmax\(min\(200px\2c _100\%\)\2c 1fr\)\)\]{
        grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%),1fr));
    }
    .md\:grid-cols-\[repeat\(auto-fit\2c minmax\(200px\2c 1fr\)\)\]{
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    }
    .md\:flex-row{
        flex-direction: row;
    }
    .md\:flex-wrap{
        flex-wrap: wrap;
    }
    .md\:place-content-center{
        place-content: center;
    }
    .md\:items-end{
        align-items: flex-end;
    }
    .md\:justify-center{
        justify-content: center;
    }
    .md\:gap-4{
        gap: 1rem;
    }
    .md\:gap-8{
        gap: 2rem;
    }
    .md\:self-end{
        align-self: flex-end;
    }
    .md\:p-8{
        padding: 2rem;
    }
    .md\:px-3{
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .md\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .md\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .md\:px-8{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .md\:py-4{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .md\:py-6{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .md\:pb-3{
        padding-bottom: 0.75rem;
    }
    .md\:pb-4{
        padding-bottom: 1rem;
    }
    .md\:pb-8{
        padding-bottom: 2rem;
    }
    .md\:pl-28{
        padding-left: 7rem;
    }
    .md\:pt-1{
        padding-top: 0.25rem;
    }
    .md\:pt-8{
        padding-top: 2rem;
    }
    .md\:text-left{
        text-align: left;
    }
    .md\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .md\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .md\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .md\:text-xs{
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .md\:leading-7{
        line-height: 1.75rem;
    }
    .md\:leading-8{
        line-height: 2rem;
    }
}
@media (min-width: 1024px){
    .lg\:bottom-6{
        bottom: 1.5rem;
    }
    .lg\:bottom-\[18px\]{
        bottom: 18px;
    }
    .lg\:left-6{
        left: 1.5rem;
    }
    .lg\:right-6{
        right: 1.5rem;
    }
    .lg\:top-6{
        top: 1.5rem;
    }
    .lg\:col-auto{
        grid-column: auto;
    }
    .lg\:col-start-1{
        grid-column-start: 1;
    }
    .lg\:col-start-2{
        grid-column-start: 2;
    }
    .lg\:col-start-3{
        grid-column-start: 3;
    }
    .lg\:col-end-7{
        grid-column-end: 7;
    }
    .lg\:row-start-1{
        grid-row-start: 1;
    }
    .lg\:m-0{
        margin: 0px;
    }
    .lg\:m-auto{
        margin: auto;
    }
    .lg\:mx-0{
        margin-left: 0px;
        margin-right: 0px;
    }
    .lg\:mx-4{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .lg\:my-8{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .lg\:-mt-2{
        margin-top: -0.5rem;
    }
    .lg\:mb-10{
        margin-bottom: 2.5rem;
    }
    .lg\:mb-12{
        margin-bottom: 3rem;
    }
    .lg\:mb-20{
        margin-bottom: 5rem;
    }
    .lg\:mb-8{
        margin-bottom: 2rem;
    }
    .lg\:ml-8{
        margin-left: 2rem;
    }
    .lg\:mr-4{
        margin-right: 1rem;
    }
    .lg\:mt-0{
        margin-top: 0px;
    }
    .lg\:mt-10{
        margin-top: 2.5rem;
    }
    .lg\:mt-12{
        margin-top: 3rem;
    }
    .lg\:mt-14{
        margin-top: 3.5rem;
    }
    .lg\:mt-16{
        margin-top: 4rem;
    }
    .lg\:mt-4{
        margin-top: 1rem;
    }
    .lg\:mt-6{
        margin-top: 1.5rem;
    }
    .lg\:mt-8{
        margin-top: 2rem;
    }
    .lg\:block{
        display: block;
    }
    .lg\:flex{
        display: flex;
    }
    .lg\:hidden{
        display: none;
    }
    .lg\:h-10{
        height: 2.5rem;
    }
    .lg\:h-11{
        height: 2.75rem;
    }
    .lg\:h-12{
        height: 3rem;
    }
    .lg\:h-14{
        height: 3.5rem;
    }
    .lg\:h-5{
        height: 1.25rem;
    }
    .lg\:h-8{
        height: 2rem;
    }
    .lg\:h-9{
        height: 2.25rem;
    }
    .lg\:h-\[42px\]{
        height: 42px;
    }
    .lg\:h-\[454px\]{
        height: 454px;
    }
    .lg\:h-\[50px\]{
        height: 50px;
    }
    .lg\:h-\[calc\(100dvh-97px\)\]{
        height: calc(100dvh - 97px);
    }
    .lg\:h-\[calc\(100vh-145px\)\]{
        height: calc(100vh - 145px);
    }
    .lg\:h-\[calc\(100vh-96px\)\]{
        height: calc(100vh - 96px);
    }
    .lg\:h-\[calc\(100vh-97px\)\]{
        height: calc(100vh - 97px);
    }
    .lg\:h-auto{
        height: auto;
    }
    .lg\:min-h-\[396px\]{
        min-height: 396px;
    }
    .lg\:min-h-\[720px\]{
        min-height: 720px;
    }
    .lg\:w-10{
        width: 2.5rem;
    }
    .lg\:w-5{
        width: 1.25rem;
    }
    .lg\:w-\[130px\]{
        width: 130px;
    }
    .lg\:w-\[50px\]{
        width: 50px;
    }
    .lg\:w-\[clamp\(110px\2c 40\%\2c 202px\)\]{
        width: clamp(110px,40%,202px);
    }
    .lg\:min-w-\[377px\]{
        min-width: 377px;
    }
    .lg\:max-w-2xl{
        max-width: 42rem;
    }
    .lg\:max-w-\[256px\]{
        max-width: 256px;
    }
    .lg\:max-w-\[352px\]{
        max-width: 352px;
    }
    .lg\:max-w-\[360px\]{
        max-width: 360px;
    }
    .lg\:max-w-\[50\%\]{
        max-width: 50%;
    }
    .lg\:max-w-\[80\%\]{
        max-width: 80%;
    }
    .lg\:flex-1{
        flex: 1 1 0%;
    }
    .lg\:shrink-0{
        flex-shrink: 0;
    }
    .lg\:basis-1\/2{
        flex-basis: 50%;
    }
    .lg\:grid-flow-row{
        grid-auto-flow: row;
    }
    .lg\:grid-cols-\[repeat\(auto-fit\2c _minmax\(296px\2c _1fr\)\)\]{
        grid-template-columns: repeat(auto-fit, minmax(296px, 1fr));
    }
    .lg\:grid-cols-\[repeat\(auto-fit\2c minmax\(min\(302px\2c _100\%\)\2c 1fr\)\)\]{
        grid-template-columns: repeat(auto-fit,minmax(min(302px, 100%),1fr));
    }
    .lg\:flex-row{
        flex-direction: row;
    }
    .lg\:flex-wrap{
        flex-wrap: wrap;
    }
    .lg\:flex-nowrap{
        flex-wrap: nowrap;
    }
    .lg\:items-start{
        align-items: flex-start;
    }
    .lg\:items-center{
        align-items: center;
    }
    .lg\:gap-0{
        gap: 0px;
    }
    .lg\:gap-1{
        gap: 0.25rem;
    }
    .lg\:gap-14{
        gap: 3.5rem;
    }
    .lg\:gap-20{
        gap: 5rem;
    }
    .lg\:gap-24{
        gap: 6rem;
    }
    .lg\:gap-3{
        gap: 0.75rem;
    }
    .lg\:gap-4{
        gap: 1rem;
    }
    .lg\:gap-6{
        gap: 1.5rem;
    }
    .lg\:gap-7{
        gap: 1.75rem;
    }
    .lg\:gap-8{
        gap: 2rem;
    }
    .lg\:self-center{
        align-self: center;
    }
    .lg\:rounded-xl{
        border-radius: 0.75rem;
    }
    .lg\:rounded-bl-\[50px\]{
        border-bottom-left-radius: 50px;
    }
    .lg\:border-0{
        border-width: 0px;
    }
    .lg\:border-r{
        border-right-width: 1px;
    }
    .lg\:border-gray-200{
        --tw-border-opacity: 1;
        border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    }
    .lg\:object-cover{
        object-fit: cover;
    }
    .lg\:p-0{
        padding: 0px;
    }
    .lg\:p-14{
        padding: 3.5rem;
    }
    .lg\:p-4{
        padding: 1rem;
    }
    .lg\:p-8{
        padding: 2rem;
    }
    .lg\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
    .lg\:px-12{
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .lg\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .lg\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .lg\:px-8{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lg\:px-9{
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
    .lg\:py-10{
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .lg\:py-12{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .lg\:py-14{
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .lg\:py-4{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .lg\:py-8{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .lg\:pb-14{
        padding-bottom: 3.5rem;
    }
    .lg\:pb-6{
        padding-bottom: 1.5rem;
    }
    .lg\:pl-11{
        padding-left: 2.75rem;
    }
    .lg\:pl-3{
        padding-left: 0.75rem;
    }
    .lg\:pl-7{
        padding-left: 1.75rem;
    }
    .lg\:pr-4{
        padding-right: 1rem;
    }
    .lg\:pr-7{
        padding-right: 1.75rem;
    }
    .lg\:pt-12{
        padding-top: 3rem;
    }
    .lg\:pt-4{
        padding-top: 1rem;
    }
    .lg\:pt-5{
        padding-top: 1.25rem;
    }
    .lg\:pt-6{
        padding-top: 1.5rem;
    }
    .lg\:pt-8{
        padding-top: 2rem;
    }
    .lg\:text-left{
        text-align: left;
    }
    .lg\:text-3xl{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .lg\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .lg\:text-6xl{
        font-size: 3.75rem;
        line-height: 1;
    }
    .lg\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .lg\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .lg\:text-sm{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .lg\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .lg\:\!leading-\[60px\]{
        line-height: 60px !important;
    }
    .lg\:leading-7{
        line-height: 1.75rem;
    }
    .lg\:leading-8{
        line-height: 2rem;
    }
    .lg\:square-10{
        width: 2.5rem;
        height: 2.5rem;
    }
    .lg\:before\:bottom-\[18px\]::before{
        content: var(--tw-content);
        bottom: 18px;
    }
    .lg\:focus-within\:rounded-l-none:focus-within{
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .lg\:focus-within\:rounded-r-3xl:focus-within{
        border-top-right-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
    }
    .lg\:hover\:bg-gray-50:hover{
        --tw-bg-opacity: 1;
        background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    }
}
@media (min-width: 1280px){
    .xl\:absolute{
        position: absolute;
    }
    .xl\:bottom-8{
        bottom: 2rem;
    }
    .xl\:left-8{
        left: 2rem;
    }
    .xl\:right-4{
        right: 1rem;
    }
    .xl\:right-8{
        right: 2rem;
    }
    .xl\:top-0{
        top: 0px;
    }
    .xl\:top-8{
        top: 2rem;
    }
    .xl\:col-span-3{
        grid-column: span 3 / span 3;
    }
    .xl\:col-span-6{
        grid-column: span 6 / span 6;
    }
    .xl\:col-span-8{
        grid-column: span 8 / span 8;
    }
    .xl\:col-start-1{
        grid-column-start: 1;
    }
    .xl\:col-start-2{
        grid-column-start: 2;
    }
    .xl\:col-start-6{
        grid-column-start: 6;
    }
    .xl\:col-start-7{
        grid-column-start: 7;
    }
    .xl\:col-start-8{
        grid-column-start: 8;
    }
    .xl\:col-end-15{
        grid-column-end: 15;
    }
    .xl\:col-end-6{
        grid-column-end: 6;
    }
    .xl\:col-end-8{
        grid-column-end: 8;
    }
    .xl\:row-start-1{
        grid-row-start: 1;
    }
    .xl\:mx-8{
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .xl\:my-14{
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
    .xl\:mb-12{
        margin-bottom: 3rem;
    }
    .xl\:mb-14{
        margin-bottom: 3.5rem;
    }
    .xl\:mb-16{
        margin-bottom: 4rem;
    }
    .xl\:mb-20{
        margin-bottom: 5rem;
    }
    .xl\:mb-6{
        margin-bottom: 1.5rem;
    }
    .xl\:mb-8{
        margin-bottom: 2rem;
    }
    .xl\:mr-0{
        margin-right: 0px;
    }
    .xl\:mt-0{
        margin-top: 0px;
    }
    .xl\:mt-12{
        margin-top: 3rem;
    }
    .xl\:mt-14{
        margin-top: 3.5rem;
    }
    .xl\:mt-2{
        margin-top: 0.5rem;
    }
    .xl\:mt-20{
        margin-top: 5rem;
    }
    .xl\:mt-8{
        margin-top: 2rem;
    }
    .xl\:mt-9{
        margin-top: 2.25rem;
    }
    .xl\:block{
        display: block;
    }
    .xl\:flex{
        display: flex;
    }
    .xl\:hidden{
        display: none;
    }
    .xl\:h-11{
        height: 2.75rem;
    }
    .xl\:h-14{
        height: 3.5rem;
    }
    .xl\:min-h-\[462px\]{
        min-height: 462px;
    }
    .xl\:w-3\/12{
        width: 25%;
    }
    .xl\:w-9\/12{
        width: 75%;
    }
    .xl\:max-w-\[300px\]{
        max-width: 300px;
    }
    .xl\:max-w-\[608px\]{
        max-width: 608px;
    }
    .xl\:max-w-\[736px\]{
        max-width: 736px;
    }
    .xl\:max-w-max{
        max-width: max-content;
    }
    .xl\:max-w-none{
        max-width: none;
    }
    .xl\:basis-full{
        flex-basis: 100%;
    }
    .xl\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .xl\:grid-rows-2{
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }
    .xl\:flex-row{
        flex-direction: row;
    }
    .xl\:flex-col{
        flex-direction: column;
    }
    .xl\:items-start{
        align-items: flex-start;
    }
    .xl\:justify-start{
        justify-content: flex-start;
    }
    .xl\:gap-10{
        gap: 2.5rem;
    }
    .xl\:gap-12{
        gap: 3rem;
    }
    .xl\:gap-4{
        gap: 1rem;
    }
    .xl\:gap-6{
        gap: 1.5rem;
    }
    .xl\:gap-7{
        gap: 1.75rem;
    }
    .xl\:gap-8{
        gap: 2rem;
    }
    .xl\:rounded-br-3xl{
        border-bottom-right-radius: 1.5rem;
    }
    .xl\:rounded-tr-\[100px\]{
        border-top-right-radius: 100px;
    }
    .xl\:px-10{
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .xl\:px-20{
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .xl\:px-7{
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    .xl\:py-12{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .xl\:py-14{
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .xl\:py-16{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .xl\:py-28{
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    .xl\:py-8{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .xl\:py-\[22px\]{
        padding-top: 22px;
        padding-bottom: 22px;
    }
    .xl\:pb-0{
        padding-bottom: 0px;
    }
    .xl\:pb-10{
        padding-bottom: 2.5rem;
    }
    .xl\:pb-16{
        padding-bottom: 4rem;
    }
    .xl\:pb-20{
        padding-bottom: 5rem;
    }
    .xl\:pb-4{
        padding-bottom: 1rem;
    }
    .xl\:pb-8{
        padding-bottom: 2rem;
    }
    .xl\:pl-24{
        padding-left: 6rem;
    }
    .xl\:pl-3{
        padding-left: 0.75rem;
    }
    .xl\:pl-4{
        padding-left: 1rem;
    }
    .xl\:pt-16{
        padding-top: 4rem;
    }
    .xl\:pt-28{
        padding-top: 7rem;
    }
    .xl\:pt-3\.5{
        padding-top: 0.875rem;
    }
    .xl\:pt-4{
        padding-top: 1rem;
    }
    .xl\:pt-6{
        padding-top: 1.5rem;
    }
    .xl\:pt-8{
        padding-top: 2rem;
    }
    .xl\:pt-\[70px\]{
        padding-top: 70px;
    }
    .xl\:text-3xl{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .xl\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .xl\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .xl\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .xl\:\!leading-\[70px\]{
        line-height: 70px !important;
    }
    .xl\:leading-8{
        line-height: 2rem;
    }
    .xl\:leading-\[30px\]{
        line-height: 30px;
    }
}
@media (min-width: 1536px){
    .\32xl\:col-start-2{
        grid-column-start: 2;
    }
    .\32xl\:col-start-7{
        grid-column-start: 7;
    }
    .\32xl\:col-start-8{
        grid-column-start: 8;
    }
    .\32xl\:col-end-13{
        grid-column-end: 13;
    }
    .\32xl\:mx-4{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .\32xl\:my-20{
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
    .\32xl\:my-4{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .\32xl\:-mt-\[72px\]{
        margin-top: -72px;
    }
    .\32xl\:mb-12{
        margin-bottom: 3rem;
    }
    .\32xl\:ml-4{
        margin-left: 1rem;
    }
    .\32xl\:mt-10{
        margin-top: 2.5rem;
    }
    .\32xl\:mt-12{
        margin-top: 3rem;
    }
    .\32xl\:mt-14{
        margin-top: 3.5rem;
    }
    .\32xl\:mt-20{
        margin-top: 5rem;
    }
    .\32xl\:mt-3{
        margin-top: 0.75rem;
    }
    .\32xl\:h-16{
        height: 4rem;
    }
    .\32xl\:h-20{
        height: 5rem;
    }
    .\32xl\:h-\[516px\]{
        height: 516px;
    }
    .\32xl\:h-auto{
        height: auto;
    }
    .\32xl\:max-h-none{
        max-height: none;
    }
    .\32xl\:min-h-\[523px\]{
        min-height: 523px;
    }
    .\32xl\:auto-cols-\[352px\]{
        grid-auto-columns: 352px;
    }
    .\32xl\:flex-row{
        flex-direction: row;
    }
    .\32xl\:justify-end{
        justify-content: flex-end;
    }
    .\32xl\:gap-0{
        gap: 0px;
    }
    .\32xl\:gap-12{
        gap: 3rem;
    }
    .\32xl\:gap-16{
        gap: 4rem;
    }
    .\32xl\:gap-4{
        gap: 1rem;
    }
    .\32xl\:gap-8{
        gap: 2rem;
    }
    .\32xl\: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));
    }
    .\32xl\:rounded-bl-\[100px\]{
        border-bottom-left-radius: 100px;
    }
    .\32xl\:p-0{
        padding: 0px;
    }
    .\32xl\:p-3{
        padding: 0.75rem;
    }
    .\32xl\:p-4{
        padding: 1rem;
    }
    .\32xl\:p-8{
        padding: 2rem;
    }
    .\32xl\:px-28{
        padding-left: 7rem;
        padding-right: 7rem;
    }
    .\32xl\:px-3\.5{
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
    .\32xl\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .\32xl\:py-12{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .\32xl\:py-20{
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .\32xl\:py-24{
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .\32xl\:py-36{
        padding-top: 9rem;
        padding-bottom: 9rem;
    }
    .\32xl\:pb-20{
        padding-bottom: 5rem;
    }
    .\32xl\:pb-28{
        padding-bottom: 7rem;
    }
    .\32xl\:pl-28{
        padding-left: 7rem;
    }
    .\32xl\:pr-4{
        padding-right: 1rem;
    }
    .\32xl\:pt-10{
        padding-top: 2.5rem;
    }
    .\32xl\:pt-36{
        padding-top: 9rem;
    }
    .\32xl\:text-left{
        text-align: left;
    }
    .\32xl\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .\32xl\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .\32xl\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .\32xl\:text-sm{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .\32xl\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .\32xl\:text-xs{
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .\32xl\:\!leading-\[80px\]{
        line-height: 80px !important;
    }
    .\32xl\:leading-8{
        line-height: 2rem;
    }
}
@media (min-width: 1537px){
    .min-\[1537px\]\:col-end-6{
        grid-column-end: 6;
    }
}
@media (min-width: 1921px){
    .min-\[1921px\]\:rounded-b-3xl{
        border-bottom-right-radius: 1.5rem;
        border-bottom-left-radius: 1.5rem;
    }
    .min-\[1921px\]\:rounded-l-3xl{
        border-top-left-radius: 1.5rem;
        border-bottom-left-radius: 1.5rem;
    }
}
.\[\&\.active\>div\]\:border-gray-700.active>div{
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.\[\&\.active\]\:bg-white.active{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.\[\&\.active\]\:ring-gray-700.active{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity, 1));
}
.\[\&\.active_\#sidebar-container\]\:w-screen.active #sidebar-container{
    width: 100vw;
}
@media (min-width: 1024px){
    .lg\:\[\&\.active_\#sidebar-container\]\:min-w-\[664px\].active #sidebar-container{
        min-width: 664px;
    }
}
.\[\&\.active_\.sidebar-content\]\:block.active .sidebar-content{
    display: block;
}
@media (min-width: 1024px){
    .lg\:\[\&\.active_\.sidebar-content\]\:max-w-\[664px\].active .sidebar-content{
        max-width: 664px;
    }
}
.\[\&\.disabled\]\:pointer-events-none.disabled{
    pointer-events: none;
}
.\[\&\.disabled\]\:opacity-50.disabled{
    opacity: 0.5;
}
.\[\&\.disabled_\.percent\]\:hidden.disabled .percent{
    display: none;
}
.\[\&\.disabled_\.price\]\:text-xs.disabled .price{
    font-size: 0.75rem;
    line-height: 1rem;
}
.\[\&\.enabled\]\:bg-orange-500.enabled{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.\[\&\.narrow\]\:mx-0.narrow{
    margin-left: 0px;
    margin-right: 0px;
}
.\[\&\.narrow\]\:px-4.narrow{
    padding-left: 1rem;
    padding-right: 1rem;
}
.\[\&\.narrow\]\:py-3.narrow{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.\[\&\.narrow\]\:shadow.narrow{
    --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);
}
.\[\&\.narrow_\#select-order\]\:absolute.narrow #select-order{
    position: absolute;
}
.\[\&\.narrow_\#select-order\]\:-left-full.narrow #select-order{
    left: -100%;
}
@media (min-width: 1024px){
    .lg\:\[\&\.narrow_\#select-order\]\:static.narrow #select-order{
        position: static;
    }
    .lg\:\[\&\.narrow_\.optgroup\]\:top-14.narrow .optgroup{
        top: 3.5rem;
    }
}
.\[\&\.open_\.after-arrow-sala\:after\]\:block.open .after-arrow-sala:after{
    display: block;
}
.\[\&\.open_\.after-arrow-sala\:after\]\:bg-gray-100.open .after-arrow-sala:after{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.\[\&\.open_\.after-arrow\:after\]\:block.open .after-arrow:after{
    display: block;
}
.\[\&\.open_\.dropdown-btn\:active\]\:bg-gray-200.open .dropdown-btn:active{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.\[\&\.open_\.dropdown-btn\]\:border-b-gray-800.open .dropdown-btn{
    --tw-border-opacity: 1;
    border-bottom-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.\[\&\.open_\.dropdown-btn\]\:bg-gray-100.open .dropdown-btn{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.\[\&\.open_\.dropdown-btn\]\:shadow-md.open .dropdown-btn{
    --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);
}
.\[\&\.open_\.dropdown-panel\:active\]\:bg-gray-200.open .dropdown-panel:active{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.\[\&\.open_\.dropdown-panel\]\:bg-gray-100.open .dropdown-panel{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.\[\&\.open_\.dropdown-panel\]\:shadow-md.open .dropdown-panel{
    --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);
}
.\[\&\.open_\.optgroup\]\:block.open .optgroup{
    display: block;
}
.\[\&\.open_nav\]\:block.open nav{
    display: block;
}
.\[\&\.open_nav\]\:flex.open nav{
    display: flex;
}
.\[\&\.open_nav\]\:pb-1.open nav{
    padding-bottom: 0.25rem;
}
@media (min-width: 768px){
    .md\:\[\&\.open_nav\]\:pb-0.open nav{
        padding-bottom: 0px;
    }
}
@media (min-width: 1280px){
    .xl\:\[\&\:nth-child\(even\)\]\:flex-row-reverse:nth-child(even){
        flex-direction: row-reverse;
    }
}
.\[\&_\#card-sala\.active\]\:mt-0 #card-sala.active{
    margin-top: 0px;
}
.\[\&_\#card-sala\]\:-mt-12 #card-sala{
    margin-top: -3rem;
}
@media (min-width: 1024px){
    .lg\:\[\&_\#card-sala\]\:mt-0 #card-sala{
        margin-top: 0px;
    }
}
.\[\&_\*\]\:pointer-events-none *{
    pointer-events: none;
}
.\[\&_\*\]\:text-xs *{
    font-size: 0.75rem;
    line-height: 1rem;
}
.\[\&_\*\]\:text-gray-600 *{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
@media (min-width: 1024px){
    .lg\:\[\&_\.blog-img\]\:hover\:inset-0:hover .blog-img{
        inset: 0px;
    }
}
.\[\&_\.icon-step-check\]\:border-2 .icon-step-check{
    border-width: 2px;
}
.\[\&_\.icon-step-check\]\:border-orange-200 .icon-step-check{
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.\[\&_\.progress-step-active_\.icon-step-check\]\:border-orange-500 .progress-step-active .icon-step-check{
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.\[\&_\.progress-step-active_\.icon-step-check\]\:bg-orange-500 .progress-step-active .icon-step-check{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.\[\&_\.sidebar-content\]\:hidden .sidebar-content{
    display: none;
}
.\[\&_\.slide-dot\.active\]\:bg-fuchsia-300 .slide-dot.active{
    --tw-bg-opacity: 1;
    background-color: rgb(240 171 252 / var(--tw-bg-opacity, 1));
}
.\[\&_\.slide-dot\:hover\]\:bg-fuchsia-500 .slide-dot:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(217 70 239 / var(--tw-bg-opacity, 1));
}
.\[\&_\.slide-dot\]\:cursor-pointer .slide-dot{
    cursor: pointer;
}
.\[\&_\.slide-dot\]\:rounded-full .slide-dot{
    border-radius: 9999px;
}
.\[\&_\.slide-dot\]\:bg-white .slide-dot{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.\[\&_\.slide-dot\]\:transition-all .slide-dot{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.\[\&_\.slide-dot\]\:square-4 .slide-dot{
    width: 1rem;
    height: 1rem;
}
.\[\&_\>_\*\]\:px-3 > *{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.\[\&_a\:hover\]\:bg-gray-100 a:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.\[\&_a\:hover\]\:underline a:hover{
    text-decoration-line: underline;
}
.\[\&_a\]\:block a{
    display: block;
}
.\[\&_a\]\:whitespace-nowrap a{
    white-space: nowrap;
}
.\[\&_a\]\:rounded-md a{
    border-radius: 0.375rem;
}
.\[\&_a\]\:border-2 a{
    border-width: 2px;
}
.\[\&_a\]\:border-white a{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.\[\&_a\]\:px-4 a{
    padding-left: 1rem;
    padding-right: 1rem;
}
.\[\&_a\]\:py-3 a{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.\[\&_a\]\:text-sm a{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.\[\&_button\:hover\]\:text-orange-600 button:hover{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.\[\&_button\:last-child\]\:hidden button:last-child{
    display: none;
}
@media (min-width: 640px){
    .sm\:\[\&_button\:last-child\]\:inline button:last-child{
        display: inline;
    }
}
.\[\&_details\[open\]_\.details-arrow\]\:rotate-0 details[open] .details-arrow{
    --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));
}
.\[\&_details\[open\]_\.details-arrow\]\:rotate-180 details[open] .details-arrow{
    --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));
}
.\[\&_details_\.details-arrow\]\:rotate-0 details .details-arrow{
    --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));
}
.\[\&_details_\.details-arrow\]\:rotate-180 details .details-arrow{
    --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));
}
.\[\&_details_summary\]\:odd\:bg-gray-100:nth-child(odd) details summary{
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.\[\&_div\]\:flex div{
    display: flex;
}
.\[\&_div\]\:gap-0\.5 div{
    gap: 0.125rem;
}
.\[\&_div_a\:active\]\:bg-gray-200 div a:active{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.\[\&_div_a\]\:whitespace-nowrap div a{
    white-space: nowrap;
}
.\[\&_div_a\]\:transition-all div a{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.\[\&_h3\]\:mt-2 h3{
    margin-top: 0.5rem;
}
.\[\&_h3\]\:text-lg h3{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.\[\&_h3\]\:font-bold h3{
    font-weight: 700;
}
.\[\&_h3\]\:leading-8 h3{
    line-height: 2rem;
}
.\[\&_h3\]\:text-gray-600 h3{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
@media (min-width: 1024px){
    .lg\:\[\&_h3\]\:mt-3 h3{
        margin-top: 0.75rem;
    }
}
.\[\&_h4\]\:mb-1 h4{
    margin-bottom: 0.25rem;
}
.\[\&_h4\]\:font-medium h4{
    font-weight: 500;
}
.\[\&_hr\]\:w-full hr{
    width: 100%;
}
.\[\&_label\:hover\]\:cursor-pointer label:hover{
    cursor: pointer;
}
.\[\&_label\:hover\]\:bg-gray-50 label:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.\[\&_label\]\:flex label{
    display: flex;
}
.\[\&_label\]\:items-center label{
    align-items: center;
}
.\[\&_label\]\:gap-3 label{
    gap: 0.75rem;
}
.\[\&_label\]\:px-6 label{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.\[\&_label\]\:py-3 label{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.\[\&_li\.active\]\:border-gray-800 li.active{
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.\[\&_li\.active\]\:bg-orange-50 li.active{
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.\[\&_li\.active_\.tabs-modal-check\]\:bg-orange-500 li.active .tabs-modal-check{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.\[\&_li\.active_\.tabs-modal-check\]\:ring-orange-500 li.active .tabs-modal-check{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.\[\&_li\.active_\.tabs-sala-check\]\:bg-orange-500 li.active .tabs-sala-check{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.\[\&_li\.active_\.tabs-sala-check\]\:ring-orange-500 li.active .tabs-sala-check{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}
.\[\&_li\:last-child\]\:\!border-b-2 li:last-child{
    border-bottom-width: 2px !important;
}
.\[\&_li\:last-child\]\:\!border-b-gray-800 li:last-child{
    --tw-border-opacity: 1 !important;
    border-bottom-color: rgb(31 41 55 / var(--tw-border-opacity, 1)) !important;
}
.\[\&_li\:nth-child\(even\)\]\:bg-gray-50 li:nth-child(even){
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.\[\&_li\:nth-child\(odd\)\]\:bg-gray-100 li:nth-child(odd){
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.\[\&_li\]\:flex li{
    display: flex;
}
.\[\&_li\]\:grid li{
    display: grid;
}
.\[\&_li\]\:h-12 li{
    height: 3rem;
}
.\[\&_li\]\:flex-1 li{
    flex: 1 1 0%;
}
.\[\&_li\]\:flex-col li{
    flex-direction: column;
}
.\[\&_li\]\:place-content-center li{
    place-content: center;
}
.\[\&_li\]\:items-center li{
    align-items: center;
}
.\[\&_li\]\:justify-center li{
    justify-content: center;
}
.\[\&_li\]\:gap-2 li{
    gap: 0.5rem;
}
.\[\&_li\]\:border li{
    border-width: 1px;
}
.\[\&_li\]\:border-b-2 li{
    border-bottom-width: 2px;
}
.\[\&_li\]\:border-gray-100 li{
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.\[\&_li\]\:py-2 li{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.\[\&_li\]\:pl-4 li{
    padding-left: 1rem;
}
.\[\&_li\]\:text-left li{
    text-align: left;
}
@media (min-width: 640px){
    .sm\:\[\&_li\]\:flex-row li{
        flex-direction: row;
    }
}
@media (min-width: 1280px){
    .xl\:\[\&_li\]\:basis-1\/2 li{
        flex-basis: 50%;
    }
}
.\[\&_option\:checked\]\:bg-orange-500 option:checked{
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.\[\&_option\:checked\]\:p-4 option:checked{
    padding: 1rem;
}
.\[\&_option\:checked\]\:text-white option:checked{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.\[\&_p\]\:space-x-4 p > :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)));
}
.\[\&_p\]\:text-sm p{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.\[\&_p\]\:leading-6 p{
    line-height: 1.5rem;
}
.\[\&_p\]\:leading-7 p{
    line-height: 1.75rem;
}
.\[\&_p\]\:text-gray-500 p{
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.last\:\[\&_p\]\:mt-4 p:last-child{
    margin-top: 1rem;
}
@media (min-width: 768px){
    .md\:\[\&_p\]\:text-base p{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .md\:\[\&_p\]\:leading-7 p{
        line-height: 1.75rem;
    }
}
@media (min-width: 1024px){
    .lg\:\[\&_p\]\:text-base p{
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
.\[\&_span\:last-child\]\:font-semibold span:last-child{
    font-weight: 600;
}
.\[\&_span\:last-child\]\:text-gray-800 span:last-child{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.\[\&_span\]\:text-xs span{
    font-size: 0.75rem;
    line-height: 1rem;
}
.\[\&_span\]\:leading-none span{
    line-height: 1;
}
.\[\&_span\]\:text-gray-600 span{
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
@media (min-width: 640px){
    .sm\:\[\&_span\]\:text-sm span{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
.\[\&_strong\]\:block strong{
    display: block;
}
.\[\&_strong\]\:text-xs strong{
    font-size: 0.75rem;
    line-height: 1rem;
}
.\[\&_strong\]\:leading-none strong{
    line-height: 1;
}
@media (min-width: 640px){
    .sm\:\[\&_strong\]\:text-sm strong{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
.\[\&_ul\]\:divide-y ul > :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));
}



