@font-face {
    font-family: 'Roboto';
    src: url('Roboto-ThinItalic-webfont.eot');
    src: url('Roboto-ThinItalic-webfont.eot?#iefix') format('embedded-opentype'), url('Roboto-ThinItalic-webfont.woff') format('woff'), url('Roboto-ThinItalic-webfont.ttf') format('truetype'), url('Roboto-ThinItalic-webfont.svg#RobotoThinItalic') format('svg');
    (under the Apache Software License). font-weight: 200;
    font-style: italic;
}

:root {
    --left-bg-color: rgba(0, 0, 0, 0.5);
    --left-button-hover-color: rgba(0, 0, 0, 0.3);
    --right-bg-color: rgba(0, 0, 0, 0.5);
    --right-button-hover-color: rgba(0, 0, 0, 0.3);
    --hover-width: 75%;
    --other-width: 25%;
    --speed: 1000ms;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: #999;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.4);
}

footer {background:#ffffff;z-index:10000000;position:absolute;width:100%;height:100%;display:block;}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em;
}



select {

    /*border-radius: 0.2em;*/
    /*font-weight: 700;*/
    white-space: normal;
    /*box-shadow: 0 0rem 0.2rem 0 rgba(0, 0, 0, 0.14);*/
    width: 100%;
    /*height: 2em;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    /*border: 2px solid #fff;*/
    border: none;
    color: #000;
    /*background: url(../static/imgs/select.svg);
    background-position: right 0px;
    background-repeat: no-repeat;
    background-size: contain;*/
    /*background-color: inherit;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


select:focus,
button:focus {
    outline: none;
}

svg {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    outline: none;
    border: none;
}

svg:focus {
    outline: 0;
}

input[type="radio"] {
    position: absolute;
    visibility: hidden;
    display: none;
}



#mousetip {
    position: fixed;
    z-index: 600;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4em 1em;
    border-radius: 0.4em;
    box-shadow: 0 0rem 0.2rem 0 rgba(0, 0, 0, 0.14);
    max-width: 30em;
}

#mousetip p {
    font-size: 0.8rem;
}

#mousetip .close-btn {
    display: none;
}

#mousetip.close {
    display: none;
}


@media screen and (max-width: 750px) {
    #mousetip {
        width: 98vw;
        max-width: 98vw;
        bottom: 5px;
        left: 1vw !important;
        top: auto !important;
        transition: bottom 0.8s;
        background: #101010;
        color: #fff;

    }

    #mousetip.close {
        bottom: -200%;
        display: block;

    }

    #mousetip .close-btn {
        background: #101010;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -0.8em;
        right: 1em;
        cursor: pointer;
        border-radius: 100%;
        width: 2em;
        height: 2em;
        box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);

    }
}