.sizes {
    padding-top: 50px;
    padding-bottom: 60px;
}
.sizes.--bb {
	border-bottom: 1px solid #e6e6e6;
}
.sizes__group {
    margin-bottom: 30px;
}
.sizes__table {
    height: 555px;
    overflow: hidden;
    position: relative;
    transition: 1s;
}
.sizes__table:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: var(--transition-duration);
    height: 300px;
    background: linear-gradient(0deg, #fff 5%, rgba(255, 255, 255, 0) 100%);
	z-index: 10;
}
.sizes__table.--show {
    height: auto;
    margin-bottom: 15px;
}
.sizes__table.--show:before {
    opacity: 0;
    visibility: hidden;
}
.sizes__table table {
	position: relative;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
	z-index: 5;
}
.sizes__table th {
    font-weight: 500;
    font-size: 16px;
    color: #000;
}
.sizes__table td {
    font-size: 14px;
}
.sizes__table tbody tr:nth-of-type(odd) td {
    background-color: #f8f8f8;
    box-shadow: 0 1px 0 #f8f8f8;
}
.sizes__table td,
.sizes__table th {
    padding-top: 7px;
    padding-bottom: 7px;
    width: 12%;
    line-height: 22px;
}
.sizes__table td:nth-of-type(1),
.sizes__table th:nth-of-type(1) {
    text-align: left;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    color: #000;
    width: 195px;
}
.sizes__table td:last-of-type,
.sizes__table th:last-of-type {
    padding-right: 10px;
}
@media screen and (max-width: 1220px) {
    .sizes__table {
        overflow-x: auto;
    }
	.sizes__tablet::-webkit-scrollbar-track, 
	.sizes__table::-webkit-scrollbar {
		background-color: #e0e0e0;
	}
	.sizes__table::-webkit-scrollbar {
		height: 4px;
	}
	.sizes__table::-webkit-scrollbar-thumb {
		background-color: var(--primary-color);
	}
    .sizes__table table {
        display: block;
    }
    .sizes__table table th {
        font-size: 14px;
    }
    .sizes__table table td,
    .sizes__table table th {
        min-width: 110px;
        width: auto;
    }
}
@media screen and (max-width: 992px) {
    .sizes {
        padding-top: 40px;
        padding-bottom: calc(40px + 5px);
    }
    .sizes__table {
        height: 345px;
    }
    .sizes__table:before {
        display: none;
    }
	.sizes__table td, 
	.sizes__table th {
		padding-top: 8px;
		padding-bottom: 8px;
		line-height: 18px;
	}
	.sizes .btn-more {
		margin-top: 25px;
	}
	.sizes .btn-more__icon {
		margin-top: 10px;
	}
}
@media screen and (max-width: 767px) {
	.sizes__group {
		margin-bottom: 25px;
	}
}
@media screen and (max-width: 480px) {
	
}