.wrap-myLoader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #424242;
    z-index: 51;
    transition: 0.5s all;
    opacity: 0.8;
    visibility: visible;
}

.myLoader {
    position: absolute;
    left: 49%;
    top: 49%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border: 10px solid white;
    /* border-top-color: #0ca70c; */
    border-top-color: #000;
    border-radius: 50%;
    animation: 1s myAnim linear infinite;
}

.cansel {
    opacity: 0;
    visibility: hidden;
}

.cansel .myLoader  {
    animation-play-state: paused;
}

.category-nav__card {
	padding: 0;
} 

@keyframes myAnim {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.footer__menu > li > span {
    font-weight: 600;
}


.in-cart {
    background-color: #ECECEC;
}


.in-cart:hover {
    background-color: #ECECEC !important;
}


.product-disabled {
    background-color: #F8F8F8 !important;
    color: #DEDEDE !important;
}

.product-disabled:hover {
    background-color: #F8F8F8 !important;
    color: #DEDEDE !important;
}



.clear-search-icon {
    display: none;
    position: absolute;
    right: 95px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #ff0000b3;
}

.clear-search-icon:hover {
    color: red;
}

.catalog__search {
    position: relative;
}




.tax-block:nth-last-child(1) {
    margin-bottom: 0;
}