/*=================================
			COOKIES ALERT 
  ==================================*/
  .cookiealert {
	position: fixed;
    left: 0%;
    bottom: 0%;
    width: 100%;
    height: 30%;
    margin: 0% !important;
    padding-left: 12%;
    padding-right: 12%;
    padding-top: 3%;
    border-radius: 0;
    z-index: 999;
    transform: translateY(100%);
    transition: all 1000ms ease-out;
    color: #ffffff;
    background-color: #13145a;
    font-size: 15px;
	}
.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.cookiealert a {
    text-decoration: underline;
	color: #ffffff;
}
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
.btnf {
    border: medium none;
    color: #13145a;
    font-size: 16px;
    font-weight: 800;
    line-height: 30px;
    margin: auto;
    padding: 0px 25px;
    transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    border-radius: 30px;
	box-shadow: 0 3px 0 #13145a, 3px 3px 5px #ffffff;
    background-color: #ced0d6;
}
.btnf:hover, .btnf:focus {
    box-shadow: 0 3px 0 #000000, 3px 4px 5px #f7f7f7;
    background-color: #ffffff;
    color: #13145a;
    fill: #ffffff;
}
@media (max-width: 767px) {
	.cookiealert {
	height: 50%;
    padding-top: 20%;
	}
}