
.win-cookie { overflow-y: hidden; }
.boxcookie {
	background-color: rgba(33, 41, 52, 0.75);
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	height: 100%;
	font-size: 14px;
}

.boxcookie > .cookie-win {
	max-height: 90vh;
    margin: 0 16px;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.4;
    background-color: #FFF;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0,0,0,.12);
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
}

.boxcookie .cookie-header { padding: 16px; }

.boxcookie .cookie-win.opt .cookie-header { padding: 8px 16px; }

.boxcookie .cookie-header .cookie-title {text-align: center;color: #000;margin: 0;font-size: 24px; }

.cookie-header .cookie-text {margin: 16px 0 0;font-size: 14px;}

.boxcookie .go-back {
    border: 0;
    background-color: unset;
    align-items: center;
    display: flex;
    cursor: pointer;
    border-radius: 4px;
    padding: 0;
	-webkit-transition: background-color 200ms cubic-bezier(.4,0,.2,1);
    -ms-transition: background-color 200ms cubic-bezier(.4,0,.2,1);
    -o-transition: background-color 200ms cubic-bezier(.4,0,.2,1);
    transition: background-color 200ms cubic-bezier(.4,0,.2,1);
}

.boxcookie .go-back:hover,
.boxcookie .go-back:focus {
	background-color: rgba(30, 135, 221, .08);
}

.boxcookie .go-back .mod-svg {
    width: 32px;
    min-width: 32px;
    fill: #44ad24;
}

.boxcookie .cookie-body {
	display: block;
	border-top: 1px solid #dadee0;
}

.boxcookie .cookie-switch {
	padding: 16px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.boxcookie .cookie-switch > p { margin-right: 24px; }

 .cookie-switch + .cookie-switch { border-top: 1px solid #dadee0; }

.boxcookie .cookie-btns {
    align-items: center;
    display: flex;
	flex-direction: column;
	padding: 16px;
	border-top: 1px solid #dadee0;
    background-color: #FFF;
    width: 100%;
	margin-top: auto;
}

.boxcookie .cookie-win-footer {
	border-top: 1px solid #dadee0;
    padding: 8px 16px;
	font-size: 14px;
}

.boxcookie .cookie-win-footer p { margin: 0; }

.boxcookie .cookie-btn-link {
    color: #44ad24;
    text-decoration: none;
}

.boxcookie .cookie-btn-link:hover,
.boxcookie .cookie-btn-link:active {
	text-decoration: underline;
}

.boxcookie .switch-text + .switch-field { margin-left: 16px; }

.boxcookie .switch-text .cookie-switch-title {color: #000;margin: 0;font-size: 18px;}

.boxcookie .switch-text .cookie-switch-text {margin: 4px 0 0; font-size: 14px;}

.boxcookie .btn-cookie-primary,
.boxcookie .btn-cookie-secondary {
    padding: 0 16px;
    height: 36px;
    min-width: unset;
    font-size: 14px;
    font-weight: 600;
    border: 0;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    display: flex;
    justify-content: center;
	text-decoration: none;
	user-select: none;
    letter-spacing: 1px;
	-webkit-transition: background-color 200ms cubic-bezier(.4,0,.2,1);
    -ms-transition: background-color 200ms cubic-bezier(.4,0,.2,1);
    -o-transition: background-color 200ms cubic-bezier(.4,0,.2,1);
    transition: background-color 200ms cubic-bezier(.4,0,.2,1);
}
.boxcookie .btn-cookie-primary:not([href]),
.boxcookie .btn-cookie-primary {
	background-color: #44ad24;
	color: #FFF;
}

.boxcookie .btn-cookie-secondary {
	background-color: #dadee0;
	color: #000;
}

.boxcookie .btn-cookie-primary:hover,
.boxcookie .btn-cookie-primary:active,
.boxcookie .btn-cookie-secondary:hover,
.boxcookie .btn-cookie-secondary:active {
	border: 0;
}
.boxcookie .btn-cookie-primary:not([href]):hover,
.boxcookie .btn-cookie-primary:hover,
.boxcookie .btn-cookie-primary:active {
	background-color: #44ad24;
	color: #FFF;
}

.boxcookie .btn-cookie-secondary:hover,
.boxcookie .btn-cookie-secondary:active {
	background-color: #c9cbcc;
	color: #000;
}

.boxcookie .btn-cookie-primary + .btn-cookie-secondary { margin-top: 8px;  }

.scroller {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.switch-field {
	display: flex;
	position: relative;
}

.switch-field > .input { display: none; }

.switch-track {
	background-color: rgba(0, 0, 0, .24);
	border-radius: 7px;
	height: 14px;
	width: 32px;
}

.switch-thumb-underlay {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	left: -14px;
	position: absolute;
	right: auto;
	top: -13px;
	width: 40px;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: transform .15s cubic-bezier(.4,0,.2,1);
	transition: transform .15s cubic-bezier(.4,0,.2,1);
}

.switch-thumb-underlay::before {
	background-color: rgba(0, 0, 0, .08);
	border-radius: 50%;
	content: '';
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	visibility: hidden;
	width: 100%;
}

.switch-field:hover .switch-thumb-underlay::before,
.switch-field:focus .switch-thumb-underlay::before {
	opacity: 1;
	visibility: visible;
}

.switch-thumb {
	background-color: #FFF;
	border-radius: 50%;
	box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
	height: 20px;
	pointer-events: none;
	width: 20px;
	z-index: 1;
}

.cookie-switch .input:checked + .switch-track {
	background-color: #44ad24;
	opacity: .38;
}

.cookie-switch .input:checked + .switch-track + .switch-thumb-underlay {
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
}

.cookie-switch .input:checked + .switch-track + .switch-thumb-underlay::before {
	background-color: #44ad24;
	opacity: .08;
}

.cookie-switch .input:checked + .switch-track + .switch-thumb-underlay .switch-thumb { background-color: #44ad24; }


.cookie-switch .input[readonly]:checked + .switch-track  + .switch-thumb-underlay  {
  pointer-events: none;
}


@media (min-width: 721px){
	.boxcookie .cookie-btns { flex-direction: row-reverse; }
	.boxcookie .btn-cookie-primary + .btn-cookie-secondary { margin-top: 0; }
	.boxcookie .cookie-win .btn-cookie-primary { margin-left: 8px; }
}