﻿/* CUSTOM POPUP */
.CustomPopupOuterWrapper
{
    position: fixed;
    z-index: 9999;
    opacity: 0;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(52,73,94,0.5);
    text-align: center;
    transition: opacity 500ms ease-in-out;
}

.CustomPopupInnerWrapper
{
    min-width: 200px;
    max-width: 400px;
    display: inline-block;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
    border: 10px solid #00476b;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    padding-bottom: 10px;
}

.CustomPopupOuterWrapper.Active
{
    opacity: 1;
}

.CustomPopupOuterWrapper .CustomPopupContent.Hidden
{
    display: none;
}

.CustomPopupOuterWrapper .CustomPopupContent
{
    display: inline;
}

    .CustomPopupOuterWrapper .CustomPopupContent h1
    {
        margin-top: 0px;
        border-bottom: solid 1px #444;
        padding-bottom: 20px;
        font-size: 1.4rem;
        font-weight: bold;
        padding-left: 50px;
        text-align: left;
    }

    .CustomPopupOuterWrapper .CustomPopupContent .Form
    {
        text-align: left;
    }

    .CustomPopupOuterWrapper .CustomPopupContent p
    {
        text-align: left;
    }

        .CustomPopupOuterWrapper .CustomPopupContent p b
        {
            font-weight: 700;
        }

    .CustomPopupOuterWrapper .CustomPopupContent .Button
    {
        float: left;
        margin-top: 0px;
        width: 100%;
        margin-bottom: 10px;
    }

    .CustomPopupOuterWrapper .CustomPopupContent .CloseButton
    {
        float: left;
        margin-top: 0px;
        width: 100%;
    }

.CustomPopupContent:before
{
    font-family: FontAwesome;
    position: absolute;
    left: 20px;
    top: 25px;
    padding-right: 6px;
    font-size: 48px;
}

.CustomPopupContent.SUCCESS:before
{
    content: '\f058';
    color: #444;
}

.CustomPopupContent.ERROR:before
{
    content: '\f056';
    color: #a94442;
}

.CustomPopupContent.INFO:before
{
    content: '\f05a';
    color: #444;
}

.CustomPopupContent.WARNING:before
{
    content: '\f06a';
    color: #8a6d3b;
}

.CustomPopupContent .CallbackMessageWrapper
{
    float: left;
    width: 100%;
}
