/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
    GRID
   ========================================================================== */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.frame {
  margin: 0 auto;
  max-width: 100%;
}

.frame:after {
  content: "";
  display: table;
  clear: both;
}

[class*='bit-'] {
  float: left;
  padding: 0.3em;
}

.bit-1 {
  width: 100%;
}

.bit-2 {
  width: 50%;
}

.bit-3 {
  width: 33.33333%;
}

.bit-4 {
  width: 25%;
}

.bit-5 {
  width: 20%;
}

.bit-6 {
  width: 16.66667%;
}

.bit-7 {
  width: 14.28571%;
}

.bit-8 {
  width: 12.5%;
}

.bit-9 {
  width: 11.11111%;
}

.bit-10 {
  width: 10%;
}

.bit-11 {
  width: 9.09091%;
}
.bit-15 {
  width: 15%;
}


.bit-12 {
  width: 8.33333%;
}

.bit-25 {
  width: 25%;
}

.bit-40 {
  width: 40%;
}

.bit-60 {
  width: 60%;
}

.bit-75 {
  width: 75%;
}
.bit-85 {
  width: 85%;
}
.bit-90{
	width: 90%;
}


@media (max-width: 40em) {
  .bit-60{
	  width: 100%;
  }
  .bit-40{
	  width: 100%;
	  
  }
}
@media (max-width: 30em) {
  .bit-1 {
    width: 100%;
  }
  .bit-2 {
    width: 100%;
  }
  .bit-3 {
    width: 100%;
  }
  .bit-4 {
    width: 100%;
  }
  .bit-5 {
    width: 100%;
  }
  .bit-6 {
    width: 100%;
  }
  .bit-7 {
    width: 100%;
  }
  .bit-8 {
    width: 100%;
  }
  .bit-9 {
    width: 100%;
  }
  .bit-10 {
    width: 100%;
  }
  .bit-11 {
    width: 100%;
  }
  .bit-12 {
    width: 100%;
  }

}

@media (min-width: 30em) and (max-width: 50em) {
  .bit-4,
  .bit-6,
  .bit-8,
  .bit-10,
  .bit-12 {
    width: 50%;
  }
  .bit-1,
  .bit-2,
  .bit-3,
  .bit-5,
  .bit-7,
  .bit-9,
  .bit-11 {
    width: 100%;
  }
}



/* ==========================================================================
   Author's custom styles
   ========================================================================== */
 
 /*Sticky Footer*/
 
html, body {
 height: 100%;
}

.wrapper {
 height: auto; 
 min-height: 100%;
}

#vyron_end_info {
 padding-bottom:100px; /* Höhe des Footers */
 margin: 50px;
} 

.footer {
 height:100px;
 margin-top: -100px; /* Höhe des Footers */
}



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


body{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1em;
	color: #303030;
}

ul, li{
	margin-left: 0;
	padding-left: 0;
}
ul{
	margin-left: 1.2em;
	margin-top: 1em;
	margin-bottom: 1em;
}

section{

}

nav{
	position: fixed;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	background: #fff;
	width: 100%;
	z-index: 10;
	top: 0;
	-webkit-box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2);
	box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2);
	/*transition: all 0.4s linear;*/
	height: 130px;
}
#content{
	margin-top: 130px;
}
a{
	color: #303030;
}
a:hover{
	color: #818181;
}


/* ==========================================================================
   General Classes
   ========================================================================== */

.pos-relative{
	position: relative;	
}
.container{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1em;
	padding-right: 1em;
}
.more-bold{
	font-weight: 700;
	color: #ececec;
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero-pic{
	max-width: 1200px;
	margin: 0 auto;
	display: block;	
}
.logo{
	max-width: 150px;
}
#wrap{
	z-index: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

/* Button CTA */

.cashback-money{
	font-size: 3.5em;
	display: inline-block;
	color: #ffed00;
	background: rgba(0,0,0,0.7);
	margin: 0;
	padding: 0 5px;
	line-height: 1em;
	margin-bottom: 3px;
	font-weight: 700;
	text-transform: uppercase;
}
.cashback-money .small-caps-e{
	text-transform: lowercase;
}
.coming-soon{
	font-size: 2.5em;
}
.get-cashback{
	display: inline;
	line-height: 1.25em;
}

/* Vyron LOGO */
.vyron-logo{
	max-width: 50%;
	display: block;
	margin-bottom: 2em;
}

/* ==========================================================================
   Pictures
   ========================================================================== */

.responsive{
	width: 100%;
	height: auto;
}
.step-icons{
	margin: 0 auto;
	display: block;
}
.vyron-icon{
	height: auto;
}


/* ==========================================================================
   Register Button
   ========================================================================== */

.register-button{
	padding:  0.2em 1em;
	font-size: 1.5em;
	border-radius: 3em;
	display: inline-block;
	background-color: #ffed00;	
    border: 1px solid transparent;
    color: #000;
    display: inline-block;
    line-height: 1.5em;
    text-align: center;
    position: relative;
    vertical-align: middle;
    border-radius: 2px 2px 2px 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	transition: .3s ease;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
	margin-right: 5px;
}

.register-button .small-caps-e{
	text-transform: lowercase;
}


/* ==========================================================================
	Intro Teaser
   ========================================================================== */

#intro_teaser{
	text-align: center;
	padding-top: 2em;
	padding-bottom: 2em;
	background: #ececec;
}
#intro_teaser h1{
	font-size: 3em;
	font-weight: 800;
	margin: 0 0 20px 0;
	line-height: 1em;
}
#intro_teaser p{
	margin: 0 0 0 0;
	font-size: 2em;
	
}
#remaining_vyrons {
	margin-top: 0;
	padding-bottom: 2em;
}
#remaining_vyrons p{
	font-size: 1em;
}
.percentage_vyron_left{
	background-color: rgba(0,0,0,0.8) ;	
	font-size: 1.6em;
	display: inline-block;
	padding: 0.25em;
	font-weight: 600;
	color: #ffed00;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 5px;
}
.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.child2 {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
}
.line-intro{
	width: 50%;
	background-color: #606060;
	margin: 0 auto;
	border: none;

}
#vyron_end_info .bit-40{
	text-align: right;
}

/* ==========================================================================
	Formular
   ========================================================================== */
	
#formular{
	background: #ececec;
}	



/* ==========================================================================
	Cashback Steps
   ========================================================================== */


.steps-container{
	padding-top: 40px;
	padding-bottom: 40px;
}

.step-description{
	font-size: 1.7em;
	font-weight: 800;
	text-align: center;
	display: block;
	margin: 1em 0;	
	color: #ffed00; 
}
.step-description span.step{
	background: rgba(0,0,0,0.8);
	padding: 0 10px;
	
}

.arrow-down{
	padding: 40px 0;
	display: none;
}
.arrow-hz{
	display: block;
}
.step-bullets li{
	margin: 0 1em 1em 1em;
	font-size: 1.2em;
}
.wish-you-fun{
	font-size: 1.6em;
	text-align: center;
	padding-bottom: 1em;
	
}

/* ==========================================================================
	Footer
   ========================================================================== */

footer{
	background: #303030;
	padding: 2em 0; 
	color: #fff;	
}
footer a{
	color: #fff;
}



/* ==========================================================================
   Language Picker
   ========================================================================== */

.languagepicker{
	float: right;
	padding: 1.7em 0;
	font-weight: 700;
	font-size: 0.8em;
}
.languagepicker-list li{
	display: inline;
	margin-left: 1em;
}
.languagepicker-list li:after{
	content: ' |  ';
	margin-left: 1em;
}
.languagepicker-list li:last-of-type:after{
	content: '';
}

.languagepicker-list a{
	color: #303030;
	text-decoration: none;
}
.languagepicker-list a:hover{
	color: #CCC;
	text-decoration: none;
}

.country-flag{
	margin-right: 0.3em;
}

/**************************Number Circle*****************************/

.numberCircle {
	display: inline-block;
	line-height: 0px;
	border-radius: 50%;
	font-size: 2em;
	background-color: #000;	
	color: #ffed00;
	font-weight: 700;
}
.numberCircle span.asde {
  display: inline-block;
  padding-top: 50%;
  padding-bottom: 50%;
  margin-left: 20px;
  margin-right: 20px;
}
.step-title{
	font-size: 2.4em; 
	font-weight: 800;
	margin-right: 10px;
	text-align: center;
	display: block;
}
.step-t{
	font-size: 1em;
}

/**************************Media Queries*****************************/



@media (max-width: 1500px) {

	#intro_teaser{
		font-size: 80%;
	}
	.vyron-logo{
		max-width: 40%;
	}
}


@media (max-width: 1000px) {
	
	#intro_teaser, #info-vyron{
		font-size: 85%;
	}
	.cashback-money{
		font-size: 3em;
	}
}

@media (max-width: 50em){
	.steps-container .bit-4, .steps-container .bit-8{
		width: 100%;
	}
	.steps-container img{
		max-width: 50%;
	}
	.step-description{
		text-align: center;
		margin: 0 auto;
		margin-top: 2em;
	}

	.arrow-down{
		display: block;

	}
	.arrow-hz{
		display: none;
	}
	.child{
		position: static;
		-webkit-transform: translate(0, 0) translate3d(0, 0, 0);
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: translate(0, 0) translate3d(0, 0, 0);
	}
	.steps-container img{
		width: 80%;
	}
	.steps-container .arrow-down{
		max-width: 50px;
	}
	.step-bullets{
		text-align: center;
		margin-top: 2em;
		list-style-position: inside;
	}

}

@media (max-width: 980px) {	
	#nav{
		padding-top: 0.5em;
		padding-bottom: 0.5em;
		height: 80px;
	}
	#nav .logo{
		max-width: 100px;
	}
	#content{
		margin-top: 80px;
	}

}

@media (max-width: 650px) {
	#content{
		font-size: 65%;
	}
	/* Vyron LOGO */
	.vyron-logo{
		max-width: 55%;
	}
	.vyron_black{
		width: 30%;	
	}
	.child2{
		position: static;
		-webkit-transform: translate(0, 0) translate3d(0, 0, 0);
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: translate(0, 0) translate3d(0, 0, 0); 
	}
	#vyron_end_info .bit-40{
		text-align: center;
		margin-bottom: 20px;
	}
	#vyron_end_info .bit-60{
		text-align: center;
	}
}	
@media (max-width: 480px){
	.cashback-money{
		font-size: 2em;
	}
}





/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
