!****************!
!*   RESET
!****************!
!**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 *!
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video-item {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

!* HTML5 display-role reset for older browsers *!
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type=submit]{
    cursor: pointer;
}

!****************!
!*   FONTS
!****************!
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700|Raleway:300,400');

!****************!
!*   GENERAL
!****************!
html,
body{
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

h1{
    color: #000000;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

h2{
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 300;
}

p{
    color: #000;
    font-size: 9px;
    line-height: 135%;
    padding-bottom: 15px;
}

.disclaimer p{
    color: #909090;
}

.main {
    background: url(../pix/background.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    !* font-family: 'Raleway', sans-serif; *!
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.inner{
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 0px 8px;
}

!****************!
!*   HEADER
!****************!
.header .logo{
    display: block;
    width: 99px;
    height: auto;
    padding: 13px 0 24px;
    margin: auto;
}
!****************!
!*   LANDING
!****************!

.btn-cancel-container{
    max-width: 640px;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 999;
}

.btn-cancel-container a.btn-cancel{
    background: url(../pix/close-contrast.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 100;
}

.button-container{
    padding: 0 0 23px;
    position: relative;
}
.button-container .background-games{
    width: 100%;
    max-width: 300px;
}

.button-container .button-kaufen{
    width: 152px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -56%);
    -ms-transform: translate(-50%, -56%);
    transform: translate(-50%, -56%);
}

!****************!
!*   LANDING 3G
!****************!
.button-kaufen-3g{
    width: 150px;
}

img.game-preview{
    width: 90%;
    max-width: 540px;
    margin: auto
}

.details ul{
    display: block;
    max-width: 220px;
    font-size: 8px;
    margin: 16px auto;
    text-align: left;
}

.details ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3px;
}

.details ul li span:first-child{
    font-weight: 600;
    width: 40%;
    margin-right: 5px;
}

.details ul li span:last-child{
    font-weight: 300;
}

!****************!
!*   POPUP ANIMATION, TRIGGER AND GENERAL SETTINGS
!****************!
@-webkit-keyframes popup{
    0%{
        opacity: 0;
        -webkit-transform: translate(-50%, -20%);
        transform: translate(-50%, -20%);
    }

    50%{
        opacity: 1;
    }

    100%{
        visibility: visible;
        -webkit-transform: translate(-50%, -25%);
        transform: translate(-50%, -25%);
    }
}
@keyframes popup{
    0%{
        opacity: 0;
        -webkit-transform: translate(-50%, -20%);
        transform: translate(-50%, -20%);
    }

    50%{
        opacity: 1;
    }

    100%{
        visibility: visible;
        -webkit-transform: translate(-50%, -25%);
        transform: translate(-50%, -25%);
    }
}

.popup-trigger{
    -webkit-animation: popup .4s forwards;
    animation: popup .4s forwards;
}

.popup-container{
    -webkit-box-shadow: 0 0 15px rgba(00, 00, 00, .25);
    box-shadow: 0 0 15px rgba(00, 00, 00, .25);
    min-width: 225px;
    max-width: 225px;
    position: fixed;
    top: 25%;
    left: 50%;
    visibility: hidden;
    z-index: 100;
}

.popup-container .popup_pin_handynumber,
.popup-container .popup_pincode{
    background: rgba(255,255,255, 0.95);
    border-radius: 5px;
    font-size: 8px;
    padding: 13px 12px;
    text-align: left;
}

!****************!
!*   POPUP #1 PIN_CODE
!****************!
.popup-container .popup_pincode p{
    font-weight: 300;
    padding-bottom: 12px;
}

.popup-container .popup_pincode ul{
    margin-bottom: 12px;
}

.popup-container .popup_pincode ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3px;
}

.popup-container .popup_pincode ul li span:first-child{
    font-weight: 600;
    width: 40%;
    margin-right: 5px;
}

.popup-container .popup_pincode ul li span:last-child{
    font-weight: 300;
}

.popup-container .popup_pincode form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100% !important;
    overflow: hidden;
}

.popup-container .popup_pincode form input[type=text]{
    border: 1px solid #DDDDDD;
    border-right: none;
    color: #525252 !important;
    border-radius: 5px 0 0 5px;
    outline: none;
    padding: 10px;
    width: 60%;
}

.popup-container .popup_pincode form input[type=text]::-webkit-input-placeholder{
    font-weight: 300;
    font-size: 12px;
}

.popup-container .popup_pincode form input[type=text]:-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
}

.popup-container .popup_pincode form input[type=text]::-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
}

.popup-container .popup_pincode form input[type=text]::placeholder{
    font-weight: 300;
    font-size: 12px;
}

.popup-container .popup_pincode form input[type=submit]{
    background: #F55453;
    border: 1px solid #F55453;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 40%
}

!****************!
!*   POPUP #2 PIN_HANDYNUMBER
!****************!
.popup-container .popup_pin_handynumber p{
    font-weight: 300;
    padding-bottom: 12px;
    text-align: center;
}

.popup-container .popup_pin_handynumber ul{
    margin: 0 auto 12px;
    display: block;
}

.popup-container .popup_pin_handynumber ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 3px;
}

.popup-container .popup_pin_handynumber ul li span:first-child{
    font-weight: 600;
    width: auto;
    margin-right: 5px;
}

.popup-container .popup_pin_handynumber ul li span:last-child{
    font-weight: 300;
}

.popup-container .popup_pin_handynumber form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
    overflow: hidden;
}

.popup-container .popup_pin_handynumber form input[type=text]{
    border: 1px solid #DDDDDD;
    color: #525252 !important;
    border-radius: 5px;
    margin-bottom: 5px;
    outline: none;
    padding: 10px;
    text-align: center;
    width: calc(100% - 22px);
}

.popup-container .popup_pin_handynumber form input[type=text]::-webkit-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
}

.popup-container .popup_pin_handynumber form input[type=text]:-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
}

.popup-container .popup_pin_handynumber form input[type=text]::-ms-input-placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
}

.popup-container .popup_pin_handynumber form input[type=text]::placeholder{
    font-weight: 300;
    font-size: 12px;
    text-align: center;
}

.popup-container .popup_pin_handynumber form input[type=submit],
.popup-container .popup_pin_handynumber form input[type=reset]{
    background: #F55453;
    border: 1px solid #F55453;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 100%
}

.popup-container .popup_pin_handynumber form input[type=reset]{
    background: #BBBBBB;
    border: 1px solid #BBBBBB;
}

!****************!
!*   STATIC
!****************!
.static-content{
    flex: 1;
    padding: 0 8px;
}

!****************!
!*   FOOTER
!****************!
.footer{
    background: #40434D;
}
.footer ul {
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer ul li{
    margin: 5px 5px;
}

.footer ul li a{
    color: #fff;
    font-size: 10px;
    text-decoration: none;
}
