/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance:textfield;
}

.catalog-wrap{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.catalog-col{
    width: 25%;
    padding: 10px;
}

.catalog-item{
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(188, 188, 188, 0.25);
}

.catalog-img{
    height: 175px;
    width: 100%;
    background: no-repeat center;
    background-size: cover;
}

.catalog-item-info{
    padding: 15px;
    margin-top: 5px;
    flex: 1;
    padding-bottom: 45px;
}

.catalog-name{
    color: #830721;
    font-size: 15px;
    margin-bottom: 5px;
}

.catalog-link{
    text-decoration: none;
}

.catalog-unit{
    font-size: 12px;
    color: #C4C4C4;
    margin-bottom: 30px;
}

.catalog-price{
    font-size: 20px;
    color: #830721;
    position: absolute;
    bottom: 15px;
}

.cart-block{
    position: absolute;
    right: 0;
    bottom: 0;
}

.catalog-buy{
    width: 40px;
    height: 40px;
    background: url('../img/buy.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
}

.catalog-counter{
    display: none;
    align-items: center;
    width: 80px;
    height: 40px;
    border: 1px solid #830721;
    border-radius: 10px 0px;
    color: #830721;
    font-size: 20px;
    padding: 0 12px;
}

.counter-input{
    background: none;
    border: 0;
    color: #830721;
    flex: 1;
    text-align: center;
    width: 100%;
    font-size: 20px;
}

.in-cart .catalog-buy{
    display: none;
}

.in-cart .catalog-counter{
    display: flex;
}

.plus, .minus{
    width: 13px;
    height: 13px;
    background: no-repeat center;
    background-size: contain;
    flex: none;
    cursor: pointer;
}

.plus{
    background-image: url('../img/plus.svg');
}

.minus{
    background-image: url('../img/minus.svg');
    width: 9px;
}

.pagination{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 70px;
}

.pagination-item{
    width: 42px;
    height: 42px;
    background: #830721;
    border-radius: 56px;
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 1px solid #830721;
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-item.active, .pagination-item:hover{
    background: #fff;
    color: #830721;
}

.next:hover, .prev:hover{
    background: #830721;
    color: #fff;
}

.pagination-item.disabled{
    background: #C4C4C4;
    cursor: default;
    border-color: #C4C4C4;
}

.next:after, .prev:after{
    content: '';
    position: relative;
    width: 15px;
    height: 8px;
    background: url('../img/right.svg');
}

.prev{
    transform: rotate(180deg);
}

.dots{
    width: 12px;
    height: 3px;
    background: url('../img/dots.svg') no-repeat center;
    margin-right: 15px;
    margin-top: auto;
}

.filter{
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.spoiler{
    width: 100%;
    transition: .3s;
}

.spoiler-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    height: 60px;
    padding: 0 20px;
    transition: .3s;
}

.spoiler-header:after{
    content: '';
    width: 14px;
    height: 7px;
    background: url('../img/filter-chevron.svg');
}

.spoiler.open .spoiler-header:after{
    background: url('../img/filter-chevron2.svg');
    transform: rotate(180deg);
}

.spoiler-content{
    padding: 20px;
    border-bottom: 1px solid #830721;
    display: none;
}

.open .spoiler-header{
    background: #830721;
    color: #fff;
}

.checkbox-wrap{
    display: flex;
    align-items: center;
}

.fake-checkbox{
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex:none;
    background: url('../img/checkbox.svg') center no-repeat;
    background-size: contain;
}

input:checked + .fake-checkbox{
    background-image: url('../img/checkbox-checked.svg');
}

.hidden{
    display: none;
}


.range-inputs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 25px;
}

.range-input{
    border: 1px solid #830721;
    border-radius: 10px;
    height: 42px;
    width: 42%;
    color: #3E3E3E;
    font-size: 13px;
    padding: 0 10px;
}

.range-inputs:after {
    content: '';
    position: absolute;
    right: 46%;
    width: 8%;
    height: 1px;
    background: #C4C4C4;
}

.theme-green .back-bar{
    height: 2px;
    background: #C4C4C4;
}

.theme-green .back-bar .selected-bar{
    background: #830721;
}

.theme-green .back-bar .pointer{
    background: #830721;
    width: 20px;
    height: 20px;
    top: -9px;
    border: 0;
}

@media(max-width: 1300px){
    .catalog-price{
        font-size: 18px;
    }
}

@media(max-width: 1200px){
    .catalog-col {
        width: 33.333%;
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .catalog-col{
        width: 50%;
    }
}

@media(max-width: 450px){
    .catalog-col {
        width: 100%;
        padding: 10px;
    }
}
















.tabs-container{
    width: 440px;
}

.m_card_page--modific .m_card_page_top{
    border: 0;
}

.m_card_page_bottom.m_card_page_bottom--mod{
    border-top: 1px solid #830721;
}

.price-block{
    margin-top: 20px;
    padding-bottom: 35px;
    border-bottom: 1px solid #C4C4C4;
    width: 100%;
}

.old-price{
    color: #AAAAAA;
    font-size: 20px;
    line-height: 34px;
}

.price{
    font-weight: 500;
    font-size: 36px;
    line-height: 34px;
    color: #830721;
}

.radio-wrap{
    margin-top: 30px;
}

.radio-header{
    color: #AAAAAA;
    font-size: 25px;
    margin-bottom: 15px;
}

.radio-row{
    display: flex;
    flex-wrap: wrap;
}

.fake-radio{
    border: 1px solid #830721;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    background: #fff;
    font-weight: 500;
    font-size: 14px;
    color: #830721;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fake-radio:hover, input:checked+.fake-radio{
    background: #830721;
    color: #fff;
}

.radio-item{
    margin-right: 15px;
    margin-bottom: 15px;
}

.detail-cart-block{
    margin-top: 55px;
    display: flex;
    align-items: center;
}

.detail-counter{
    border: 1px solid #9E9E9E;
    height: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    width: 195px;
}

.detail-counter input{
    font-weight: 500;
    font-size: 25px;
    color: #9E9E9E;
}

.detail-counter .plus{
    background-image: url('../img/plus-grey.svg');
}

.detail-counter .minus{
    background-image: url('../img/minus-grey.svg');
}

.add-to-cart{
    background: #830721;
    border-radius: 100px;
    height: 60px;
    color: #fff;
    font-size: 20px;
    transition: .3s;
    margin-left: 14px;
    border: 0;
    width: 240px;
}
