/** RESET RULES **/
.hidden {
    display: none !important;
}

.error-msg {
    position: absolute;
    font-size: 12px;
    max-width: 370px;
    color: red;
    bottom: -15px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.input-group {
    position: relative;
}

.input-group.company-group.hidden {
    display: none;
}


/** PROFILE RECOVER PASSWORD **/
.banner_v2.password-recovery-wrapper {
    height: 100vh;
}

footer > .space {
    display: none !important;
}

.password-recovery-wrapper .recover-form {
    position: relative;
    z-index: 10;
    width: 300px;
}

.password-recovery-wrapper h2 {
    margin-bottom: 40px;
    font-size: 26px;
}

.password-recovery-wrapper .input-group {
    margin-top: 30px;
}

.password-recovery-wrapper label {
    text-align: left;
    margin-bottom: 10px;
    font-weight: 700;
}

.password-recovery-wrapper input {
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 15px;
    background: #fff;
}

.password-recovery-wrapper input.error {
    border: 2px solid red;
}


.password-recovery-wrapper .password-recovery-button {
    margin-top: 40px;
    padding: 20px 30px;
    background: #8c7050;
    border-radius: 50px;
    cursor: pointer;
    transition: .2s;
    text-transform: uppercase;
    color: #fff;
}

.password-recovery-wrapper .password-recovery-button:hover {
    background: #69503a;
}

::-ms-input-placeholder {
    font-family: Gilroy;
}

::placeholder {
    font-family: Gilroy;
}

/** PROFILE CART **/

.profile-cart.discount {
    font-size: 20px !important;
    font-weight: 700 !important;
}

/** PROFILE LOGIN MENU **/
.nav-content > .right-menu {
    list-style-type: none;
    display: flex
}

.nav-content .profile-menu {
    margin-right: 20px
}

.nav-content .right-menu > a > .cart {
    display: flex
}

.nav-content .right-menu > a > .cart > .item-count {
    width: 17px;
    height: 16px;
    background: var(--yellow-accent);
    color: #333;
    position: absolute;
    margin-left: 17px;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-content .right-menu > a > .cart > .item-count[data-basket-quantity="0"] {
    background: var(--brown-accent);
    color: #fff
}

/*.profile-menu .user-profile .user-btn-text,*/
/*.profile-menu.online > .user-profile > .arrow-icon {*/
/*    display: none*/
/*}*/

.nav-content .profile-menu {
    margin-right: 20px;
}

.profile-menu > .user-profile {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative
}

.profile-menu > .user-profile > .user-btn-text {
    color: #7A6145;
    font-weight: bold;
    font-family: Gilroy
}

.profile-menu > .user-profile > .user-icon {
    margin-right: 5px
}

.profile-menu > .user-profile > .arrow-icon {
    margin-left: 10px;
    width: 10px;
    display: none
}

.profile-menu.online > .user-profile > .arrow-icon {
    display: inline-block
}

/*.profile-menu > .user-menu {*/
/*    position: absolute;*/
/*    background: white;*/
/*    top: 84px;*/
/*    padding: 10px;*/
/*    display: none;*/
/*    border-bottom-left-radius: 4px;*/
/*    border-bottom-right-radius: 4px;*/
/*}*/

.profile-menu > .user-menu {
    position: absolute;
    background: white;
    top: 64px; /* Adjust this value to be above the view */
    padding: 10px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: top 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
}

.profile-menu > .user-menu > ul {
    list-style: none;
    margin: 0;
    margin-left: -40px;
}

.profile-menu > .user-menu > ul > li {
    padding: 5px 10px;
}

.profile-menu > .user-menu > ul > li a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.profile-menu > .user-menu > ul > li a:hover {
    text-decoration: underline;
}

.profile-menu > .user-menu > ul > li > div {
    cursor: pointer;
    background: #d03636;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    margin-top: 10px;
    transition: .2s;
    text-align: center;
}

.profile-menu > .user-menu > ul > li > div:hover {
    background: #a82b2b;
}

.profile-menu.online.open > .user-menu {
    top: 84px; /* Adjust to the final desired position */
    opacity: 1;
    max-height: 500px; /* Set a value large enough to contain the menu */
}

main > .wrapper > .container > .content.order > .stage_2_form > .summary > .details .update_cart_quantity.use-plural[data-unitplural]::after {
    content: " " attr(data-unitplural);
}


/** PROFILE MENU MOBILE **/

/* Initial state - hidden off the right */
.mobile-profile-menu {
    background: #7a6145;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    z-index: 999;
    transition: right 0.3s ease;
}

.profile-menu-inner {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.profile-menu-inner li {
    text-decoration: none;
    list-style: none;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    cursor: pointer;
}

.profile-menu-inner li a {
    text-decoration: none;
    list-style: none;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}

.profile-menu-inner li a:hover,
.profile-menu-inner li:hover {
    color: var(--yellow-accent);
}

/* Visible state - slid in from the right */
.mobile-profile-menu.open {
    right: 0;
}

.profile-menu-close {
    position: absolute;
    top: 35px;
    right: 30px;
}

.close-burger span {
    display: block;
    width: 31px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: var(--yellow-accent);
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0;
    transition: transform .5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background .5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity .55s ease;
}

.close-burger span:nth-last-child(1) {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: var(--yellow-accent);
    top: -24px;
    right: -3px;
}

.close-burger span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.close-burger span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

/** INNER CONTAINER **/

.inner-container {
    max-width: 1440px;
    margin: 0 auto;
}

h2 {
    font-family: Gilroy;
    display: block;
    font-size: 22px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 700;
    unicode-bidi: isolate;
    margin-bottom: 14px;
}

.forms-container {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
}

.forms-container input.error {
    border: 2px solid red !important;
}

.my-form-data {
    flex: 2;
    margin-right: 50px;
}

.password-form-data {
    flex: 1;
}

.form-border {
    width: 100%;
    height: 1px;
    background: #F4F4F4;
    margin-bottom: 35px;
}

.flex-group .top-group .left-group,
.flex-group {
    display: flex;
    flex-direction: column;
}

.flex-group .top-group .right-group,
.flex-group .top-group {
    display: flex;
}

.flex-group .top-group .left-group {
    margin-right: 30px;
}

.flex-group .top-group .left-group,
.flex-group .top-group .right-group {
    flex: 1;
}

.flex-group .top-group .form-group {
    flex: 1;
    position: relative;
}


.form-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.last-group {
    margin-bottom: 0;
}

.form-group label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    font-family: "Gilroy";
    margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    box-sizing: border-box;
    background: #f4f4f4;
    font-size: 16px;
    font-weight: 500;
}

.checkbox-group {
    background: #f4f4f4;
    padding: 15px 15px;
    border-radius: 4px;
    margin-bottom: 0;
    margin-top: 29px;
}

.button-container {
    text-align: end;
    margin-top: 65px;
}

.submit-button {
    background-color: #8b5e3c;
    border: none;
    padding: 20px 40px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #FFD600;
    font-family: "Gilroy";
    margin-bottom: 70px;
}

.submit-button:hover {
    background-color: #70492c;
}

.submit-button.edit-user-profile-btn.success {
    background-color: #8bce37;
    color: #fff;
}

/** NOTIFY POPUP **/

.profile-notify-popup {
    text-align: center;
    padding: 0 10px 20px 10px;
}

.profile-notify-popup h1 {
    color: #333333;
    font-size: 24px;
}

.profile-notify-popup p {
    margin: 35px -5px;
}

.profile-notify-popup .profile-popup-close-btn {
    background: #F6F6F6;
    color: #7A6145;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    padding: 20px 40px;
    display: inline-block;
    transition: .2s;
}

.profile-notify-popup .profile-popup-close-btn:hover {
    background: #ececec;
    color: #7A6145;
}


/** INFO BOARD **/

.info-board {
    margin: 50px auto 0 auto;
    background: white;
    width: 60%;
    padding: 30px 40px;
    font-weight: 700;
    font-size: 18px;
    font-family: Gilroy;
    border-radius: 8px;
}

.import-button-container {
    text-align: center;
    margin-top: 65px;
}

.import-button {
    background-color: #8b5e3c;
    border: none;
    padding: 20px 40px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #FFD600;
    font-family: "Gilroy";
    margin-bottom: 70px;
}

.import-button:hover {
    background-color: #70492c;
}

.import-button img {
    margin-left: 10px;
    width: 8px;
}

/** MY ORDERS TABLE **/

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 90px 0;
}

.styled-table thead tr {
    text-align: left;
    color: #333;
}

.styled-table tbody tr {
    transition: .2s;
}

.styled-table th {
    background-color: #dbdbdb;
}

.styled-table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.styled-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}


.styled-table th,
.styled-table td {
    padding: 12px 15px;
    font-weight: 500;
}


.styled-table tbody tr:nth-of-type(even) {
    background-color: #ECECEC;
}

.styled-table tbody tr:hover {
    background: #fff !important;
}


.styled-table td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.styled-table td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.styled-table tbody tr.row-footer,
.styled-table tbody tr.row-footer:hover {
    background: none !important;
}


.styled-table a {
    font-weight: 500;
    font-size: 16px;
    color: #8C7050;
    display: flex;
}

.styled-table a img {
    width: 27px;
    height: 27px;
    vertical-align: middle;
    margin-left: 7px;
    position: relative;
    top: -2px;
}

/** DISCOUNT PROGRESS BAR **/
.profile-discount-progress-container .discount-content {
    background: #8C7050;
    border-radius: 4px;
    padding: 15px 15px 20px 15px;
    position: relative;
    margin: 0 auto;
    /*min-height: 180px;*/
}

.profile-discount-progress-container.big-progress-bar {
    height: 150px;
}

.profile-discount-progress-container.big-progress-bar .discount-content {
    margin-top: 60px;
    max-width: 970px;
    padding: 50px;
}

.profile-discount-progress-container .discount-top-badge {
    position: absolute;
    left: calc(50% - 25px);
    top: -25px;
    display: none;
}

.profile-discount-progress-container.big-progress-bar .discount-content .discount-top-badge {
    display: block;
}

.profile-discount-progress-container .profile-progress-text {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.profile-discount-progress-container.big-progress-bar .profile-progress-text {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
}

.profile-discount-progress-container .profile-progress-text .profile-progress-highlight {
    color: #FFD600;
}

.profile-discount-progress-container.big-progress-bar .profile-progress-text {
    text-align: center;
}

.profile-discount-progress-container .top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.profile-discount-progress-container .top-content .profile-progress-title {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
}


.profile-discount-progress-container.big-progress-bar .top-content {
    display: none;
}

.profile-discount-progress-container.small-progress-bar .progress-big-text {
    display: none;
}

.profile-discount-progress-container.big-progress-bar .progress-small-text {
    display: none;
}

.profile-discount-progress-container .middle-content {
    margin-bottom: 30px;
}

.profile-discount-progress-container .profile-bar-outline {
    position: relative;
    background: #fff;
    width: 100%;
    height: 8px;
    border-radius: 40px;
    box-shadow: 0px 3px 6px -3px rgb(0 0 0 / 65%);
}

.profile-discount-progress-container .profile-bar-inner {
    background: linear-gradient(90deg, #FFD600 0%, #FFB21D 100%);
    height: 100%;
    border-radius: 40px;
    width: 0; /* Start with 0 width */
    transition: width 2s ease-in-out; /* Smooth transition */
}

@keyframes growWidth {
    from {
        width: 0;
    }
    to {
        width: 100%; /* We'll control the final width using inline styles */
    }
}

.profile-discount-progress-container .profile-bar-inner-icon {
    position: absolute;
    top: -9px;
}

.profile-discount-progress-container .profile-bar-inner-icon.profile-bar-inner-3 {
    left: calc(50% - 13px);
}

.profile-discount-progress-container .profile-bar-inner-icon.profile-bar-inner-5 {
    left: calc(100% - 26px);
}

/*main > .wrapper > .container > .content.order > .stage_2_form > .top > .right > .discount.discount-access {*/
/*    grid-template-rows: auto 21px auto 73px 73px !important;*/
/*}*/

main > .wrapper > .container > .content.order > .stage_2_form > .top > .right > .discount {
    display: block !important;
}

main > .wrapper > .container > .content.order > .stage_2_form > .top > .right > .discount > .quantity-input-wrapper > .custom_arrow.custom_arrow_down {
    bottom: 18px !important;
}

main > .wrapper > .container > .content.order > .stage_2_form > .top > .right > .discount > .quantity-input-wrapper > .unit {
    bottom: 28px !important;
}

main > .wrapper > .container > .content.order > .stage_2_form > .top > .right > .discount > .alter-quantity label:last-child,
main > .wrapper > .container > .content.order > .stage_2_form > .top > .right > .discount > .alter-quantity input#yes-change-quantity {
    margin-top: 20px !important;
}

main > .wrapper > .container > .content.order > .stage_2_form > .top .discount.discount-access .divider {
    display: none;
}

main > .wrapper > .container > .content.order > .stage_2_form > .top > .right > .discount.no-access .profile-discount-progress-container.small-progress-bar {
    display: none;
}

/*** PROFILE LOADING BAR ***/
.profile-loading-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-loading-bar {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #ffd600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*** PROFILE SHOPPING CART ***/
.profile-cart-notes {
    margin-bottom: 20px !important;
}

.profile-cart-prices {
    display: flex;
}

.profile-previous-price {
    color: gray;
    text-decoration: line-through;
    margin-right: 10px;
}

.profile-final-price,
.profile-discount-cart .profile-text {
    font-weight: 700;
}

.profile-cart-border {
    height: 1px;
    background: #F4F4F4;
    width: 100%;
    display: block !important;
    margin: 15px 0 !important;
}

main > .wrapper > .container > .content.order > .stage_2_form > .summary > .content > .confirmation {
    height: fit-content !important;
    display: flex !important;
}

.profile-template-login-btn {
    background: #ffffff;
    display: inline;
    border-radius: 40px;
    padding: 15px 60px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    border: 2px solid #ffffff;
}

.profile-template-login-btn:hover {
    border: 2px solid #8b6f50;
    color: #8b6f50;
}

@media all and (max-width: 1500px) {
    .forms-container {
        padding: 0 20px;
    }

    .button-container {
        margin-left: 10px;
        margin-right: 20px;
    }

    .invoice-table {
        padding: 0 20px;
        padding-bottom: 10px;
    }
}

@media all and (max-width: 916px) {

    main > .wrapper > .container > .content.order > .stage_2_form > .summary > .content > .confirmation {
        flex-direction: column;
    }

    .profile-menu.online.open > .user-menu {
        display: none !important;
    }

    .styled-table {
        display: block;
        overflow-x: auto;
        margin: 50px 0;
    }

    .form-section {
        margin: 0;
        width: 100%;
    }

    .my-form-data {
        flex: initial;
    }

    .my-company-data {
        margin-bottom: 20px;
    }

    .flex-group .top-group .left-group {
        margin-right: 0;
    }

    .flex-group .top-group .right-group, .flex-group .top-group {
        display: flex;
        flex-direction: column;
    }

    .password-form-data {
        margin-top: 20px;
    }

    .button-container {
        text-align: center;
    }

    .info-board {
        width: 60%;
    }

    input[type="radio"]:checked:after {
        top: -21px !important;
    }

    .profile-discount-progress-container.big-progress-bar {
        height: initial;
        margin: 0 20px;
    }

    .nav-content .right-menu > a > .cart > .item-count {
        padding-top: 2px;
    }

    .profile-menu > .user-menu {
        display: none;
    }
}


/** CUSTOM CHECKBOX **/

/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Create a custom checkbox */
label.custom-checkbox {
    display: flex;
    position: relative;
    cursor: pointer;
    user-select: none;
    align-content: center;
    margin-bottom: 0;
}

.custom-checkbox .label-text {
    position: relative;
    left: 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: Gilroy;
    width: 100%;
}

.custom-checkbox .checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #8B6B4F; /* Brown background color */
    border-radius: 4px;
    position: relative;
}

.custom-checkbox .checkmark img {
    position: absolute;
    width: 12px; /* Adjust width as needed */
    height: 12px; /* Adjust height as needed */
    display: none;
}

.custom-checkbox .checkmark .left-tick {
    top: 8px;
    left: 1px;
    height: 8px;
}

.custom-checkbox .checkmark .right-tick {
    top: 6px;
    left: 6px;
    height: 10px;
    width: 13px;
}

/* Show the checkmark/indicator when checked */
.custom-checkbox input[type="checkbox"]:checked + .checkmark img {
    display: block;
}

/* Prevent the checkmark from shrinking on small screens */
@media (max-width: 916px) {
    .custom-checkbox .checkmark {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .custom-checkbox {
        flex-wrap: nowrap;
    }
}

/**** Pellet Profile ****/

.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 97, 69, 0.8); /* faded brown background */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1000;
}

.modal-wrapper {
    position: relative;
    max-width: 465px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    max-height: 90%;
}

.modal-content {
    padding: 20px 30px;
    background: #fff;
}

.modal {
    border-radius: 4px;
    width: 100%;
    position: relative;
    overflow-y: auto;
    max-height: 90vh; /* Adjusted to ensure the modal is within the viewport */
    margin-top: 20px; /* To avoid close button overlap */
    font-family: "Gilroy";
}


.modal .title {
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: "Gilroy";
    font-size: 24px;
}

/* width */
.modal::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.modal::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.modal::-webkit-scrollbar-thumb {
    background: #8c7050;
}

/* Handle on hover */
.modal::-webkit-scrollbar-thumb:hover {
    background: #775d41;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: -15px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 25px;
    padding: 0px 6px;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    font-weight: 100;
    font-family: math;
}

.modal-footer {
    background: #8C7050;
    padding: 10px 20px;
}

.modal-border {
    height: 1px;
    width: 100%;
    background: #F4F4F4;
    display: inline-block;

}

.modal-border.top {
    margin-top: 20px;
    margin-bottom: 5px;
}

.modal-border.middle {
    margin-top: 30px;
    margin-bottom: 10px;
}

.modal-border.bottom {
    margin-bottom: 5px;
}

@media all and (max-width: 916px) {
    .modal-wrapper {
        width: 90%;
    }

    .modal-content {
        padding: 20px 20px;
    }

    .modal {
        border-radius: 4px;
        width: 100%;
        position: relative;
        overflow-y: auto;
        max-height: 80vh;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .close-btn {
        top: -19px !important;
        width: 30px;
        height: 30px;
        padding: 0;
    }
}

.tabs {
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
}

.tab {
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    background: #f0f0f0;
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.tab.active {
    background: #fff;
}

.tab-1 {
    flex: 1;
}

.tab-2 {
    flex: 2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.modal .modal-form {
    display: flex;
    flex-direction: column;
}

.modal label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}


.modal .modal-form .modal-input {
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 4px;
    background: #F4F4F4;
}

.modal .modal-form .modal-input:hover {
    border: 2px solid #e8e8e8;
}

.modal .modal-form .modal-input:focus {
    border: 2px solid red;
}

.modal .error-msg {
    color: red;
}

.modal .modal-form .modal-input.error {
    border: 2px solid red !important;
}

.radio-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
}

.radio-group input {
    margin-right: 5px;
}

.switch-option {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #000;
    text-align: center;
    font-weight: 700;
}

.switch-option .switch-tab {
    color: #8C7050;
    text-decoration: underline;
    cursor: pointer;
}

.modal .bottom-group {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal .remember-me {
    display: flex;
    align-items: center;
}

.modal .remember-me input {
    margin-right: 5px;
}

.modal .forgot-password {
    color: #8C7050;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    transition: .2s;
}

.modal .forgot-password:hover {
    color: #725b41;
}

.submit-btn {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.submit-btn:hover {
    background: #ffc107;
}

.modal-footer .discount {
    color: #fff;
    text-align: center;
}

.modal-footer .discount .info {
    font-size: 15px;
    font-weight: 700;
}

.modal-footer .discount span {
    font-size: 16px;
    font-weight: 700;
    color: #ffc107;
}

/** BANNER **/

.profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(140 112 80 / 84%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.profile-banner {
    position: relative;
    border-radius: 8px;
    /* padding: 60px 0; */
    max-width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 4px solid rgb(239 239 239);
    background: linear-gradient(0deg, #584432, #54402d), url(../img/web/profile-images/banner_bg_image.png);
    background-blend-mode: overlay;
    background-size: contain;
    background-repeat: no-repeat;
}

.profile-banner img {
    max-width: 100%;
    border-radius: 10px;
}

.profile-banner .banner-content {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: end;
    width: 450px;
}

.profile-banner .text {
    color: white;
    padding: 0 10px;
    width: 270px;
    text-align: left;
}

.profile-banner .text p {
    font-size: 24px;
    font-weight: 700;

}

.profile-banner .text p strong {
    color: #FDD42DFF;
    font-size: 37px;
}

.profile-banner .close-btn {
    position: absolute;
    top: -14px;
    right: -12px;
    font-size: 14px;
    cursor: pointer;
    color: white;
    padding: 3px 6px;
}

@media (max-width: 916px) {

    .tab {
        padding: 15px 0;
        font-size: 15px;
    }

    .profile-banner .banner-content {
        width: 100%;
    }

    .profile-banner .text p {
        padding-right: 20px;
    }

    .profile-banner .text {
        width: 100%;
        padding: 0px;
        text-shadow: 1px 1px 2px black;
    }

    .profile-banner {
        background-size: cover;
    }

    .profile-banner .close-btn {
        position: absolute;
        top: -16px;
        right: -16px;
        font-size: 14px;
        cursor: pointer;
        color: white;
        padding: 0px 0px;
    }
}

/** CUSTOM CHECKBOX - bordered **/

/* Hide the default checkbox */
.custom-checkbox-bordered input[type="checkbox"] {
    display: none;
}

/* Create a custom checkbox */
label.custom-checkbox-bordered {
    display: flex;
    position: relative;
    cursor: pointer;
    user-select: none;
    align-content: center;
    margin-bottom: 0;
    margin-top: 0;
}

.custom-checkbox-bordered .label-text {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: Gilroy;
}

.custom-checkbox-bordered .checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #8C7050;
    border-radius: 4px;
    position: relative;
}

.custom-checkbox-bordered .checkmark img {
    position: absolute;
    width: 12px; /* Adjust width as needed */
    height: 12px; /* Adjust height as needed */
    display: none;
}

.custom-checkbox-bordered .checkmark .left-tick {
    top: 8px;
    left: 1px;
    height: 8px;
}

.custom-checkbox-bordered .checkmark .right-tick {
    top: 6px;
    left: 6px;
    height: 10px;
    width: 13px;
}

/* Show the checkmark/indicator when checked */
.custom-checkbox-bordered input[type="checkbox"]:checked + .checkmark {
    background: #8C7050;
}

/* Show the checkmark/indicator when checked */
.custom-checkbox-bordered input[type="checkbox"]:checked + .checkmark img {
    display: block;
}

/* Prevent the checkmark from shrinking on small screens */
@media (max-width: 916px) {
    .custom-checkbox-bordered .checkmark {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .custom-checkbox-bordered {
        flex-wrap: nowrap;
    }

    .tabs {
        margin: 0px;
    }

    .profile-menu.online > .user-profile > .arrow-icon,
    .profile-menu > .user-profile > .user-btn-text {
        display: none;
    }
}

/** CUSTOM RADIOBUTTON **/

.profile-radio-container {
    display: flex;
    align-items: center;
}

.profile-radio-container label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 20px;
    position: relative;
}

.profile-radio-container input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #8C7050;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FFD600;
    display: none;
}

.profile-radio-container input[type="radio"]:checked + .radio-custom::after {
    display: block;
}

/*** REGISTER BANNER ***/

.register-banner-container {
    max-width: 1200px;
    margin: 60px auto -60px auto;
}

.register-banner {
    position: relative;
    margin: 40px;
    border-radius: 8px;
}

.close-banner-btn {
    position: absolute;
    top: -17px;
    right: -17px;
    cursor: pointer;
}

.close-banner-btn .close-icon {
    width: 35px;
}

.banner-link {
    color: #8C7050;
    text-decoration: underline;
    cursor: pointer;
}

.register-banner .banner-sides {
    display: flex;
    font-weight: 700;
}

.banner-yellow-text {
    font-size: 18px;
    color: #FFCB00;
}

.register-banner .left-side {
    padding: 15px;
    background: #ffd600;
    flex: 2;
    font-size: 18px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    display: flex;
    align-items: center;
}

.register-banner .right-side {
    padding: 15px;
    background: #8b6f50;
    flex: 1;
    font-size: 15px;
    color: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.main-page.register-banner-container {
    padding-top: 50px;
    background: #f4f4f4;
    position: relative;
    display: flex;
    justify-content: center;
    max-width: unset;
    margin: 0;
}

.main-page.register-banner-container .register-banner {
    position: relative;
    margin: 0 40px;
    border-radius: 8px;
    max-width: 1200px;
}

@media (max-width: 916px) {
    .register-banner .banner-sides {
        flex-direction: column;
    }

    .register-banner .left-side {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0px;
    }

    .register-banner .right-side {
        border-top-right-radius: 0px;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
}
