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

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
}

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

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

input, button, select {
    font-size: 16px;
}

textarea:focus,
input:focus {
    outline: none;
}

input::-moz-focus-inner {
    padding: 0;
    border: 0
}
img {
    max-width: 100%;
}

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

h1, .h1,
h2, .h2,
h3, .h3,
.btn {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    line-height: 1;
}
h1, .h1 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: bold;
}
h2, .h2 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}
h3, .h3 {
    font-size: 14px;
}

p {
    margin: 8px 0;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-overlay.highest {
    display: block;
}

.main-content {
    padding: 15px;
}
.header {
    padding: 3px 15px;
    line-height: 1;
    background-color: #000000;
}
.header img {
    max-height: 50px;
}

.content-wrapper {
    background-color: #1a1a1a;    
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.5);
}

.bg-full-page {
    height: 360px;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
}

.gallery,
.gallery li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.gallery {
    margin: 0 -2px 20px;
}
.gallery:after {
    content: '';
    display: table;
    clear: both;
}
.gallery li {
    float: left;
    padding: 2px;
    width: 33.3333%;
    box-sizing: border-box;
    font-size: 0;
    cursor: pointer;
}
.gallery li h3 {
    margin: 0;
    padding: 7px;
    background-color: #2b2b2b;
    font-weight: 300;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}
.gallery li:hover h3 {
    color: #ff0000;
}

.btn {
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}
.btn:hover {
    text-decoration: none;
}
.btn-primary {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #8dbd0d;
    background: linear-gradient(to bottom, #738e15 0%,#8dbd0d 100%);
    text-align: center;    
    color: #ffffff;
}
.btn-primary:hover {
    background: #738e15;
    outline: none;
}
.btn-lg {
    padding: 8px;
    width: 100%;
    font-size: 24px;
    line-height: 1.3;
}
.legal__container {
    padding-bottom: 5px;
    text-align: center;
}
.legal__container > div {
    display: inline-block;
    margin-right: 5px;
    padding-right: 10px;
    line-height: 1;
    border-right: 1px solid #777777;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    color: #777777;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}
.legal__container > div:hover {
    text-decoration: underline;
    color: #ff0000;
}
.legal__container > div:last-child {
    border-right: 0;
}

.lock-overlay {
    height: auto;
    overflow: auto;
}

.registration-wrapper,
.registration-wrapper * {
    box-sizing: border-box;
}
.registration-wrapper {
    overflow: hidden;
    background-color: rgba(0, 0, 0, .7);
}
.registration-wrapper .registration-form-builder {
    padding: 1em;
}
.registration-wrapper .headline-1,
.registration-wrapper label {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 600;
}
.registration-wrapper .headline-1 {
    font-size: 1.6em;
}
.btn-group {
    margin: 1em 0;
}
input[type=text],
input[type=email] {
    width: 100%;
    margin: .5em 0 1em;
    padding: 0 .5em;
    border: none;
    height: 2em;
}
.required,
.unknown-error-msg {
    display: block;
    padding: .3em;
    margin: -.5em 0 1em;
    background-color: #cc0000;
}

/* BADGE */
.badge-desktop {
    position: absolute;
    top: 48%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 999;
    max-width: 160px;
    display: none;
}
.badge-mobile {
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}
/* END BADGE */
@media (min-width: 768px) and (min-height: 660px) {
    html,
    body,
    .wrapper,
    .content-wrapper {
        height: 100%;
    }
}

@media (min-width: 768px) {
    .header {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .content-wrapper {
        position: absolute;
        width: 50%;
        background-color: #1a1a1a;    
        box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.5);
    }
    
    .bg-full-page {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        height: auto;
        background-attachment: fixed;
    }

    .legal__container {
        position: absolute;
        bottom: 10px;
        right: 0;
        left: 0;
        padding-bottom: 0;
        text-align: center;
    }

    .registration-wrapper {
        position: fixed;
        top: 0;
        right: auto;
        bottom: 100%;
        left: 50%;
        width: 50%;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .registration-wrapper::-webkit-scrollbar { 
        width: 0 !important;
    }
    .registration-wrapper.registration-visible {
        bottom: 0;
    }
    .registration-wrapper .registration-form-builder {
        padding-top: 7em;
    }
    .btn-close {
        position: absolute;
        top: 1.5em;
        right: 1em;
        color: #b1b1b1;
    }
    .btn-close:hover {
        text-decoration: none;
    }
    .btn-close span {
        font-size: 2em;
        font-weight: 600;
        line-height: 0;
    }
    
}
@media (min-width: 992px) {
    .content-wrapper {
        width: 30%;
        min-width: 300px;
    }
    .badge-desktop {
        display: block;
    }
    .badge-mobile {
        display: none;
    }

    .registration-wrapper {
        left: 30%;
        max-width: 500px;
        box-shadow: 10px 0 20px 0 rgba(0, 0, 0, .5);
    }
}

@media (min-width: 1200px) {
    .badge-desktop {
        max-width: 200px;
    }
}
