.configurations{
    height: 100%;
}

.configurations-list{
    display: flex;
    flex-wrap: wrap;
    height: calc(100% - 74px);
    overflow: hidden;
}

.configurations-list__item{
    padding: 0 10px 14px 10px;
    display: flex;
    flex-direction: column;
    max-width: calc(100% / 6);
    flex: 1 1 calc(100% / 6);
}

.configurations-list__item .title{
    font-weight: 500;
    font-size: 11px;
    color:#636363;
    line-height: 16px;
}

.configurations-list__item .price{
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    display: block;
}

.configurations__pagination{
 width: 100%;
 display: flex;
 justify-content: center;   
 height: 50px;
}

.pagination{
width: 252px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.pagination__dots{
    display: flex;
    gap: 6px;
    align-items: center;
}

.pagination__dot{
    height: 6px;
    width: 6px;
    background: #D0D0CB;
    border-radius: 50%;
}

.pagination__dot.active{
    background: #7C7B76;
}

.pagination__button{
    width: 20px;
    height: 20px;
}

.pagination__button.-left{
    transform: rotate(180deg);
}


@media (max-width: 709px) {
    .configurations-list{
        height: auto;
    }
    .configurations-list__item{
     max-width: calc(100% / 3);
     flex: 1 1 calc(100% / 3);
}	
}
