@charset "utf-8";

@font-face {
  font-family: 'helv-67';
  src: url("webfonts/HelveticaNeueW01-67MdCn.woff2") format("woff2"), url("webfonts/HelveticaNeueW01-67MdCn.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'read-light';
  src: url("webfonts/Read-Light.woff") format("woff"), url("webfonts/Read-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

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

body {
	margin:0;
  background-color: #222;
  font-family: 'read-light';
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  min-height:100vh;
}

body.learninghub {
  /**background-image: url("../img/app-bg.jpg");**/
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  text-align:center;
}

h1 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 20px 0;
  font-family: 'helv-67';
  font-weight: 500;
  text-transform: uppercase;
}

img {
	border:0;
	vertical-align: middle;
}

#header {
  margin: 20px auto;
  padding: 40px;
  /**max-width: 1100px;**/
  max-width: 960px;
}
#header img {
  width:100%;
  max-width:100%;
}

#header #logotype {
  display: inline-block;
  margin: 20px 0;
  height: 16px;
  line-height: 16px;
  vertical-align: middle;
}

body.learninghub #header #logotype {
	margin-left: 20px;
}

#header #logotype img {
  display: block;
}

#header #appname,
#header #learninghub-app {
  display: inline-block;
  margin: 10px 20px;
  padding: 5px 20px;
  height: 32px;
  line-height: 22px;
  font-size: 22px;
  vertical-align: middle;
  text-transform: uppercase;
  border-left: 1px solid #fff;
}
#header #learninghub-app {
    border: none;
}

body.learninghub #header #logotype {
	margin-left: 20px;
}

#header #appname span,
#header #learninghub-app span {
  color: #ffcc33;
}
#main {
  position: relative;
  margin: 0 20px;
}
#content .content-title {
  font-size: 24px;
  line-height: 30px;
  min-height: 30px;
  color: #ffcc33;
}

.learninghub-content {
	margin: 0 auto;
	padding-bottom: 40px;
	text-align: center;
}

.learninghub-content a {
	color: #ffcc33;
}

.stores {
    margin: 0 auto;
    max-width: 800px;
}
.stores .store {
    display: inline-block;
    margin: 10px;
    width: 47%;
    text-align: center;
}
.stores .store > img {
  max-width: 260px;
}

.stores .store ul {
  list-style-type: none;
}
.stores .store ul li {
  padding-left: 45px;
  text-align: left;
}
.stores .store ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}
.stores .store ul li a img {
  width: 40px;
  margin-right: 10px;
}


@media screen and (max-width: 640px) {
  .stores .store {
    width: 98%;
  }
  .stores .store > img {
    max-width: 320px;
  }
  .stores .store ul li {
    padding-left: 50px;
    margin: 15px 0;
  }
  .stores .store ul li a {
    font-size: 1.4em;
  }
  .stores .store ul li a img {
    width: 50px;
  }
}

/** form **/
.support-form {
  width: 440px;
  margin: 40px auto;
  text-align: left;
}
.support-form input,
.support-form select,
.support-form textarea {
  outline: none;
}
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  color: #fff !important;
}
.support-form select > option {
  background: #333333 !important;
}

.support-form .form-group {
  overflow: hidden;
  margin-bottom: 20px;
  /**font-size: 0px;**/
}
.support-form .form-group label {
  font-size: 18px;
  line-height: 30px;
  /**color: rgb(153, 153, 153);**/
  color: #ddd;
}
.support-form .form-group .form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 0px;
  font-size: 18px;
  line-height: 30px;
  color: rgb(136, 139, 141);
  background-color: transparent;
  background-image: none;
  border-color: currentcolor currentcolor rgb(136, 139, 141);
  border-style: none none solid;
  border-width: 0px 0px 1px;
  border-image: none 100% / 1 / 0 stretch;
  border-radius: 0px;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out 0s;
}
.support-form .form-group textarea.form-control {
  height: 120px;
  overflow: auto;
}
.support-form .btn {
  display: inline-block;
  width: 100%;
  max-width: 260px;
  margin-bottom: 0px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 0px none;
  padding: 15px 20px 10px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 0px;
  user-select: none;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s;
}
.support-form .btn-secondary {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 204, 51);
}

.support-form label.error {
  color: red;
}
