/**
 * lb_tabs
 */
.lb_tabs {
    display: flex;
    flex-wrap: wrap;
    /*background-color: #FFF4DB;*/
    font-size: 15px;
}

.lb_tabs .lb_tab_label {
    order: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    font-weight: bold;
    font-size: 10px;
    color: #fff;
    text-align: center;
    transition: background ease 0.2s;
    background-color: #333;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .lb_tabs .lb_tab_label {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (min-width: 1024px) {
    .lb_tabs .lb_tab_label {
        display: flex;
        padding: 15px;
        font-size: 15px;

    }

    .lb_tabs .lb_tab_label .lb_tab_label_text {
        margin-bottom: 0;
    }
}

.lb_tabs .lb_tab_label:first-of-type {
    border-top-left-radius: 10px;
}

.lb_tabs .lb_tab_label:last-of-type {
    border-top-right-radius: 10px;
    margin-right: 0;
}

.simplebar-content-wrapper::-webkit-scrollbar {
    display: none;
}

.lb_tabs .lb_tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    background: transparent;
    max-height: 300px;
    padding: 10px;
}

.lb_tab_label_text {
   /* display: none; */
    margin-bottom: 5px;
}
.lb_tabs .lb_tab_label img {
    width: 25px;
    height: 25px;
    margin: 5px;
}
@media screen and (min-width: 1200px) {

    .lb_tabs .lb_tab {

        background-color: transparent;

        border-radius: 0px 10px 10px 10px;
    }

    .lb_tabs .lb_tab_label {
        border-radius: 0;
    }

    .lb_tab_label_text {
        display: block;
        text-transform: uppercase;
    }

    .lb_tabs .lb_tab_label img {
        display: none;
    }

    .lb_ui .lb_tabs label[for=lb_tab_cart] {
        display: none;
    }

    .lb_tabs label[for=lb_tab4] {
        border-top-right-radius: 10px;
    }

}


.lb_tabs input[type="radio"] {
    display: none;
}

.lb_tabs input[type="radio"]:checked + label {
    background: #24b47e;
    color: #fff;
}
.lb_tabs input[type="radio"]:checked + label + .lb_tab {
    display: block;
    border: 1px solid #24b47e;
}

@media screen and (max-width: 1024px) {
    .lb_tabs input[type="radio"]:checked + label + .lb_tab {
        border: none;
    }
    .lb_tabs .lb_tab_label {
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
    }

    .lb_tabs .lb_tab_label:first-of-type {
        border-top-left-radius: 0px;
    }

    .lb_tabs .lb_tab_label:last-of-type {
        border-top-right-radius: 0px;
    }

    .lb_tabs .lb_tab {
        /*border-top-left-radius: 10px;
        border-top-right-radius: 10px;*/
    }

    .lb_tabs {
        box-shadow: #33333347 0px -3px 5px 3px;
    }

    .lb_tabs input[type="radio"]:checked + label:before {
        position: absolute;
        content: '\f0d8';
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 10pt;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        top:-4px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        transform: rotate(180deg);
    }

    .lb_tabs input[type="radio"]:checked + label .lb_cart_icon {
        color: #fff;
    }
}


@media (max-width: 1024px) {
    .lb_tabs .lb_tab,
    .lb_tabs label {
        order: initial;
    }

    .lb_tabs label {
        flex: 1;
        margin-right: 0;
    }
}

.lb_tabs .lb_button {
    background-color: #24b47e;
    color: #fff;
    font-size: 15px;
}

.lb_cart_icon {
    font-size: 1.5rem;
    width: 25px;
    height: 25px;
    margin: 5px;
    color: #24b47e;
}

.close_tabs {
    position: absolute;
    top: -15px;
    right: 10px;
    border: 1px solid #24b47e;
    border-radius: 50%;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #fff;
    display: none;
    z-index: 1;
}

@media screen and (min-width: 1200px) {
    .close_tabs {
        display: none !important;
    }
}