html {
	font-size: 10px;
	font-size: 62.5%; /* 10px */
}
*,
*:before,
*:after {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-style: normal;
	overflow-y: scroll;
	touch-action: manipulation;
}
body.fixed {
    position: fixed;
    width: 100%;
}
:focus-visible {
	outline: var(--focus_outline, 1px solid orange);
	outline-offset: var(--focus_outline_offset, 2px);
	box-shadow: var(--focus_boxshadow, inherit);
	transition: 0s !important;
}
a,
a:visited,
a:active {
	text-decoration: inherit;
	color: inherit;
}
a:hover {
	text-decoration: underline;
	color: inherit;
}
a.noline:hover {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6, hgroup > p {
	position: relative;
	padding: 0;
	text-wrap: balance;
}
p, ul, ol {
	text-wrap: pretty;
}
h1, h2, a {
	word-wrap: break-word;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
.block {
	display: block;
}
.fixed {
	position: fixed;
}
.nobr {
	white-space: nowrap;
}
.container {
	position: relative;
	display: table;
	display: flow-root;
	margin: 0 auto;
	width: 100%;
	padding: 0;
}
section, .section, .set {
	position: relative;
	float: left;	
	width: 100%;
	margin: 0;
}
.padd_leri {
	padding-left: var(--m);
	padding-right: var(--m);
}
.padd_tobo {
	padding-top: var(--n);
	padding-bottom: var(--n);
}
.padd_to {
	padding-top: var(--n);
}
.padd_bo {
	padding-bottom: var(--n);
}
.icon {
	position: relative;
	display: inline-block;
	width: 1.4em;
	height: auto;
	stroke: currentColor;
	stroke-width: 1.5;
	vertical-align: middle;
}
.icon.ml {
	margin-left: 0.5em;
}
.icon.mr {
	margin-right: 0.5em;
}
.box {
	width: 100%;
	position: relative;
	display: table;
	display: flow-root;
	margin: 0 auto;
}
.box.mini {
	max-width: var(--box_mini);
}
.box.small {
	max-width: var(--box_small);
}
.box {
	max-width: var(--box);
}
.box.medium {
	max-width: var(--box_medium);
}
.box.large {
	max-width: var(--box_large);
}
.box.full {
	max-width: var(--box_full);
}
.center {
	text-align: center !important;
}
.left {
	text-align: left !important;
}
.right {
	text-align: right !important;
}
.clear {
	clear: both;
}
.content-box {
	box-sizing: content-box;
}
.border-box {
	box-sizing: border-box;
}
.bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.transformY {
	top: 50%;
	transform: translateY(-50%);
}
.transformX {
	left: 50%;
	transform: translateX(-50%);
}
.transformXY {
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.spacer {
	position: relative;
	float: left;	
	width: 100%;
	height: calc(var(--n) / 2);
}
.spacer.large {
	height: var(--n);
}
.spacer.medium {
	height: calc(var(--n) / 1.5);
}
.spacer.small {
	height: calc(var(--n) / 3);
}
.spacer.tiny {
	height: calc(var(--n) / 5);
}
.overflow {
	overflow: hidden;
}
.overlay {
	position: absolute;
	inset: 0;
}
.pe {
	pointer-events: none;
}
.preload {
	position: fixed;
	inset: 0;
	display: flex;
    justify-content: center;
    align-items: center;
	z-index: 99999999;
	pointer-events: none;
	opacity: 1;
	visibility: visible;
	animation: preload_release 0.6s forwards;
}
@keyframes preload_release {	
    100%  { opacity: 0; visibility: hidden; z-index: -99; }
}
html.loaded .preload {
	display: none !important;
}
html.loaded .d {
	animation: none !important;
}
.fl_left {
	float: left;
}
.fl_right {
	float: right;
}
.no_margin {
	margin: 0 !important;
}
.invisible {
	opacity: 0;
}
.visible, .opp {
    opacity: 1 !important;
}
.dn {
	display: none;
}
.dni {
	display: none !important;
}
address {
	font-style: normal;
}
.paused, .pauser .animated {
	pointer-events: none;
	animation-play-state: paused;		
}
.running {
	animation-play-state: running;		
}
#message {
    position: fixed;
    bottom: 0;
    left: 50%;
	margin: 0;
	z-index: 999999999;
    max-width: calc(100% - var(--m) * 2);
	width: max-content;
	text-align: center;
	pointer-events: none;
    animation: msg 6.7s forwards;
}
@keyframes msg {
    0%   { opacity: 0; }
	5%   { opacity: 1; }
	90%  { opacity: 1; }		
    100% { opacity: 0; }
}
.pointer {
    cursor: pointer;
}
.close:hover {
	cursor: pointer;
}
.close:before, .close:after {
	content: "";
	position: absolute;
	width: var(--hic_width);
	height: var(--hic_bar_heith);
	border-radius: var(--hic_bar_br);
	top: calc(var(--hmain) / 2);
	right: var(--m);
	margin-top: calc(var(--hic_bar_heith) / -2);
	background-color: white;
	z-index: 99;
}
.close:before {
	transform: rotate(45deg);
}
.close:after {
	transform: rotate(-45deg);
}
.mask {
	will-change: opacity;
    position: fixed;
    inset: 0;
    z-index: 699;
    opacity: 0;
	display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;
    background-color: var(--mask_background);
    transition: opacity var(--move_in);
}
.mask.mask_close {
    background-color: var(--mask_closable_background);
}
.popup {
	position: relative;
    width: 100%;
	min-height: 10rem;
	overflow: auto;
	cursor: auto;
	scrollbar-width: thin;
}
.consent_wall {
    position: absolute;
    inset: 0;
	padding: 0 var(--m);
}
.consent_wall, .consent_wall > .box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.consent_wall > .box {
	gap: 4rem;
}
.load {
	pointer-events: none;
	overflow: hidden;
}
.load.append {
	position: absolute;
	inset: 0;
	z-index: 9;
	pointer-events: auto;
}
.load * {
	z-index: -1;
}
.load:before {
    content: "";
    position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--loader_bg);
}
*:has(> .load.append), *:has(> .load.append) > *:not(.load.append) {
	border-color: transparent !important;
	background-color: transparent !important;
}
.load:after {
	content: "";
	position: absolute;
	left: 50%;
    top: 50%;
	border-radius: 50%;
	width: var(--loader_size);
	height: var(--loader_size);
	border: var(--loader_border_width) solid;
	margin: calc(var(--loader_size) / -2) 0 0 calc(var(--loader_size) / -2);
	border-color: var(--loader_color_base) !important;
	border-top-color: var(--loader_color_ind) !important;
	animation: spin 0.8s linear infinite;
}
.image_loader * {
	animation-play-state: paused;
}
.grid12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
}
.col2  { grid-column-end: span 2; }
.col3  { grid-column-end: span 3; }
.col4  { grid-column-end: span 4; }
.col5  { grid-column-end: span 5; }
.col6  { grid-column-end: span 6; }
.col7  { grid-column-end: span 7; }
.col8  { grid-column-end: span 8; }
.col9  { grid-column-end: span 9; }
.col10 { grid-column-end: span 10; }
.col11 { grid-column-end: span 11; }
.col12 { grid-column-end: span 12; }
.row2  { grid-row-end: span 2; }
.row3  { grid-row-end: span 3; }
.row4  { grid-row-end: span 4; }
#hic {
	display: none;
	position: relative;
	height: var(--hic_height);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
#hic:after {
    content: "";
    position: absolute;
    top: calc((var(--hic_width) * -0.35) - 10px);
	bottom: calc((var(--hic_width) * -0.35) - 10px);
    left: -15px;
	right: -15px;
}
#hic, #hic > div {
	width: var(--hic_width);
}
#hic > div {
	position: absolute;
	height: var(--hic_bar_heith);
	border-radius: var(--hic_bar_br);
	margin-top: calc(var(--hic_bar_heith) / -2);
	background-color: var(--hic_bar_bg);
	transition: transform 0.3s;
}
#hic > div:nth-child(1) {
	top: 0;
}
#hic > div:nth-child(2) {
	top: 50%;
	display: var(--hic_bar_nth2);
}
#hic > div:nth-child(3) {
	top: var(--hic_height);
}
#hic.hic_animate > div:nth-child(1) {
	transform: translateY(calc(var(--hic_height) / 2)) rotate(45deg);
}
#hic.hic_animate > div:nth-child(2) {
	opacity: 0;
	transform: translateX(-40%);
}
#hic.hic_animate > div:nth-child(3) {
	transform: translateY(calc(var(--hic_height) / -2)) rotate(-45deg);
}
.hidemenu #hic {
	display: block;
}

/* Animations */ 
.release {
	animation-name: release;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
@keyframes release {
	to { transform: none; }
}
.fade_in {
	animation-name: fade_in;
	animation-duration: 1.0s;
	animation-fill-mode: both;
}
@keyframes fade_in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
.fade_in_up {
	animation-name: fade_in_up;
	animation-duration: 0.8s;
	animation-fill-mode: both;
}
@keyframes fade_in_up {
	from { opacity: 0; transform: translate3d(0, var(--fade_in_up), 0) }
	to   { opacity: 1; transform: none; }
}
.fade_in_up_f {
	animation-name: fade_in_up_f;
	animation-duration: 0.8s;
	animation-fill-mode: both;
}
@keyframes fade_in_up_f {
	from { opacity: 0; transform: translate3d(0, var(--fade_in_up_f), 0) }
	to   { opacity: 1; transform: none; }
}
.fade_out {
	animation-name: fade_out;
	animation-duration: 0.8s;
	animation-fill-mode: both;
}
@keyframes fade_out {
	from { opacity: 1; }
	to   { opacity: 0; }
}
.zoom_in {
	animation-name: zoom_in;
	animation-duration: 0.8s;
	animation-fill-mode: both;
}
@keyframes zoom_in {
	from { transform: scale(0); }
	to   { transform: none; }
}
.spin {
	animation: spin 0.8 linear infinite;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}
.shake {
	animation-name: shake;
	animation-duration: 0.6s;
	animation-fill-mode: both;
}
@keyframes shake {
	to { transform: translate3d(0, 0, 0); }
	10%, 30%, 50%, 70%, 90% { transform: translate3d(-10px, 0, 0); }
	20%, 40%, 60%, 80% { transform: translate3d(10px, 0, 0); }
}
.slow {
	animation-duration: 1.4s;
}
.fast {
	animation-duration: 0.7s;
}
.faster {
	animation-duration: 0.35s;
}
.fastest {
	animation-duration: 0.2s;
}