body.noScroll {
	overflow: hidden;
	position: relative;
	height: 100vh;
}

.new-cookies {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 110000;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.new-cookies.active {
	opacity: 1;
	visibility: visible;
}

.new-cookies * {
	font-family: 'Roboto', sans-serif;
}

.new-cookies .new-cookies__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

.new-cookies .new-cookies__wrapper {
	width: 100%;
	overflow: auto;
	height: 100%;
	position: relative;
}

.new-cookies .new-cookies__content {
	position: relative;
	width: calc(100% - 20px);
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	-webkit-box-shadow: 0px 8px 15px #00000026;
	box-shadow: 0px 8px 15px #00000026;
	padding: 30px 30px 45px;
	border-radius: 10px;
	margin-top: 165px;
	margin-bottom: 30px;
}

@media screen and (max-height: 768px) {
	.new-cookies .new-cookies__content {
		margin-top: 100px;
	}
}

@media screen and (max-width: 1000px) {
	.new-cookies .new-cookies__content {
		margin-top: 100px;
	}
}

@media screen and (max-width: 500px) {
	.new-cookies .new-cookies__content {
		margin-top: 90px;
	}
}

@media screen and (max-width: 400px) {
	.new-cookies .new-cookies__content {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width: 355px) {
	.new-cookies .new-cookies__content {
		margin-top: 60px;
	}
}

.new-cookies .new-cookies__img {
	width: 120px;
	height: auto;
	display: block;
	margin-bottom: 5px;
	margin-left: auto;
	margin-right: auto;
}

.new-cookies .new-cookies__title {
	color: #1F1F21;
	font-size: 23px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 9px;
}

@media screen and (max-width: 500px) {
	.new-cookies .new-cookies__title {
		font-size: 20px;
	}
}

.new-cookies .new-cookies__text {
	color: #1F1F21;
	font-size: 16px;
	line-height: 27px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 30px;
}

.new-cookies .new-cookies__text a {
	text-decoration: underline;
	color: #1F1F21;
}

.new-cookies .new-cookies__btn {
	width: 100%;
	max-width: 290px;
	height: 55px;
	border-radius: 28px;
	color: #fff;
	background-color: #4A6DE1;
	-webkit-box-shadow: 0px 5px 10px #0000002E;
	box-shadow: 0px 5px 10px #0000002E;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	font-size: 18px;
}

