/* COOKIE-BAR */
#cookie-bar {
    background-color: rgba(0, 0, 0, 0.85);
    height: auto;
    color: white;
    padding: 10px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

#cookie-bar p {
    text-align: left;
    padding: 0px 30px;
}

#cookie-bar img {
    width: 300px;
    margin-bottom: 40px;
}

#cookie-bar .cookie {
    line-height: 70px;
    padding-bottom: 30px;
    font-size: 58px;
    color: white;
}

#cookie-bar .cookie-link {
    text-decoration: underline;
    display: inline-block;
}


/* DatePicker */
.input-group .glyphicon {
    color: white;
}



/* <<-- Háttér -->> */
.site-bg {
    left: 0px;
    top: 0px;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    height: 100vh;
    width: 100vw;
    z-index: -999999;
    position: fixed;
}

.site-bg img, .site-bg video, .site-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#site-bg-portrait {
    display: none;
}



/*  LOADER  */
.loader_hatter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background-color: rgba(0,0,0,0.2);
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes reverseSpin {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes reverseSpin {
    0% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}



/* <<-- Általános tulajdonságok -->> */
.hide-on-mobile {
    display: inline-block;
}




/* <<==--   RESPONSIVE   --==>> */
/* Fekvő nézet */
@media (orientation: landscape) {
    
}

/* Álló nézet */
@media (orientation: portrait) {
    #site-bg-landscape {display: none;}
    #site-bg-portrait {display: block;}
}


/* 1680 px (1670 - 1919px)*/
@media only screen
and (max-width: 1900px) {
    
}

/* 1440 px (1430 - 1669px)*/
@media only screen
and (max-width: 1669px) {
    
}

/* 1366 px (1356 - 1429px)*/
@media only screen
and (max-width: 1429px) {
    
}

/* 1280 px (1270 - 1355px)*/
@media only screen
and (max-width: 1355px) {
    
}

/* 1024 px, Tablet fekvő (1014 - 1269px)*/
@media only screen
and (max-width: 1269px) {
    
}

/* 768 px, Tablet álló (768 - 1013px) */
@media only screen
and (max-width: 1013px) {
    
}

/* 576 px, Telefon fekvő (576 - 767px) */
@media only screen
and (max-width: 767px) {
    .hide-on-mobile {display: none;}
}

/* 300 px, Telefon álló (300 - 575px) */
@media only screen
and (max-width: 575px) {
    
}