/*
 * Pop Ups
 */
 
.pop-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 2147483647;
    background: rgba(0,0,0,0.4);
    box-sizing: border-box;
    /*overflow-y: scroll;*/
}

.popup {
    /*width: 800px;*/
    max-width: 72%;
    margin: 0 auto;
    top: 200px;
    position: relative;
    background-color: #FFF;
    padding: 20px;
}

span.popup__close {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    top: 0;
    right: 0;
    line-height: 30px;
    color: #BBB;
    cursor: pointer;
    font-size:18px;
}

span.popup__close:before {
    /*font-family: e2e;
    content: "\e80c";*/
}

.popup__message {
    /*color: #a5a5a5;*/
    color:#444;
    font-size:16px;
    line-height:1.6;
    margin: 1em 0;
}


a.popup__close{color:#00bcf2;text-decoration:underline;cursor: pointer;font-size:16px;}
.popup__label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.pop-form-container {
    position: relative;
    height: 40px
}

.pop-form-container input {
    position: absolute;
    width: 70%;
    left: 0;
    border-color: #FFF;
    height: 40px;
}

.pop-form-container .button {
    position: absolute;
    right: 0;
    width: 30%;
    border: 0;
    height: 40px;
}