html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    background-repeat: no-repeat;
    min-height: 500px;
}

* {
    box-sizing: border-box;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

i {
    font-style: normal;
}

a:hover {
    text-decoration: underline;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
}

input,
button,
select {
    font-size: 1em;
}

input:focus,
select:focus,
textarea:focus,
button {
    outline: none;
}
button {
    border: none;
    background: none;
    cursor: pointer;
}
button::-moz-focus-inner {
    border: 0;
}
button:focus,
.btn:focus {
    outline: none;
}

select::-ms-expand {
    display: none;
}

.pxl,
.hidden {
    display: none !important;
}

p,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 200;
}

strong {
    font-weight: 400;
}

.pink2{
    color: #fd0863;
    animation-name: blinking;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes blinking {
    0%   {color: #fd0863;}
    50%   {color: #000;}
}

/* REGISTRATION */
.registration-form-builder-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0,0,0,0.5);
    transition: bottom 0.3s linear;
}
.registration-form-builder-wrapper.form-hidden {
    display: block !important;
    bottom: 100%;
    overflow: hidden;
}
.registration-form-builder {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
.registration-form-builder-inner {
    position: relative;
    margin: 0 auto;
    padding: 1em;
    width: 96%;
    max-width: 450px;
    background-color: #ffffff;
    text-align: center;
}

.form-control {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 1.5em;
    text-align: center;
    padding: 0.2em;
    width: 100%;
    margin-top: 0.5em;
    box-shadow: inset rgba(0,0,0,0.3) 0 0.1em 0.3em;
    border: 1px solid #999;
    border-radius: 0.2em;
}

.required,
.unknown-error-msg {
    font-size: 0.6em;
    color: #ff0000;
    font-weight: 400;
    display: block;
}

.required {
    margin-top: 0.5em;
}

.unknown-error-msg {
    margin-bottom: 0.5em;
}

@media (min-width: 768px) {
    .registration-form-builder-inner {
        max-width: 27em;
    }
}

/* END REGISTRATION */

/* LAYOUT */

/* HEADER */

.header button {
    display: none;
}

.header {
    background-color: #000;
}

.form-logo {
    font-size: 0;
    text-align: center;
    padding: 10px;
}

.form-logo img {
    width: 200px;
}

@media (min-width: 1024px) {
    .form-logo img {
       height: 70px;
       width: auto;
    }
}

/* END HEADER */

/* MAIN */

.main {
    max-width: 992px;
    margin: 0 auto;
}

.desc {
    margin-top: 0.5em;
    font-weight: 200;
    font-size: 1.2em;
}

.main-inner {
    padding: 0 1em;
}

.top {
    font-size: 0;
}

.top img,
.top video {
    width: 100%;
}


.slogan {
    font-size: 1.3em;
    margin: 1em 0;
}

.slogan span {
    display: block;
    font-size: 1.7em;
    color: #000;
}

.timer {
    font-size: 2em;
    padding: 0.5em 1em;
    text-align: center;
}

.min {
    display: inline-block;
    width: 50px;
    text-align: center;
}

.timer .min {
    width: 70px
}

/* MAIN HINT */

.hint-wrapper {
    margin: 1em 0;
}

.hint-wrapper li {
    margin: 1em;
    display: block;
}

.hint-wrapper li img {
    width: auto;
}

/* END MAIN HINT */

@media (min-width: 1024px) {
    body {
        font-size: 22px;
    }

    .header-inner {
        max-width: 992px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between; 
    }
    
    .header button {
        display: block;
        font-size: 1.3em;
    }

    .main-inner {
        padding: 0;
    }

    .min {
        width: 70px;
    }
    
    .timer .min {
        width: 105px
    }
}

/* END LAYOUT */


/* GRID PICTURES */

.vr {
    display: none;
}

.grid-pictures-wrapper {
    text-align: center;
    margin: 3em 0;
}
.grid-info img {
    width: 50%;
}

.grid-pictures {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.grid-pictures li {
    border-radius: 50%;
    overflow: hidden;
    width: 30%;
    font-size: 0;
    margin: 5px 0;
    cursor: pointer;
}

@media (min-width: 768px) {
    .grid-pictures li {
        width: 19%;
    }
    .grid-info img {
        width: 200px;
        min-height: 200px;
    }
}

@media (min-width: 1024px) {

    .time-bottom {
        display: flex;
        align-items: center; 
    }
    
    .hint-wrapper {
        display: flex;
        align-items: flex-start; 
    }

    .grid-pictures-wrapper {
        display: flex;
    }

    .grid-info {
        width: 27%;
    }
    
    .vr {
        display: block;
        margin-right: 1em;
    }

    .vr img {
        width: 28px;
        min-height: 100%;
    }
    
    .grid-pictures-inner {
        width: 68%;
    }

    .grid-pictures li {
        width: 16%;
    }
}

/* END GRID PICTURES */


/* LEGAL WARNING */

.legal-warning-text {
    font-size: 0.8em;
    color: #fff;
    padding: 1em 0.5em;
    background: #000;
    text-align: center;
}
.legal-warning-text-inner {
    max-width: 600px;
    margin: 0 auto;
}
.legal-warning-text a {
    font-weight: 400;
    color: #fff;
}

@media (min-width: 1024px) {
    .legal-warning-text-inner {
        max-width: 992px;
    }
}

/* BUTTONS */

.btn-group {
    margin-top: 0.5em;
} 

.btn-yellow {
    display: block;
    font-family: 'Raleway', sans-serif;
    background: #ffbe00;
    color: #FFF;
    padding: 10px 20px;
    font-size: 2em;
    cursor: pointer;
    width: 100%;
    font-weight: 200;
}

.btn-submit {
    border-radius: 4px;
    font-size: 1.5em;
}

.btn-close-wrapper {
    position: absolute;
    bottom: -40px;
    height: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.btn-close {
    display: inline-block;
    color: #FFF;
    text-decoration: underline;
    padding-top: 0.5em;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .btn-yellow {
        font-size: 1.5em;
    }

    .btn-yellow:hover {
        background:  #FFB700;
    }
}

/* END BUTTONS */
/* ANIMATION */