/*
 * 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: 500px;
    max-width: 100%;
    margin: 0 auto;
    top: 100px;
    position: relative;
    background-color: #FFF;
    padding: 20px;
}

.popup__header {
    padding-top: 80px;
    background-image: url(/images/logo2.png);
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center top;
}

span.popup__close {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    top: 0;
    right: 0;
    line-height: 30px;
    color: #BBB;
    cursor: pointer;
}

span.popup__close:before {
    font-family: e2e;
    content: "\e80c";
}

.popup__message {
    color: #a5a5a5;
    font-size: .9em;
    margin: 1em 0;
}
.popup__message h2 {color:#222;size:1.75em;}

a.popup__close{color:#00bcf2;text-decoration:underline;cursor: pointer;}
.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;
}

.popup label[for=updates],
.popup__footer a {
    font-size: .8em;
    margin-bottom: .25em;
}


.cookie-alert {
color: #333;
background: #c7c7c7;
background: rgba(255,255,255,.7);
position: fixed;
bottom: 0;
font-size: 1em;
left: 0;
z-index: 2123456789;
text-align:center;

width: 100%;
}

.cookie-alert div {text-align: left;max-width:1024px;margin:1em auto;}
.cookie-alert p {
float: left;
width: calc(100% - 150px);
padding:.75em 0;
margin: 0;
}
.cookie-alert .button {float:right;margin-bottom:.75em;}