.item-catalog {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-height: 510px;
}
.item-catalog .name {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fecc00;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    background-color: #444;
    padding: 5px 10px;
    border-radius: 5px;
}
.item-catalog .name span {
    color: #ffffff;
    font-weight: 400;
}
.item-catalog .img-wrapper{
    height: 250px;
    overflow: hidden;
}
.item-catalog img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    object-fit: cover;
    transition: all .5s;
}
.item-catalog:hover img{
    transform: scale(1.1);
}
.item-catalog .cost {
    font-size: 18px;
    font-weight: bold;
    padding: 0 5px;
    text-align: center;
    background-color: #fecc00;
    border-radius: 5px;
    width: 100%;
}
.item-catalog .description ul {
    list-style: none;
    margin-bottom: 0;
}
.item-catalog .link{
    width: 100%;
    border-radius: 5px;
    padding: 8px;
    font-weight: 500;
}
.content-item ul{
    padding-left: 30px;
}

.catalog-item-carousel .item-catalog{
    width: 100%;
}
.catalog-item-carousel{
    padding: 5px;
    margin: -5px;
}

#orderModal .count-input .btn{
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: none;
}
#orderModal .count-input .btn.minus{
    border-radius: 5px 0 0 5px;
}
#orderModal .count-input .btn.plus{
    border-radius: 0 5px 5px 0;
}
#orderModal .count-input .form-control{
    text-align: center;
    font-weight: 500;
}
#sendOrderModal{
    font-size: 16px;
}
#orderModal .panel-sum{
    padding: 10px;
    text-align: center;
    line-height: 1.2;
    background-color: #29282f;
    color: #fff;
    border-radius: 5px;
}
#orderModal .panel-sum small{
    color: #ddd;
}
#orderModal .panel-sum .text-sum{
    font-size: 24px;
    font-weight: 500;
}
#orderModal .send-coop .icon{
    color: #fff;
    margin:0 0 10px 0;
}
#orderModal .send-coop .dop-text{
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .item-catalog{
        width: calc(50% - 8px);
    }
}
@media (max-width: 576px) {
    .item-catalog{
        width: 100%;
    }
}