

/*cart*/
.cart_container{
    position: relative;
    z-index: 9999992;
}
.overlay{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .6);
    transition: opacity .5s ease-in-out, visibility .5s;
    cursor: pointer;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}
.overlay.active{
    visibility: visible;
    opacity: 1;
}
.cart{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    max-width: 1050px;
    background: #fff;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(100%);
    transition: all .5s ease-in-out;
}
.cart.active{
    transform: translateX(0);
}

.cart_header{
    min-height: 80px;
    background: #fef4f3 url(../cart_files/cart_header_bg.png) 50% 50% no-repeat;
    position: relative;
}
.cart_header .close-cart{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.2);
    background-image: url(../cart_files/cart_close.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: absolute;
    top: 50%;
    right: 40px;
    margin-top: -20px;
    cursor: pointer;
    transition: all ease .2s;
}
.cart_header .close-cart:hover{
    background-color: rgba(0,0,0,0.4);
}
.cart_delivery{
    padding: 20px 0 0 30px;
    font-size: 16px;
    line-height: 1.2em;
}
.cart_delivery:before{
    content: '';
    float: left;
    width: 40px;
    height: 40px;
    background: url(../cart_files/delivery.svg) 50% 50% / 100% no-repeat;
}
.cart_delivery>p{
    overflow: hidden;
    padding-left: 10px;
}
.cart_delivery b{
    display: block;
}

.cart .body{
    height: calc(100% - 80px);
    display: table;
    width: 100%;
}
.cart .body .left{
    position: relative;
    width: 70%;
    display: table-cell;
    padding: 20px 30px 80px;
}
.cart .left .empty{
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.3em;
}

.cart_prod{
    display: table;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
}
.cart_prod:last-child{
    border-bottom: 0;
}
.cart_prod .img{
    width: 48px;
    display: table-cell;
    vertical-align: middle;
}
.cart_prod .img>img{
    display: block;
    margin: 0 auto;
    width: auto;
    max-height: 48px;
}
.cart_prod .text{
    width: 420px;
    padding: 0 15px;
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.2em;
}
.cart_prod .count_b{
    width: 92px;
    display: table-cell;
    vertical-align: middle;
}
.cart_prod .count{
    width: 92px;
    border: 1px solid #cecece;
    border-radius: 4px;
    overflow: hidden;
}
.cart_prod .count button{
    width: 25px;
    height: 22px;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    background: #fff;
}
.cart_prod .count button:hover{
    background: #f6f6f6;
}
.cart_prod .count button:active{
    background: #ebebeb;
}
.cart_prod .count input{
    width: 40px;
    height: 22px;
    float: left;
    border: none;
    outline: none;
    border-left: 1px solid #cecece;
    border-right: 1px solid #cecece;
    text-align: center;
}
.cart_prod .price{
    display: table-cell;
    vertical-align: middle;
    width: 90px;
    text-align: right;
}
.cart_prod .prod_curr {
        display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    text-align: right;
}
.cart_prod .delete{
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    width: 32px;
}
.cart_prod .delete span{
    display: block;
    width: 16px;
    height: 16px;
    background: url(../cart_files/clear_cart.svg) 50% 50% / contain no-repeat;
    cursor: pointer;
}

.continue_buy{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    color: #444;
    font-size: 15px;
}
.continue_buy span:before{
    content: '';
    width: 16px;
    height: 16px;
    background: url(../cart_files/reload.svg) 50% 50% / contain no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 0 0;
}
.continue_buy span{
    transition: all ease .2s;
    cursor: pointer;
}
.continue_buy span:hover{
    color: #9650b4;
}

.cart .body .right{
    position: relative;
    width: 30%;
    display: table-cell;
    background: url(../cart_files/bg-arr.png) right 10px top 20px no-repeat #fcf5ff;
    padding: 15px 30px 80px;
}
.cart_main_price{
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 1.2em;
    margin-bottom: 30px;
}
.cart_main_price p{
    margin-top: 10px;
    font-weight: 700;
    font-size: 22px;
}
.cart_main_price p small{
    font-weight: 400;
    margin-left: 4px;
}

.free_deliv{
    color: #999;
    font-size: 15px;
    line-height: 1.3em;
    margin-top: 30px;
}
.free_deliv>li{
    margin-bottom: 15px;
}
.free_deliv>li:last-child{
    margin-bottom: 0;
}

.clear_cart{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    color: #444;
    font-size: 15px;
}
.clear_cart span:before{
    content: '';
    width: 16px;
    height: 16px;
    background: url(../cart_files/clear_cart.svg) 50% 50% / contain no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin: -3px 5px 0 0;
}
.clear_cart span{
    transition: all ease .2s;
    cursor: pointer;
}
.clear_cart span:hover{
    color: #9650b4;
}

.woman_premium{
    padding-top: 0;
}
.woman_premium .title,
.man_premium .title{
    font-size: 40px;
}

.cart_container .stocks{
    display: none;
    font-size: 0;
}
.cart_container .stocks .text{
    width: 40%;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 1.2em;
}
.cart_container .stocks .text>span{
    display: block;
    font-weight: 700;
    color: #ff476f;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1.3em;
    margin-bottom: 10px;
}
.cart_container .stocks>img{
    display: inline-block;
    vertical-align: middle;
    width: 60%;
}

.def_info{
    border: 1px dashed #cecece;
    border-radius: .25rem;
    padding: .5rem 1rem;
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, .6);
    margin: 30px auto 0;
    max-width: 30rem;
    width: 100%;
}

@media screen and (max-width: 869px) {
    .cart .body .left{
        width: 100%;
        display: block;
    }
    .cart .body .right{
        width: 100%;
        display: block;
    }
}



@media screen and (max-width: 659px) {
    .cart .body .left{
        padding: 15px 10px 80px;
    }
    .cart_prod .count{
        width: 60px;
    }
    .cart_prod .count input{
        width: 24px;
    }
    .cart_prod .count button{
        width: 17px;
    }
    .cart_prod .text{
        width: 340px;
        font-size: 14px;
        padding: 0 10px;
    }
    .cart_prod .price{
        font-size: 14px;
    }
    .cart_prod .delete{
        width: 22px;
    }
    .cart_prod .img{
        width: 90px;
    }
    .cart_delivery{
        padding: 0 60px 0 20px;
    }
    .cart_header .close-cart{
        right: 20px;
    }
    .cart_header{
        /*background: #fef4f3;*/
        min-height: auto;
        padding: 20px 0;
    }
    .cart_container .stocks .text{
        width: 100%;
        padding: 20px 10px 0;
        display: block;
    }
    .cart_container .stocks .text>span{
        margin-bottom: 0;
    }
    .cart_container .stocks > img{
        display: block;
        width: auto;
        margin: 8px auto 0;
    }
    #features div {
    width: 100% !important;
    margin: .5rem 0;
}
}


/************************/
.cart-add {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    width: fit-content;
}
.cart-add:hover {
    text-decoration: none;
    color: wheat;
    transform: scale(1.05);
}
a.cart-add:focus {
    text-decoration: none;
    color: azure;
}
#cart_form {
    margin: 16px auto;
    width: 100%;
    max-width: 360px;
}
#cart_form input:not([type="submit"]) {
    display: block;
    width: auto;
    padding: calc(12px - 2px) calc(16px - 2px);
    border: 2px solid #cecece;
    border-radius: 4px;
    margin: 0 auto 16px;
    outline: none;
}
#cart_form ::placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
}
#cart_form ::-ms-input-placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
}
#cart_form :-ms-input-placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
}
#cart_form input[type="submit"] {
    width: auto;
    padding: calc(12px + 1.5px) 16px;
    border: none;
    background: #44d759;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: opacity 0.2s;
    display: block;
    margin: 0 auto;
}
#cart_form input[type="submit"]:active {
    -ms-transform: translateY(1px);
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
#cart_form input[type="submit"]:hover,
input[type="submit"]:focus {
    opacity: 0.85;
}

a {
    cursor: pointer;
}

c-cart-fab {
    font-family: "Segoe UI", Arial, "Helvetica Neue", Helvetica, sans-serif;
    background-color: #44d759;
    border: 1px solid #44d759;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    min-width: 60px;
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: fixed;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    z-index: 9999991;
    user-select: none;
}
@media all and (max-width: 700px) {
    c-cart-fab {
        top: 2rem;
        /* top: 1rem; */
        right: 1rem;
    }
}
c-cart-fab c-icon {
    width: 45%;
    height: 45%;
    margin: auto;
    fill: #fff;
}
.cart-counter {
    position: absolute;
    line-height: 1.1;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 20px;
    min-height: 20px;
    background-color: #f86366;
    border-radius: 50%;
    text-align: center;
    top: -0.25rem;
    right: -0.25rem;
    border: 0.125rem solid #fff;
    color: #fff;
    z-index: 1;
}
.cart-fab-empty {
    background-color: #9b9b9b;
    border-color: #9b9b9b;
}
.cart-fab-empty .cart-counter {
    display: none;
}
c-cart-fab:not(.cart-fab-empty)::before,
c-cart-fab:not(.cart-fab-empty)::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border-radius: 50%;
    -webkit-animation: pulse 7s linear infinite;
    animation: pulse 7s linear infinite;
    pointer-events: none;
    cursor: default;
    border: inherit;
}
c-cart-fab:not(.cart-fab-empty)::after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
@-webkit-keyframes pulse {
    0% {
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}
@keyframes pulse {
    0% {
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

.m1-form input {
    border: none;
    background: #fafafa;
    width: 100%;
    height: 40px;
    border: 2px solid #cecece;
    border-radius: 2px;
    font-size: 16px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    color: #666;
    margin-bottom: 15px;
    text-indent: 20px;
}

/*.btn {
    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    display: block;
    margin: 0 auto;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: background ease-in-out 0.2s;
}*/
.button3 {
    width: 100%;
    height: 42px;
    padding: unset;
    border-radius: 21px;
    background: #ff476f;
    box-shadow: 0 4px 8px -2px rgba(255, 71, 111, 0.4);
    font-size: 16px;
    line-height: 42px;

    border: none;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    display: block;
    margin: 0 auto;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: background ease-in-out 0.2s;
}

* {
    box-sizing: border-box;
}

.hide_block {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
}

#features {
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
#features div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 33.33%;
    flex-grow: 1;
}
#features c-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-grow: 0;
    flex-shrink: 0;
    fill: currentColor;
}
#features c-icon svg {
    height: 100%;
    width: 100%;
    color: #ff476f;
}
#features span {
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 1.4;
}
#features c-icon {
    line-height: 0;
    display: inline-block;
    vertical-align: top;
}



.catalog-box {
    margin-bottom: 30px;
    position: relative;
    background: #f6f6f6;
    padding: 0px 0px 20px;
    box-shadow: 0 0 50px 10px rgba(0,0,0,.05);
    border-radius: 10px;
    transition: 0.3s all;
    border: 1px solid#dedede;
}
.catalog-box img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.catalog-box .title {
    display: block;
    padding: 20px;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}
.catalog-box .overline {
    padding: 0 20px;
    padding-top: 20px;
    border-top: 1px solid#efefef;
}
.catalog-box .price {
    font-size: 20px;
    font-weight: 500;
    margin-top: 7px;
}
.pull-right {
    float: right!important;
}
#catalog .after-h2 {
    font-size: 26px;
    text-align: center;
}
.cartItem {
    padding: 10px;
}
section#catalog {
    margin-bottom: 70px;
}
