/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

::-webkit-scrollbar {
  width: 6px!important;
}
::-webkit-scrollbar-track {
  /*box-shadow: inset 0 0 5px grey!important;*/
  border-radius: 10px!important;
}
::-webkit-scrollbar-thumb {
  background: #E4E4E4!important;
  border-radius: 10px!important;
}
::-webkit-scrollbar-thumb:hover {
  background: #E4E4E4!important;
}

.cookie-modal-bg {
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	background: rgba(255,255,255,.8) url('../img/blur.png');
	z-index: 999999998;
	display: none;
}
.cookie-modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999999;
	display: none;
}
.cookie-modal-bg.show, .cookie-modal.show {
	display: flex!important;
}
.cookie-modal-center {
	width: 100%;
	max-width: 800px;
	min-height: 400px;
	background: #fff;
	margin: 15px;
	padding: 25px;
	position: relative;
	z-index: 991502;
	box-shadow: 0 0 36px rgba(0, 0, 0, 0.26);
}
.cookie-modal-container {
	border: 1px solid #707070;
	min-height: 100%;
	padding-bottom: 25px;
	max-height: 85vh;
	overflow-y: scroll;
}
.cookie-modal-logo {
	width: 100%;
	padding: 25px 25px 10px;
	text-align: center;
}
.cookie-modal-logo img {
	max-width: 406px;
	width: 100%;
}
.cookie-modal-close {
	position: absolute;
	width: 38px;
	height: 34px;
	right: 8px;
	top: 6px;
	border: none;
	z-index: 100;
	z-index: 9999;
	background: transparent;
}
.cookie-flex {
	display: flex;
}
.justify-content-between {
	justify-content: space-between;
}
.align-items-center {
	align-items: center;
}
.cookie-modal-content {
	padding: 25px;
	max-width: 590px;
	margin: 0 auto;
}
.cookie-modal-content p {
	font-size: 14px;
}
.cookie-modal-content p a {
	font-weight: bold;
	color: #000;
}
.cookie-button {
	border: none;
	background: #97cfff;
	color: #005496;
	border-radius: 20px;
	position: relative;
	padding: 8px 15px;
	padding-right: 45px;
	margin-top: 15px;
	border: 1px solid #97cfff;
}
.cookie-button::after {
	content: "";
	position: absolute;
	right: 3px;
	top: 50%;
	margin-top: -16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff url('../img/btn_arrow.svg') no-repeat center center;
}
.cookie-mt-5 {
	margin-top: 2.5em;
}

.bottom_arrow {
	padding-right: 30px;
	font-size: 16px;
	position: relative;
	transition: all .3s;
}
.bottom_arrow::after {
	content: "";
	width: 30px;
	height: 20px;
	position: absolute;
	background: url('../img/bottom_arrow.svg') no-repeat right center;
	transition: all .3s;
}
.bottom_arrow.opn::after {
	transform: rotate(-180deg);
	margin-left: 6px;
	margin-top: 3px;
}
.bottom_arrow:hover {
	text-decoration: none;
}
.cookie-pb-4 {
	padding-bottom: 2em;
}
.cookie-chb {
	border: none;
	background: #fff; /*#97cfff;*/
	color: #005496;
	border-radius: 20px;
	position: relative;
	padding: 8px 15px;
	padding-right: 45px;
	margin-top: 15px;
	border: 1px solid #005496;
	cursor: pointer;
}
.cookie-chb::after {
	content: "";
	position: absolute;
	right: 2px;
	top: 50%;
	margin-top: -16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #005496;
}
.cookie-container-chb input {
	display: none;
}
input[type="checkbox"]:checked + .cookie-chb::after {
	background: #97CFFF;
}

.cookie-hidden-content {
	overflow: hidden;
	height: 0;
}
.cookie-hidden-content.show {
	height: auto;
}
@media (max-width: 580px) {
	.cookie-flex {
		flex-wrap: wrap;
	}
	.cookie-flex button {
		width: 100%
	}
	.cookie-flex .itm {
		width: 100%;
	}
	.cookie-flex .itm .cookie-chb {
		width: 100%;
	}
	.cookie-modal-center {
		padding: 20px;
	}
	.cookie-modal-close {
		top: 25px;
		right: 35px;
	}
}











