.cookies-main-wrapper{
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cookies{
	font-family: 'Montserrat', sans-serif;
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	max-height: 70%;
	overflow-y: auto;
	background: #fff;
}

.cookies-description{
	font-size: 12px;
	line-height: 1.7em;
	text-align: center;
	padding: 34px 0;
}

.cookies-description .title{
	text-transform: uppercase;
	letter-spacing: 5px;
}

.cookies-description a{
	font-weight: 700;
	color: #000;
}

.cookies-description a:hover{
	text-decoration: none;
}

.cookies-btn-holder{
	display: flex;
	flex-wrap: wrap;
}

#btn-accept,
#btn-configure,
.cookies-btn-holder button{
	flex-grow: 1;
	margin: 0;
	font-size: 12px;
	line-height: 1.25em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-family: 'Montserrat', sans-serif;
	border: 0;
	cursor: pointer;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#btn-accept{
	background: #FBD347;
	color: #000;
	text-decoration: none;
}

#btn-accept svg{
	vertical-align: middle;
	width: 23px;
	margin-right: 30px;
}

#btn-configure{
	background: #FC5858;
	color: #fff;
}

#btn-configure svg{
	vertical-align: middle;
	width: 23px;
	margin-left: 30px;
}

.cookies-inner{
	padding: 35px 0 0;
}

.cookies-innter-description{
	padding: 0 3%;
	font-size: 12px;
	line-height: 17px;
	font-weight: 300;
	margin: 0 0 35px;
}

.cookies-inner h2{
	font-size: 23px;
	line-height: 34px;
	margin:  0 0 23px;
	font-weight: 400;
}

.cookies-inner h3{
	padding: 0 3% 30px;
	font-size: 16px;
	margin: 0 0 25px;
	font-weight: 600;
	font-style: italic;
	border-bottom: 1px solid #E7E7E7;
}

.cookies-inner label{
	width: 100%;
	display: block;
	padding-right: 90px;
	position: relative;
	cursor: pointer;
}

.cookies .btn-check{
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 27px;
	background: #FF5753;
	border-radius: 20px;
}

.cookies .btn-check:before{
	position: absolute;
	left: 2px;
	top: 2px;
	width: 23px;
	height: 23px;
	background: #fff;
	border-radius: 50%;
	content: '';
	cursor: pointer;
	-webkit-transition: ease 0.25s;
	-moz-transition: ease 0.25s;
	transition: ease 0.25s;
}

.cookies input[type="checkbox"]:checked + .btn-check:before{
	left: calc(100% - 25px);
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.cookies input[type="checkbox"]:checked + .btn-check{
	background: #FDD226;
}

.cookies input[type="checkbox"]{
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	visibility: hidden;
}

.cookies .cookies-item{
	padding: 0 3% 30px;
	border-bottom: 1px solid #E7E7E7;
	margin: 0 0 25px;
}

.cookies .cookies-item:last-child{
	border-bottom: 0;
}

.cookies h4{
	font-size: 16px;
	line-height: 18px;
	font-style: italic;
	margin: 0;
	font-weight: 400;
	padding-left: 25px;
	position: relative;
}

.cookies h4:before{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewbox='0 0 256 512'%3e%3cpath d='m119.5 326.9l3.5 209.1c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0l128 287.3l100.4-102.2c4.7-4.7 12.3-4.7 17 0l7.1 7.1c4.7 4.7 4.7 12.3 0 17l136.5 327c-4.7 4.6-12.3 4.6-17-.1z'/%3e%3c/svg%3e") center center no-repeat;
	width: 20px;
	height: 20px;
	-webkit-transition: ease 0.2s;
	-moz-transition: ease 0.2s;
	transition: ease 0.2s;
}

.cookies h4.active:before{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

#btn-save{
	background: #FFC70D;
}

#btn-save svg{
	vertical-align: middle;
	width: 23px;
	margin-left: 30px;
}

.cookie-item-detail{
	margin: 30px 0 0;
	font-size: 14px;
	line-height: 1.200em;
	font-weight: 300;
	height: 0;
	overflow: hidden;
	-webkit-transition: ease 0.2s;
	-moz-transition: ease 0.2s;
	transition: ease 0.2s;
}

.cookies h4.active + .cookie-item-detail{
	height: auto;
	overflow: visible;
}

.cookies-inner label .cookie-item-detail{
	height: auto;
	overflow: visible;
}

.cookie-item-detail label{
	margin: 0 0 30px;
}

.cookie-item-detail label:last-child{
	margin: 0;
}

.cookie-item-detail h5{
	font-size: 14px;
	line-height: 17px;
	font-weight: 700;
	margin: 0;
}

@media only screen and (max-width: 767px){
	.cookies{
		max-height: 100%;
		overflow-y: scroll;
		position: unset;
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.cookies-description{
		flex-grow: 1;
	}

	.cookies-inner label{
		padding: 0 0 50px;
	}

	.cookies .btn-check{
		right: inherit;
		left: 0;
		top: calc(100% - 30px);
	}

	.cookies h4{
		padding-left: 0;
	}

	.cookies h4:before{
		display: none;
	}

	.cookie-item-detail{
		height: auto;
		overflow: visible;
	}
}