
.basel-cookies-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1100;
	width: 100%;
	padding: 15px 30px;
	background-color: rgba(0, 0, 0, .9);
	border-top: 2px solid rgba(255, 255, 255, .1);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 100%, 0);
	transition: all .4s cubic-bezier(.784, .134, .14, .85);
}

.basel-cookies-popup.popup-display {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.basel-cookies-popup.popup-hide {
	opacity: 0;
	visibility: hidden;
}

.basel-cookies-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.basel-cookies-inner .cookies-buttons {
	flex-shrink: 0;
}

.basel-cookies-inner .cookies-info-text {
	padding-right: 30px;
	line-height: 1.4;
}

.cookies-buttons>a {
	margin-right: 20px;
}

.cookies-buttons>a:last-child {
	margin-right: 0;
}

.cookies-buttons .cookies-more-btn {
	display: inline-block;
	color: #fff;
	padding-top: 1px;
	padding-bottom: 1px;
	position: relative;
}

.cookies-buttons .cookies-more-btn:after {
	content: " ";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: width .2s ease;
}

.cookies-buttons .cookies-more-btn:hover {
	text-decoration: none;
}

.cookies-buttons .cookies-more-btn:hover:after {
	width: 100%;
	left: 0;
}

.cookies-buttons .cookies-accept-btn {
	display: inline-block;
	font-size: 12px;
	line-height: 16px;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 14px;
	padding-right: 14px;
	text-transform: uppercase;
	letter-spacing: .3px;
	border-radius: 0;
	border: 2px solid #fff;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: all .25s ease-in-out;
}

.woocommerce-demo-store .basel-cookies-popup.popup-display {
	transform: translate3d(0, -42px, 0);
}

@media (max-width: 768px) {
	.basel-cookies-inner {
		flex-direction: column;
	}
	
	.basel-cookies-inner .cookies-info-text {
		padding-right: 0;
		text-align: center;
	}
	
	.basel-cookies-inner .cookies-buttons {
		margin-top: 15px;
	}
}
