.catalog-container{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1870px;
    margin: 15px auto;
}
.item-catalog-amk {
    flex: 0 1 calc(20% - 12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: .5rem;
    background-color: #fff;
    text-align: center;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.item-catalog-amk .head{
    background-color: #29282f;
    width: 100%;
    padding: .5rem .25rem;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
}
.item-catalog-amk > .head > .title {
    font-size: 22px;
    margin-bottom: 0;
    color: #fff;
}
.item-catalog-amk > .head > .color_type{
    color: #f96031;
}
.item-catalog-amk > img {
    height: auto;
    max-height: 325px;
    width: 100%;
    object-fit: contain;
    background-color: #fff;
}
.item-catalog-amk > .by_sheets {
    position: absolute;
    left: 0;
    top: 15%;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 16px;
    opacity: .9;
    color: #fff;
    background-color: #1c9912;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0 5px 5px 0;
}
.item-catalog-amk .content{
    display: flex;
    flex-direction: column;
    gap: .25rem;
    background-color: #1d1c21;
    width: 100%;
    padding: .25rem;
}
.item-catalog-amk .content .price{
    display: flex;
    justify-content: center;
    gap: .25rem;
    background-color: #29282f;
    border-radius: 5px;
    padding: 0 .5rem .25rem;
}
.item-catalog-amk .content .price .cost{
    flex-grow: 1;
    flex-basis: 0;
    line-height: 1.1;
}
.item-catalog-amk .content .price .cost > span{
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(221, 221, 221);
}
.item-catalog-amk .content .price .cost > div{
    font-size: 22px;
    font-weight: 500;
}
.item-catalog-amk .content .price .cost > div b{
    color: #f96031;
}
.item-catalog-amk .content .price .cost > div span{
    font-weight: 600;
    color: #ffffff;
}
.item-catalog-amk .content > .list{
    display: flex;
    gap: .25rem;
    color: #ddd;
    font-size: 12px;
    padding: .25rem;
    background-color: #29282f;
    border-radius: 5px;
    line-height: 1.1;
}
.item-catalog-amk .content > .list .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-bottom: 0;
    flex-basis: 0;
}
.item-catalog-amk .content > .list .item b{
    color: #f96031;
    font-weight: 500;
}
.item-catalog-amk .content > a{
    font-size: 15px;
    padding: 8px;
}
.item-catalog-amk .content > a:hover{
    color: #ffffff;
}
@media (max-width: 1230px){
    .item-catalog-amk {
        flex: 0 1 calc(25% - 12px);

    }
}
@media (max-width: 992px) {
    .item-catalog-amk {
        flex: 0 1 calc(33.3% - 10px);
    }
}
@media (max-width: 768px) {
    .item-catalog-amk {
        flex: 0 1 calc(50% - 8px);
    }
    .catalog-container .item-catalog-amk:nth-child(n+11) {
        display: none;
    }
}
@media (max-width: 476px){
    .item-catalog-amk {
        flex: 0 1 100%;
    }
    .catalog-container .item-catalog-amk:nth-child(n+9) {
        display: none;
    }
}
