/* HOME PAGE - menu */
#menu .dropdown.produse:hover .dropdown-menu {
    display: none;
}

/* PRODUCT PAGE / PRODUCT QUICKVIEW - Options radio buttons custom style */
#product.product-options .btn-group-toggle {
    width: 100%;
}

#product.product-options .btn-group-toggle label.btn {
    border-radius: 4px!important;
    margin-right: 6px;
    margin-bottom: 6px;
    border: 1px solid;
    font-size: 14px;
}
#product.product-options .btn-group-toggle label.btn:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    box-shadow: none;
}

#product.product-options .btn-group-toggle label.btn.active.option-without-color {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

#product.product-options .btn-group-toggle label.btn.option-with-color {
    color: #fff;
    height: 50px;
    width: 50px;
    border-radius: 0 !important;
}

#product.product-options .btn-group-toggle label.btn img {
    border-radius: 0;
    padding: 0px;
}

#product.product-options .btn-group-toggle label.btn.option-with-image {
    border: 0;
    padding: 0;
    border-radius: 0 !important;
}

#product.product-options .btn-group-toggle label.btn.option-with-image.active {
    border-bottom: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#product.product-options .btn-group-toggle label.btn.option-with-image img {
    height: 50px;
    width: auto;
}

#product.product-options .btn-group-toggle label.btn.active.option-with-color {
    border-radius: 0px!important;
    border: -1px;
}

#product.product-options .btn-group-toggle label.btn.option-with-color.active::after {
    position: absolute;
    height: 2px;
    margin: 0 auto;
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    color: var(--primary-color);
    background-color: var(--primary-color);
    left: 0;
    bottom: -7px;
}

#product.product-options .btn-group-toggle label.btn.option-with-image.active::after {
    position: absolute;
    height: 2px;
    margin: 0 auto;
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    color: var(--primary-color);
    background-color: var(--primary-color);
    left: 0;
    bottom: -6px;
}
/* Options radio buttons custom style END*/

/* FILTER - color */
#filter .btn-group.btn-group-toggle {
    margin-top: -5px;
}
#filter label.btn.btn-outline-secondary {
    border: 1px solid var(--border-color);
    padding: 3px 4px;
    width: 40px;
    height: 30px;
    margin-left: 0;
    margin-right: 5px;
    margin-top: 5px;
}
#filter label.btn.btn-outline-secondary .opt-sr {
    display: inline-block;
    width: 30px;
    height: 22px;
}
#filter label.btn.btn-outline-secondary.active {
    box-shadow: none;
}
#filter label.btn.btn-outline-secondary.active {
    position: relative;
}
#filter label.btn.btn-outline-secondary.active:before {
    top: 4px;
    left: 13px;
    color: #ffffff;
    font-size: large;
    position: absolute;
    text-shadow: 0 0 2px #3c3c3c;
    content: '\2713';
}
/* FILTER - color END */

/* checkout/checkout PAGE */
#checkout-checkout .iti.iti--allow-dropdown,
#account-register .iti.iti--allow-dropdown,
#account-edit .iti.iti--allow-dropdown {
    width: 100%;
}

#checkout-checkout .iti.iti--allow-dropdown.has-error .text-danger{
    position: absolute;
}
/* checkout/checkout PAGE END*/

/* PRODUCT CATEGORY PAGE - Column left - Clear filter */
#product-category #column-left #clear-filter-panel {
    margin-bottom: 30px;
}
#product-category #column-left #clear-filter-panel > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#product-category #column-left #clear-filter h3 {
    border-bottom: none;
    padding: 0;
}
#product-category #column-left #clear-filter .btn {
    padding: 5px 20px;
}
#product-category #column-left .panel.panel-default.filter{
    margin-top: 0;
}
@media only screen and (max-width: 991px) {
    #topCategoryList li .toggle-menu {
        display: none;
    }
    #product-category #column-left #clear-filter-panel {
        margin-bottom: 15px;
    }
    #product-category #column-left .panel.panel-default.filter{
        margin-top: 15px;
    }
    footer h5, .position-footer-right h5 {
        cursor: pointer;
    }
}
/* Column left - Clear filter END */