.checkselect {
	position: relative;
	color: var(--active-color);
	height: 36px;
    border: 1px solid var(--active-color);
}

.checkselect .face-wrap {
	background-color: #fff;
	position: relative;
	padding: 5px 15px;
	font-size: 18px;
	line-height: 30px;
	font-weight: 300;
	height: 100%;
}

.select-wrapper { 
    position: relative; 
    height: 36px;
    background-color: #fff;
}


.select-wrapper:after, .checkselect .face-wrap:after {
    position: absolute;
    content: "\276F";
    z-index: 5;
    background-color: #fff;
    text-align: center;
    transform: rotate(90deg);
    font-size: 14px;
    color: var(--active-color);
    pointer-events: none;
    cursor: pointer;
    
    height: auto;
    line-height: 25px;
}

.select-wrapper:after {
    top: 5px;
    right: 7px;
    width: 20px;
    flex: inherit;
    display: flex;
    align-items: center;
    place-content: center;
    justify-content: center;
    overflow: hidden;
    transform-origin: center;
}

.checkselect .face-wrap:after {
    top: 5px;
    right: 7px;
    width: 20px;
    flex: inherit;
    display: flex;
    align-items: center;
    place-content: center;
    justify-content: center;
    overflow: hidden;
    transform-origin: center;
}

.checkselect .variants {
	overflow: hidden;
	height: 0px;
	background-color: #fff;
	top: 100%;
	z-index: 100;
	position: absolute;
}

.checkselect .variants.shown {
    max-height: 285px;
    height: calc( var(--filter-main-height) - 33px);
    overflow: auto;
    border: 1px solid var(--active-color);
    position: absolute;
    width: -webkit-fill-available;
    border-radius: 6px;
    top: calc(100% - 6px);
}

.checkselect .variants label {
	display: block;
    padding: 5px 10px;
    margin: 0;
}

.checkselect .variants label * {
    vertical-align: unset;
}

.checkselect .variants input[type='checkbox'] {
	margin-right: 15px;
	filter: hue-rotate(201deg);
}