<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header__nav-link--inner .header__nav-link{
	position: relative;
}

.header__nav-link--inner .header__nav-link::before{
	content: '';
	width: 20px;
	height: 20px;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
}

.header__nav-link--inner:nth-child(1) .header__nav-link::before{
	background-image: url(./../img/nav-icons/cheap.svg);
}

.header__nav-link--inner:nth-child(2) .header__nav-link::before{
	background-image: url(./../img/nav-icons/vip.svg);
}

.header__nav-link--inner:nth-child(3) .header__nav-link::before{
	background-image: url(./../img/nav-icons/young.svg);
}

.header__nav-link--inner:nth-child(4) .header__nav-link::before{
	background-image: url(./../img/nav-icons/checked.svg);
}

.header__nav-link--inner:nth-child(5) .header__nav-link::before{
	background-image: url(./../img/nav-icons/young-2.svg);
}

.header__nav-link--inner:nth-child(6) .header__nav-link::before{
	background-image: url(./../img/nav-icons/mature.svg);
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}

.fade {
	transition: opacity 0.15s linear;
}

.fade:not(.show) {
	opacity: 0;
}

.modal-body{
	background:#081425;
}
.modal-body .sub_filter{
	font-size: 14px;
	margin-top: 15px;
	overflow-y: scroll;
	max-height: 80dvh;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.modal-body .sub_filter li{
	display:block;
	font-size:14px;
}

.modal-content{
	background:#081425;
	padding: 16px;
}

.btn-close {
	margin-left: auto;
	display: block;
}

.current_region{
	color: #fff;
	font-size: 28px;
}

.btn-close-container {
	position: absolute;
	top: 16px;
	right: 16px;
}

.sub_filter a{
	color: #fff;
}

.modal-dialog{
	position: relative;
	top: 50%;
	max-width: 500px;
	margin: 0 auto;
	transform: translateY(-50%);
}


.modal-backdrop{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop.show {
	opacity: 0.5;
}</pre></body></html>