/*
 * Theme URI: http://justinallen.us
 * Description: zenAudio
 * Author: Justin Allen, Martin Percossi
 * Author URI: http://justinallen.us
 * Version: 3
 */
/*
 * 1. UBUNTU
 *
 */
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-light-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-light-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-light-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-light-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-light-webfont.svg#ubuntulight') format('svg');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-lightitalic-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-lightitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-lightitalic-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-lightitalic-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-lightitalic-webfont.svg#ubuntulight_italic') format('svg');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-regular-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-regular-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-regular-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-regular-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-regular-webfont.svg#ubunturegular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-italic-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-italic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-italic-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-italic-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-italic-webfont.svg#ubuntuitalic') format('svg');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-mediumitalic-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-mediumitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-mediumitalic-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-mediumitalic-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-mediumitalic-webfont.svg#ubuntumedium_italic') format('svg');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-medium-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-medium-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-medium-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-medium-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-medium-webfont.svg#ubuntumedium') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-bold-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-bold-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-bold-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-bold-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-bold-webfont.svg#ubuntubold') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/static/fonts/ubuntu/ubuntu-bolditalic-webfont.eot');
  src: url('/static/fonts/ubuntu/ubuntu-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/fonts/ubuntu/ubuntu-bolditalic-webfont.woff') format('woff'), url('/static/fonts/ubuntu/ubuntu-bolditalic-webfont.ttf') format('truetype'), url('/static/fonts/ubuntu/ubuntu-bolditalic-webfont.svg#ubuntubold_italic') format('svg');
  font-weight: 700;
  font-style: italic;
}
.ease_in_opacity {
  animation: ease_in_opacity linear 2.5s;
  animation-iteration-count: 1;
}
@keyframes ease_in_opacity {
  0% {
    display: none ;
    opacity: 0;
  }
  1% {
    display: block ;
    opacity: 0;
  }
  100% {
    display: block ;
    opacity: 1;
  }
}
.ease_in {
  animation: ease_in ease 0.5s;
  animation-iteration-count: 1;
}
@keyframes ease_in {
  0% {
    transform: translate(1000px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.ease_in_left {
  animation: ease_in_left ease 1s;
  animation-iteration-count: 1;
}
@keyframes ease_in_left {
  0% {
    transform: translate(-500px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.bounce {
  animation: bounce linear 1.3s;
  animation-iteration-count: 5;
  transform-origin: 50% 50%;
}
@keyframes bounce {
  0% {
    transform: translate(0px, 0px);
  }
  15% {
    transform: translate(0px, -25px);
  }
  30% {
    transform: translate(0px, 0px);
  }
  45% {
    transform: translate(0px, -15px);
  }
  60% {
    transform: translate(0px, 0px);
  }
  75% {
    transform: translate(0px, -5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@-moz-keyframes bounce {
  0% {
    -moz-transform: translate(0px, 0px);
  }
  15% {
    -moz-transform: translate(0px, -25px);
  }
  30% {
    -moz-transform: translate(0px, 0px);
  }
  45% {
    -moz-transform: translate(0px, -15px);
  }
  60% {
    -moz-transform: translate(0px, 0px);
  }
  75% {
    -moz-transform: translate(0px, -5px);
  }
  100% {
    -moz-transform: translate(0px, 0px);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate(0px, 0px);
  }
  15% {
    -webkit-transform: translate(0px, -25px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
  }
  45% {
    -webkit-transform: translate(0px, -15px);
  }
  60% {
    -webkit-transform: translate(0px, 0px);
  }
  75% {
    -webkit-transform: translate(0px, -5px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
  }
}
@-o-keyframes bounce {
  0% {
    -o-transform: translate(0px, 0px);
  }
  15% {
    -o-transform: translate(0px, -25px);
  }
  30% {
    -o-transform: translate(0px, 0px);
  }
  45% {
    -o-transform: translate(0px, -15px);
  }
  60% {
    -o-transform: translate(0px, 0px);
  }
  75% {
    -o-transform: translate(0px, -5px);
  }
  100% {
    -o-transform: translate(0px, 0px);
  }
}
@-ms-keyframes bounce {
  0% {
    -ms-transform: translate(0px, 0px);
  }
  15% {
    -ms-transform: translate(0px, -25px);
  }
  30% {
    -ms-transform: translate(0px, 0px);
  }
  45% {
    -ms-transform: translate(0px, -15px);
  }
  60% {
    -ms-transform: translate(0px, 0px);
  }
  75% {
    -ms-transform: translate(0px, -5px);
  }
  100% {
    -ms-transform: translate(0px, 0px);
  }
}
ul.messages li.success {
  color: #33ff33;
}
ul.messages li.error {
  color: #e62d48;
}
.container-new {
  margin: 0 auto;
  max-width: 1040px;
}
@media only screen and (max-width: 1080px) {
  .container-new {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1040px;
  min-height: 1px;
}
@media only screen and (max-width: 1080px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.text-container {
  margin: 0 auto;
  max-width: 740px;
}
@media only screen and (max-width: 780px) {
  .text-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.container:after {
  content: "";
  display: table;
  clear: both;
}
.text-container:after {
  content: "";
  display: table;
  clear: both;
}
.beta-program-error {
  padding: 5px 9px;
  border: 1px solid #e62d48;
  color: #e62d48;
  border-radius: 5px;
  margin-bottom: 30px;
}
.beta-program-success {
  padding: 5px 9px;
  border: 1px solid #33ff33;
  color: #33ff33;
  border-radius: 5px;
  margin-bottom: 30px;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 300px;
}
body {
  background-color: #272e38;
  font-family: 'Ubuntu';
  font-weight: 300;
  line-height: 1.5em;
}
li#mess {
  visibility: hidden;
}
section#payment-section {
  background-color: #ECEDEF;
  min-height: 500px;
  padding-bottom: 40px;
  color: rgba(0, 0, 0, 0.66);
}
section#payment-section div.container {
  margin: 0 auto;
  max-width: 500px;
  min-height: 1px;
}
section#payment-section div.container h1,
section#payment-section div.container h2 {
  color: black;
  margin: 20px 0px 20px 0px;
  padding: 0;
  border-bottom: 1px solid #a970ff;
}
section#payment-section div.container p {
  color: rgba(0, 0, 0, 0.66);
}
section#payment-section div.container ul#bill > li {
  margin-bottom: 5px;
}
section#payment-section div.container ul#bill > li span {
  float: right;
}
section#payment-section div.container ul#bill > li span#discounted {
  margin-top: -5px;
  padding-top: 5px;
  border-top: 2px solid #a970ff;
}
section#payment-section div.container form {
  margin-top: 10px;
}
section#payment-section div.container form div.ccjs-card,
section#payment-section div.container form div.ccjs-js-enabled {
  background-color: rgba(169, 112, 255, 0.6);
  border: 0;
  width: 100% !important;
}
section#payment-section div.container form div.ccjs-card label.ccjs-number,
section#payment-section div.container form div.ccjs-js-enabled label.ccjs-number,
section#payment-section div.container form div.ccjs-card label.ccjs-csc,
section#payment-section div.container form div.ccjs-js-enabled label.ccjs-csc {
  top: 20px;
}
section#payment-section div.container form div.ccjs-card label.ccjs-name,
section#payment-section div.container form div.ccjs-js-enabled label.ccjs-name {
  bottom: 88px;
}
section#payment-section div.container form div.ccjs-card button.ccjs-csc-help,
section#payment-section div.container form div.ccjs-js-enabled button.ccjs-csc-help {
  top: 51px;
}
section#payment-section div.container form div.ccjs-card fieldset,
section#payment-section div.container form div.ccjs-js-enabled fieldset {
  bottom: 82px;
}
section#payment-section div.container form div.ccjs-card fieldset select,
section#payment-section div.container form div.ccjs-js-enabled fieldset select {
  height: 40px;
}
section#payment-section div.container form div.ccjs-card input,
section#payment-section div.container form div.ccjs-js-enabled input {
  font-size: 26px;
  height: 40px;
}
section#payment-section div.container form div.ccjs-card input.ccjs-name,
section#payment-section div.container form div.ccjs-js-enabled input.ccjs-name {
  width: 269px;
  top: 30px;
}
section#payment-section div.container form label {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.66);
}
section#payment-section div.container form span.errors {
  color: #e62d48;
  margin-left: 10px;
}
section#payment-section div.container form input {
  font-size: 16px;
  padding-left: 0.5em;
  line-height: 2em;
  border: 1px solid rgba(0, 0, 0, 0.26);
  border-radius: 5px;
  font-family: 'Ubuntu', sans-serif;
}
section#payment-section div.container form input.coupon {
  border-radius: 10px 0 0 10px;
  width: 112px;
}
section#payment-section div.container form input.email {
  border-radius: 10px;
  width: 100%;
}
section#payment-section div.container form input.redeem {
  border-radius: 0 10px 10px 0;
  color: #ECEDEF;
  height: 36px;
  background-color: #a970ff;
  border: 2px solid #a970ff;
  padding: 0px 20px 0px 20px;
}
section#payment-section div.container form input.redeem:hover {
  border: 2px solid #c8a3ff;
}
section#payment-section div.container form input#main_submit {
  height: 50px;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  background-color: #1b981b;
  border: 2px solid #1b981b;
  color: #ECEDEF;
}
section#payment-section div.container form input#main_submit:disabled {
  border: 2px solid rgba(0, 0, 0, 0.4);
  background-color: rgba(0, 0, 0, 0.4);
  color: black;
}
section#payment-section div.container form input#main_submit:hover:enabled {
  border: 2px solid #33ff33;
  background-color: #1fad1f;
}
section#payment-section div.container form input#main_submit:active:enabled {
  border: 2px solid #1b981b;
  background-color: #ECEDEF;
  color: #1b981b;
}
section#payment-section div.container form input:focus {
  border: 1px solid #a970ff;
}
section#payment-section div.container form div.payment-errors {
  margin-top: 20px;
  color: #e62d48;
}
div#main section#blog {
  background-color: #ECEDEF;
  color: black;
}
div#main section#blog div.home > h1 {
  margin-top: 40px;
  margin-bottom: 40px;
}
div#main section#blog article h1 {
  padding-top: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}
div#main section#blog div.post-content ul {
  margin: 10px 0px 10px 20px;
  list-style: disc;
}
div#main section#blog p,
div#main section#blog h1,
div#main section#blog h2,
div#main section#blog h3 {
  color: black;
}
div#main section#blog ol {
  list-style: decimal;
  margin-left: 20px;
}
div#main section#blog div > p:last-of-type {
  margin-bottom: 60px;
}
div#main section#blog h2 {
  margin-left: 0;
}
div#main section#blog ul.post-list > li {
  border-top: 1px solid rgba(102, 0, 255, 0.15);
  padding-bottom: 10px;
}
div#main section#blog ul.post-list > li:last-of-type {
  border-bottom: 1px solid rgba(102, 0, 255, 0.15);
}
.emphasis {
  color: #B44B9D;
  text-decoration: inherit;
  font-size: 145%;
  text-decoration: underline;
}
.caption-bottom-right {
  padding-left: 100px !important ;
  text-decoration: overline;
}
a {
  color: #944dff;
  text-decoration: none;
}
a.button,
input.button {
  background: rgba(169, 112, 255, 0.1);
  color: #a970ff;
  border: 1px solid #a970ff;
  border-radius: 20px;
  font-size: 200%;
  line-height: 85px;
  margin: 2% 2%;
  font-weight: 350;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
@media only screen and (max-width: 790px) {
  a.button,
  input.button {
    font-size: 150%;
    line-height: 300%;
    padding: 4% 4%;
  }
}
a.button:hover,
input.button:hover {
  border: 1px solid #c8a3ff;
  background: rgba(169, 112, 255, 0.45);
  color: #e7d6ff;
  cursor: pointer;
  box-shadow: inset 0px 0px 30px #a970ff, 0px 0px 15px #a970ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
a.button:active,
input.button:active {
  border: 1px solid #af7aff;
  background: rgba(169, 112, 255, 0.25);
  color: #af7aff;
  cursor: pointer;
  box-shadow: 0px 0px 20px #a970ff, inset 0px 0px 20px #a970ff;
  text-shadow: 0px 0px 15px #b98aff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
p {
  margin-top: 16px;
  margin-bottom: 0.7em;
  color: #e5efff;
}
h1 {
  font-weight: 300;
  font-size: 300%;
  line-height: 110%;
  letter-spacing: -1px;
  color: #b2d1ff;
}
h2 {
  color: #944dff;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
}
body > header {
  width: 100%;
  position: fixed;
  z-index: 20000;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}
body > header #logo {
  float: left;
  margin: 36px 0 35px 0;
}
body > header #logo img {
  width: 250px;
}
@media only screen and (max-width: 480px) {
  body > header #logo {
    width: 100%;
  }
  body > header #logo img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  body > header #logo {
    margin: 21px 0 20px 0;
    float: none;
  }
}
body > header #options-icon {
  display: none;
}
@media only screen and (max-width: 768px) {
  body > header #options-icon {
    float: right;
    display: block;
    margin-top: 38px;
  }
  body > header #options-icon a {
    color: #b2d1ff;
    font-weight: 200;
    text-transform: uppercase;
  }
  body > header #options-icon a img {
    width: 15px;
    top: -1px;
    left: 4px;
    position: relative;
  }
}
@media only screen and (max-width: 480px) {
  body > header #options-icon {
    float: none;
    width: 100%;
    margin-top: 23px;
  }
  body > header #options-icon a {
    display: block;
    text-align: center;
  }
}
body > header nav > ul {
  float: right;
  padding: 0px;
  margin-top: 40px;
  list-style-type: none;
  font-weight: 200;
  text-transform: lowercase;
}
body > header nav > ul li {
  float: left;
  position: relative;
  margin-left: 20px;
}
body > header nav > ul li a {
  color: #b2d1ff;
}
body > header nav > ul li a i {
  padding-right: 5px;
}
body > header nav > ul li a:hover {
  text-shadow: 0px 0px 7px #adceff;
  color: #bcd7ff;
  transition: text-shadow 400ms, color 250ms;
  -webkit-transition: text-shadow 400ms, color 250ms;
  -moz-transition: text-shadow 400ms, color 250ms;
}
@media only screen and (max-width: 768px) {
  body > header nav > ul {
    display: none;
    width: 100%;
    text-align: center;
  }
  body > header nav > ul li {
    width: 100%;
    margin: 3px auto;
  }
}
.fixed-bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -500;
  background: no-repeat center / 100% url(/static/images/betahaus_cafe_filtered.jpg);
}
#spacer {
  width: 100%;
  height: 100px;
  background-color: black;
}
#main {
  padding: 0px;
  /* for landscape mobile that captions dont slide on top of each other */
}
#main section {
  border-style: solid;
  border-top-width: 1px;
  width: 100%;
  min-height: calc(100vh - 100px);
}
#main section h1 {
  padding-top: 25px;
  font-size: 300%;
  line-height: 110%;
  letter-spacing: -1px;
}
#main section#press div#header-image img {
  object-fit: cover;
  width: 100%;
  max-height: 750px;
}
#main section#press div.container {
  padding-top: 50px;
  margin: 0 auto;
  min-height: 1px;
  max-width: 780px;
}
#main section#subscribe-to-newsletter input {
  background-color: transparent;
  color: #c8a3ff;
  font-family: 'Ubuntu';
  outline: none;
  width: 63%;
  height: 42px;
  font-size: 20px;
  font-weight: 300;
  border-radius: 20px;
  border: 1px solid #a970ff;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}
#main section#subscribe-to-newsletter input[type="submit"] {
  width: 30%;
  height: 42px;
  font-size: 20px;
  font-weight: 300;
  border-left: auto;
  border-right: auto;
  padding: 0px;
  background-color: #b2d1ff;
  border: none;
  cursor: pointer;
  background: rgba(169, 112, 255, 0.3);
  color: #a970ff;
  border: 1px solid #a970ff;
  border-radius: 20px;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
#main section#subscribe-to-newsletter input[type="submit"]:hover {
  background-color: #cce0ff;
  outline: none;
  border: 1px solid #c8a3ff;
  background: rgba(169, 112, 255, 0.45);
  color: black;
  font-weight: 400;
  cursor: pointer;
  box-shadow: inset 0px 0px 30px #a970ff, 0px 0px 15px #a970ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#subscribe-to-newsletter input[type="submit"]:active {
  outline: none;
  border: 1px solid #af7aff;
  background: rgba(169, 112, 255, 0.25);
  color: #af7aff;
  cursor: pointer;
  box-shadow: 0px 0px 20px #a970ff, inset 0px 0px 20px #a970ff;
  text-shadow: 0px 0px 15px #b98aff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#subscribe-to-newsletter.select-os-wrapper {
  background-image: url(/static/images/live_prod_images/With_Akai_1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
#main section#subscribe-to-newsletter.select-os-wrapper .select-os {
  width: 50%;
  float: left;
  position: relative;
  text-align: center;
  text-align: -webkit-center;
}
#main section#subscribe-to-newsletter.select-os-wrapper .select-os .select-os-img-wrapper {
  height: 300px;
}
#main section#subscribe-to-newsletter.select-os-wrapper .select-os .select-os-img-wrapper .os-img {
  max-height: 200px;
  width: auto;
}
@media only screen and (max-width: 400px) {
  #main section#subscribe-to-newsletter.select-os-wrapper .select-os .select-os-img-wrapper {
    height: 200px;
  }
}
@media only screen and (max-width: 790px) {
  #main section#subscribe-to-newsletter.select-os-wrapper .select-os {
    width: 100%;
    flex: 1 1 auto;
  }
}
#main section#subscribe-to-newsletter.select-os-wrapper #newsletter-wrapper-os {
  overflow: hidden;
  margin: 50px 100px;
}
#main video#bgvid {
  position: absolute;
}
#main .video-background {
  background: #000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}
#main .video-background,
#main .video-foreground {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main #vidtop-content {
  top: 0;
  color: #fff;
}
#main #caption-bottom-right #caption-bottom-quote-wrapper {
  margin-bottom: 9vh;
}
#main section#watch-the-video div.container #caption-bottom-right h2 {
  padding: 1vh 2vh 1vh 1vh;
  text-align: center;
  /* background-color: rgba(0, 0, 0, 0.4);
        border-radius: 5px; */
}
#main section#watch-the-video div.container #caption-bottom-right #caption-bottom-quote-wrapper,
#main section#watch-the-video div.container #caption-bottom-right #link-to-video {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding: 1vh 2vh 1vh 1vh;
}
@media only screen and (max-width: 740px) {
  #main section#watch-the-video div.container #caption-bottom-right h2 {
    font-size: 16px;
  }
}
#main #caption-bottom-quote-wrapper {
  padding-bottom: 20px;
}
#main section#watch-the-video div.container #caption-bottom-right #quote {
  font-style: italic;
  font-size: 18px;
  -webkit-text-stroke-width: 0px;
  font-weight: 100;
  /* color: white; */
  /* color: #ABC8F5; */
  line-height: 1.8em;
}
#main section#watch-the-video div.container #caption-bottom-right #quote:hover {
  color: #944DF7;
}
#main section#watch-the-video,
#main section#subscribe-to-newsletter {
  min-height: calc(100vh - 100px);
  width: 100%;
  overflow: hidden;
}
#main section#watch-the-video div#image,
#main section#subscribe-to-newsletter div#image {
  position: relative;
  height: calc(100vh - 100px);
  margin: 0 auto;
}
#main section#watch-the-video div#image > iframe,
#main section#subscribe-to-newsletter div#image > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main section#watch-the-video div.container #caption,
#main section#subscribe-to-newsletter div.container #caption,
#main section#watch-the-video div.container #newsletter-wrapper,
#main section#subscribe-to-newsletter div.container #newsletter-wrapper {
  float: left;
  position: absolute;
  margin: 36px 0 35px 0;
  top: 150px;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  #main section#watch-the-video div.container #caption,
  #main section#subscribe-to-newsletter div.container #caption,
  #main section#watch-the-video div.container #newsletter-wrapper,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper {
    float: none;
    position: inherit;
    padding: 0;
  }
}
#main section#watch-the-video div.container #caption h1,
#main section#subscribe-to-newsletter div.container #caption h1,
#main section#watch-the-video div.container #caption-bottom h1,
#main section#subscribe-to-newsletter div.container #caption-bottom h1 {
  padding-top: 25px;
  color: black;
}
@media only screen and (max-width: 740px) {
  #main section#watch-the-video div.container #caption h1,
  #main section#subscribe-to-newsletter div.container #caption h1,
  #main section#watch-the-video div.container #caption-bottom h1,
  #main section#subscribe-to-newsletter div.container #caption-bottom h1 {
    text-align: center;
    font-size: 200%;
  }
}
#main section#watch-the-video div.container #caption img,
#main section#subscribe-to-newsletter div.container #caption img {
  width: 600px;
  height: auto;
  position: relative;
  left: -13px;
}
@media only screen and (max-width: 790px) {
  #main section#watch-the-video div.container #caption img,
  #main section#subscribe-to-newsletter div.container #caption img {
    width: 80%;
    min-width: 325px;
    left: 0px;
  }
}
#main section#watch-the-video div.container #newsletter-wrapper,
#main section#subscribe-to-newsletter div.container #newsletter-wrapper {
  margin: 30px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.86);
  border-radius: 30px;
  max-width: 450px;
}
#main section#watch-the-video div.container #newsletter-wrapper h1,
#main section#subscribe-to-newsletter div.container #newsletter-wrapper h1 {
  margin-bottom: 30px;
  font-size: 500%;
  font-weight: 100;
}
@media only screen and (max-width: 910px) {
  #main section#watch-the-video div.container #newsletter-wrapper h1,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper h1 {
    font-size: 400%;
  }
}
@media only screen and (max-width: 800px) {
  #main section#watch-the-video div.container #newsletter-wrapper h1,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper h1 {
    font-size: 350%;
  }
}
#main section#watch-the-video div.container #newsletter-wrapper-os,
#main section#subscribe-to-newsletter div.container #newsletter-wrapper-os {
  margin: 50px 100px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.86);
  border-radius: 30px;
  max-width: 80%;
}
@media only screen and (max-width: 790px) {
  #main section#watch-the-video div.container #newsletter-wrapper-os,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper-os {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }
}
#main section#watch-the-video div.container #newsletter-wrapper-os h1,
#main section#subscribe-to-newsletter div.container #newsletter-wrapper-os h1 {
  margin-bottom: 40px;
  font-size: 500%;
  font-weight: 100;
}
@media only screen and (max-width: 910px) {
  #main section#watch-the-video div.container #newsletter-wrapper-os h1,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper-os h1 {
    font-size: 400%;
  }
}
@media only screen and (max-width: 790px) {
  #main section#watch-the-video div.container #newsletter-wrapper-os h1,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper-os h1 {
    font-size: 300%;
  }
}
@media only screen and (max-width: 480px) {
  #main section#watch-the-video div.container #newsletter-wrapper-os h1,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper-os h1 {
    font-size: 150%;
  }
}
#main section#watch-the-video div.container #newsletter-wrapper-os img,
#main section#subscribe-to-newsletter div.container #newsletter-wrapper-os img {
  max-width: 200px;
  padding: 10px;
}
@media only screen and (max-width: 790px) {
  #main section#watch-the-video div.container #newsletter-wrapper-os img,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper-os img {
    display: block;
    max-width: 100%;
    float: center;
  }
}
@media only screen and (max-width: 480px) {
  #main section#watch-the-video div.container #newsletter-wrapper-os p,
  #main section#subscribe-to-newsletter div.container #newsletter-wrapper-os p {
    font-size: 80%;
  }
}
#main section#watch-the-video div.container #caption-bottom,
#main section#subscribe-to-newsletter div.container #caption-bottom,
#main section#watch-the-video div.container #caption-bottom-right,
#main section#subscribe-to-newsletter div.container #caption-bottom-right {
  float: left;
  position: absolute;
  bottom: 50px;
  margin: 36px 0 35px 0;
  z-index: 100;
}
@media only screen and (max-width: 740px) {
  #main section#watch-the-video div.container #caption-bottom,
  #main section#subscribe-to-newsletter div.container #caption-bottom,
  #main section#watch-the-video div.container #caption-bottom-right,
  #main section#subscribe-to-newsletter div.container #caption-bottom-right {
    top: 0px;
    margin: 0px 0 0px 0;
    padding: 0;
    float: none;
    position: inherit;
    padding-bottom: 40px;
  }
}
#main section#watch-the-video div.container #caption-bottom h2 a,
#main section#subscribe-to-newsletter div.container #caption-bottom h2 a,
#main section#watch-the-video div.container #caption-bottom-right h2 a,
#main section#subscribe-to-newsletter div.container #caption-bottom-right h2 a {
  color: #ABC8F5;
  font-size: 30px;
  text-shadow: 0 0 20px black;
}
#main section#watch-the-video div.container #caption-bottom h2 a:hover,
#main section#subscribe-to-newsletter div.container #caption-bottom h2 a:hover,
#main section#watch-the-video div.container #caption-bottom-right h2 a:hover,
#main section#subscribe-to-newsletter div.container #caption-bottom-right h2 a:hover {
  color: #944DF7;
}
@media only screen and (max-width: 740px) {
  #main section#watch-the-video div.container #caption-bottom h2,
  #main section#subscribe-to-newsletter div.container #caption-bottom h2,
  #main section#watch-the-video div.container #caption-bottom-right h2,
  #main section#subscribe-to-newsletter div.container #caption-bottom-right h2 {
    text-align: center;
    font-size: 200%;
  }
}
#main section#watch-the-video div.container #caption-bottom-right,
#main section#subscribe-to-newsletter div.container #caption-bottom-right {
  position: absolute;
  width: 400px;
  padding: 0px 0px 10px 0px;
  bottom: 43px;
  margin: 36px 0 35px 0;
  right: calc(0.5*(100vw - 1030px));
}
#main section#watch-the-video div.container #caption-bottom-right a,
#main section#subscribe-to-newsletter div.container #caption-bottom-right a {
  color: #b2d1ff;
}
@media only screen and (max-width: 1040px) {
  #main section#watch-the-video div.container #caption-bottom-right,
  #main section#subscribe-to-newsletter div.container #caption-bottom-right {
    right: 20px;
  }
}
@media only screen and (max-width: 740px) {
  #main section#watch-the-video div.container #caption-bottom-right,
  #main section#subscribe-to-newsletter div.container #caption-bottom-right {
    float: none;
    position: inherit;
    width: 100%;
  }
}
#main section#watch-the-video div.container #caption-bottom-right h1,
#main section#subscribe-to-newsletter div.container #caption-bottom-right h1 {
  text-align: right;
}
@media only screen and (max-width: 740px) {
  #main section#watch-the-video div.container #caption-bottom-right h1,
  #main section#subscribe-to-newsletter div.container #caption-bottom-right h1 {
    text-align: center;
    font-size: 200%;
  }
}
#main section#watch-the-video #clear-div,
#main section#subscribe-to-newsletter #clear-div {
  content: "";
  clear: both;
  display: block;
}
@media only screen and (max-height: 575px) {
  #main section#watch-the-video div.container #caption img {
    width: 450px;
  }
  #main section#watch-the-video div.container #caption {
    margin: 0px 0 35px 0;
  }
  #main section #caption h1 {
    padding-top: 25px;
    font-size: 230%;
  }
  #main section#watch-the-video div.container #caption-bottom,
  #main section#subscribe-to-newsletter div.container #caption-bottom,
  #main section#watch-the-video div.container #caption-bottom-right,
  #main section#subscribe-to-newsletter div.container #caption-bottom-right {
    margin: 0px 0 0px 0;
    bottom: 0px;
  }
}
@media only screen and (max-height: 650px) {
  #main section#watch-the-video div.container #caption img {
    width: 250px;
    display: none;
  }
  #main section#watch-the-video div.container #caption-bottom-right #quote {
    font-style: italic;
    font-size: 15px;
  }
  #main section#watch-the-video div.container #caption-bottom h2 a {
    font-size: 20px;
  }
}
@media only screen and (max-height: 544px) {
  #main section#watch-the-video div.container #caption-bottom h2 a {
    font-size: 15px;
  }
}
#main section#subscribe-to-newsletter div#image {
  background-image: url(/static/images/live_prod_images/With_Akai_1.jpg);
  background-size: 120%;
  background-repeat: no-repeat;
}
#main section#subscribe-to-newsletter div#image-new {
  background-image: url(/static/images/live_prod_images/beta_image.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  height: calc(100vh - 100px);
  margin: 0 auto;
}
#main section#looper-meet-sequencer {
  background: linear-gradient(30deg, #001f4c, 50%, #230057);
  height: 500px;
}
@media only screen and (max-width: 790px) {
  #main section#looper-meet-sequencer {
    background: linear-gradient(30deg, #001f4c, 50%, #230057);
    height: auto;
    padding-bottom: 60px;
    min-height: 1px;
  }
}
#main section#looper-meet-sequencer div {
  width: 100%;
  height: 100%;
  background-image: url("/static/images/alkmacbookspacegrey.png");
  background-size: 90vw;
  background-repeat: no-repeat;
  background-position: 40vw center;
}
@media only screen and (max-width: 790px) {
  #main section#looper-meet-sequencer div {
    height: auto;
    background-image: none;
  }
}
#main section#looper-meet-sequencer div div {
  position: relative;
  top: 0px;
  left: 0px;
}
@media only screen and (max-width: 790px) {
  #main section#looper-meet-sequencer div div {
    position: static;
  }
}
#main section#looper-meet-sequencer div div div {
  position: absolute;
  padding: 0px 30px 30px 30px;
  width: 400px;
  height: 606px;
  left: 110px;
  top: calc(50vh - 353px);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}
@media only screen and (max-width: 790px) {
  #main section#looper-meet-sequencer div div div {
    position: static;
    padding: 50px 50px 50px 50px;
    width: 100%;
    height: auto;
    background-color: transparent;
  }
}
#main section#looper-meet-sequencer div div div h1 {
  padding-top: 60px;
}
#main section#looper-meet-sequencer div div div p {
  color: rgba(255, 255, 255, 0.6);
}
#main section#looper-meet-sequencer div div div p a {
  color: #944dff;
}
#main section#looper-meet-sequencer div img {
  display: none;
}
@media only screen and (max-width: 790px) {
  #main section#looper-meet-sequencer div img {
    display: block;
    width: 100%;
  }
}
#main section#all-about-the-song {
  min-height: 400px;
}
#main section#all-about-the-song img {
  width: 100%;
}
#main section#all-about-the-song > div {
  position: absolute;
  float: left;
  right: -55px;
  width: 40%;
  background-color: rgba(0, 0, 0, 0.75);
  margin: 350px 80px 0 0;
  padding: 10px 20px 10px 20px;
}
@media only screen and (max-width: 1075px) {
  #main section#all-about-the-song > div {
    width: 80%;
    right: -76px;
    margin: 292px 80px 0 0;
  }
}
@media only screen and (max-width: 790px) {
  #main section#all-about-the-song > div {
    float: left;
    position: relative;
    background-color: transparent;
    width: auto;
    right: auto;
    margin: 50px 0 30px 0;
  }
}
#main section#press,
#main section#press-alk-features,
#main section#press-media-resources {
  border-style: none;
  border-top-width: 1px;
}
#main section#press .asio-logo img,
#main section#press-alk-features .asio-logo img,
#main section#press-media-resources .asio-logo img {
  height: 70px;
  margin-top: 25px;
}
#main section#press div.container,
#main section#press-alk-features div.container,
#main section#press-media-resources div.container {
  max-width: 780px;
}
#main section#press ol,
#main section#press-alk-features ol,
#main section#press-media-resources ol {
  color: #f5f9ff;
  list-style-type: decimal;
  list-style-position: inside;
}
#main section#press ul,
#main section#press-alk-features ul,
#main section#press-media-resources ul {
  color: #f5f9ff;
  list-style-type: disc;
  list-style-position: inside;
}
#main section#press h1,
#main section#press-alk-features h1,
#main section#press-media-resources h1 {
  padding-bottom: 15px;
}
#main section#press h2,
#main section#press-alk-features h2,
#main section#press-media-resources h2 {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #b2d1ff;
  font-size: 200%;
}
#main section#press h3,
#main section#press-alk-features h3,
#main section#press-media-resources h3 {
  color: #b2d1ff;
  font-size: 150%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 200;
}
#main section#press img.logo-guidelines,
#main section#press-alk-features img.logo-guidelines,
#main section#press-media-resources img.logo-guidelines {
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
  width: 100%;
  max-width: 400px;
}
#main section#press img.half-width,
#main section#press-alk-features img.half-width,
#main section#press-media-resources img.half-width {
  height: auto;
  width: calc(50% - 20px);
  max-width: 200px;
  margin-right: 20px;
}
#main section#press div#press-asset-list,
#main section#press-alk-features div#press-asset-list,
#main section#press-media-resources div#press-asset-list {
  width: 100%;
  clear: both;
}
#main section#press div#press-asset-list a,
#main section#press-alk-features div#press-asset-list a,
#main section#press-media-resources div#press-asset-list a {
  float: left;
  padding-top: 10px;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  max-width: 200px;
  border: 1px solid transparent;
  margin: 20px;
}
#main section#press div#press-asset-list a img,
#main section#press-alk-features div#press-asset-list a img,
#main section#press-media-resources div#press-asset-list a img {
  width: 200px;
  max-height: 57px;
  object-fit: contain;
}
#main section#press div#press-asset-list a p,
#main section#press-alk-features div#press-asset-list a p,
#main section#press-media-resources div#press-asset-list a p {
  text-align: center;
  color: #6600ff;
  padding-bottom: 10px;
  margin-bottom: 0;
}
#main section#press div#press-asset-list a:hover,
#main section#press-alk-features div#press-asset-list a:hover,
#main section#press-media-resources div#press-asset-list a:hover {
  border: 1px solid #6600ff;
}
#main section#press div#press-asset-list:after,
#main section#press-alk-features div#press-asset-list:after,
#main section#press-media-resources div#press-asset-list:after {
  content: '';
  display: block;
  clear: both;
}
#main section#press-alk-reviews {
  border-style: none;
  border-top-width: 1px;
}
#main section#press-alk-reviews div.container {
  max-width: 780px;
  text-align: center;
  font-style: italic;
}
#main section#press-alk-reviews ol {
  color: #f5f9ff;
  list-style-type: decimal;
  list-style-position: inside;
}
#main section#press-alk-reviews ul {
  color: #f5f9ff;
  list-style-type: disc;
  list-style-position: inside;
}
#main section#press-alk-reviews h1 {
  padding-bottom: 15px;
}
#main section#press-alk-reviews h2 {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #b2d1ff;
  font-size: 200%;
}
#main section#press-alk-reviews h3 {
  color: #b2d1ff;
  font-size: 150%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 200;
}
#main section#press-alk-reviews img.logo-guidelines {
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
  width: 100%;
  max-width: 400px;
}
#main section#press-alk-reviews img.half-width {
  height: auto;
  width: calc(50% - 20px);
  max-width: 200px;
  margin-right: 20px;
}
#main section#press-alk-reviews div#press-asset-list {
  width: 100%;
  clear: both;
}
#main section#press-alk-reviews div#press-asset-list a {
  float: left;
  padding-top: 10px;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  max-width: 200px;
  border: 1px solid transparent;
  margin: 20px;
}
#main section#press-alk-reviews div#press-asset-list a img {
  width: 200px;
  max-height: 57px;
  object-fit: contain;
}
#main section#press-alk-reviews div#press-asset-list a p {
  text-align: center;
  color: #6600ff;
  padding-bottom: 10px;
  margin-bottom: 0;
}
#main section#press-alk-reviews div#press-asset-list a:hover {
  border: 1px solid #6600ff;
}
#main section#press-alk-reviews div#press-asset-list:after {
  content: '';
  display: block;
  clear: both;
}
#main section#press-media-resources {
  margin-bottom: 25px;
}
#main section#alk-features h1,
#main section#press-quotes h1,
#main section#press-alk-features h1 {
  padding-top: 30px;
}
#main section#alk-features > div > div:first-of-type,
#main section#press-quotes > div > div:first-of-type,
#main section#press-alk-features > div > div:first-of-type {
  text-align: center;
  padding-bottom: 20px;
}
#main section#alk-features > div > div,
#main section#press-quotes > div > div,
#main section#press-alk-features > div > div {
  padding: 0 20px 0 20px;
}
@media only screen and (max-width: 790px) {
  #main section#alk-features > div > div,
  #main section#press-quotes > div > div,
  #main section#press-alk-features > div > div {
    padding: 0;
  }
}
#main section#alk-features > div > div > div,
#main section#press-quotes > div > div > div,
#main section#press-alk-features > div > div > div {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 790px) {
  #main section#alk-features > div > div > div,
  #main section#press-quotes > div > div > div,
  #main section#press-alk-features > div > div > div {
    float: none;
    width: auto;
  }
}
#main section#alk-features > div > div > div > div,
#main section#press-quotes > div > div > div > div,
#main section#press-alk-features > div > div > div > div {
  padding: 0 20px 0 0;
}
@media only screen and (max-width: 790px) {
  #main section#alk-features > div > div > div > div,
  #main section#press-quotes > div > div > div > div,
  #main section#press-alk-features > div > div > div > div {
    padding: 0 0 0 0;
  }
}
#main section#alk-features > div > div > div > div img,
#main section#press-quotes > div > div > div > div img,
#main section#press-alk-features > div > div > div > div img {
  max-width: 100%;
}
#main section#alk-features > div > div > div > p,
#main section#press-quotes > div > div > div > p,
#main section#press-alk-features > div > div > div > p {
  padding: 0 20px 20px 0;
}
@media only screen and (max-width: 790px) {
  #main section#alk-features > div > div > div > p,
  #main section#press-quotes > div > div > div > p,
  #main section#press-alk-features > div > div > div > p {
    padding: 0 0 20px 0;
  }
}
#main section#alk-features > div > div:after,
#main section#press-quotes > div > div:after,
#main section#press-alk-features > div > div:after {
  content: "";
  display: table;
  clear: both;
}
#main section#alk-reviews,
#main section#press-alk-reviews {
  border-style: solid;
  border-top-width: 1px;
  width: 100%;
  min-height: 0;
}
#main section#alk-reviews p,
#main section#press-alk-reviews p {
  padding-bottom: 0.3em;
}
#main section#alk-reviews h1,
#main section#press-alk-reviews h1 {
  padding-top: 30px;
}
#main section#alk-reviews .link-to-all-reviews,
#main section#press-alk-reviews .link-to-all-reviews {
  text-align: right;
  font-size: 120%;
  font-style: normal;
  padding: 15px 0 40px 0;
}
#main section#alk-reviews > div > div:first-of-type,
#main section#press-alk-reviews > div > div:first-of-type {
  font-style: normal;
  text-align: center;
  padding-bottom: 20px;
}
#main section#alk-reviews > div > div,
#main section#press-alk-reviews > div > div {
  text-align: center;
  padding: 0 20px 0 20px;
  font-style: italic;
}
#main section#alk-reviews > div > div img,
#main section#press-alk-reviews > div > div img {
  padding-top: 5px;
  max-height: 75px;
}
@media only screen and (max-width: 790px) {
  #main section#alk-reviews > div > div,
  #main section#press-alk-reviews > div > div {
    padding: 0;
  }
}
#main section#alk-reviews > div > div > div,
#main section#press-alk-reviews > div > div > div {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 790px) {
  #main section#alk-reviews > div > div > div,
  #main section#press-alk-reviews > div > div > div {
    float: none;
    width: auto;
  }
}
#main section#alk-reviews > div > div > div > div,
#main section#press-alk-reviews > div > div > div > div {
  padding: 0 5px 0 0;
}
@media only screen and (max-width: 790px) {
  #main section#alk-reviews > div > div > div > div,
  #main section#press-alk-reviews > div > div > div > div {
    padding: 0 0 0 0;
  }
}
#main section#alk-reviews > div > div > div > div img,
#main section#press-alk-reviews > div > div > div > div img {
  max-width: 100%;
}
#main section#alk-reviews > div > div > div > p,
#main section#press-alk-reviews > div > div > div > p {
  padding: 0 20px 5px 0;
}
@media only screen and (max-width: 790px) {
  #main section#alk-reviews > div > div > div > p,
  #main section#press-alk-reviews > div > div > div > p {
    padding: 0 0 5px 0;
  }
}
#main section#alk-reviews > div > div:after,
#main section#press-alk-reviews > div > div:after {
  content: "";
  display: table;
  clear: both;
}
#main section#alk-reviews {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/static/images/alk_reviews_background.jpg);
  background-size: cover;
}
#main section#beta-program {
  text-align: center;
}
#main section#beta-program h1 {
  padding-top: 60px;
}
#main section#beta-program div > div {
  padding-top: 40px;
}
#main section#beta-program input {
  display: block;
  margin: 40px auto;
  width: 66%;
  margin-bottom: 50px;
  border-radius: 3px;
  font-size: 16px;
  border: 1px solid #181d23;
  padding: 12px 18px;
  font-family: 'Ubuntu', sans-serif;
  background-color: #dee7f0;
  -moz-transition: all 0.15s linear 0s;
  -webkit-transition: all 0.15s linear 0s;
  transition: all 0.15s linear 0s;
}
#main section#buy-now {
  text-align: center;
  padding-bottom: 70px;
  min-height: 480px;
}
#main section#buy-now table {
  text-align: center;
  color: #e5efff;
}
#main section#buy-now table thead,
#main section#buy-now table tfoot {
  color: #b2d1ff;
}
#main section#buy-now table tr {
  line-height: 2.5em;
  border-bottom: 1px dotted rgba(238, 238, 238, 0.2);
}
@media only screen and (max-width: 790px) {
  #main section#buy-now table tr {
    font-size: 80%;
  }
}
#main section#buy-now table tr:first-of-type {
  border-bottom: 2px solid rgba(238, 238, 238, 0.5);
}
#main section#buy-now table th {
  vertical-align: middle;
  padding-top: 5px;
  color: #b2d1ff;
  min-width: 100px;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
}
#main section#buy-now table th:first-of-type {
  color: #b2d1ff;
  min-width: 100px;
  text-align: left;
}
#main section#buy-now table th:last-of-type {
  min-width: 100px;
  color: #b380ff;
  text-align: center;
}
#main section#buy-now table td:first-of-type {
  color: rgba(229, 239, 255, 0.75);
  vertical-align: middle;
  padding-top: 5px;
  font-weight: 100;
  min-width: 100px;
  text-align: left;
}
#main section#buy-now table td {
  vertical-align: middle;
  padding-top: 5px;
  font-weight: 300;
  min-width: 100px;
  color: #b2d1ff;
  text-align: center;
}
#main section#buy-now table td:last-of-type {
  color: #b380ff;
  vertical-align: middle;
  padding-top: 5px;
  font-weight: 100;
  min-width: 100px;
  text-align: center;
}
#main section#buy-now table tfoot {
  border-top: #b2d1ff solid 1px;
}
#main section#buy-now table tfoot td:nth-of-type(1) {
  text-align: right;
}
#main section#buy-now h1 {
  padding-top: 40px;
  padding-bottom: 30px;
  /*
            span#music {
                color:desaturate(@za-green, 30%);
            }

            span#the {
                color:desaturate(@za-red, 30%);
            }
            */
}
#main section#buy-now h1 em {
  color: #a970ff;
}
#main section#buy-now p {
  text-align: center;
  margin: 0 auto;
  max-width: 740px;
}
#main section#buy-now div#buy-upgrade {
  margin: 0 auto;
  max-width: 1040px;
  min-height: 1px;
  margin-top: 20px;
}
#main section#buy-now div#buy-upgrade p {
  text-align: right;
  line-height: normal;
  font-size: 115%;
  margin: 0;
  margin-right: 1em;
  padding-bottom: 0px;
  max-width: 1040px;
}
#main section#buy-now div#buy-upgrade p span#upgrade-prices {
  color: #b2d1ff;
}
#main section#buy-now div#buy-button-container {
  padding-top: 10px;
  padding-bottom: 32px;
  display: flex;
  flex-flow: row wrap;
}
#main section#buy-now div#buy-button-container div#trial {
  background-color: rgba(80, 108, 149, 0.3);
  border: 1px solid transparent;
}
#main section#buy-now div#buy-button-container div#trial:hover {
  border: 1px solid rgba(205, 214, 228, 0.5);
}
#main section#buy-now div#buy-button-container div#alk {
  background-color: rgba(71, 133, 71, 0.3);
  border: 1px solid transparent;
}
#main section#buy-now div#buy-button-container div#alk:hover {
  border: 1px solid rgba(122, 184, 122, 0.5);
}
#main section#buy-now div#buy-button-container div#alk-solo {
  background-color: rgba(125, 96, 169, 0.3);
  border: 1px solid transparent;
}
#main section#buy-now div#buy-button-container div#alk-solo:hover {
  border: 1px solid rgba(179, 162, 205, 0.5);
}
#main section#buy-now div#buy-button-container div.buy-button-cell {
  box-sizing: border-box;
  border-radius: 5px;
  margin: 0.8em;
  padding: 0.8em;
  flex: 1;
}
@media (max-width: 700px) {
  #main section#buy-now div#buy-button-container div.buy-button-cell {
    flex: 1 1 auto;
    width: 100%;
  }
}
#main section#buy-now div#buy-button-container div.buy-button-cell p {
  text-align: left;
}
#main section#buy-now div#buy-button-container div.buy-button-cell p#descr {
  font-size: 85%;
  min-height: 80px;
  color: rgba(229, 239, 255, 0.8);
}
#main section#buy-now div#buy-button-container div.buy-button-cell p#price {
  min-height: 48px;
  color: #e5efff;
  margin-bottom: 0.8em;
}
@media (max-width: 700px) {
  #main section#buy-now div#buy-button-container div.buy-button-cell p#price {
    min-height: 20px;
  }
}
#main section#buy-now div#buy-button-container div.buy-button-cell h3 {
  color: #b2d1ff;
  text-align: left;
  font-weight: 200;
  font-size: 180%;
  padding-top: 0.2em;
  padding-bottom: 0.8em;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a.buy-button {
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  width: 100%;
  margin: 0;
  padding: 10px 0px 10px 0px;
  line-height: 40px;
  font-size: 150%;
  font-weight: 200;
}
@media only screen and (max-width: 790px) {
  #main section#buy-now div#buy-button-container div.buy-button-cell a.buy-button {
    font-size: 150%;
  }
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#buy-alk-button {
  background: rgba(51, 255, 51, 0.1);
  color: #99ff99;
  border: 1px solid #33ff33;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#buy-alk-button:hover {
  border: 1px solid #99ff99;
  background: rgba(51, 255, 51, 0.45);
  color: #99ff99;
  box-shadow: inset 0px 0px 60px rgba(51, 255, 51, 0.5), 0px 0px 20px rgba(51, 255, 51, 0.5);
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#buy-alk-button:active {
  border: 1px solid #3dff3d;
  background: rgba(51, 255, 51, 0.25);
  box-shadow: 0px 0px 20px #33ff33, inset 0px 0px 20px #33ff33;
  text-shadow: 0px 0px 15px #4dff4d;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#trial-button {
  background: rgba(178, 209, 255, 0.1);
  color: #ffffff;
  border: 1px solid #b2d1ff;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#trial-button:hover {
  border: 1px solid #ffffff;
  background: rgba(178, 209, 255, 0.45);
  color: #ffffff;
  box-shadow: inset 0px 0px 60px rgba(178, 209, 255, 0.5), 0px 0px 30px rgba(178, 209, 255, 0.5);
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#trial-button:active {
  border: 1px solid #bcd7ff;
  background: rgba(178, 209, 255, 0.25);
  box-shadow: 0px 0px 20px #b2d1ff, inset 0px 0px 20px #b2d1ff;
  text-shadow: 0px 0px 15px #cce0ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#buy-alk-solo-button {
  background: rgba(169, 112, 255, 0.1);
  color: #e7d6ff;
  border: 1px solid #a970ff;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#buy-alk-solo-button:hover {
  border: 1px solid #e7d6ff;
  background: rgba(169, 112, 255, 0.45);
  color: #e7d6ff;
  box-shadow: inset 0px 0px 30px rgba(169, 112, 255, 0.5), 0px 0px 15px rgba(169, 112, 255, 0.5);
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#buy-now div#buy-button-container div.buy-button-cell a#buy-alk-solo-button:active {
  border: 1px solid #af7aff;
  background: rgba(169, 112, 255, 0.25);
  box-shadow: 0px 0px 20px #a970ff, inset 0px 0px 20px #a970ff;
  text-shadow: 0px 0px 15px #b98aff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#main section#buy-now div#buy-notes p {
  text-align: left;
  line-height: normal;
  font-size: 75%;
  margin: 0;
  padding-bottom: 5px;
  max-width: 960px;
}
#main section#buy-now h2 {
  padding: 20px 0px 20px 0px;
  text-align: center;
  font-size: 150%;
  color: #b2d1ff;
}
footer {
  padding: 80px 0 80px 0;
  background-color: #090b0d;
  font-size: 95%;
}
footer h2 {
  color: #b2d1ff;
  font-weight: 100;
}
footer div.container div {
  float: left;
}
@media only screen and (max-width: 790px) {
  footer div.container div {
    float: none;
    margin-bottom: 40px;
  }
}
footer div.container div#site-nav-div {
  width: 20%;
  position: relative;
  top: -3px;
}
@media only screen and (max-width: 790px) {
  footer div.container div#site-nav-div {
    width: 100%;
  }
}
footer div.container div#site-nav-div li {
  padding: 3px;
  text-align: left;
}
footer div.container div#site-nav-div li i {
  padding-right: 5px;
}
footer div.container div#site-nav-div li a {
  color: #944dff;
  -moz-transition: all 0.15s linear 0s;
  -webkit-transition: all 0.15s linear 0s;
  transition: all 0.15s linear 0s;
}
footer div.container div#site-nav-div li a:hover {
  color: #6600ff;
  -moz-transition: all 0.15s linear 0s;
  -webkit-transition: all 0.15s linear 0s;
  transition: all 0.15s linear 0s;
}
footer div.container div#subscribe {
  width: 40%;
}
@media only screen and (max-width: 790px) {
  footer div.container div#subscribe {
    width: 100%;
  }
}
footer div.container div#subscribe h2 {
  padding-bottom: 2px;
}
footer div.container div#subscribe form p {
  padding-top: 2px;
}
footer div.container div#subscribe li {
  display: inline-block;
  padding: 20px 2px;
  list-style-type: none;
  height: 0px;
  max-height: 0px;
}
footer div.container div#subscribe li div.fb-follow {
  top: -4px;
}
footer div.container div#synopsis {
  width: 40%;
  padding-right: 90px;
}
@media only screen and (max-width: 790px) {
  footer div.container div#synopsis {
    width: 100%;
  }
}
footer img {
  width: 100%;
  max-width: 250px;
}
footer input.email {
  margin-right: 5px;
  font-family: 'Ubuntu', sans-serif;
  outline: none;
  width: 220px;
  height: 24px;
  font-size: 16px;
  font-weight: 300;
  border-radius: 10px;
  border: 0px;
  padding: 10px;
}
footer input[type="submit"] {
  font-family: "Ubuntu", sans-serif;
  width: 120px;
  height: 27px;
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
  padding-top: 5px;
  background-color: #b2d1ff;
  cursor: pointer;
  background: rgba(178, 209, 255, 0.05);
  color: #b2d1ff;
  border: 1px solid #b2d1ff;
  border-radius: 20px;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
footer input[type="submit"]:hover {
  background-color: #cce0ff;
  outline: none;
  border: 1px solid #e5efff;
  background: rgba(178, 209, 255, 0.45);
  color: black;
  font-weight: 400;
  cursor: pointer;
  box-shadow: inset 0px 0px 30px #b2d1ff, 0px 0px 15px #b2d1ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
footer input[type="submit"]:active {
  outline: none;
  border: 1px solid #bcd7ff;
  background: rgba(178, 209, 255, 0.25);
  color: #bcd7ff;
  cursor: pointer;
  box-shadow: 0px 0px 20px #b2d1ff, inset 0px 0px 20px #b2d1ff;
  text-shadow: 0px 0px 15px #cce0ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#homepage-vertical-nav {
  position: fixed;
  bottom: -40px;
  left: calc(50% - 35px);
  background-color: rgba(0, 0, 0, 0.8);
  width: 70px;
  height: 100px;
  border-top: 1px solid #6600ff;
  cursor: pointer;
}
#homepage-vertical-nav img {
  width: 100%;
}
@media only screen and (max-width: 790px) {
  #homepage-vertical-nav {
    width: 9%;
    height: 12%;
  }
}
@media only screen and (max-width: 480px) {
  #homepage-vertical-nav {
    display: none;
  }
}
.page.company .bios.block .bio-wrapper {
  position: relative;
  margin-bottom: 33px;
  border-bottom: 1px solid rgba(178, 209, 255, 0.3);
}
.bio-wrapper:first-of-type {
  padding-bottom: 20px;
}
div.page.company {
  position: relative;
  margin-top: 40px;
  margin-bottom: 80px;
}
* > .fa.fa-hover-show,
*:hover > .fa.fa-hover-hidden {
  display: none;
}
*:hover > .fa.fa-hover-show {
  display: inline-block;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper {
  position: absolute;
  top: 0;
  left: -170px;
  width: 130px;
}
@media only screen and (max-width: 768px) {
  .page.company .bios.block .bio-wrapper .bio-pic-wrapper {
    position: initial;
    float: right;
  }
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper .bio-pic {
  width: 130px;
  border-radius: 100px;
  border: 5px solid #b2d1ff;
  z-index: 1;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper a i {
  color: #b2d1ff;
  font-size: 20px;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper a:hover i {
  color: #cce0ff;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper a {
  padding-left: 4px;
  position: relative;
  left: 38px;
  top: 5px;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper a.bio-linked-icon {
  position: relative;
  left: 38px;
  top: 4.5px;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper a.bio-linked-icon i {
  font-size: 19px;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper a#robins-bio {
  position: relative;
  left: 51px;
  top: 4.5px;
}
.page.company .bios.block .bio-wrapper .bio-pic-wrapper a#robins-bio i {
  font-size: 19px;
}
.page.company .block {
  float: none;
  margin: 25px auto;
  width: 50%;
}
@media (max-width: 768px) {
  .page.company .block {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .page.company .block {
    width: 100%;
  }
}
.community.page a .box-desktop-full {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 20px;
  padding: 25px 0px;
  background: rgba(169, 112, 255, 0.05);
  color: #a970ff;
  border: 1px solid #a970ff;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
@media only screen and (min-width: 768px) {
  .community.page .icon-wrapper {
    font-size: 600%;
    padding: 20px 30px;
    width: 215px;
  }
}
@media only screen and (min-width: 768px) {
  .community.page {
    text-align: left;
    padding: 40px 100px;
  }
}
.community.page a .box-desktop-full:hover {
  box-shadow: 0px 0px 0px 1px #a366ff;
  background: rgba(169, 112, 255, 0.4);
  color: #272e38;
  cursor: pointer;
  box-shadow: inset 0px 0px 30px #a970ff, 0px 0px 15px #a970ff;
  text-shadow: 0px 0px 35px #cce0ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
.community.page a .box-desktop-full:hover span {
  jorder: 1px solid #c8a3ff;
  color: transparent;
  text-shadow: 0px 0px 25px #b98aff;
}
.community.page a .box-desktop-full:active {
  border: 1px solid #af7aff;
  background: rgba(169, 112, 255, 0.25);
  color: #af7aff;
  cursor: pointer;
  box-shadow: 0px 0px 20px #a970ff, inset 0px 0px 20px #a970ff;
  text-shadow: 0px 0px 15px #cce0ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
[class*='box-'] {
  float: left;
}
.community.page a .box-desktop-full:hover .icon-th-list,
.community.page a .box-desktop-full:hover .icon-th-list a,
.community.page a .box-desktop-full:hover .icon-users,
.community.page a .box-desktop-full:hover .icon-users a {
  background-color: transparent;
  color: #272e38;
}
.community.page a .box-desktop-full .icon-th-list,
.community.page a .box-desktop-full .icon-th-list a,
.community.page a .box-desktop-full .icon-users,
.community.page a .box-desktop-full .icon-users a {
  border-radius: 20px;
  padding: 10px 14px;
}
.account-page {
  float: right;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #af7aff;
  width: 350px;
  padding: 30px;
  border-radius: 30px;
  text-size: 50%;
  margin: 50px;
}
@media only screen and (max-width: 760px) {
  .account-page {
    float: none;
    margin: 10px;
  }
}
.account-page input {
  background-color: transparent;
  color: #c8a3ff;
  font-family: 'Ubuntu';
  outline: none;
  width: 100%;
  height: 42px;
  font-size: 20px;
  font-weight: 300;
  border-radius: 12px;
  border: 1px solid #a970ff;
  padding: 10px;
}
.account-page input[type="submit"] {
  width: 100%;
  height: 42px;
  font-size: 20px;
  font-weight: 300;
  border-radius: 15px;
  border-left: auto;
  border-right: auto;
  padding: 0px;
  background-color: #b2d1ff;
  border: none;
  cursor: pointer;
  background: rgba(169, 112, 255, 0.05);
  color: #a970ff;
  border: 1px solid #a970ff;
  border-radius: 20px;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
.account-page input[type="submit"]:hover {
  background-color: #cce0ff;
  outline: none;
  border: 1px solid #c8a3ff;
  background: rgba(169, 112, 255, 0.45);
  color: black;
  font-weight: 400;
  cursor: pointer;
  box-shadow: inset 0px 0px 30px #a970ff, 0px 0px 15px #a970ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
.account-page input[type="submit"]:active {
  outline: none;
  border: 1px solid #af7aff;
  background: rgba(169, 112, 255, 0.25);
  color: #af7aff;
  cursor: pointer;
  box-shadow: 0px 0px 20px #a970ff, inset 0px 0px 20px #a970ff;
  text-shadow: 0px 0px 15px #b98aff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
.account-page > div div {
  height: 55px;
}
.account-page > div ul li {
  list-style-type: none;
}
.account-page > div ul li a {
  font-size: 15px;
  font-weight: 200;
}
.account-page > div nav ul li {
  display: inline;
  padding-right: 10px;
}
.account-page > div ul.errors {
  margin-top: 15px;
}
.account-page > div ul.errors li {
  font-size: 13px;
  color: #e62d48;
}
.account-page input:-webkit-autofill,
.account-page textarea:-webkit-autofill,
.account-page select:-webkit-autofill {
  -webkit-text-fill-color: #af7aff !important;
  -webkit-box-shadow: 0 0 0px 1000px #13171C inset;
  color: #af7aff !important;
}
#login-page-message {
  padding: 0px;
}
#login-page-message h1 {
  margin-top: 60px;
  margin-bottom: 60px;
  font-size: 550%;
  font-weight: 100;
  line-height: 150%;
}
@media only screen and (max-width: 910px) {
  #login-page-message h1 {
    font-size: 400%;
  }
}
@media only screen and (max-width: 800px) {
  #login-page-message h1 {
    font-size: 350%;
  }
}
#account-page-authenticated {
  padding-top: 30px;
}
#account-page-authenticated table {
  color: #e5efff;
}
#account-page-authenticated table thead,
#account-page-authenticated table tfoot {
  color: #b2d1ff;
}
#account-page-authenticated table td {
  vertical-align: middle;
  padding-right: 100px;
  padding-top: 5px;
}
#account-page-authenticated table td a.button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#account-page-authenticated table td.total {
  padding-right: 15px;
  text-align: right;
}
#account-page-authenticated table tfoot {
  border-top: #b2d1ff solid 1px;
}
#account-page-authenticated table tfoot td:nth-of-type(1) {
  text-align: right;
}
#account-page-authenticated table#license-table td:first-of-type {
  padding-right: 40px;
}
#account-page-authenticated table#license-table th:first-of-type {
  text-align: center;
  padding-right: 40px;
}
#account-page-authenticated table#license-table td:last-of-type,
#account-page-authenticated table#license-table th:last-of-type {
  padding-left: 50px;
}
#account-page-authenticated th .maintenance {
  margin-bottom: 60px;
}
#account-page-authenticated table#order-history {
  margin-bottom: 60px;
}
#account-page-authenticated section {
  border-top-width: 0px;
  min-height: 30px;
  margin-bottom: 10px;
  margin-top: 30px;
}
@media only screen and (max-width: 660px) {
  #account-page-authenticated section {
    display: none;
  }
}
#account-page-authenticated section h1 {
  padding-top: 40px;
  font-size: 300%;
  line-height: 110%;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 490px) {
  #account-page-authenticated section h1 {
    font-size: 200%;
  }
}
#account-page-authenticated section a {
  margin-left: 0px;
  font-size: 90%;
  height: 30px;
}
#account-page-authenticated section p.account-select-os {
  font-size: 90%;
  margin: 0.7em 0 0 0;
}
#account-page-authenticated section a.account-select-os {
  font-size: 100%;
}
#account-page-authenticated section a.button {
  padding: 5px 50px 5px 50px;
  width: 200px;
}
#account-page-authenticated section a.button:hover {
  color: black;
  font-weight: 400;
}
#account-page-authenticated section div > p {
  min-height: 50px;
}
@media only screen and (max-width: 660px) {
  #account-page-authenticated section:first-of-type {
    display: block;
  }
}
#account-page-authenticated section:last-of-type p {
  margin-top: -15px;
}
#account-page-authenticated section:first-of-type {
  width: 100%;
  float: none;
}
#account-page-authenticated section:first-of-type li {
  display: inline;
}
#account-page-authenticated section:first-of-type li a.button {
  text-align: center;
  display: inline-block;
  width: 190px;
  margin: 5px;
  font-size: 100%;
  line-height: 200%;
  height: 30px;
  padding: 0px 36px 33px 20px;
  border: 1px solid #ddd415;
  color: #e6dd16;
  background-color: rgba(230, 221, 22, 0.04);
  text-shadow: 0px 0px 0px #e6dd16;
}
#account-page-authenticated section:first-of-type li a.button:hover {
  text-color: rgba(230, 221, 22, 0.43);
  background-color: rgba(230, 221, 22, 0.43);
  box-shadow: inset 0px 0px 30px #e6dd16, 0px 0px 15px #e6dd16;
  text-shadow: 0px 0px 15px #e6dd16;
  color: black;
}
#account-page-authenticated section:first-of-type li a.button:active {
  background-color: rgba(230, 221, 22, 0.23);
}
#backdrop {
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 200;
}
#password-change-form,
#email-change-form {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 350px;
  height: 225px;
  margin: -150px -175px -150px -175px;
  z-index: 250;
  background-color: rgba(39, 46, 56, 0.7);
  border: 1px solid #af7aff;
  padding: 30px;
  border-radius: 30px;
  text-size: 50%;
}
#password-change-form > div,
#email-change-form > div {
  width: 100%;
  height: 100%;
}
#password-change-form > div div,
#email-change-form > div div {
  height: 55px;
}
#password-change-form input#id_new_password1,
#email-change-form input#id_new_password1,
#password-change-form input#id_new_password2,
#email-change-form input#id_new_password2 {
  background-color: transparent;
  color: #c8a3ff;
  font-family: 'Ubuntu';
  outline: none;
  width: 100%;
  height: 42px;
  font-size: 20px;
  font-weight: 300;
  border-radius: 12px;
  border: 1px solid #a970ff;
  padding: 10px;
}
#password-change-form input[type="submit"],
#email-change-form input[type="submit"] {
  width: 100%;
  height: 42px;
  font-size: 20px;
  font-weight: 300;
  border-radius: 15px;
  border-left: auto;
  border-right: auto;
  padding: 0px;
  background-color: #b2d1ff;
  border: none;
  cursor: pointer;
  background: rgba(169, 112, 255, 0.05);
  color: #a970ff;
  border: 1px solid #a970ff;
  border-radius: 20px;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
}
#password-change-form input[type="submit"]:hover,
#email-change-form input[type="submit"]:hover {
  background-color: #cce0ff;
  outline: none;
  border: 1px solid #c8a3ff;
  background: rgba(169, 112, 255, 0.45);
  color: black;
  font-weight: 400;
  cursor: pointer;
  box-shadow: inset 0px 0px 30px #a970ff, 0px 0px 15px #a970ff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#password-change-form input[type="submit"]:active,
#email-change-form input[type="submit"]:active {
  outline: none;
  border: 1px solid #af7aff;
  background: rgba(169, 112, 255, 0.25);
  color: #af7aff;
  cursor: pointer;
  box-shadow: 0px 0px 20px #a970ff, inset 0px 0px 20px #a970ff;
  text-shadow: 0px 0px 15px #b98aff;
  transition: all 170ms;
  -webkit-transition: all 170ms;
  -moz-transition: all 170ms;
}
#login-form,
#register-form,
#forgot-password-form {
  display: none;
}
#login-info-text {
  margin-top: 50px;
  margin-bottom: 50px;
}
.twitter-follow-button-wrapper {
  padding-top: 7px;
  float: left !important;
}
