/*
 * Globals
 */


/* Fonts */
@font-face{
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Medium.woff2') format('woff2'),
        url('../fonts/Oswald-Medium.woff') format('woff'),
        url('../fonts/Oswald-Medium.ttf') format('truetype');
    font-weight:400;
    font-style:normal
}

@font-face{
    font-family: 'OswaldRegular';
    src: url('../fonts/Oswald-Regular.ttf') format('truetype');
    font-weight:400;
    font-style:normal
}


/* Links */
a,
a:focus,
a:hover {
    color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    text-shadow: none; /* Prevent inheritance from `body` */
    background-color: #fff;
    border: .05rem solid #fff;
}


/*
 * Base structure
 */

html {
    background: transparent !important;
}

html,
body {
    height: 100%;
    background-color: #FFFFFF;
    min-height: 100%;
}

body {
    display: -ms-flexbox;
    display: flex;
    color: #000;
    font-family: 'OswaldRegular';
    height: 100vh;
    min-height: 100vh;
    /*text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);*/
    /*box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);*/
    background: url('/images/veebitaust2.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.cover-container {
    max-width: 42em;
}


/*
 * Header
 */
.masthead {
    margin-bottom: 2rem;
}

.masthead .logo {
    width: 10rem;
}

.masthead-brand {
    margin-bottom: 0;
}

.nav-masthead .nav-link {
    padding: .25rem 0;
    font-weight: 700;
    color: #000;
    background-color: transparent;
    border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
    border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}


@media (min-width: 48em) {
    .masthead-brand {
        float: left;
    }
    .nav-masthead {
        float: right;
    }
}


/*
 * Cover
 */
.cover {
    padding: 0 1.5rem;
}
.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}
main {
    margin-bottom: 100px;
}
/*
 * Thank you
 */

#success {
    font-size: 2.5em;
    color: #00b300;
    display: none;
    line-height: 2.7rem;
}

#success .fa-check{
    font-size: 1.5em;
}

#success .subnote {
    font-size: 0.7em;
    color: #5f5f5f;
}

#success .subnote:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026"; /* ascii code for the ellipsis character */
    width: 0px;
}

@keyframes ellipsis {
    to {
        width: 20px;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 20px;
    }
}

/*
 * Footer
 */
.mastfoot {
    color: rgba(255, 255, 255, .5);
}

#countdown-timer {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 25px;
}

#validation-error {
    display: none;
    margin-bottom: 15px;
}