#an-cookie-notice{
	box-sizing: border-box;
	position: fixed;
    padding: 0px;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    background: rgba(255,255,255,0.87);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
    transition: opacity 0.38s ease, transform 0.48s ease;
}
#an-cookie-notice.user-has-selected,
#an-cookie-notice.loading{
	opacity: 0;
	transform: translateY(100px);
	pointer-events: none;
}
#an-cookie-notice p{
	margin-bottom: 0;
	padding-bottom: 0;
}
#an-cookie-notice a{
	color: #0e79b2;
	color: var(--main-color, #0e79b2);
}

#an-cookie-notice .button{
	box-sizing: border-box;
	width: 100%;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	transition: opacity 0.2s ease;
}
#an-cookie-notice .button.decline{
	color: rgba(0,0,0,0.6);
}
#an-cookie-notice .button.accept{
	background: #0e79b2;
	background: var(--main-color, #0e79b2);
	color: #fff;
}
#an-cookie-notice .button:hover{
	opacity: 0.8;
	text-decoration: none;
}

#an-cookie-notice[data-position="bottom-right-block"]{
	bottom: 10px;
    right: 10px;
    width: 425px;
}
#an-cookie-notice[data-position="bottom-right-block"] .text-wrapper{
	padding: 40px;
}
#an-cookie-notice[data-position="bottom-right-block"] .buttons-wrapper{
	display: flex;
	align-items: center;
}
#an-cookie-notice[data-position="bottom-bar-full-width"]{
	left: 16px;
	right: 16px;
	bottom: 16px;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
    flex-wrap: nowrap;
}
#an-cookie-notice[data-position="bottom-bar-full-width"] .text-wrapper{
	padding: 25px;
}
#an-cookie-notice[data-position="bottom-bar-full-width"] .buttons-wrapper{
	display: flex;
}
#an-cookie-notice[data-position="bottom-bar-full-width"] .buttons-wrapper .button{
	display: flex;
  	align-items: center;
  	justify-content: center;
  	padding: 20px 40px;
}
@media screen and (max-width: 690px){
	#an-cookie-notice{
		background: rgba(255,255,255,1);
		left: 0px !important;
		right: 0px !important;
		bottom: 0px !important;
		width: 100% !important;
		flex-direction: column !important;
	}
	#an-cookie-notice .text-wrapper{
		padding: 20px;
	}
}

@keyframes slideInFromRight {
  0% {
  	opacity: 0;
    transform: translateX(50px)
  }
  100% {
  	opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
  	opacity: 0;
  	transform: translateZ(0);
  	-webkit-transform: translateZ(0);
  }
  100% {
  	opacity: 1;
  	transform: translateZ(0px);
  	-webkit-transform: translateZ(0px);
  }
}