﻿.cookie-banner{
	position: fixed;
	bottom: 0;
	left: 0;
	background: #F9F8FB;
	padding: 10px 60px 12px 60px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
	width: 100%;
	display: none;
	z-index: 1001;
}

.cookie-banner.active{
	display: block;
}

.close-cookie{
	border: none;
	color: #23366F;
	position: absolute;
	right: 15px;
	cursor: pointer;
	font-weight: 700;
	font-size: 36px;
	width: auto;
	padding: 0;
	margin: 0;
	min-height: 42px;
    line-height: 1;
    top: -5px;
    background: transparent;
}

.cookie-banner-title{
	color: #23366F;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	line-height: 22px;
}

.cookie-banner p{
	font-size: 12px;
	line-height: 18px;
}

.cookie-banner .cookie-banner-actions{
	display: flex;
	margin-top: 8px;
	align-items: center;
	justify-content: center;
}

.cookie-banner .cookie-banner-actions a{
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 5px;
	background: #EF7A00;
	text-decoration: none;
	width: 200px;
	text-align: center;
	margin: 0 15px;
	padding: 8px;
}

.cookie-banner .cookie-banner-actions a:hover{
	background: #ea7a30;
}

@media(max-width: 768px){
	.cookie-banner{
		padding: 30px 0px;
	}

	.close-cookie{
		right: 14px;
	}

	.cookie-banner .cookie-banner-actions{
		justify-content: space-between;
	}

	.cookie-banner .cookie-banner-actions a{
		margin: 0;
		padding: 15px 0;
		width: 48.5%;
	}
}

@media(max-width: 359px){
	
	.cookie-banner{
		padding-bottom: 0;
	}

	.cookie-banner-title{
		font-size: 17px;
		line-height: 22px;
	}

	.cookie-banner .cookie-banner-actions{
		flex-wrap: wrap;
	}

	.cookie-banner .cookie-banner-actions a{
		width: 100%;
		margin-bottom: 15px;
	}
}