﻿/*
 >  Dynamic Echo Cycle ©
 >  http://www.daiereh.com
 >  Daiereh © - Software Engineering, Interactive Agency
 
 >> version 1.0
 >> date: 2018-01-16
*/

.helpContent {
    display: none;
}

.dHelpIcon[data-h-loading='1']{
    cursor:wait;
}

.helpPopup {
    max-height: 600px;
    max-width: 600px;
    position: absolute;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    background-color: #FFF;
    background-image: linear-gradient(#FFF ,#E0E0E0);
    box-shadow: -3px 4px 8px -3px #393939;
    overflow: visible;
    display: none;
    z-index: 100000;
    padding-top: 18px;
}

.helpClose {
    height: 11px;
    width: 11px;
    position: absolute;
    top: 5px;
    right: 5px;
    background: url("/Assets/Image/definition-close.png") no-repeat scroll 0px 1px transparent;
}

    .helpClose:hover {
        background: url("/Assets/Image/definition-close.png") no-repeat scroll 0px -10px transparent;
    }

.helpBodyWrap {
    height: 100%;
    width: 100%;
    overflow: auto;
    max-height: 554px;
    padding: 0 15px 5px;
    max-width: 568px;
}

.helpBody {
    margin: 5px 10px;
    display: inline-block;
}

.helpBody p{
    margin:0;
}

html[lang=en] .helpBody {
    direction: ltr;
}

html[lang=fa] .helpBody {
    direction: rtl;
}

.helpPopup .helpArrowBorder,
.helpPopup .helpArrow {
    position:absolute;
    top: -12px;
    border: 7px solid transparent;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
    border-bottom-color: #ffffff;
    left: 50%;
}

.helpPopup .helpArrowBorder {
    border-bottom-color: #E0E0E0;
    top: -14px;
}

.helpMoreWrap{
    text-align:right;
    padding-top: 8px;
}

.wrapRtl .helpMoreWrap{
    text-align:left;
}

@media(max-width:600px) {
    .helpPopup {
        max-height: 90%;
        max-width: 90%;
    }

    .helpBodyWrap {
        height: calc(100% - 20px);
        width: calc(100% - 20px);
    }
}
