/* Popup */

.popup {
    z-index: 999999;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    padding: 3rem;
    opacity: 0.97;
    background: #0F396C;
    color: #ffffff;
    display: grid;
    justify-content: center;
}

.popup a {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.popup a:hover {
    opacity: .8;
}

.popup form {
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.popup h5 {
    font-size: 3.25rem;
    font-weight: 300;
    line-height: 1.2;
}

.popup p {
    font-size: 1.5rem;
    font-weight: 300;
}

.popup input[type="text"] {
    background: none;
    border-top: none;
    border-bottom: 5px solid #ffffff;
    width: 60%;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 10px;
    margin: 3rem 0;
    border-left: none;
    border-right: none;
}

.popup input[type="text"]::placeholder {
    color: #ffffff;
    opacity: 1;
}

.popup input[type="submit"] {
    border-top: none;
    border-bottom: 5px solid #ffffff;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 10px;
    margin: 3rem 0;
    border-left: none;
    border-right: none;
    text-indent: -999999px;
    background: transparent url(/sites/all/themes/newstutter/images/arrow_right.png) no-repeat center center;
    width: 35px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .popup {
        padding: 3rem 2rem;
    }

    .popup h5 {
        font-size: 2rem;
    }

    .popup p {
        font-size: 1rem;
        font-weight: 300;
    }
}