/*
    SKYROUTES 2.0.1

    Copyright © 2019 Aakash Pandey. All rights reserved.
    Use of this source code is governed by a license that can be
    found in the LICENSE file.

*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);

}

/* test */

::-moz-focus-inner, :active, :focus {
    outline:none;
    border:0;
    -moz-outline-style: none;
}

*:focus {
    outline: none;
}

.rt, .irt {
    display: none;
}

@keyframes fadeout {
    0%{
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.wpr {
    animation: fadeout 0.2s;
}

@keyframes fade {
    0%{opacity: 0;}
    100% {opacity: 1;}
}

.vis {
    /* display: default; */
    display: block !important;
    animation: fade 0.3s;
}

.viss {
    /* display: default; */
    display: block !important;
}

#sr_intr {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    user-select: none;
    background: white;
    text-align: center;
}

#sr_intr img {
    width: 120px;
    margin-top: 180px;
}

#sr_intr div {
    margin-top: 30px;
    color: rgb(71, 71, 71);
    font-size: 110%;
    font-family: 'Helvetica';
}

#sr_intr p {
    margin-top: 100px;
    font-size: 105%;
    font-family: 'Helvetica';
    line-height: 38px;
    padding: 30px;
    color: rgb(71, 71, 71);
}


@media screen and (max-height: 640px) {


    #sr_intr img {

        margin-top: 130px;
    }
    
    #sr_intr div {
        margin-top: 25px;
    }
    
    #sr_intr p {
        margin-top: 80px;
    }


}


@media (prefers-color-scheme: dark) {
    #sr_intr {
        background: #35363a !important;
        color: #f5f5f5 !important;
    }

    #sr_intr div, #sr_intr p {
        color: rgb(235, 235, 235);
    }
}
