﻿#help-popup 
{
    background: rgba(0,0,0,0);
    position: relative;
    height: 100vh;
    max-width: 800px;
    z-index: 1500;
    margin: 0 auto;
    margin-top: 70px;
    display:none;
}

#help-popup .help-content 
{
    background: rgba(255,255,255,1);
    overflow-y: scroll;
    height: 68%;
    width: 80%;
    max-width: 800px;
    min-width: 250px;
    padding: 25px 10px;
    margin: 0 auto;
    box-shadow: 0px 5px 12px #000;

}

#help-popup .help-content-title {
    width: 80%;
    max-width: 820px;
    margin: 0 auto;
    background-color: #1f3e49;
    color: #fff;
    padding: 11px 0;
    text-align: center;
    font-size: 1.3em;
    line-height: 1.4em;
}

#help-popup .title
{
	display: table;
	box-shadow: 0px 5px 12px #000;
    width: 83%;
    max-width: 820px;
	height: 0px;
    background-color: #1f3e49;
	color: #fff;
    margin: 0px auto;
	text-align: center;
	box-sizing: border-box;
}

#help-popup .title .text
{
	width: 100%;
    position: relative;
    top: 17px;
}

#help-popup .title .right
{
	width: 20px;
    float: right;
    position: relative;
    top: -15px;
    right: 24px;
}

#help-popup .title .close-button
{
	cursor: pointer;
	margin: 3px;

	width: 30px;
	height: 30px;

	background: url(../../images/template/close-icon.svg) center center no-repeat;
	background-size: 50% auto;
	background-color: #750a0a;

	border-radius: 18px;
	box-shadow: 0px 2px 3px 0px #000;
}


#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: #1f3e49;
    padding-left: 2.5%;
    padding-top: 5px;
    font-weight: bold;
}

#help-popup .help-content .help-section-content 
{
    width: 90%;
}

#help-popup .help-content .help-section-content .help-subsection 
{
    margin: 20px 10px 0px 15px;
    width: 100%;
}

#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;
    width: 30%;
}

#help-popup .help-content .help-section-content .help-subsection .help-text 
{
    float: right;
    color: #404041;
    width: 60%;
}

#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;
}

#help-popup .help-content .help-center img {
    height: 50px;
    position: relative;
    top: 20px;
}

@media (min-width: 600px) and (max-width: 768px)
{
    #help-popup .title {
        width: calc(83% - 0px);
    }

    #help-popup .help-content .help-section-content .help-subsection .help-icon 
    {
        width: 40%;
    }
}

@media (max-width: 600px)
{
    #help-popup .title {
        width: 85%;
    }
}

@media screen and (min-width: 1024px) 
{

    #help-popup .title {
        width: calc(83% - 4px)
    }
    
}