﻿:root
{
	--prefer-color: #0090c3;
}

.cookiesContainer
{
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:10000;
	background-color:rgba(0, 0, 0, 0.8);
	-webkit-touch-callout: none;
    -webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select:none;
	font-family: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cookiesPopup
{
    position: relative;
    width: 100%;
	max-width: 640px;
    z-index: 10000;
    background-color:#fff;
    color:#666;
    padding: 48px;
    text-align: center;
	font-size: 14px;
	line-height: 1.6;
	box-sizing: border-box;
	overflow: auto;
	max-height: 100%;
}

.cookiesPopup a
{
	color: var(--prefer-color);
	text-decoration: none;
}

.cookiesSettings
{
	display: none;
	max-height: 300px;
	min-height: 120px;
	overflow-y: scroll;
	margin-top: 32px;
	background-color: #eee;
	padding: 8px;
}
.cookiesSettings.show
{
	display: block;
}

.settingsCheckboxItem
{
	border-bottom: 1px solid #ccc;
	text-align: left;
	padding: 8px;
	position: relative;
	cursor: pointer;
}

.settingsCheckboxItem::after
{
	content: '';
	background-image: url("listArrow.png");
	position: absolute;
	top: 12px;
	right: 16px;
	width: 16px;
	height: 16px;
	background-position: center center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	transition: all 500ms;
	transform-origin: center;
}
.settingsCheckboxItem.active::after
{
	transform: rotate(180deg);
}

.settingsCheckboxItem input[type=checkbox]
{
	-webkit-appearance: checkbox !important;
	cursor: pointer;
}

.settingsCheckboxItem > span
{
	margin-left: 8px;
	font-size: 16px;
	font-weight: bold;
	color: var(--prefer-color);
	cursor: pointer;
	padding-right: 24px;
}

.checkboxAbout
{
	height: 0;
	overflow: hidden;
	box-sizing: content-box;
}
.checkboxAbout span
{
	display: block;
	padding: 16px;
}

.checkboxAbout h5
{
	font-size: 15px;
	margin-top: 8px;
	margin-bottom: 0;
}

.checkboxAbout ul
{
	margin-top: 4px;
	padding-left: 16px;
}

.checkboxAbout ul li
{
	list-style: inside;
	list-style-type: disc;
}

.cookieButtons
{
	margin-top: 16px;
}

.cookieButton
{
	border: none;
	border-radius: 100px;
	font-size: 14px;
	padding: 8px 32px;
	cursor: pointer;
	margin: 0 4px;
	background-color: transparent;
	margin-top: 16px;
}

.buttonWhite
{
	border:1px solid #343434;
}

.buttonPreferColor
{
	background-color: var(--prefer-color);
	color:#fff;
	border: 1px solid var(--prefer-color);
	font-weight:bold;
}

@media only screen and (max-width: 640px) {
	.cookiesPopup
	{
		padding:32px;
		height: 100%;
	}
}