* {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
html {
    font-family: 'PT Sans', sans-serif;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: 'PT Sans', sans-serif;
    margin-top: 0;
}

h1, .h1 {
    font-size: 3rem;
    margin-bottom: 6px;
}

h2, .h2 {
    font-size: 2.25rem;
    margin-bottom: 9px;
}

h3, .h3 {
    font-size: 1.875rem;
    margin-bottom: 12px;
}

h4, .h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

h5, .h5 {
    font-size: 1.125rem;
    margin-bottom: 14px;
}

h6, .h6 {
    font-size: 0.875rem;
    margin-bottom: 14px;
}

p {
    margin: 0 0 8px;
}

.screen, .screen__inner {
    position: relative;
}

.screen {
    height: 100vh;
    width: 100%;
}

.screen__inner--centered {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    text-align: center;
}

.main__logo {
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.main__link {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 360px;
    text-decoration: none;
    outline: 0;

    cursor: pointer;
}

.default-bg {
    background: linear-gradient(-45deg, #0075E0, #009FDE, #0281D1, #1AB7F4);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.social__icons--wrap {
    position: absolute;
    right: 65px;
    top: 55px;
}

.social__icons {
    white-space: nowrap;
    width: 100%;
}

.social__icons a {
    color: #fff;
    display: inline-block;
    padding: 2px 9px;

    font-size: 1.125rem;
}

.social__icons a:hover {

}


.countdown-timer-wrapper {
    margin-top: 15px;
}

.countdown-timer-wrapper .timer {
    font-family: 'PT Sans', sans-serif;
}

.countdown-timer-wrapper .timer .timer-wrapper {
    display: inline-block;
    width: 100px;
}

.countdown-timer-wrapper .timer .timer-wrapper .time {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

.countdown-timer-wrapper .timer .timer-wrapper .text {
    font-size: 16px;
    color: #fff;
}

@media (max-width: 767px) {
    .main__logo {
        max-width: 240px;
    }
    .main__link {
        max-width: 240px;
    }
    .countdown-timer-wrapper {
        margin-top: 5px;
    }
    .countdown-timer-wrapper .timer .timer-wrapper {
        width: 80px;
    }
    .countdown-timer-wrapper .timer .timer-wrapper .time {
        font-size: 36px;
    }
    .countdown-timer-wrapper .timer .timer-wrapper .text {
        font-size: 12px;
    }
}

/**
 * Overlay
 * -- only show for tablet and up
 */
@media only screen and (min-width: 40em) {
    .modal-overlay {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
        transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    }
    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/**
 * Modal
 */
.modal {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    background-color: #0281D1;
    width: 600px;
    max-width: 75rem;
    min-height: 20rem;
    padding: 1rem;
    border-radius: 0;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
}
.modal .close-modal {
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 15px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.modal .close-modal svg {
    width: 1.75em;
    height: 1.75em;
}
.modal .modal-content {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.modal .modal-content {
    margin-top: 30px;
}
.modal .modal-content h3 {
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 30px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 4px 12px 4px 15px;
}

.modal .modal-content p {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
}

.modal.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.modal.active .modal-content {
    opacity: 1;
}
.modal.active .close-modal {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 1;
}

.attention {
    margin-top: 15px;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #fff;
}

/**
 * Mobile styling
 */
@media only screen and (max-width: 39.9375em) {
    h3 {
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: 30px;
        text-transform: uppercase;
        color: #fff;
        background: #000;
        padding: 4px 12px 4px 15px;
    }

    p {
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: #fff;
    }

    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        padding: 0 !important;
    }

    .modal .modal-content {
        padding: 1rem;
    }

    .close-modal {
        right: 20px !important;
    }
}