/**
 * cookie
 */
.cookie-modal{ 
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1000;
}
.cookie-modal.is-close {
	display: none;
}
.cookie-modal.is-open {
	display: block;	
}
.w-100 {
	width: 100%;
}
.rounded{
	border-radius: 4px;
}
.content__cookie{
	padding: 1rem;
	margin-bottom: 10px;
	background: rgb(39 39 39 / 92%);
}

.text-white{
	color: #ffffff;
}

.btn__primary {
	background: #ffcb05;
	color: #000;
	font-weight: 700;
        margin: 15px;
        width: 80px;
}
.link__priv {
	color: #ffcb05;
	border-bottom: 1px solid #ffcb05;
}
.link__priv:hover,
.link__priv:focus,
.link__priv:active{
	color: #ffcb05;
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	.content--cookie{
		display: flex;
		justify-content: space-between;
	}
	.col__1{
		width: 50%;
	}
	.col__2{
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
}

@media screen and (max-width: 767px) {
	.content--cookie{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.col__1{
		width: 100%;
	}
	.col__2{
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
}