.one-category{
    padding: 60px 0px;
}

.one-category-header{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 0px -30px 50px;
    padding: 0px 30px 15px;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.one-category-header-title{
    font-size: 37px;
    font-weight: bold;
    padding-left: 25px;
    box-sizing: border-box;
}

.one-category-list-models{
    font-size: 0px;
    margin: 0px -8px 40px;
}

.items-catalog-oc {
    font-size: 16px;
    width: 25%;
    height: 440px;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    padding: 8px;
}

.items-catalog-content-oc{
    background-color: rgb(255, 255, 255);
    height: 100%;
    transition: box-shadow 0.3s;
}

    .items-catalog-content-oc:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px;
    }
    
    .items-catalog-content-oc:hover .items-catalog-image-oc {
        height: 50%;
        background-size: contain;
    }
    
    .items-catalog-content-oc:hover .icdo-name {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .items-catalog-content-oc:hover .icdo-parameters {
        margin-bottom: 20px;
        filter: none;
        opacity: 1;
    }
    
    .items-catalog-content-oc:hover .items-catalog-desk-oc .button {
        display: block;
    }
    
    .items-catalog-image-oc {
        height: 60%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        transition: height 0.3s;
    }
    
    .items-catalog-desk-oc {
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        flex-flow: column;
        padding: 10px 25px;
    }
    
        .icdo-name {
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: 1px solid rgb(230, 230, 230);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
            .icdo-name-type {
                color: rgb(159, 159, 159);
                font-size: 17px;
                flex-basis: 50%;
            }
            
            .icdo-price{
                color: rgb(159, 159, 159);
                font-size: 17px;
            }
            
            .icdo-price:after{
                content: "";
                width: 20px;
                height: 20px;
                display: inline-block;
                vertical-align: middle;
                background-image: url(../img/icon_tenge.png);
                background-position: center;
                background-repeat: no-repeat;
                background-size: 75%;
                position: relative;
                top: -1px;
                opacity: 0.5;
            }
            
            .icdo-name-title {
                color: rgb(32, 29, 29);
                font-weight: bold;
                font-size: 21px;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis;
                overflow: hidden;
                flex-basis: 100%;
            }
        
        .icdo-parameters {
            display: flex;
            align-items: center;
            font-size: 22px;
            filter: grayscale(100%);
            opacity: 0.5;
            justify-content: space-between;
        }
        
        .icdo-parameters div {
            margin-left: 10px;
            padding-right: 10px;
            border-right: 1px solid rgb(230, 230, 230);
        }
        
        .icdo-parameters div:first-child {
            margin-left: 0px;
        }

        .icdo-parameters div::before {
            content: "";
            display: inline-block;
            width: 24px;
            height: 24px;
            vertical-align: middle;
            margin-right: 15px;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center center;
        }
        
            .icdo-parameters-weight::before {
                background-image: url(../img/catalog/icon_weight.svg);
            }
            
            .icdo-parameters-chassis::before {
                background-image: url(../img/catalog/icon_chassis.svg);
            }
            
            .icdo-parameters-power::before {
                background-image: url(../img/catalog/icon_power.svg);
            }
            
        .items-catalog-desk-oc .button {
            display: none;
            text-align: center;
            padding: 9px 42px;
            border: 2px solid rgba(0,0,0,0);
        }
        
        
@media only screen and (max-width: 1890px){

    .items-catalog-desk-oc .button {
        padding: 9px 32px;
        font-size: 16px;
    }
    
    .icdo-parameters{
        font-size: 20px;
    }
    
    .icdo-parameters div::before {
        margin-right: 10px;
    }
    
}

@media only screen and (max-width: 1890px){
    
    .items-catalog-desk-oc{
        padding: 10px 15px;
    }
    
}

@media only screen and (max-width: 1670px){
    
    .items-catalog-oc{
        width: 50%;
    }
    
    .one-category-header{
        margin: 0px;
        padding: 0px;
    }
    
}

@media only screen and (max-width: 768px){
    
    .items-catalog-oc{
        width: 100%;
    }
    
}