html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead {
    margin: 0;
    padding: 0;
    border: none;
    outline: 0;
    vertical-align: baseline;
}
* {
	box-sizing: border-box;
}
html,
body {
	width: 100%;
	height: 100%;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	line-height: 22px;
	font-weight: 300;
	color: #fff;
	background: #181716;
}
a {
	color: inherit;
	text-decoration: none;
	transition: 1s;
}
a:hover {
	transition: 1s;
}	
img {
	width: 100%;
	height: auto;
	display: block;
}
.main {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
	padding: 22px;
}
.main__info {
	max-width: 414px;
	position: relative;
}
.main__info-logo {
	position: relative;
}
.main__info-logo.noact {
	opacity: 0.1;
	filter: alpha(opacity=10);
}
.main__info-btn {
	position: relative;
	margin-top: 20vh;
}			
.btn {
	width: 100%;
	position: relative;
	padding: 10px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 12px;
	color: #181716;
	font-size: 16px;
    line-height: 140%;
	font-weight: 600;
	text-align: center; 
	border: 1px solid #181716;
	background: #fff;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	box-sizing: border-box;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	cursor: pointer;
	transition: 1s;
}
.btn:hover {
	color: #fff;
	background: none;
	border-color:  #fff;
	transition: 1s;
}

.main__info-check {
	position: relative;
	margin-top: 10vh;
	text-align: center;
	display: none;
}	
.checkbox {
	position: relative;
	display: inline-block;
	margin-bottom: 10vh;
	cursor: pointer;
}		
.checkbox input[type=checkbox] {
	display: none;
}
.checkbox span {
	display: block;
	padding-left: 32px;
	color: var(--color_White);
	font-size: 16px;
    line-height: 140%;
	font-weight: 400;
	background-repeat: no-repeat;
	background-image: url(../images/check.svg);
	background-position: 0 3px;
}	
.checkbox input[type="checkbox"]:checked + span {
	background-image: url(../images/checked.svg);
}
.checkbox a {
	color: #326FC3;
}
.checkbox a:hover {
	text-decoration: underline;
}		
.disabled  { 
	pointer-events: none; 
	cursor: default; 
	color: #000;
	border-color: transparent;
	background: rgba(120,120,120,0.2);
}

@media all and (max-width: 767px) {
	.main__info-check {
		text-align: left;
	}	
	.checkbox {
		display: block;
	}
}

.cookieinfo {
    padding: 20px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    flex-direction: column-reverse;
    color: #181716 !important;
    font-size: 16px !important;
    line-height: 140% !important;
    font-weight: 400 !important;
    font-family: "Inter", sans-serif !important;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}    
.cookieinfo span {
    width: 100%;
    padding: 0  !important;
}    
.cookieinfo-close {
    padding: 10px 20px !important;
    margin: 0 auto !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 140% !important;
    font-weight: 600 !important;
    font-family: "Inter", sans-serif !important;
    background: #181716 !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border-radius: 4px !important;
    box-sizing: border-box!important;
    float: none !important;
}    
 	