@font-face {
    font-family: "Avenir-Light";
    src: url('../fonts/AvenirLTStd-Light/AvenirLTStd-Light.eot');
    src: url('../fonts/AvenirLTStd-Light/AvenirLTStd-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/AvenirLTStd-Light/AvenirLTStd-Light.woff') format('woff'), /* Modern Browsers */
    url('../fonts/AvenirLTStd-Light/AvenirLTStd-Light.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/AvenirLTStd-Light/AvenirLTStd-Light.svg#svgFontName') format('svg');
}
@font-face {
    font-family: "DINCondensed-Light";
    src: url('../fonts/DINCondensed-Light/DINCondensed-Light.eot');
    src: url('../fonts/DINCondensed-Light/DINCondensed-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/DINCondensed-Light/DINCondensed-Light.woff') format('woff'), /* Modern Browsers */
    url('../fonts/DINCondensed-Light/DINCondensed-Light.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/DINCondensed-Light/DINCondensed-Light.svg#svgFontName') format('svg');
}
@font-face {
    font-family: "DINCondensed-Regular";
    src: url('../fonts/DINCondensed-Regular/DINCondensed-Regular.eot');
    src: url('../fonts/DINCondensed-Regular/DINCondensed-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/DINCondensed-Regular/DINCondensed-Regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/DINCondensed-Regular/DINCondensed-Regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/DINCondensed-Regular/DINCondensed-Regular.svg#svgFontName') format('svg');
}

html, body {
    overflow: auto;
    width:100%;
    height:100%;
}
div.row.container {
    flex-direction: column;
    height: 100%;
    align-items: center;
    margin: auto;
    max-width: 355px;
}

div.row.container h1 {
    font-family: 'DINCondensed-Regular';
    padding: 20px 0;
    border: 0;
    font-size: 56px;
    /*margin-top: 100px;*/
    text-align: center;
}
form {
    text-align:center;
}
input.email {
    margin-top: 30px;
    height: 45px;
    border-radius: 0;
}

p.body {
    font-family: 'DINCondensed-Regular';
    font-size: 24px;
    text-align: center;
}
p.input-label {
    font-family: 'DINCondensed-Light';
    font-size: 20px;
    margin-top: 1rem;
    padding: 0 20px;
}
p.terms {
	font-family: 'Avenir-Light';
	text-align: left;
	font-size: 12px;
}
h2.terms {
	font-family: 'DINCondensed-Regular';
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label {
    background: url('../img/circle-empty.png');
    height: 22px;
    width: 22px;
    display: inline-block;
    padding: 0;
    margin: auto;
    vertical-align: middle;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type=checkbox]:checked + label {
    background: url('../img/circle-tick.png');
}
#terms {
    margin: 30px auto;
}
#terms span {
    vertical-align: middle;
    font-size: 12px;
    font-family: 'Avenir-Light';
    padding-left: 10px;
    color: #000;
}
#terms a {
    text-decoration: underline;
    color: #000;
}
button.get-online {
    font-family: 'DINCondensed-Light';
    border-radius: 10px;
    background-color: #9a916d;
    font-size: 20px;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}
.popup-overlay {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.3);
}
div.popup {
    display: none;
    text-align: center;
    border: 1px solid black;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 700px;
}
div.popup.visible {
    display: block;
    z-index: 1;
}
.popup .content {
    padding:40px;
}
.popup.terms ul {
    text-align: left;
    list-style-type: square;
    font-family: 'Avenir-Light'
}
.popup.terms ul.en {
    padding-bottom:30px;
}
.popup.terms ul.dk {
    padding-top: 30px;
}
.popup.terms li {
    padding: 10px 0;
}
div.divider {
    height: 0;
    border-top: 2px dotted #C2C2C2;
    margin:0 auto;
    width:100%;
    margin-top:30px;
}
div.divider.lower {
    margin-top: 40px;
}
.popup div.divider {
    width: 60%;
    margin-top: 0px;
}
.popup.oops {
    font-family: DINCondensed-Regular;
}
.popup.oops h2{
    font-size:48px;
}
.popup.oops p {
    font-size: 28px;
}
.popup.oops div.en, .popup.oops div.dk {
    padding: 40px;
}

.popup-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    opacity: 0.9;
    background-color: #DD8706;
}

    .popup-close:hover {
        opacity: 1;
    }

    .popup-close:before, .popup-close:after {
        position: absolute;
        left: 23px;
        top: 9px;
        content: ' ';
        height: 27px;
        width: 2px;
        background-color: #fff;
    }

    .popup-close:before {
        transform: rotate(45deg);
    }

    .popup-close:after {
        transform: rotate(-45deg);
    }


@media(max-width:767px){
    div.popup {
        min-width: 0;
        width: 90%;
        overflow-x: auto;
        font-size: 16px;
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        transform:none;
    }
    .popup .content {
        padding: 20px;
        padding-top: 40px;
    }
}