﻿#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:1100; /* makes sure it stays on top */
    width: 100%;  
    height: 100%;
    background: #fff;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.middle {
    width: 400px;
}

img.loading {
    width: 280px;
    margin-top: 20px;
}
.cookies-div {
    background: #fffffff0;
    position: fixed !important;
    bottom: 15px;
    z-index: 1099;
    width: 90% !important;
    box-shadow: 0 0 35px 0 rgba(0,0,0,.2);
    border-radius: 5px;
    padding: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}
.cookies-accept {
    background: #7a5df6;
    color: #ffffff;
    border: #7a5df6;
    border-radius: 4px;
    width: 150px;
    height: 40px;
    margin-right: 5px;
    cursor: pointer;
}
.cookies-decline {
    background: transparent;
    color: #7a5df6;
    border: solid 1px #7a5df6;
    border-radius: 4px;
    width: 150px;
    height: 40px;
    margin-left: 5px;
    cursor: pointer;
}
@media only screen and (max-width: 800px) {
    .is-mobile-hidden{ display: none !important; }
 }