#cookie_bar
{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 1200px;
	width: 90%;
	min-height: 300px;
	background-color: #FFF;
	box-shadow: 0 10px 100px rgba(0,0,0,.3);
	display: flex;
    align-items: center;
	border-radius: 10px;
	z-index: 10000;
}
#cookie_bar>div
{
	width: 90%;
	margin: 0 auto;
}
#cookie_bar .head
{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	margin-bottom: 10px;
}
#cookie_bar .head h4
{
	font-weight: bold;
	font-size: 18px;
}
#cookie_bar #close_button
{
	background: rgb(234, 239, 242);
	border: 0;
	font-size: 25px;
	width: 40px;
	height: 40px;
	display: none;
}
#cookie_bar .content
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
#cookie_bar .content a
{
	color: #89623b;
	text-decoration: none;
}
#cookie_bar .content span
{
	width: 80%;
}
#cookie_bar .content button, #custom_cookie_dialog button
{
	border: 2px solid #1474bd;
	background-color: #FFF;
	color: #1474bd;
	width: 200px;
	height: 50px;
}
#cookie_bar .content button
{
	margin-bottom: 10px;
	margin-right: 80px;
	float: right;
}
#cookie_bar .content #accept_button, #custom_cookie_dialog #accept_all_button
{
	font-weight: bold;
	background: #1474bd;
    color: #FFF;
}
#custom_cookie_dialog h3
{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 40px;
	font-weight: bold;
	font-size: 24px;
}
#custom_cookie_dialog .cookie_card
{
	border-bottom: 1px solid #d6d6d6;
	margin: 10px;
	padding: 20px 10px;
}
#custom_cookie_dialog .head
{
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	margin-bottom: 10px;
}
#custom_cookie_dialog #decline_all_button
{
	border: 2px solid rgb(143, 143, 143);
	color: rgb(143, 143, 143);
}
#custom_cookie_dialog .buttons_container
{
	display: flex;
	justify-content: space-evenly;
}
@media (max-width: 900px)
{
	#cookie_bar .content
	{
		flex-direction: column;
	}
	#cookie_bar .content button
	{
		margin: 0;
		margin-top: 20px;
		float: none;
	}
	#cookie_bar
	{
		text-align: center;
	}
	#cookie_bar span
	{
		text-align: justify;
	}
	#cookie_bar .head
	{
		justify-content: center;
	}
	#cookie_bar .content span
	{
		width: 100%;
	}
}
/* Switch button */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}
.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #2196F3;
}
input:disabled + .slider {
	background-color: #c2c2c2;
}
input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}
.slider.round:before {
	border-radius: 50%;
}
/* Remove dialog title bar */
.dialogWithoutTitle .ui-dialog-titlebar
{
	display:none;
}
