﻿
.popup {
    top: 0px;
    left: 0px;
    color: #fff;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: none;
    position: absolute;
}

.popup-background {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: 500;
    position: fixed;
    background: #000000;
    filter: alpha(opacity=90);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.popup-container {
    top: 30%;
    left: 30%;
    height: 100%;
    z-index: 750;
    position: absolute;
}

.popup-content {
    padding: 0px;
    width: 500px;
    z-index: 1000;
    min-height: 200px;
    position: relative;
    border-radius: 4px;
    border-top: 1px solid #ee1c25;
    border-bottom: 2px solid #ee1c25;
    background: rgba(0, 155, 219, 0.1);
}

.popup-top {
    font-size: 12px;
    text-align: left;
    padding: 15px 20px;
    position: relative;
    text-transform: uppercase;
}

    .popup-top #popup-title {
        display: block;
        border-bottom: 1px solid #fff;
    }

.popup-close {
    margin: 0;
    top: -14px;
    right: -13px;
    width: 25px;
    height: 25px;
    color: #FFFFFF;
    display: block;
    font-size: 12px;
    cursor: pointer;
    padding-top: 4px;
    font-weight: bold;
    position: absolute;
    text-align: center;
    background: #ee1c25;
    border-radius: 13px;
}

    .popup-close:hover {
        color: #AE191B;
        text-decoration: none;
    }

.popup-body {
    width: auto;
    font-size: 13px;
    padding: 0 20px;
    text-align: left;
}

    .popup-body a:hover {
        color: #5BBAE1;
        outline: none;
    }

    .popup-body form {
    }

    .popup-body .display-field, .popup-body .grouped-area .display-label, .popup-body .grouped-area p {
        width: auto;
        color: #6a6c6f;
    }

    .popup-content fieldset {
        border: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        padding-bottom: 5px;
        border-bottom: 1px solid #ddd;
    }

.btns {
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
    padding: 10px 20px;
    position: absolute;
    border-top: 1px solid #877241;
}
.popup-input {
    color: black;
}


