﻿/*---[ Pop up ]---*/
.pop-up-background
{
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.pop-up-background-modal
{
    cursor: default;
}

.pop-up
{
    visibility: hidden;
    left: 50%;
    margin-left: -400px;
    max-width: 800px;
    position: absolute;
    top: 20px;
    width: 90%;
    z-index: 100;
}

    .pop-up.small
    {
        margin-left: -200px;
        max-width: 400px;
    }

    .pop-up.medium
    {
        margin-left: -215px;
        max-width: 430px;
    }

    .pop-up.big
    {
        margin-left: -335px;
        max-width: 670px;
    }

    .pop-up .pop-up-content
    {
        background: white;
        min-height: 30px;
    }

        .pop-up .pop-up-content:after
        {
            content: " ";
            display: inline;
            overflow: hidden;
        }

.pop-up-fit-screen
{
    top: 2%;
    height: 96%;
}

    .pop-up-fit-screen .pop-up-content
    {
        height: 100%;
    }

    .pop-up-fit-screen .pop-up-content-scroller
    {
        overflow: auto;
    }

.pop-up .pop-up-content .close,
.pop-up .pop-up-footer
{
    text-align: right;
}

.pop-up .pop-up-footer
{
    padding: 0 20px 20px 20px;
}

.pop-up-display-content
{
    display: none;
}

.pop-up .action
{
    margin: 0;
    font-size: 1.4em;
    font-family: Arial, Helvetica, Verdana, Sans-Serif;
}

.pop-up .close
{
    font-size: 1.8em;
    position: absolute;
    top: 8px;
    right: 15px;
    z-index: 99;
}

    .pop-up .close a
    {
        font-weight: bold;
        color: #0B276D;
        text-decoration: none;
    }

        .pop-up .close a:hover
        {
            color: #515151;
        }

.loading-overlay
{
    background: #fff;
    background: rgba(255,255,255,0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 98;
}

.call-back-successful
{
    text-align: right;
}