.border-red {

    border: #ff0000 1px solid !important;

}



.google-map__iframe {

    width: 100%;

    height: 300px;

    border: 0;

}



.google-map__title {

    margin-bottom: 15px;

    font-size: 18px;

    font-weight: bold;

}



.google-map {

    margin-bottom: -10px;

}



.cart__indicator__counter {

    position: absolute;

    top: 8px;

    /* Poziționare verticală */

    left: 20px;

    /* Poziționare orizontală */

    background-color: #ff4d4f;

    /* Culoare pentru indicator */

    color: #fff;

    /* Culoarea textului */

    width: 22px;

    /* Dimensiunea indicatorului */

    height: 22px;

    /* Dimensiunea indicatorului */

    font-size: 12px;

    /* Dimensiunea fontului */

    font-weight: bold;

    /* Grosimea textului */

    line-height: 22px;

    /* Centrarea textului */

    text-align: center;

    /* Centrare pe orizontală */

    border-radius: 50%;

    /* Formă rotundă */

    display: flex;

    /* Flexbox pentru aliniere */

    align-items: center;

    /* Aliniere verticală */

    justify-content: center;

    /* Aliniere orizontală */

    z-index: 10;

    /* Prioritate față de alte elemente */

}





.mobile-cart__box {

    display: inline-block;

    position: relative;

    margin-right: 15px;

}



.mobile-nav__toggler {

    display: inline-block;

}



@media (max-width: 768px) {

    .mobile-cart__box {

        display: inline-block;

    }



    .cart__indicator__counter {

        position: absolute;

        top: -8px;

        right: -8px;

        background-color: #ff4d4f;

        color: #fff;

        width: 18px;

        height: 18px;

        font-size: 10px;

        font-weight: bold;

        line-height: 18px;

        text-align: center;

        border-radius: 50%;

    }

}



@media (min-width: 768px) {

    .mobile-cart__box {

        display: none;

    }

}



@media only screen and (min-width: 1200px) and (max-width: 1349px) {

    .main-menu__cart-box {

        display: block;

    }

}





.step-by {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    padding: .9rem 0

}



.step-by .title.title-step {

    margin: 0 1.4rem 0 1rem;

    font-size: 1.3rem;

    text-transform: uppercase;

    font-weight: 700;

    color: #666;

    letter-spacing: -0.5px;

    padding: .4rem 0

}



.step-by .title.title-step.visited {

    color: #222

}



.step-by .title.title-step.visited~.active::before {

    color: #222

}



.step-by .title.title-step.active {

    color: #cb1818;

}



.step-by .title.title-step:first-child {

    margin-left: 0

}



.step-by .title.title-step:first-child::before {

    display: none

}



.step-by .title.title-step:last-child {

    margin-right: 0

}



.mtm-20 {

    margin-top: -20px !important;

}



/* Container general */

.custom-checkout-payment {

    background-color: #f9f9f9;

    border-radius: 10px;

    padding: 30px;

    margin-bottom: 20px;

}



/* Fiecare opțiune de plată */

.custom-checkout-payment-item {

    margin-bottom: 20px;

}



/* Ascundem radio-ul nativ */

.custom-checkout-radio {

    display: none;

}



/* Label stilizat pentru opțiuni */

.custom-checkout-label {

    display: flex;

    align-items: center;

    font-size: 24px;

    line-height: 1.5;

    font-weight: 500;

    cursor: pointer;

    text-transform: uppercase;

    position: relative;

    padding-left: 30px;

    color: #333;

    font-family: var(--tedlife-font-two);

}



/* Cerc gol înainte de text */

.custom-checkout-label::before {

    content: '';

    width: 20px;

    height: 20px;

    border: 2px solid #ccc;

    border-radius: 50%;

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    transition: all 0.3s ease;

}



/* Cerc umplut când este selectat */

.custom-checkout-radio:checked+.custom-checkout-label::before {

    background-color: #ffa500;

    /* Culoarea portocalie */

    border-color: #ffa500;

    content: '\f00c';

    /* Iconă de checkmark */

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-family: 'Font Awesome 5 Pro';

    font-size: 14px;

}



/* Conținut ascuns implicit */

.custom-checkout-content {

    display: none;

    margin-top: 10px;

    padding: 10px;

    border: 1px solid #eee;

    border-radius: 5px;

    background-color: #fff;

    font-size: 14px;

    color: #666;

}



/* Conținut afișat când radio-ul este selectat */

.custom-checkout-radio:checked~.custom-checkout-content {

    display: block;

}



.validation-advice-ajax {

    color: #ff0000;

    font-size: 12px;

}



.nice-select.wide .list {

    max-height: 200px;

    overflow-y: auto;



}



.nice-select-search-box {

    padding: 5px 10px;

    border-bottom: 1px solid #ddd;

    background-color: #f9f9f9;

    width: 100%;

    box-sizing: border-box;

}



.nice-select-search-box input {

    width: 100%;

    padding: 8px;

    border: 1px solid #ddd;

    border-radius: 4px;

    font-size: 14px;

    outline: none;

    box-sizing: border-box;

}



.nice-select ul {

    max-height: 300px;

    overflow-y: auto;

}



.nice-select ul li.nice-select-search-box {

    pointer-events: none;

}



.nice-select ul li.nice-select-search-box input {

    pointer-events: auto;

}



.custom-radio-group {

    display: flex;

    gap: 20px;

    /* Spațiu între opțiuni */

    align-items: center;

}



.custom-radio {

    display: none;

    /* Ascunde radio button-ul implicit */

}



.custom-radio-label {

    position: relative;

    padding-left: 30px;

    /* Spațiu pentru cercul radio */

    cursor: pointer;

    font-size: 16px;

    color: var(--tedlife-black);

    /* text-transform: uppercase; */

    font-weight: 500;

}



.custom-radio-label::before {

    content: '';

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);

    width: 20px;

    height: 20px;

    background-color: #fff;

    border: 2px solid rgba(var(--tedlife-gray-rgb), 0.10);

    border-radius: 50%;

    transition: all 0.3s ease;

}



.custom-radio:checked+.custom-radio-label::before {

    background-color: var(--tedlife-base);

    border-color: var(--tedlife-base);

    content: '\f00c';

    /* Adaugă checkmark */

    font-family: 'Font Awesome 5 Pro';

    font-size: 12px;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

}



.minipopup-area {

    position: fixed;

    left: 100px;

    bottom: 30px;

    z-index: 9999

}



@media (max-width: 479px) {

    .minipopup-area {

        left: 9px;

        bottom: 150px;

    }

}





.minipopup-box {

    position: absolute;

    left: 1rem;

    width: 303px;

    padding: 2rem;

    background-color: #fff;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    transform: translateY(-100%);

    opacity: 1;

    transition: opacity .3s, left .3s ease-out, transform .3s;

    z-index: 9999

}



.minipopup-box.show {

    opacity: 1;

    left: 0

}



.minipopup-box.focus {

    transform: scale(0.98) translateY(-100%)

}



.minipopup-box .product-popup.product-cart {

    margin-top: 0

}



.minipopup-box .product-popup.product-cart .product-name {

    display: block;

    font-size: 1.4rem;

    margin-bottom: 3px;

    color: #000;

    font-weight: 400

}



.minipopup-box .product-popup.product-cart {

    margin-top: 0

}



.minipopup-box .product-popup.product-cart .product-media {

    margin: 1rem auto;

    display: block;

    text-align: center;

}



.minipopup-box .product-popup.product-cart .product-detail {

    margin-top: .3rem

}



.minipopup-box .product-popup.product-cart .product-name {

    display: block;

    font-size: 2rem;

    margin-bottom: 1.1rem;

    color: var(--tedlife-base);

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: -.025em;

    font-family: var(--tedlife-font-two);

}



.minipopup-box .product-popup.product-cart .product-name:hover {

    color: #a3b264

}



.minipopup-box .product-popup.product-cart {

    text-align: center;

}



.minipopup-box .product-popup.product-cart .product-price {

    margin-bottom: -.2rem;

    font-size: 1.0rem

}



.minipopup-box .product-popup.product-cart .product-quantity {

    font-size: 1.0rem;

    font-weight: 600;

    color: #222

}



.minipopup-box .product-popup.product-cart .price-box .product-quantity::after {

    margin: 0 0 -.2rem .7rem;

    font-size: 1.2rem

}



.minipopup-box .product-popup.product-cart.product-purchased .purchased-title {

    margin-bottom: 1.9rem

}



.minipopup-box .product-popup.product-cart.product-purchased .product-detail {

    margin-top: .1rem

}



.minipopup-box .product-popup.product-cart.product-purchased .product-name {

    margin-bottom: 1.2rem

}



.minipopup-box img {

    max-width: 9rem;

    max-height: 9rem

}



.minipopup-box .ratings-container {

    margin-bottom: 0

}



.minipopup-box .product-price {

    color: #e52727;

    font-weight: bold;

    margin-bottom: 3px

}



.minipopup-box .action-group {

    margin-top: 2rem

}



.minipopup-box .thm-btn {

    padding: 0.92em 2.07em;

    letter-spacing: -.025em;

    border-width: 1px

}



.minipopup-title {

    margin-bottom: 1.5rem;

    color: #222;

    font-size: 1.0rem;

    font-weight: 700;

    text-align: center;

    letter-spacing: -.035em;

    line-height: 1

}



.text-base {

    color: var(--tedlife-base)

}



.bg-base {

    background-color: var(--tedlife-base)

}



.h260 {

    height: 260px !important;

}



.h50 {

    height: 50px !important;

}



.btn-thm-sm {

    padding: .25rem .5rem;

    font-size: .875rem;

    border-radius: .2rem;

}



.mb2rm {

    margin-bottom: 2rem !important;

}



.close {

    float: right;

    font-size: 1.25rem;

    font-weight: 700;

    line-height: 1;

    color: #1e2022;

    text-shadow: 0 1px 0 #fff;

    opacity: .5;

}



.close:hover {

    color: #1e2022;

    text-decoration: none;

}



.close:not(:disabled):not(.disabled):hover,

.close:not(:disabled):not(.disabled):focus {

    opacity: .75;

}



button.close {

    padding: 0;

    background-color: transparent;

    border: 0;

    -webkit-appearance: none;

    -moz-appearance: none;

    appearance: none;

}



a.close.disabled {

    pointer-events: none;

}





.s_success {

    padding: 1px 5px;

    background: #739e73;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #739e73 1px solid;

}



.s_done {

    padding: 1px 5px;

    background: #3BA5AC;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #3BA5AC 1px solid;

}



.s_process {

    padding: 1px 5px;

    background: #8A2BE2;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #8A2BE2 1px solid;

}



.s_cancel {

    padding: 1px 5px;

    background: #F8ACAC;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #F8ACAC 1px solid;

}



.s_error {

    padding: 1px 5px;

    background: #FF0000;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #FF0000 1px solid;

}



.s_draft {

    padding: 1px 5px;

    background: #ccc;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #ccc 1px solid;

}



.s_new {

    padding: 1px 5px;

    background: #FF0000;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #FF0000 1px solid;

}



.s_in_stock {

    padding: 1px 5px;

    background: #739e73;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #739e73 1px solid;

}



.s_supplier_stock {

    padding: 1px 5px;

    background: #8A2BE2;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #8A2BE2 1px solid;

}



.s_in_order {

    padding: 1px 5px;

    background: #ccc;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #ccc 1px solid;

}



.s_out_of_stock {

    padding: 1px 5px;

    background: #FF0000;

    margin: 0px 3px;

    border-radius: 3px;

    color: #fff;

    border: #FF0000 1px solid;

}



.text-grey {

    color: #bababa;

}

.ml-5 {
    margin-left: 5px!important;
}

.pl-0 {
    padding-left: 0 !important;
}

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

.project-logos img {
    height: 100px;
    margin-right: 15px;
}

.img-header-logo {
    height: 100px;
}

@media (max-width: 1200px) {
    .img-header-logo {
        height: 80px;
    }
}

@media (max-width: 992px) {
    .img-header-logo {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .img-header-logo {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .img-header-logo {
        height: 40px;
    }
}

@media (max-width: 460px) {
    .img-header-logo {
        height: 30px;
    }
}

.img-footer-logo {
    height: 50px;
}

@media (max-width: 1200px) {
    .img-footer-logo {
        height: 40px;
    }
}

@media (max-width: 992px) {
    .img-footer-logo {
        height: 30px;
    }
}