body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif !important;
}

:root {
    --interbox-green: #0F6F4C;
    --interbox-black: #2E3D38;
    --interbox-light-green: #EDF4F1;
    --interbox-grey: #B8B5B5;
    --interbox-dark-grey: #88888C;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 4px;
    background: #B8B5B5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #3D7250;
    border-radius: 4px;
}

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

.font-weight-medium {
    font-weight: 500;
}

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

.w-fit {
    width: fit-content;
}

/*@font-face {*/
/*    font-family: 'Material Symbols Outlined';*/
/*    font-style: normal;*/
/*    font-weight: 400;*/
/*    src: url('/fonts/MaterialSymbolsOutlined/MaterialSymbolsOutlined-VariableFont_FILL,GRAD,opsz,wght.ttf') format('truetype');*/
/*    font-display: block; !* This ensures text stays invisible until the font is loaded *!*/
/*}*/

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    font-family: 'Material Symbols Outlined';
    font-style: normal;
}

.material-symbols-outlined-fill {
    font-variation-settings: 'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    font-family: 'Material Symbols Outlined';
    font-style: normal;
}

/* Start Text */
.max-lines-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.max-lines-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.max-lines-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.heading-2 {
    line-height: 40px; /* 125% */
    font-size: 32px;
    font-weight: 700;
}

.heading-3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 32px; /* 123.077% */
}

.subheading {
    font-size: 18px;
    line-height: 28px; /* 155.556% */
    margin-bottom: 0;
}

.title-semi-bold {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px; /* 140% */
    margin-bottom: 0;
}

.small-text {
    font-size: 14px;
    line-height: 16px; /* 114.286% */
    margin-bottom: 0;
}

.divider {
    width: 100%;
    background: #D4D4D8;
    height: 1px;
}

.cursor-pointer {
    cursor: pointer;
}

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

.text-interbox-green {
    color: var(--interbox-green, #0F6F4C);
}

.text-black {
    color: black;
}

.text-red-600 {
    color: #DC2626;
}

.text-primary-green, .text-primary-green:hover {
    color: #3D7250;
}

.text-gray-400 {
    color: #A1A1AA;
}

.text-gray-300 {
    color: #D4D4D8;
}

.text-neutral-700 {
    color: #3F3F46;
}

.text-neutral-400 {
    color: #A1A1AA;
}

.hover-text-container {
    position: relative;
    display: inline-block;
    height: 100%;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
}

.hover-text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    display: block;
}

.hover-text-item:nth-child(2) {
    transform: translateY(100%);
}

.hover-text-parent:hover .hover-text-item:nth-child(1) {
    transform: translateY(-100%);
}

.hover-text-parent:hover .hover-text-item:nth-child(2) {
    transform: translateY(0);
}

@media screen and (max-width: 576px) {
    .heading-2 {
        font-size: 24px;
        line-height: 32px; /* 133.333% */
    }

    .heading-3 {
        font-size: 18px;
        line-height: 24px; /* 133.333% */
    }

    .title-semi-bold {
        font-size: 16px;
        line-height: 24px; /* 133.333% */
    }

    .subheading {
        font-size: 14px;
        line-height: 20px; /* 142.857% */
    }

    .regular-text,
    .small-text {
        font-size: 12px;
        line-height: 16px; /* 133.333% */
    }

}

/* End Text */

.container-fluid {
    padding: 40px 60px;
}

.isMobileView {
    display: none;
}

body > div.container-interbox {
    margin-left: auto;
    margin-right: auto;
    /*max-width: 1500px;*/
    padding-top: 88px;
}

a,
button {
    transition: all 400ms;
}

a.green__active,
button.green__active {
    background-color: #0F6F4C;
    transition: all 400ms;
}

a.green__active:hover,
button.green__active:hover {
    background: rgba(15, 111, 76, 0.7);
}

a.outline__green,
button.outline__green {
    font-weight: 600;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

a.outline__green:hover,
button.outline__green:hover {
    background-color: #0F6F4C;
}

.navbar {
    border-radius: 25px;
}

.navbar .navbar-brand {
    padding: 0;
}

.navbar .navbar-collapse .button__sign-in {
    padding-right: 0;
    white-space: nowrap;
}

.navbar .navbar-collapse .button__sign-in i {
    margin-left: 10px;
}

.navbar .navbar-collapse .button__sign-in a {
    min-width: 120px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar .navbar-collapse #form-search {
    margin-right: 16px;
}

.navbar .navbar-collapse .action-bar {
    display: flex;
    align-items: center;
}

.navbar .navbar-collapse .action-bar .icon_button {
    margin-right: 16px;
    display: flex;
    align-items: center;
}

.navbar .navbar-collapse .action-bar .icon_button > div + div {
    margin-left: 16px;
}

.navbar .navbar-collapse .action-bar a.link__icon {
    position: relative;
    color: inherit;
}

.navbar .navbar-collapse .action-bar a.link__icon i {
    cursor: pointer;
}

.navbar .navbar-collapse .action-bar a.link__icon i.icon__hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -o-object-fit: contain;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.2s;
    transition: all 300ms;
}

.navbar .navbar-collapse .action-bar a.link__icon:hover {
    color: #0F6F4C;
}

.navbar .navbar-collapse .action-bar a.link__icon .bi-heart-fill.icon__hover:hover {
    color: red;
}

.navbar .navbar-collapse .action-bar a.link__icon:hover i.icon__hover {
    opacity: 1;
}

.navbar .navbar-collapse .action-bar .button__sign-in a {
    background-color: #050505;
    transition: all 300ms;
}

.navbar .navbar-collapse .action-bar .button__sign-in a:hover {
    background-color: #343a40;
}

.navbar .navbar-collapse .action-bar__logged div {
    margin: 0 16px;
    height: 38px;
    width: 1px;
    background-color: #dedede;
}

.navbar-toggler {
    padding: 4px 6px;
    background-color: #dedede;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler .navbar-toggler-icon {
    width: 20px;
    height: 20px;
}

.logged_wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.logged_wrapper .user {
    border: 4px solid #0F6F4C;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logged_wrapper > a {
    padding: 0 16px 0 32px;
    margin-left: -20px;
    height: 38px;
    font-size: 12px;
    color: white;
    border-radius: 30px;
    background: #0F6F4C;
    display: inline-flex;
    align-items: center;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    text-decoration: none;
    transition: all 300ms;
}

.logged_wrapper > a:hover {
    background: rgba(15, 111, 76, 0.8);
}

.logged_wrapper > a span {
    white-space: nowrap;
}

.logged_wrapper > a i {
    margin-left: 16px;
    margin-top: 4px;
}

#modalProfile .modal-dialog,
#modalNotif .modal-dialog,
.modal-profile .modal-dialog {
    margin: 0;
    max-width: 390px;
    position: absolute;
    top: 110px;
    right: 15%;
}

#modalProfile .modal-dialog .modal-content,
#modalNotif .modal-dialog .modal-content,
.modal-profile .modal-dialog .modal-content {
    border-radius: 20px;
}

.modal-profile .modal-dialog {
    position: relative;
    top: 0;
    right: 0;
}

.modal-profile .modal-dialog .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-profile .modal-dialog .modal-content {
    border: 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.modal-profile .menu p {
    line-height: 16px;
    font-weight: 600;
    size: 16px;
}

.modal-profile .menu a {
    color: #646464;
    text-decoration: none;
}

.modal-profile .menu a:hover {
    color: #0F6F4C;
}

#modalProfile .bi-caret-up-fill:before {
    display: none;
}

.dropdown__user .dropdown-toggle:after {
    display: none;
}

.dropdown__user .dropdown-menu {
    padding: 0;
    border: 0;
}

.modal-profile .modal-dialog .modal-content .box__user,
#modalProfile .modal-dialog .modal-content .box__user {
    padding: 8px 14px;
    width: 360px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 106px 1fr;
    gap: 20px;
    align-items: center;
}

.modal-profile .modal-dialog .modal-content .box__user .photo-box .photo,
#modalProfile .modal-dialog .modal-content .box__user .photo-box .photo {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    border: 1px solid #0F6F4C;
    padding: 3px;
    background-color: #ffffff;
}

.modal-profile .modal-dialog .modal-content .box__user .photo-box .photo div,
#modalProfile .modal-dialog .modal-content .box__user .photo-box .photo div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.modal-profile .modal-dialog .modal-content .box__user .info,
#modalProfile .modal-dialog .modal-content .box__user .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-profile .modal-dialog .modal-content .box__user .info > div,
#modalProfile .modal-dialog .modal-content .box__user .info > div {
    padding-top: 12px;
}

.modal-profile .modal-dialog .modal-content .box__user .info > div h3,
#modalProfile .modal-dialog .modal-content .box__user .info > div h3 {
    margin-bottom: 0;
    color: #000000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-transform: capitalize;
}

.modal-profile .modal-dialog .modal-content .box__user .info > div small,
#modalProfile .modal-dialog .modal-content .box__user .info > div small {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #B8B5B5;
    max-width: calc(100% - 32px);
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.modal-profile .modal-dialog .modal-content .box__user .info > small,
#modalProfile .modal-dialog .modal-content .box__user .info > small {
    padding-bottom: 6px;
    font-size: 10px;
    font-weight: 500;
    color: #B8B5B5;
}

#modalNotif .modal-dialog .modal-content {
    border-top-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#modalNotif .modal-dialog .modal-content .modal-body {
    padding: 0;
}

#modalNotif .modal-dialog .modal-content .modal-body .modal-title {
    padding: 16px;
    border-bottom: 1px solid #dedede;
}

#modalNotif .modal-dialog .modal-content .modal-body .notification__list {
    padding: 16px;
    margin: 0;
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
}

#modalNotif .modal-dialog .modal-content .modal-body .notification__list li {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
}

#modalNotif .modal-dialog .modal-content .modal-body .notification__list li .photo {
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
}

#modalNotif .modal-dialog .modal-content .modal-body .notification__list li .info {
    font-size: 12px;
    line-height: 18px;
}

#modalNotif .modal-dialog .modal-content .modal-body .notification__list li .info span {
    color: #0F6F4C;
}

#modalNotif .modal-dialog .modal-content .modal-body .notification__list li .info p {
    margin: 0;
    font-size: 8px;
    color: #B8B5B5;
    font-weight: 400;
}

#modalNotif .modal-dialog .modal-content .modal-body .notification__list li + li {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #dedede;
}

#modalBookSurvey.modal .modal-dialog {
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

#modalBookSurvey.modal {
    padding: 0 !important;
}

.row.product__list.product__list_welcome, .row.product__list.product__list_search {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.row.product__list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 255px);
    gap: 30px;
}

.row.product__list .col-lg-3, .row.product__list.product__list_search .col-lg-3
.row.product__list .col-md-6, .row.product__list.product__list_search .col-md-6 {
    padding: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

.row.product__list .card {
    width: 100%;
    border-radius: 37px;
    border-top: none;
    border-top: none;
}

.row.product__list .card h3 {
    z-index: 1;
    position: absolute;
    right: 24px;
    top: 24px;
}

.row.product__list .card .product__image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 37px;
    border-top-right-radius: 37px;
}

.row.product__list .card p {
    margin: 0;
    padding: 16px;
}

.row.product__list .card p.price {
    color: #0F6F4C;
    font-size: 14px;
    font-weight: 700;
}

.row.product__list .card .user__info {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.row.product__list .card .user__info a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row.product__list .card .user__info .username {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
}

.row.product__list .card .user__info .username figure {
    margin: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.row.product__list .card .user__info .username > div {
    display: flex;
    flex-direction: column;
}

.row.product__list .card .user__info .username > div span {
    color: #646464;
    font-size: 16px;
    font-weight: 700;
}

.row.product__list .card .user__info .username > div small {
    font-size: 10px;
    font-weight: 400;
    color: #B8B5B5;
}

.row.product__list .card .user__info .rating {
    display: flex;
    flex-direction: column;
}

.row.product__list .card .user__info .rating span {
    margin-top: 6px;
    font-size: 12px;
    color: #B8B5B5;
    line-height: 1;
}

.swal2-styled.swal2-confirm {
    background-color: #0F6F4C !important;
}

.isMobileUser {
    display: none;
}

@media (max-width: 1200px) {
    .row.product__list.product__list_welcome, .row.product__list.product__list_search {
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    body > div.container-interbox {
        padding-top: 76px;
    }

    .row.product__list.product__list_welcome {
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .navbar {
        border-radius: 16px;
    }

    .navbar .navbar-collapse.collapse.show {
        margin-top: 16px;
    }

    .navbar .navbar-collapse.collapse.show .button__sign-in {
        padding: 0;
    }

    .navbar .navbar-collapse #form-search {
        margin-right: 0;
    }

    .navbar .navbar-collapse .action-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .navbar .navbar-collapse .action-bar .button__sign-in {
        display: flex;
        justify-content: flex-end;
    }

    .navbar .navbar-collapse .action-bar .icon_button > div + div {
        margin-left: 16px;
    }

    .navbar .navbar-collapse .action-bar__logged div {
        display: none;
    }

    .navbar .navbar-collapse .action-bar__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-template-columns: unset;
    }

    .navbar .navbar-collapse form + div {
        margin-top: 16px;
    }

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

    .logged_wrapper__customer a {
        text-decoration: none;
    }

    .logged_wrapper__customer a:hover {
        color: white;
        text-decoration: none;
    }

    .row.product__list .card .product__image {
        height: 200px;
    }

    .modal-profile .modal-dialog,
    #modalProfile .modal-dialog,
    #modalNotif .modal-dialog {
        width: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .isDesktopUser {
        display: none;
    }

    .isMobileUser {
        display: inline-flex;
    }
}

@media (max-width: 859.98px) {
    .row.product__list.product__list_welcome {
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .row.product__list {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .row.product__list .col-md-6, .row.product__list.product__list_search .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .isMobileView {
        display: block;
    }

    .isDesktopView {
        display: none;
    }

    .row.product__list.product__list_welcome {
        margin: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .row.product__list .card {
        border-radius: 16px;
    }

    .row.product__list .card .user__info .username {
        align-items: flex-start;
    }

    .row.product__list .card h3 {
        font-size: 20px;
        right: 16px;
        top: 16px;
    }

    .row.product__list .card .product__image {
        height: 240px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    #modalProfile .modal-dialog .modal-content .box__user,
    .modal-profile .modal-dialog .modal-content .box__user {
        width: 100%;
        grid-template-columns: 80px 1fr;
        gap: 14px;
    }

    #modalProfile .modal-dialog .modal-content .box__user .photo-box .photo,
    .modal-profile .modal-dialog .modal-content .box__user .photo-box .photo {
        width: 80px;
        height: 80px;
    }

    #modalProfile .modal-dialog .modal-content .arrow-up,
    .modal-profile .modal-dialog .modal-content .arrow-up {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .container-fluid {
        padding: 40px 24px;
    }

    body > div.container-interbox {
        padding-top: 52px;
    }

    .row.product__list.product__list_welcome, .row.product__list.product__list_search {
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .row.product__list .joinned-text {
        display: none;
    }

    .row.product__list .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row.product__list.product__list_search .col-sm-6 {
        flex: 0 0 100%;
        max-width: 175px;
    }

    .row.product__list .card .user__info .card__name {
        max-width: 150px;
    }

    .row.product__list .card p.price {
        padding: 8px;
        font-size: 12px;
        min-height: 65px;
    }

    .row.product__list .card .product__image {
        height: 200px;
    }

    .row.product__list .card .user__info {
        padding: 8px;
    }

    .row.product__list .card .user__info .username {
        grid-template-columns: 40px 1fr;
    }

    .row.product__list .card .user__info .username figure {
        width: 32px;
        height: 32px;
    }

    .row.product__list .card .user__info .joined__card {
        display: none;
    }

    .row.product__list .card .user__info .username #card__profile_detail_screen {
        max-width: 100px;
        font-size: 12px;
        line-height: 18px;
    }

    .row.product__list .card .user__info .username #card__home_screen {
        max-width: 70px;
        font-size: 12px;
        line-height: 18px;
    }

    .row.product__list .card .user__info .rating span {
        font-size: 12px;
    }

    #modalProfile .modal-dialog,
    #modalNotif .modal-dialog,
    .modal-profile .modal-dialog {
        max-width: 100%;
    }
}

/* START loading overlay */
.loadingoverlay {
    justify-content: center !important;
}

.loadingoverlay .loadingoverlay_element.loadingoverlay_fa .fa {
    font-size: 80px;
}

.loadingoverlay .loadingoverlay_element.loadingoverlay_text {
    font-size: 16px !important;
    margin-top: 24px;
}

/* END loading overlay */


/* START */
#form-search {
    padding: 9px 3px 9px 40px;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}

.designer img {
    position: absolute;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.designer img:hover {
    opacity: 0;
    cursor: pointer;
}

.customer img {
    position: absolute;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.customer img:hover {
    opacity: 0;
    cursor: pointer;
}

.loading {
    z-index: 20;
    position: absolute;
    top: 0;
    left: -5px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.loading-content {
    position: absolute;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 40%;
    left: 50%;
    animation: spin 2s linear infinite;
}

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

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

#alert-custom {
    z-index: 4;
    position: fixed;
    top: 0;
    width: 100%;
    background: #0F6F4C !important;
    color: white !important;
    display: flex;
    justify-content: space-between;
    border-radius: 0;
    border: 0;
    gap: 8px;
}

.alert-action a {
    color: white;
    text-decoration: underline;
}

@media screen and (max-width: 576px) {
    #alert-custom {
        font-size: 12px;
    }
}

/* END */

/* START COLORS */

.bg-primary-green {
    background: #3D7250;
}

.bg-yellow-400 {
    background: #FBBF24;
}

.bg-red-400 {
    background: #f87171;
}

.bg-gray-400 {
    background: #a1a1aa;
}

.bg-extended-blue-100 {
    background: #DBEAFE;
}

.bg-extended-blue-600 {
    background: #2563EB;
}

/* END COLORS */

/* START Border */
.border-1 {
    border-width: 1px;
    border-style: solid;
}

.border-primary-green {
    border-color: #3D7250;
}

/* END Border */

/* START BUTTONS */

.rounded-btn {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.rounded-btn.primary {
    border: none;
    width: fit-content;
    color: white;
    background: #3D7250;
}

.rounded-btn.primary:hover {
    color: white;
}

/* END BUTTONS */

/* START Badge */
.status-badge {
    height: fit-content;
    font-size: 12px;
    font-weight: 500;
    border-radius: 99px;
    padding: 4px 10px;
}

.status-badge.success {
    background: #D1FAE5;
    color: #059669;
}

.status-badge.warning {
    color: #F59E0B;
    background: #FEF3C7;
}

.status-badge.secondary {
    background: #E4E4E7;
    color: #52525B;
}

.status-badge.danger {
    background: #FEE2E2;
    color: #DC2626;
}

.status-badge.info {
    background: #DBEAFE;
    color: #2563EB;
}

@media screen and (max-width: 576px) {
    .status-badge {
        font-size: 10px;
    }
}

/* END Badge */

/* START Gap */

.gap-24 {
    gap: 24px;
}

.gap-16 {
    gap: 16px;
}

.gap-12 {
    gap: 12px;
}

.gap-8 {
    gap: 8px;
}

.gap-4 {
    gap: 4px;
}

@media screen and (min-width: 576px) {
    .gap-sm-12 {
        gap: 12px;
    }
}

@media screen and (min-width: 992px) {
    .gap-lg-24 {
        gap: 24px;
    }
}

/* END Gap */

/* START Width */
@media screen and (min-width: 992px) {
    .w-lg-100 {
        width: 100% !important;
    }
}

/* END Width */

/* START Font size */

.text-body-sm {
    font-size: 14px;
    line-height: 20px;
}

.text-body-md {
    font-size: 16px;
    line-height: 24px;
}

.text-body-lg {
    font-size: 18px;
    line-height: 28px;
}

.text-caption-lg {
    font-size: 12px;
    line-height: 18px;
}

.text-caption-md {
    font-size: 10px;
    line-height: 14px;
}

.text-caption-sm {
    font-size: 8px;
    line-height: 12px;
}

@media screen and (min-width: 576px) {
    .text-body-sm-sm {
        font-size: 14px;
        line-height: 20px;
    }

    .text-body-sm-md {
        font-size: 16px;
        line-height: 24px;
    }

    .text-body-sm-lg {
        font-size: 18px;
        line-height: 28px;
    }

    .text-caption-sm-lg {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (min-width: 992px) {
    .text-body-lg-sm {
        font-size: 14px;
        line-height: 20px;
    }

    .text-body-lg-md {
        font-size: 16px;
        line-height: 24px;
    }

    .text-body-lg-lg {
        font-size: 18px;
        line-height: 28px;
    }

    .text-caption-lg-lg {
        font-size: 12px;
        line-height: 18px;
    }

    .text-caption-lg-md {
        font-size: 10px;
        line-height: 14px;
    }

    .text-caption-lg-sm {
        font-size: 8px;
        line-height: 12px;
    }
}

/* END Font size */

/* START Animation */
.black-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #09090B;
    z-index: 9999;
    transform: translateY(0);
    animation: curtainUp 1.5s cubic-bezier(0, 0.73, 0.65, 0.95) forwards;
}

@keyframes curtainUp {
    0% {
        transform: translateY(0);
    }

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

.container-blocker-animation {
    height: fit-content;
    overflow: hidden;
    width: 100%;
    display: flex;
}

@keyframes slideUpReveal {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

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

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

@keyframes expandWidth {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}
/* END Animation */
