/****************/

/*   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;
}

/****************/

/*   GENERAL
/****************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Raleway:300,400,700&subset=latin-ext');

body {
    font-family: 'Montserrat', sans-serif;
}

p {
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 25px;
    text-decoration: none;
}

h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    margin-bottom: 15px;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 640px;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
}

.wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wrapper .landing-img-container {
    position: relative;
    z-index: 1;
}

.wrapper .landing-img-container img.landing-img {
    max-width: 640px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    position: fixed;
    z-index: 1;
}

/****************/

/*   UTILITIES
/****************/

.push-up {
    margin-top: -20px !important;
    /* Used to push the content over the landing img */
}

.pos-relative {
    position: relative !important;
}

.opacity-02 {
    opacity: .2;
    /* Used to lower the opacity of laiding img */
}

/****************/

/*   HEADER
/****************/

.header {
    position: relative;
    z-index: 999;
}

.header .logo {
    background: url(../pix/logo.png);
    background-size: cover;
    display: block;
    width: 125px;
    height: 21px;
    position: absolute;
    top: 17px;
    left: 13px;
}

.header .adult {
    background: url(../pix/+18.png);
    background-size: cover;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 19px;
    right: 48px;
}

.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: 23px;
    right: 23px;
    z-index: 100;
}

/****************/

/*   ITEMS
/****************/


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.videos-wrapper {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	padding: 65px 5px 5px;
}

.videos-wrapper .item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
	padding:0 5px;

}

.videos-wrapper .item .img {
	position: relative;
	height: 160px;
	margin: 0 0 10px;
}

.videos-wrapper .item a {
	text-decoration: none;
}

.videos-wrapper .item .img .btn-play {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background: url(../pix/icon-play.png) center no-repeat;
	background-size: 26px;
}

.videos-wrapper .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.videos-wrapper .item h1 {
	padding: 0 5px;
	color: #333;
	font-size: 12px;
}


.pag {
	padding: 5px 10px 15px;
}

.pag ul {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	-ms-flex-align: center;
    align-items: center;
	-ms-flex-pack: center;
    justify-content: center;
	text-align: center;
}

.pag ul li {
	margin: 0 5px 5px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

.pag ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 15px;
	padding: 3px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	min-width: 21px;
}

.pag ul li.active a {
	background: #333;
	color: #fff;
}


.item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    widtH: calc(100% - 40px);
    max-width: 472px;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.item-container .item {
    line-height: 0;
    padding: 3px;
    width: calc(50% - 6px);
    position: relative;
}

.item-container .item img {
    border-radius: 5px;
    width: 100%;
}

.item-container .item .btn-play {
    background: url(../pix/icon-play.png);
    background-size: 26px 26px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.item-container a.btn {
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: raleway;
    font-style: italic;
    font-weight: 700;
    font-size: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 12px 3px 0;
    padding: 16px 24px;
    position: relative;
    text-decoration: none;
    background: -webkit-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -o-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ef0000), to(#e20083));
    background: linear-gradient(to right, #ef0000 0%, #e20083 100%);
    padding-left: 42px !important;
    width: 100%;
}

.item-container .btn img {
    margin-right: 7px;
    width: 18px
}

.item-container .btn span:last-child {
    line-height: 1;
    margin-right: 20px;
    font-size: 20px;
}

/****************/

/*   PIN_LANDING
/****************/

.button-container {
    font-family: raleway;
    font-style: italic;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 25px;
    padding: 0 25px;
}

.button-container p {
    margin-bottom: 19px;
}

.button-container a.btn {
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    height: 16px;
    margin: 0 5px;
    padding: 13px 24px;
    position: relative;
    text-decoration: none;
}

.button-container .kaufen {
    /* KAUFEN --- Button background color */
    background: -webkit-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -o-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ef0000), to(#e20083));
    background: linear-gradient(to right, #ef0000 0%, #e20083 100%);
    margin-left: 0 !important;
}

.button-container .btn span {
    line-height: 1.1;
}

.button-container .stornieren {
    /* KAUFEN --- Button background color */
    line-height: 1.1;
    margin-right: 0 !important;
}

.button-container img {
    margin-right: 7px;
    width: 14px
}

/****************/

/*   3G_MOBILE
/****************/

img.preview {
    width: calc(100% - 40px);
    max-width: 556px;
    margin: 20px auto 250px;
}

/****************/

/*   3G THANK YOU
/****************/

.content {
    font-size: 9px;
    margin-top: 40px;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 10;
}

.content .button-container {
    display: flex;
    justify-content: center;
    font-family: raleway;
    font-style: italic;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 25px;
    padding: 0 25px;
}

.content .button-container a.btn {
    border-radius: 3px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 16px;
    padding: 13px 24px;
    text-decoration: none;
    width: 30%;
}

.content .button-container .kaufen {
    /* KAUFEN --- Button background color */
    background: -webkit-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -o-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ef0000), to(#e20083));
    background: linear-gradient(to right, #ef0000 0%, #e20083 100%);
}

.content .button-container span img {
    width: 14px
}

.content .button-container .stornieren {
    /* STORNO --- Button background color */
    background: #BBBBBB;
}

.content p.disclaimer {
    color: #C0C0C0;
    line-height: 135%;
}

/****************/

/*   STATIC PAGES
/****************/

.static-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 70px;
    padding: 0 8px;
    text-align: center;
}

.static-content p {
    line-height: 135%;
    margin-bottom: 17px;
}

/****************/

/*   FOOTER
/****************/

.footer {
    background: #DDDDDD;
    z-index: 999;
}

.footer ul {
    padding: 5px 5px 7px;
    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: 3px 5px;
}

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

/****************/

/*   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, .popup-container .looknow {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    font-size: 8px;
    padding: 13px 12px;
    text-align: left;
}

/****************/

/*   POPUP - PIN_CODE
/****************/

.popup-container .popup_pincode p, .popup-container .popup_pin_handynumber p {
    font-weight: 300;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.popup-container .popup_pincode ul, .popup-container .popup_pin_handynumber ul {
    margin: 0 auto 12px;
}

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

.popup-container .popup_pincode ul li span:first-child, .popup-container .popup_pin_handynumber 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;
    opacity: .5;
}

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

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

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

.popup-container .popup_pincode form input[type=submit] {
    background: -webkit-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -o-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ef0000), to(#e20083));
    background: linear-gradient(to right, #ef0000 0%, #e20083 100%);
    border: none;
    border-radius: 0 5px 5px 0;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 300;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 40%
}

/****************/

/*   POPUP - PIN_HANDYNUMBER
/****************/

.popup-container .popup_pin_handynumber p {
    text-align: center;
}

.popup-container .popup_pin_handynumber ul li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.popup-container .popup_pin_handynumber ul li span:first-child {
    width: auto;
}

.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;
    opacity: .5;
}

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

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

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

.popup-container .popup_pin_handynumber form input[type=submit], .popup-container .popup_pin_handynumber form input[type=reset] {
    background: -webkit-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -o-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ef0000), to(#e20083));
    background: linear-gradient(to right, #ef0000 0%, #e20083 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    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;
    cursor: pointer;
}

/****************/

/*   POPUP - LOOKNOW
/****************/

.popup-container .looknow {
    padding: 0;
}

.popup-container .looknow .details {
    padding: 14px;
}

.popup-container .looknow .details h1 {
    font-size: 15px;
    font-family: raleway;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}

.popup-container .looknow .details ul li span {
    font-size: 9px;
}

.popup-container .looknow .details ul li {
    font-size: 9px;
    margin-bottom: 13px;
    position: relative;
}

.popup-container .looknow .details ul li span:last-child {
    position: absolute;
    top: 0;
    left: 50%;
}

.popup-container .looknow .btn.kaufen {
    /* KAUFEN --- Button background color */
    background: -webkit-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -o-linear-gradient(left, #ef0000 0%, #e20083 100%);
    background: -webkit-gradient(linear, left top, right top, from(#ef0000), to(#e20083));
    background: linear-gradient(to right, #ef0000 0%, #e20083 100%);
    border-radius: 0 0 5px 5px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-style: italic;
    font-family: raleway;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 0;
}

.popup-container .looknow .btn.kaufen img {
    margin-right: 7px;
    width: 14px;
}

/****************/
/*   INPUT FIELDS
/****************/

.input-field [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%);
}

.input-field-pin{
    width: calc(100%);
    margin: 5px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-appearance: none;
}

.btn-kaufen {
    background: #F55453;
    border: 1px solid #F55453;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    outline: none;
    padding: 10px;
    text-decoration: none;
    width: 100%;
    text-align: center;
}