.thoughtco-cookiepanel .cookiepanel-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: rgba(0, 0, 0, 0.5); */
	display: none;
	z-index: 9999991;
}

.thoughtco-cookiepanel .cookiepanel-open {
	position: fixed;
	bottom: 10px;
	left: 10px;
	background-color: rgb(31, 52, 70);
	color: #fff;
	padding: 8px 10px;
	z-index: 100000;
}

.thoughtco-cookiepanel .cookiepanel-sidebar {
	width: 77%;
	max-width: 400px;
	background-color:  rgb(31, 52, 70);
	color: #fff;
	position: fixed;
	box-sizing: border-box;
	padding: 40px 20px;
	line-height: 1.3;
	font-size: 0.8rem;
	transition: 300ms ease-in-out all;
	z-index: 9999992;
	overflow: auto;
	left: -500px;
	bottom: 10px;
	
}

.thoughtco-cookiepanel .cookiepanel-sidebar a {
	text-decoration: underline;
}

.thoughtco-cookiepanel.open .cookiepanel-sidebar {
	left: 10px;
}

.thoughtco-cookiepanel.open .cookiepanel-overlay {
	display: block;
}

.thoughtco-cookiepanel .cookiepanel-sidebar .cookiepanel-close {
	position: absolute;
	right: 16px;
	top: 8px;
	width: 32px;
	height: 32px;
	text-indent: -99999px;
}

.thoughtco-cookiepanel .cookiepanel-sidebar .cookiepanel-close:before, .cookiepanel-close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #fff;
}

.thoughtco-cookiepanel .cookiepanel-sidebar .cookiepanel-close:before {
	transform: rotate(45deg);
}

.thoughtco-cookiepanel .cookiepanel-sidebar .cookiepanel-close:after {
	transform: rotate(-45deg);
}

.thoughtco-cookiepanel .cookiepanel-sidebar p {
	font-family: 'Gentium Basic', serif;
	font-size: 1rem;
	margin: 0.5em 0 0;
}

.thoughtco-cookiepanel .cookiepanel-sidebar h2,
.thoughtco-cookiepanel .cookiepanel-sidebar h3,
.thoughtco-cookiepanel .cookiepanel-sidebar .heading {
	font-weight: 500;
	font-size: 1.1rem;
	font-family: 'Proza Libre', sans-serif;	
}

.thoughtco-cookiepanel .cookiepanel-sidebar div + .heading,
.thoughtco-cookiepanel .cookiepanel-sidebar p + .heading {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	margin-top: 1em;
	padding-top: 1em;
}

.thoughtco-cookiepanel .buttons {
	font-family: 'Gentium Basic', serif;
	margin-top: 1em;
}

.thoughtco-cookiepanel .buttons button {
	background-color: rgb(255, 255, 255);
	font-family: 'Gentium Basic', serif;
	padding: 8px 12px;  
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
}

.thoughtco-cookiepanel .buttons button + button {
	margin-left: 10px;
}

.thoughtco-cookiepanel .toggler {
	width: 180px;
	background-color: rgba(255, 255, 255, 0.5);
	position: relative;
	padding: 6px;
	margin: 1em 0;
}

.thoughtco-cookiepanel .toggler::after {
	content: ' ';
	display: block;
	clear: both;
}

.thoughtco-cookiepanel .toggler input {
	display: none;
}

.thoughtco-cookiepanel .toggler label {
	width: 40%;
	float: left;
	padding-left: 10px;
	font-size: 0.9rem;
	color: rgb(31, 52, 70);
}

.thoughtco-cookiepanel .toggler label + label {
	text-align: right;
	padding-right: 10px;
}

.thoughtco-cookiepanel .toggler label + label::before {
	display: none;
}

.thoughtco-cookiepanel .toggler label::before {
	content: ' ';
	position: absolute;
	width: 50%;
	height: calc(100% - 6px);
	top: 3px;
	left: 3px;
	background-color: rgb(255, 216, 76);
	transition: 300ms ease-in-out all;
	z-index: -1;
}

.thoughtco-cookiepanel .toggler input:checked + label::before {
	left: calc(50% - 3px);
}