.cookies-pop h2 {
	font-size: 24px;
	text-align: center;
	color: rgb(45, 61, 110);
	margin: 20px 0 35px;
	font-weight: 700;
}
.cookies-pop--text {
	color: rgb(108, 108, 108);
	max-height: 240px;
	overflow: auto;
	font-size: 14px;
	line-height: 1.2;
}

.consept-cookie .consept-cookie--close {
	position: relative;
	width: 12px;
	height: 12px;
	opacity: 0.3;
	cursor: pointer;
}
.consept-cookie .consept-cookie--close:hover {
	opacity: 1;
}
.consept-cookie .consept-cookie--close:before,
.consept-cookie .consept-cookie--close:after {
	position: absolute;
	left: 5px;
	top: 0px;
	content: " ";
	height: 12px;
	width: 2px;
	background-color: #333;
	transition: 100ms all linear;
}
.consept-cookie .consept-cookie--close.open:after{
	transform: rotate(90deg);
}
.consept-cookie .consept-cookie--close:before {
	transform: rotate(90deg);
}
/*.consept-cookie .consept-cookie--close:after {
	transform: rotate(-45deg);
}*/

.consept-cookie .switch {
	position: relative;
	display: inline-block;
	width: 42px;
	height: 24px;
	margin-bottom: 0;
}
.consept-cookie .switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.consept-cookie .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	-webkit-transition: 0.4s;
	transition: 0.4s;
	background-color: #ccc;
}
.consept-cookie .slider:before {
	position: absolute;
	content: "";
	height: 17px;
	width: 17px;
	left: 4px;
	bottom: 3px;
background-color: rgb(100,98,99);

	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.consept-cookie input:checked + .slider {
	background-color: rgb(237, 102, 55);
}
.consept-cookie input:checked + .slider:before {
		background-color: white;
}
.consept-cookie input:focus + .slider {
	box-shadow: 0 0 1px rgb(237, 102, 55);
}

.consept-cookie input:checked + .slider:before {
	-webkit-transform: translateX(18px);
	-ms-transform: translateX(18px);
	transform: translateX(18px);
}

/* Rounded sliders */
.consept-cookie .slider.round {
	border-radius: 34px;
}

.consept-cookie .slider.round:before {
	border-radius: 50%;
}
.consept-cookie {
	margin-top: 20px;
	padding: 15px;
	border-radius: 20px;
	border: 1px solid rgb(108, 108, 108);
}
.consept-cookie--top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.consept-cookie--top h3 {
	font-size: 16px;
	line-height: 24px;
	color: rgb(108, 108, 108);
	margin: 0;
	margin-right: auto;
	margin-left: 20px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
}
.consept-cookie--bottom {
	display: none;
	color: rgb(108, 108, 108);
	font-size: 14px;
	line-height: 1.2;
	padding-left: 34px;
		padding-top: 15px;
}
.cookie-open {
	/*display: none;*/
	display: block;
	color: rgb(108, 108, 108);
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
}

.consept-cookie.open .cookie-open{
	display: inline-block;
}
.consept-cookie.open .switch{
	/*display: none;*/
	display: block;
}
.modal-footer{
	border: none;
	margin-top: 10px;
	padding-bottom: 30px;
}

.modal-footer--cookies .btn{
	font-size: 14px;
	background-color: rgb(237, 102, 55);
	border: none;
}
.modal-footer--cookies .btn:hover{
	opacity: 0.9;
}

