@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;
}

body {
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

: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.1);
}

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

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

footer {
    border-top: 1px solid #eee;
    /*background: #444959;*/
    width: 100%;
    margin-top: 6em;
}

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(0, 0, 0, 0.9);*/
    /*background: linear-gradient(45deg, rgba(0,0,0,.2), #3e3838);*/
    background: linear-gradient(-45deg, rgba(255, 255, 255, .4) 0, #f8f8f8 30%, #f8f8f8 100%);
    /*color:#fff;*/
    color: #222;
    padding: 0.4em 1em;
    border-radius: 0.4em;
    border-radius: 0.4em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    /*border-top: 0.4em solid #D4AF37;*/
    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;
}

/* dropdonw menu*/
.option-container {
    min-width: 14em;
    position: relative;
}

.option-container:after {
    content: "";
    height: 1em;
    width: 4em;
    z-index: 1;
    position: absolute;
    top: -1.6em;
    left: -0.3em;
    transform: rotate(-20deg);
    background: repeating-linear-gradient(45deg, #101010, #101010 10px, #fff 10px, #fff 20px);
}

.dropbtn {
    background-color: #101010;
    border-radius: 0.4em;
    border: 1px solid #333;
    color: #fff;
    cursor: pointer;
    text-align: left;
    width: 100%;
    position: relative;
    padding: 0.5em 1em 0.5em 1em;
    clip-path: polygon(0 6%, 13% 2%, 65% 0, 100% 5%, 100% 96%, 86% 100%, 54% 97%, 25% 100%, 0 97%, 0 77%);

}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #111;
}

.dropbtn:before {
    content: "";
    position: absolute;
    top: 1.2em;
    right: 0.7em;
    background: #fff;
    height: 0.3em;
    width: 0.7em;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #101010;
    color: #fff;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(255, 255, 255, 0.02);
    z-index: 100;
    border: none;
    clip-path: polygon(0 6%, 13% 2%, 65% 0, 100% 5%, 100% 96%, 86% 100%, 54% 97%, 25% 100%, 0 97%, 0 77%);

}

.dropdown-content .option {
    color: #fff;
    padding: 0.6em 1em;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown .option:hover {
    background: #CB356B;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #BD3F32, #CB356B);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #BD3F32, #CB356B);
    background: #333;
    /*color:#fff;*/
}

.option-container.show .dropdown-content {
    display: block;
}

.option-container.show .dropbtn:before {
    clip-path: polygon(51% 0, 0 100%, 100% 100%);
}

@media screen and (max-width: 750px) {

    .option-container {
        width: 80vw;
        min-width: auto;
    }

    #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%);

    }
}