/*http://stoutapp.com/#!
 * HTML5 Boilerplate
 *
 * 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
   ========================================================================== */
/*   @import url('https://fonts.googleapis.com/css?family=Lato:100,300,400&display=swap');
*/
html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

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

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

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
	position: relative;
	min-height: 100%;
	width: 100%;
	background:#24282e;
	margin:0 auto;
	text-align:center;
	font-family: 'Lato', sans-serif;
}
html {
	height: 100%;  
	box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: inherit;
}
.main {
	margin: 0 auto;
  padding-top: 64px;
  width: 94%;
  }
header {
	margin:20px 0 80px;
}
h1 {
	font-size:48px;
	color:#dbdbdb;
	font-weight:100;
	display:inline;
}
h1 a {
	color:#dbdbdb;
	text-decoration:none;
}
header span {
	display:inline;
	font-size:30px;
	font-weight:bold;
}
header span:nth-of-type(1) {
	color:#f7b903;
}
header span:nth-of-type(2) {
	color:#5bb6fd;
}
header span:nth-of-type(3) {
	color:#d13360;
}
header small {
	display:block;
	font-size:10px;
	color:#0090ff;
	margin:-12px 0 0 -227px;
}
.input {
	margin:0 auto;
	background:#d8d8d8;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border:2px solid #505967;
	text-align:left;
	padding:5px;
	width: 500px;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.input:hover {
	border-color:#0090FF;
}
.input input[type="text"]{
	border:0;
	width:390px;
	background:#d8d8d8;
	font-family: 'Lato', sans-serif;
	font-size:16px;
	color:#505967;
	outline:none;
	height:35px;
}
.submit{
	display:inline-block;
	background:#0090ff;
	border:0;
	width:99px;
	line-height:36px;
	height:39px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align:center;
	cursor:pointer;
	vertical-align:top;
}
.submit small{
	color:#FFF;
	text-decoration:none;
	font-size:30px;
	font-weight:bold;
    display:inline-block;
    line-height:22px;
}
.submit > div {
  width: 8px;
  height: 8px;
  
  border-radius: 100%;
  display: inline-block;
  background-color: #d8d8d8;
}

.spinner {
    pointer-events: none;
}
.spinner .bounce1 {
    background-color: #f7b903;
}
.spinner .bounce2 {
    background-color: #5bb6fd;
}
.spinner .bounce3 {
    background-color: #d13360;
}
.spinner > div {
  width: 8px;
  height: 8px;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
aside {
	position: absolute;
}
aside img {
	margin:0 3px;
}
aside:nth-of-type(1){
	left: 5%;
	bottom:24px;
	color:#FFF;
}
aside:nth-of-type(2){
	right: 5%;
	bottom:20px;
}
.response {
	margin:0 auto;
	margin-top:25px;
}
.response a {
	width:350px;
	height:50px;
	line-height:50px;
	background:#d8d8d8;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-decoration:none;
	color:#0090ff;
	padding:10px 50px;
}
.response  span:nth-of-type(1) {
	color:#f7b903;
	font-size:30px;
}
.response  span:nth-of-type(2) {
	color:#5bb6fd;
	font-size:30px;
}
.response span:nth-of-type(3) {
	color:#d13360;
	font-size:30px;
}
p a {
	color:#5bb6fd!important;
}
p {
	line-height:26px;
}
.tos {
	color:#FFF;
	text-align:justify;
	padding:20px;
}
div.error p{
	font-size:30px;
	color:#dbdbdb;
}
#down_butt{
	background:#f7b903;
	width:300px;
	line-height:50px;
	margin:0 auto;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor:pointer;
	font-size:1.2em;
	color:#24282e;
}
#download {
    border:5px solid #505967;
    width:630px;
    padding:20px;
	margin:0 auto;
}
#download img {
    float:left;
    margin:0 20px 0 0;
	width:260px;
	padding-bottom:15px;
}
#download h5 {
	font-size:1.5em;
	font-weight:300;
	color:#FFF;
//	float:left;
	margin:0;
	padding:0 0 15px 0;
}
#download ul{
	color:#FFF;
	list-style:none;
	font-size:0.9em;
	font-weight:300;
	margin:0 0 50px 0;
	padding: 0 0 0 279px;
}
#download li{
	text-align:left;
	white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	white-space: pre-wrap;       /* css-3 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	word-break: break-all;
	white-space: normal;
}
#download .btn {
	line-height:55px;
	background:#d13360;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration:none;
	color:#FFF;
	padding:10px 20px;
	font-size:1.4em;
	font-weight:300;
}
.social{
}
.fb-like{
}
h2 {
	font-size:2em;
	font-weight:300;
	color:#FFF;
	margin:0;
	padding:0 0 15px 0;
	word-wrap:break-word;
}
footer {
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	text-align: center;
}
footer ul{
	margin:0;
	padding:0;
}
footer li{
	/* display:inline; */
	padding:0 5px;
}
footer ul li a{
	display:inline;
	color:#FFF;
	text-decoration:none;
}
footer ul li a:hover{
	text-decoration:underline;
}
.placeholder {
	margin:0;
}

/* ==========================================================================
   sites page classes
   ========================================================================== */
.sites, .site {
	margin-bottom:50px;
	text-align:left;
	background:#FFF;
	max-width:960px;
	margin:0 auto;
	border-bottom: 1px solid #ddd;
}
.sites h2 , .site h2{
	padding: 20px 30px;
	color:#000;
	font-weight:400;
}
.sites h3 {
	bottom: 0;
	margin: auto;
	right: 30px;
	top: 0;
}
.sites ul {
	margin:0;
	padding:0;
}
.sites li {
	list-style:none;
	border-top: 1px solid #ddd;
	padding: 30px 330px 20px 30px;
	position: relative;
}
.sites img {
	bottom: 0;
	margin: auto;
	position: absolute;
	right: 30px;
	top: 0;
}
.sites p, .site p {
	text-align:justify;
	color: #888;
	margin: 1em 0;
}
.button {
	border: 1px solid #0090ff;
	border-radius: 5px;
	display: inline-block;
	font-size: 13px;
	padding: 7px 15px;
	color:#0090ff;
	text-decoration:none;
}
a.button:hover {
	background:#0090ff;
	color:#FFF;
}

.site {
	padding:20px 30px;
}
.site img {
   float: right;
   margin-top: -15px;
}
.site h2 {
	padding:0;
	margin:0 0 15px 0;
}
.site a {
	color:#d13360;
}
.site table {
    margin: 1em 0;
    width: 100%;
	font-size:0.8em;
}
.site table th {
    color: #888;
    padding-right: 20px;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    width: 1px;
}
.site table td {
    color: #444;
}
.site table td {
    padding: 6px 0 5px;
    vertical-align: top;
}
.site article {
	border-top: 1px solid #ddd;
	margin: 0 -30px;
	padding:20px 30px;
}
/*.site article iframe{
	display:block;
	float: right;
	width:420px;
	height:315px;

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

/* Prevent callout */

.nocallout {
    -webkit-touch-callout: none;
}

.pressed {
    background-color: rgba(0, 0, 0, 0.7);
}

/* A hack for HTML5 contenteditable attribute on mobile */

textarea[contenteditable] {
    -webkit-appearance: none;
}

/* A workaround for S60 3.x and 5.0 devices which do not animated gif images if
   they have been set as display: none */

.gifhidden {
    position: absolute;
    left: -100%;
}

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    background-repeat: no-repeat;
    border: 0;
    direction: ltr;
    display: block;
    overflow: hidden;
    text-align: left;
    text-indent: -999em;
}

.ir br {
    display: none;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

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

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

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

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/**
 * Clearfix helper
 * Used to contain floats: h5bp.com/q
 */

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

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

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

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 144dpi) {
    /* Style adjustments for viewports that meet the condition */
}

@media (max-width: 700px) {
	#download {
		width:360px;
	}
	#download ul{
		padding:0;
	}
	#download img{
		width:100%;
	}
	.input input[type="text"]{
		width:100%;
	}
	.submit {
		width:inherit;
	}
	.sites {
		width:100%;
		text-align:center;
	}
	.sites li {
		padding: 30px 30px 20px 30px;
	}
	.sites img {
		position:static;
	}
	.site img {
		float:none;
	}
	.site {
		text-align:center;
	}
	.site table{
		text-align:left;
	}
	.site article iframe{
		float:none;
	}
	.site article iframe{
		width:400px;
		height:305px;
	}
}
@media (max-width: 430px) {
	#download {
		width:260px;
	}
	#download img{
		width:100%;
	}
	#download .btn {
		font-size:1em;
	}
	.input {
		width:277px;
	}
	.site article iframe{
		width:250px;
		height:305px;
	}
}

div.likely
{
margin-top: 30px;
}
img.info-icon {
float: left;
margin-top: 0.5em;
margin-right: 20px;
line-height: 26px;
}