﻿/* LAYOUT */

.over-modal.vcenter .inner {
    display: inline-block;
}

body.modal-open {
    overflow: hidden;
}

.over-modal {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.98);
    z-index: 9999;
    position: fixed;
    text-align: center;
    overflow: auto;
}

    .over-modal > .inner {
        position: relative;
        max-width: 640px;
        margin: 0 auto;
        padding: 50px 30px 0px 30px;
        margin-top: 50px;
    }

    .over-modal .msg.error {
        color: red;
        display: none;
    }

    .over-modal .closer {
        position: absolute;
        top: 0px;
        right: 30px;
        text-decoration: none;
        color: #111;
        transition: all .1s ease-in-out;
        font-size: 25px;
    }

        .over-modal .closer:hover {
            color: #ff0000;
            transform: scale(1.1);
        }

    .over-modal .title {
        display: block;
        font-weight: bold;
        margin-bottom: 30px;
        text-align: left;
        text-transform: uppercase;
    }

    .over-modal .label {
        text-align: left;
        font-size: 14px;
        color: #BFBDC1;
        padding-left: 20px;
    }

    .over-modal input[type=button].submit {
        margin: 50px auto;
        -webkit-appearance: none;
        border: 1px solid #41B6B2;
    }

        .over-modal input[type=button].submit:hover {
            background: #fff;
            color: #41B6B2;
        }

        .over-modal p.subinfo {
            font-style: italic;
            font-size: 0.85em;
            margin-top: -30px;
        }

    .over-modal p.info {
        text-align: left;
    }