﻿#help-popup 
{
    background: rgba(67,66,68,0.58);
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 1500;
    display:none;
}

#help-popup .help-content 
{
    background: rgba(67,66,68,0.87);
    position: fixed;
    overflow-y: scroll;
    height: 82%;
    width: 80%;
    max-width: 800px;
    min-width: 350px;
    top: 7%;
    left: 10%;
    border: 1px solid white;
    padding: 10px 0px
}

#help-popup .help-content #start-guided-tour
{
    background-color: #C8C04C;
    display: inline-block;
    margin-left: 8%;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    color: black;
    font-size: 0.8em;
    float:right;
}

#help-popup .help-content #start-guided-tour 
{
    background-color: #C8C04C;
    display: inline-block;
    margin-left: 8%;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    color: black;
    font-size: 0.8em;
    float: right;
}

#help-popup .help-content #guided-tour-container 
{
    padding: 5px 20px;
}

#help-popup .help-content #guided-tour-container span
{
    color: white;
}


#help-popup .help-content hr:first-child 
{
    margin-top: 10px;
}

#help-popup .help-content hr 
{
    width: 95%;
    margin-top: 20px;
}

#help-popup .help-content .help-section-title 
{
    color: #c8c04c;
    padding-left: 2.5%;
    padding-top: 5px;
    font-weight: bold;
}

#help-popup .help-content .help-section-content 
{
    width: 65%;
    margin-left: 22%;
}

#help-popup .help-content .help-section-content .help-subsection 
{
    margin: 20px 10px 20px 15px;
}

#help-popup .help-content .help-mouse-ctrls .help-section-content .help-subsection 
{
    margin: 20px 10px 20px 0px;
}

#help-popup .help-content .help-section-content .help-subsection .help-icon 
{
    float: left;
}

#help-popup .help-content .help-section-content .help-subsection .help-text 
{
    float: right;
    color: white;
    width: 70%;
}

#help-popup .help-content .help-section-content .help-subsection .help-text .bold-orange 
{
    color: #c8c04c;
    font-weight: bold;
}

#help-popup .help-content .help-section-content .help-subsection .clear 
{
    clear: both;
}

@media screen and (min-width: 1150px) 
{
    #help-popup .help-content 
    {
        left: 23.5%;
    }
}