/*****Popup*****/
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    z-index: 999999;
}
@media(max-width:900px){
    .popup .content {
        position: relative;
        margin: 0 auto;
        margin-top: 150px;
        width: 90%;
        padding:50px 20px;
        background:#FFF;
    }
}
@media(min-width:900px){
    .popup .content {
        position: relative;
        margin: 0 auto;
        margin-top: 150px;
        width: 800px;
        padding: 50px;
        background:#FFF;
    }
}
.popup .content .closeBtn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/close-icon.png") center no-repeat;
    background-size: 20px 20px;
    z-index: 999;
}

/**********************************************************************************************************************/
/**********************************************************************************************************************/
/**********************************************************************************************************************/
/**********************************************************************************************************************/

#popupMsg{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    z-index:999999;
    overflow:hidden;
}
@media(max-width:900px){
    #popupMsg .content{
        position:relative;
        margin:0px auto;
        margin-top:100px;
        width:80%;
        padding:50px 0px;
        background:#FFF;
    }
}
.popup .closeBtn{
    position:absolute;
    top:15px;
    right:15px;
    width:22px;
    height:22px;
    background: url("../images/close-icon.png") center no-repeat;
    background-size: 20px 20px;
}
.popup .closeBtn2{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#FFF url("../images/close-icon.png") center no-repeat;
    background-size: 20px 20px;
}
.popup #okBtn{
    padding:10px 30px;
    border:0px;
    outline:none;
    color:#FFF;
    background:#03408b;
}
.popup #okBtn:hover{
    background:#df9c0a;
}