.filter__models-item {
    justify-content: space-between;
}


.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 40px;
}

.pagination__prev, .pagination__next {
    width: 24px;
    height: 24px;
}

.pagination__prev {
    background: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.21967 6.71967C-0.073223 7.01256 -0.073223 7.48744 0.21967 7.78033L6.21967 13.7803C6.51256 14.0732 6.98744 14.0732 7.28033 13.7803C7.57322 13.4874 7.57322 13.0126 7.28033 12.7197L1.81066 7.25L7.28033 1.78033C7.57322 1.48744 7.57322 1.01256 7.28033 0.71967C6.98744 0.426776 6.51256 0.426776 6.21967 0.71967L0.21967 6.71967Z" fill="%23192F24"/></svg>') center no-repeat;
}

.pagination__next {
    background: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.78033 6.71967C8.07322 7.01256 8.07322 7.48744 7.78033 7.78033L1.78033 13.7803C1.48744 14.0732 1.01256 14.0732 0.719669 13.7803C0.426776 13.4874 0.426776 13.0126 0.719669 12.7197L6.18934 7.25L0.71967 1.78033C0.426777 1.48744 0.426777 1.01256 0.71967 0.71967C1.01256 0.426776 1.48744 0.426776 1.78033 0.71967L7.78033 6.71967Z" fill="%23192F24"/></svg>') center no-repeat;
}

.pagination__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.pagination__nav-item {
    width: 25px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.pagination__nav-item.--active {
    background: #192F24;
    color: #fff;
}


.main-model-page-specs__heading {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.main-model-page-specs__heading > div:last-child {
	font-weight: 300;
	font-size: 16px;
	padding: 6px;
	text-align: right;
}

.main-model-page-specs__table {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px 30px;
}

.main-model-page-specs__table__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px solid #C4C4C4;
	padding-bottom: 10px;
	font-size: 14px;
}

.main-model-page-specs__table__item__value {
	font-weight: bold;
	color: #4d4d4d;
	text-align: right;
}

@media (max-width: 768px) {
    .main-model-page-specs__table {
        -ms-grid-columns: (1fr) [1];
        grid-template-columns: repeat(1, 1fr);
    }
}

.header-desktop__logo img {
    height: 50px;
}

.header-mobile__logo img {
    height: 40px;
}

.footer__logo img {
    height: 50px;
}