
@media (min-width: 767px) {
    .cart-page .simpleproduct-image {
        width: 200px;
        height: 200px;
    }

    .cart-page .simpecart-totals,
    .cart-page .simplecheckout-button-block {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}


.popupcart .dc-empty.dc-empty--success {
    text-align: center;
}

.simpleproduct {
    position: relative;
}

.simpleproduct .simpleproduct-delete {
    position: absolute;
    width: 42px;
    height: 42px;
    top: -16px;
    right: -16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #231f20;
    cursor: pointer;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    z-index: 3;
}

.simpleproduct .simpleproduct-delete svg {
    width: 42px;
    height: 42px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    fill: currentColor;
}


.simpleproduct-option {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.simpleproduct-option img {
    width: 36px;
    height: 36px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
}


/* Product options */

.info-buy-colors {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}
.info-buy-colors .colors-title {
    display: block;
    font-size: 19px;
    line-height: 1.26;
    font-weight: 400;
    margin-bottom: 12px;
}
@media (max-width: 640px) {
    .info-buy-colors .colors-title {
        font-size: 16px;
   }
}
.info-buy-colors .colors-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
    row-gap: 13px;
}
.info-buy-colors .colors-list .disabled {
    pointer-events: none;
    opacity: .5;
}
.info-buy-colors .colors-list input {
    display: none;
}
.info-buy-colors .colors-list input:checked + .option {
    border: 1px solid #bd1717;
}
.info-buy-colors .option {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    background: #fff;
    border: 1px dashed #979797;
    border-radius: 8px;
    padding: 6px 10px 6px 6px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.info-buy-colors .option:not(.active):hover {
    color: #bd1717;
}
.info-buy-colors .option img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
}

.info-buy-colors .error {
    display: block;
    width: 100%;
    color: #bd1717;
    margin-top: 10px;
}

@media (max-width: 560px) {
    .simpleproduct-name {
        padding-right: 16px;
    }


    .info-buy-colors .colors-list .colors-list__item {
        width: calc(33.333% - 9px);
    }

    .info-buy-colors .option {
        padding: 4px 4px;
    }
    
    .info-buy-colors .option img {
        width: 30px;
        height: 30px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
}

@media (max-width: 460px) {
    .info-buy-colors .option {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 8px;
        padding: 10px 4px 4px;
    }
    
    .info-buy-colors .option img {
        width: 40px;
        height: 40px;
    }
}


