* {
    box-sizing: border-box;
}
html,
body {
 height: 100vh;
 position: relative;
}
body {
    font-family: Avenir, 'Proxima Nova', 'Helvetica Neue', Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #333;
}
#wrapper {
    font-size: 16px;
	padding:2em 0 0;
	margin:0;
	position:relative;
    min-height: 100vh;
    overflow: hidden;
}
main {
    padding: 0 7%;
    margin: auto auto 20em;
    position: relative;
    max-width: 800px;
    z-index: 1;
}
.header {
	padding:0;
	margin:0;
	text-align:center;
	position:relative;
}
.header-image {
    width: 100%;
    margin: 0 auto 1em;
}
h1 {
    font-size: 1.75em;
    line-height: 1.25em;
    text-align: center;
    font-weight: normal;
    margin-bottom: 2em;
}
h2 {
    font-size: 1em;
    line-height: 1.25em;
}
p + h2 {
    margin-top: 2em;
}
p {
    font-size: 1em;
    line-height: 1.35em;
}
p.checkmark {
	padding-left: 3.25em;
    position: relative;
}
p.checkmark::before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url('gdpr-flow-checkmark-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
}
a {
    color: #0583aa;
    transition: opacity 0.2s ease-in-out;
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
}
#button-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0.5em 0;
    text-align: center;
    background-color: #fff;
    border-top: 4px solid #efefef;
    z-index: 10;
}
a.button {
    display: block;
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
    border: 2px solid #0583aa;
    width: 85%;
    max-width: 480px;
    padding: 0.75em;
    margin: 0.5em auto;
}
a.primary {
    color: #fff;
    background-color: #0583aa;
}
a.secondary {
    color: #0583aa;
    background-color: #fff;
}
.alert-icon {
	display:block;
	width:100%;
	max-width:90px;
	height:auto;
	margin:auto auto 2em;
}

@media screen and (orientation:landscape) and (max-width:1000px) {
#wrapper {
	padding:1em 0 0;
}
.header-image {
    display:none;
}
main {
    margin-bottom: 10em;
}
h1 {
    font-size: 1.5em;
    margin-bottom: 1.25em;
}
#button-container {
    padding: 0.5em 1em;
    bottom: 3em;
}
a.button {
    display: inline-block;
    font-size: 1em;
    width: 45%;
    margin: 0.5em 2%;
}
}
@media screen and (max-width:480px) {
body, #wrapper {
    font-size: 12px;
}
#wrapper {
	padding:1em 0 0;
}
main {
    margin-bottom: 15em;
}
.header-image {
    width: 80%;
}
h1 {
    font-size: 1.5em;
    margin-bottom: 0.85em;
}
p {
	font-size:1.2em;
	line-height:1.25em;
}
p.checkmark {
	padding-left: 2.25em;
}
p.checkmark::before {
    width: 1.25em;
    height: 1.25em;
}
}