﻿/*@import url(http://fonts.googleapis.com/css?family=Roboto);*/


@media screen and (pointer: coarse) {
    @supports (-webkit-backdrop-filter: blur(1px)) and (overscroll-behavior-y: none) {
        html {
            min-height: 100.3%;
            overscroll-behavior-y: none;
        }
    }
}



#imgCaptcha:hover {
    cursor: pointer;
}

/****** LOGIN MODAL ******/

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}


.subjectMsg {
    width: 220px;
    height: 50px;
    border-radius: 20px;
    background: #454545;
    font-size: 16px;
    font-family: 'Global Monospace';
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    position: fixed;
    left: calc(50% - 110px);
    top: calc(50% - 25px);
    color: #fff;
}


.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loader > img {
        width: 100px;
    }

    .loader.hidden {
        animation: fadeOut 1s;
        animation-fill-mode: forwards;
    }

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
