﻿

.cookie-bar-band {
	background-color: #fff;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	bottom: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
}

	.cookie-bar-band .cookie-bar__close {
		outline: none;
		background: none;
		border: 0;
		position: absolute;
		z-index: 2;
		padding: 0;
		margin: 0;
		right: 5px;
		top: 5px;
	}

		.cookie-bar-band .cookie-bar__close img {
			margin: 0;
			width: 8px;
			height: 8px;
			cursor: pointer;
		}

	.cookie-bar-band .cookie-bar__text {
		display: flex;
		gap: 5px;
		align-items: center;
	}

		.cookie-bar-band .cookie-bar__text p {
			color: #1b1918;
			font-size: 12px;
			padding: 0;
			margin: 0;
		}

		.cookie-bar-band .cookie-bar__text a {
			color: #1b1918;
			font-size: 12px;
			text-decoration: underline;
		}

	.cookie-bar-band .cookie-bar__select {
		display: flex;
		align-items: center;
		gap: 6px;
		padding: 0;
		margin: 0;
	}

		.cookie-bar-band .cookie-bar__select .cookie-bar__outlinebutton {
			background: none;
			color: #1b1918;
			outline: none;
			border: 2px solid #3c362f;
			border-radius: 3px;
			padding: 6px 12px;
			cursor: pointer;
			font-size: 12px;
		}

		.cookie-bar-band .cookie-bar__select .cookie-bar__fillbutton {
			background: #3c362f;
			color: #fff;
			outline: none;
			border: 2px solid #3c362f;
			border-radius: 3px;
			padding: 6px 12px;
			cursor: pointer;
			font-size: 12px;
		}

		.cookie-bar-band .cookie-bar__select .btn-xl {
			padding: 6px 50px;
		}

.cookie-bar-popup-content {
	/*width: 100%;
	height: 100vh;*/
	top:0;
	bottom:0;
	left:0;
	right: 0;
	position:fixed;
	overflow: hidden;
	background-color: rgba(0, 0, 0, .6);
}

.cookie-bar-popup {
	background-color: #fff;
	position: relative;
	display: flex;
	padding: 12px 20px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 50%;
	flex-direction: column;
}



	.cookie-bar-popup .cookie-bar-popup__close {
		outline: none;
		background: none;
		border: 0;
		position: absolute;
		z-index: 2;
		padding: 0;
		margin: 0;
		right: 15px;
		top: 15px;
	}

		.cookie-bar-popup .cookie-bar-popup__close img {
			margin: 0;
			width: 14px;
			height: 14px;
			cursor: pointer;
		}

	.cookie-bar-popup .cookie-bar-popup__heading {
		font-size: 20px;
		font-weight: normal;
		font-family: 'bold';
	}

	.cookie-bar-popup .cookie-bar-popup__list, .cookie-bar-popup .cookie-bar-popup__item {
		list-style: none;
	}

	.cookie-bar-popup .cookie-bar-popup__list {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.cookie-bar-popup .cookie-bar-popup__item label {
		vertical-align: middle;
		font-family: 'bold';
		font-weight: normal;
		font-size: 14px;
	}

	.cookie-bar-popup .cookie-bar-popup__item .cookie-bar-popup__text {
		font-size: 12px;
	}

	.cookie-bar-popup .cookie-bar-popup__p {
		font-size: 10px;
		font-style: italic;
	}

	.cookie-bar-popup .cookie-bar-popup__button {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

		.cookie-bar-popup .cookie-bar-popup__button .cookie-bar__outlinebutton {
			background: none;
			color: #1b1918;
			outline: none;
			border: 2px solid #3c362f;
			border-radius: 3px;
			padding: 6px 12px;
			cursor: pointer;
			flex: 0 0 49%;
		}

		.cookie-bar-popup .cookie-bar-popup__button .cookie-bar__fillbutton {
			background: #3c362f;
			color: #fff;
			outline: none;
			border: 2px solid #3c362f;
			border-radius: 3px;
			padding: 6px 12px;
			cursor: pointer;
			flex: 0 0 100%;
		}

@media all and (max-width: 640px) {

	body {
		background-image: url(mobilbg.jpeg);
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: top center;
	}

	.cookie-bar-popup-content {
		overflow: auto;
		height: inherit;
	}


	.cookie-bar-popup {
		max-width: 90%;
		transform: inherit;
		left: 0;
		top: 0;
		margin: 0 auto;
	}

	.cookie-bar-band {
		flex-direction: column;
		gap: 15px;
	}

		.cookie-bar-band .cookie-bar__select {
			flex-direction: column;
			width: 100%;
		}

			.cookie-bar-band .cookie-bar__select button {
				width: 100%;
			}
}
