/*
========== GLOBAL ==========
*/
* {
  font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

.strong {
  font-weight: bold;
}

.no-overflow {
  overflow: hidden;
}

.trademark {
  position: relative;
  vertical-align: top;
  top: 0.33em;
  margin-left: -0.2em;
  font-size: 0.4em;
  opacity: 0.33;
}
.trademark.registered {
  margin-left: -0.1em;
}
.content-spacer {
  height: 20px;
}

#content {
  min-height: 350px;
}

#page-notice {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 350px;
}
#page-notice .fa {
  color: #EEE;
  font-size: 64px;
}

.button-icon {
  margin-right: 5px;
}

.underlined {
  text-decoration: underline;
}

.strikeout {
  position: relative;
  color: #777;
  font-weight: normal;
}

.strikeout-line {
  position: absolute;
  top: 50%;
  left: -15%;
  width: 130%;
  height: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #777;
  -webkit-transform: rotate(-40deg); /* Chrome, Safari, Opera */
  -ms-transform: rotate(-40deg); /* IE 9 */
  transform: rotate(-40deg);
}

#js-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
}

#js-overlay-message {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  color: #FFF;
  font-size: 24px;
}

.submit-form {
  cursor: pointer;
}

#environment-container {
  z-index: 3000;
  pointer-events: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  height: 40px;
  width: 80px;
  background-color: rgba(255, 0, 0, 0.5);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#environment-container .environment-label {
  text-transform: uppercase;
  font-weight: bold;
  color: #FFFFFF;
}

#global-banner-section {
  display: none;
}

@media screen and (min-width: 768px) {
  #global-banner-section {
    display: block;
  }
}
#global-banner-section {
  position: relative;
  width: 100%;
  height: 2em;
  background-color: #000000;
  z-index: 5;
  padding: 0.5em;
}
#global-banner-section .global-banner-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#global-banner-section .global-banner-container .global-banner-content {
  text-align: center;
  font-style: italic;
  color: #FFFFFF;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  -moz-transition: opacity 1s ease-in;
  -ms-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  transition-delay: 0s;
}
#global-banner-section .global-banner-container.active .global-banner-content {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  transition-delay: 1.25s;
}

/* Remove upper margin if the h1 / h2 is the first child within a container */
.container > h2:first-child, .container > h1:first-child {
  margin-top: 0px;
}

/* Only add margin if the container is immediately after breadcrumbs */
.nav-breadcrumbs-container + .container, .no-breadcrumbs {
  margin-top: 25px;
}

.nav-breadcrumbs-container {
  background-color: #f5f5f5;
  border-bottom: 1px solid #EEE;
  width: 100%;
  /*z-index: 1000;*/
  /*box-shadow: 0px 2px 20px rgba(255, 255, 255, 0.75);*/
  position: relative;
  /*margin-bottom: 20px;*/
}

.nav-breadcrumbs-content {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.nav-breadcrumbs {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-breadcrumbs > li {
  display: inline-block;
}

.nav-breadcrumbs > li + li:before {
  padding: 0 5px;
  color: #ccc;
  /*content: "/\00a0";*/
  font-family: FontAwesome;
  content: "\f105"; /*101, 105*/
}

.nav-breadcrumbs > .active {
  color: #777;
}

.nav-breadcrumbs-links-container {
  display: none;
}

.nav-breadcrumbs-links {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#breadcrumbs-navigation-cart {
  position: relative;
  font-size: 22px;
  margin-right: 25px;
  width: 22px;
  height: 26px;
}

#breadcrumbs-navigation-cart a {
  color: #6A6C6E;
}

#breadcrumbs-cart-contents, #breadcrumbs-account-notifications {
  position: absolute;
  display: inline-block;
  bottom: -5px;
  right: -5px;
  pointer-events: none;
}

#breadcrumbs-cart-contents .cart-number, #breadcrumbs-account-notifications .notifications-number {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: relative;
  background-color: #F5F5F5;
  font-size: 0.5em;
  width: 15px;
  height: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  border: 1px solid #6A6C6E;
  color: #6A6C6E;
}

#breadcrumbs-navigation-account {
  position: relative;
  font-size: 22px;
  width: 22px;
  height: 26px;
  margin-right: 25px;
}

#breadcrumbs-navigation-account a {
  color: #6A6C6E;
}

#breadcrumbs-navigation-top {
  font-size: 16px;
  width: 22px;
  height: 26px;
}

#breadcrumbs-navigation-top a {
  color: #6A6C6E;
}

#headliner {
  background-color: #252525;
  /*margin: 0 0 15px 0;*/
  margin: 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  position: relative;
  height: 75vh;
  min-height: 425px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 85px #000 inset;
}

@media screen and (min-width: 768px) {
  #headliner {
    background-attachment: fixed;
  }
}
#headliner-carousel {
  position: relative;
  box-shadow: 0px 0px 85px #000 inset;
  background-color: #252525;
  /*height: calc(100vh - 60px);*/
  height: 75vh;
  min-height: 425px;
}
#headliner-carousel .item {
  height: 100%;
  background-color: #252525;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 85px #000 inset;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#headliner-carousel .slick-list, #headliner-carousel .slick-track {
  height: 100%;
}
#headliner-carousel .slick-arrow {
  position: absolute;
  z-index: 1;
  height: 100%;
  font-size: 3em;
  color: #FFF;
  text-shadow: 0px 1px 0.05em rgba(0, 0, 0, 0.5);
  opacity: 0.25;
  outline: none;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  /* Transition for hover */
  -webkit-transition: 0.2s ease-out, background 0.2s ease-in;
  -moz-transition: 0.2s ease-out, background 0.2s ease-in;
  -ms-transition: 0.2s ease-out, background 0.2s ease-in;
  -o-transition: 0.2s ease-out, background 0.2s ease-in;
  transition: 0.2s ease-out, background 0.2s ease-in;
}
#headliner-carousel .slick-arrow:hover {
  opacity: 1;
}
#headliner-carousel .slick-arrow.slick-prev {
  top: 0;
  left: 0;
  padding: 0 15px;
}
#headliner-carousel .slick-arrow.slick-next {
  top: 0;
  right: 0;
  padding: 0 15px;
}
#headliner-carousel .slick-dots {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  list-style: none;
  padding: 0;
  color: #FFF;
  text-shadow: 0px 1px 0.05em rgba(0, 0, 0, 0.5);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  opacity: 0.25;
  /* Transition for hover */
  -webkit-transition: 0.2s ease-out, background 0.2s ease-in;
  -moz-transition: 0.2s ease-out, background 0.2s ease-in;
  -ms-transition: 0.2s ease-out, background 0.2s ease-in;
  -o-transition: 0.2s ease-out, background 0.2s ease-in;
  transition: 0.2s ease-out, background 0.2s ease-in;
}
#headliner-carousel .slick-dots:hover {
  opacity: 1;
}
#headliner-carousel .slick-dots li {
  font-family: FontAwesome;
  margin: 10px;
  cursor: pointer;
}
#headliner-carousel .slick-dots li:after {
  content: "\f10c";
}
#headliner-carousel .slick-dots li.slick-active:after {
  content: "\f111";
}
#headliner-carousel .slick-dots li button {
  display: none;
}

@media screen and (min-width: 768px) {
  #headliner-carousel .item {
    background-attachment: fixed;
  }
}
#headline-carousel-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 0px 24px;
}
#headline-carousel-container .headline-image {
  display: none;
}
#headline-carousel-container .headline-image img {
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  max-width: 376px;
  max-height: 376px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #headline-carousel-container .headline-image {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
#headline-carousel-container .headline-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  #headline-carousel-container .headline-text {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 275px;
    -ms-flex: 1 0 275px;
    flex: 1 0 275px;
  }
}
#headline-carousel-container .headline-text .headline-description {
  text-align: center;
}
#headline-carousel-container .headline-text .headline-description .btn {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  #headline-carousel-container {
    padding: 0px 60px;
  }
}
.section {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 15px 0;
  padding: 15px 0;
  min-height: 625px;
}

@media screen and (min-width: 768px) {
  .section {
    min-height: 550px;
  }
}
.primary-section {
  width: 100%;
  background-color: #FFFFFF;
  padding: 30px 0;
}

.secondary-section {
  width: 100%;
  background-color: #F5F5F5;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  padding: 30px 0;
}

.text-on-dark-image {
  color: #fff;
  text-shadow: 0px 1px 0.05em rgba(0, 0, 0, 0.5);
}

.text-on-image {
  color: #FFF;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .section-title {
    text-align: left;
  }
  .section-title.centered {
    text-align: center;
  }
}
.box-soft-shadow {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

.text-hard-shadow {
  text-shadow: 0px 0px 1px rgb(0, 0, 0);
}

.fine-print {
  font-size: 0.65em;
}

.inline-icon-fix {
  line-height: 1.42857143;
}

#navigation-container, #navigation-container-mobile {
  padding: 15px 15px 15px 15px;
  /*margin-bottom: 25px;*/
  border-bottom: 1px solid #EEE;
  background-color: #FFF;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: #6A6C6E;
}

#navigation-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#navigation-logo {
  margin-right: 35px;
}

#navigation-links {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#navigation-links a {
  color: #6A6C6E;
  margin-left: 8px;
}
#navigation-links a.active {
  text-decoration: underline;
}

#navigation-cart {
  position: relative;
  font-size: 28px;
  margin-right: 25px;
  width: 29px;
  height: 34px;
}
#navigation-cart a {
  color: #6A6C6E;
}

#cart-contents, #account-notifications {
  position: absolute;
  display: inline-block;
  bottom: -5px;
  right: -5px;
  pointer-events: none;
}

#cart-contents .cart-number, #account-notifications .notifications-number {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: relative;
  background-color: #FFF; /*#F5F5F5*/
  font-size: 0.5em;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #6A6C6E; /*#EEE*/
  color: #000;
}

#navigation-account {
  position: relative;
  font-size: 28px;
  width: 29px;
  height: 34px;
}
#navigation-account a {
  color: #6A6C6E;
}

#navigation-container-mobile {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.navigation-link-mobile {
  margin-top: 8px;
}
.navigation-link-mobile a {
  color: #6A6C6E;
}
.navigation-link-mobile a.active {
  text-decoration: underline;
}

#sharing-title {
  text-align: center;
}

#sharing-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-top: 15px;
}

.sharing-item {
  display: inline-block;
  margin: 0 15px;
}
.sharing-item a {
  color: #BBB;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.sharing-item a:hover {
  color: #6A6C6E;
}

.next-section-arrow {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0px;
}
.next-section-arrow a {
  font-size: 4em;
  color: #FFF;
  text-shadow: 0px 1px 0.05em rgba(0, 0, 0, 0.5);
  opacity: 0.25;
  outline: none;
  /* Transition for hover */
  -webkit-transition: 0.2s ease-out, background 0.2s ease-in;
  -moz-transition: 0.2s ease-out, background 0.2s ease-in;
  -ms-transition: 0.2s ease-out, background 0.2s ease-in;
  -o-transition: 0.2s ease-out, background 0.2s ease-in;
  transition: 0.2s ease-out, background 0.2s ease-in;
}
.next-section-arrow a:hover {
  opacity: 1;
}

/* Responsive font sizes */
/* Bootstrap extending default colors */
/*.btn
{
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	border-radius:         2px;
}*/
.btn-transparent {
  background: none;
  border: 1px solid #FFF;
  color: #FFF;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, text-shadow 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, text-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, text-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, text-shadow 0.15s ease-in-out;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.75);
  text-shadow: 0px 1px 0.05em rgba(0, 0, 0, 0.5);
}
.btn-transparent:hover {
  box-shadow: none;
  background-color: rgb(255, 255, 255);
  color: #000;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0);
}

.btn-transparent-inv {
  background: none;
  border: 1px solid #6A6C6E;
  color: #6A6C6E;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border 0.15s ease-in-out;
}
.btn-transparent-inv:hover {
  box-shadow: none;
  background-color: rgb(106, 108, 110);
  border: 1px solid #6A6C6E;
  color: #FFF;
}

/*
========== FOOTER ==========
*/
#cookie-notice {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: #000000;
  z-index: 5;
  padding: 1em;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#cookie-notice #cookie-notice-text {
  text-align: center;
  color: #FFFFFF;
}
#cookie-notice #close-cookie-notice {
  cursor: pointer;
  color: #FFFFFF;
  margin-left: 2em;
}

.footer-links-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px 15px 0;
}
.footer-links-container a {
  margin: 0 15px 5px 0;
  font-size: 12px;
  color: #6A6C6E;
}

.footer-text {
  color: #BBB;
}

/*
========== LIGHTBOX ==========
*/
#loading-container {
  display: none;
  z-index: 2000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#loading {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#loading .spinner {
  font-size: 5em;
  color: #FBAB22;
}

#lightbox-container {
  display: none;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#lightbox {
  position: relative;
  width: 100%;
  height: 100%;
  /*max-width: ;*/
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background-color: #E9E9E9;
  padding: 10px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
  overflow: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

#lightbox-close {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 1.2em;
  cursor: pointer;
  color: #666;
  z-index: 9000;
  /* Transition for hover color change */
  -webkit-transition: color 0.2s ease-out, background 0.2s ease-in;
  -moz-transition: color 0.2s ease-out, background 0.2s ease-in;
  -ms-transition: color 0.2s ease-out, background 0.2s ease-in;
  -o-transition: color 0.2s ease-out, background 0.2s ease-in;
  transition: color 0.2s ease-out, background 0.2s ease-in;
}
#lightbox-close:hover {
  color: #999;
}

#lightbox-html {
  position: relative;
}

/*
========== PRIVACY POLICY ==========
*/
.privacy-icon {
  float: left;
  margin: 10px;
  width: 2em;
}

.privacy-text {
  overflow: hidden;
}

/*
========== SUPPORT ==========
*/
#faq {
  padding-bottom: 25px;
}

/*
========== PRODUCTS ==========
*/
.category-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.category {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 145px;
  height: 52px;
  margin: 5px;
  padding: 5px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.category.selected {
  background-color: #F5F5F5;
  border: 1px solid #EEE;
}

.category > h4 {
  text-align: center;
}

.container #list-product-container:first-child {
  margin-top: 40px;
}

#list-product-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
#list-product-container .product-title h3 {
  margin-top: 10px;
}
#list-product-container .product-box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex: 1 0 250px;
  -ms-flex: 1 0 250px;
  flex: 1 0 250px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  text-align: center;
}
#list-product-container .product-box .product-image {
  position: relative;
  width: 158px;
  height: 158px;
  -webkit-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
#list-product-container .product-box .product-image a {
  outline: 0;
}
#list-product-container .product-box .product-image img {
  -webkit-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1); /* older webkit */
  -webkit-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65);
  -moz-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65);
  -o-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65);
  transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65); /* custom */
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
#list-product-container .product-box:hover .product-image img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
#list-product-container .product-box .product-title {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; /* Causing problem in IE 11? */
}
#list-product-container .product-image-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: #FFF; /*FBAB21*/
  text-shadow: 0px 1px 1px rgb(0, 0, 0);
  pointer-events: none;
}
#list-product-container .product-text-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 1.5em;
  text-transform: uppercase;
  text-shadow: 0px 1px 1px rgb(0, 0, 0);
  pointer-events: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 8px;
}
#list-product-container .product-image img {
  width: 100%;
}
#list-product-container .product-image img.owned {
  opacity: 0.66;
}

.cart-button {
  margin-top: 25px;
}

.kontakt-requirement {
  color: #777;
}

#review-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#review-container .review-content {
  -webkit-flex: 1 0 275px;
  -ms-flex: 1 0 275px;
  flex: 1 0 275px;
  text-align: center;
  margin-bottom: 5px;
  padding: 5px;
}
#review-container .review-content:last-child {
  margin-bottom: 0px;
}
#review-container .review-content .review-author {
  font-weight: bold;
  margin-bottom: 0.75em;
}

#video-list-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.video-list-box {
  display: inline-block;
  position: relative;
  margin: 15px;
}

.video-list-title {
  margin-top: 5px;
  text-align: center;
}

.video-list-thumbnail img {
  width: 250px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}

.video-list-box .video-list-overlay {
  position: absolute;
  pointer-events: none;
  background-position: 0 center;
  background-repeat: no-repeat;
  background-size: 200%;
  top: 0px;
  left: 0px;
  bottom: 25px;
  right: 0px;
  margin: auto;
  width: 25%;
  height: 25%;
}

.video-list-box:hover .video-list-overlay {
  background-position: 100% center;
}

#show-download-header {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  padding: 0px 25px;
}

@media screen and (min-width: 768px) {
  #show-download-header {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
#show-download-header .product-image-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

#show-download-header .product-image {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  overflow: hidden;
  /*width: 100%;*/
}

#show-download-header .product-image-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: #FFF; /*FBAB21*/
  text-shadow: 0px 0px 1px rgb(0, 0, 0);
  pointer-events: none;
}

#show-download-header .product-image img {
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  width: 175px;
  height: 175px;
}

#show-download-header .product-text-container {
  max-width: 600px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

#show-download-header .product-side {
  text-align: center;
}

#show-download-header .product-title h1, #show-download-header .product-title h2 {
  margin-top: 0px;
}

#show-download-header .product-title .btn {
  margin-top: 10px;
}

.copy-button {
  color: #ddd;
  margin-left: 10px;
  cursor: pointer;
}

#show-product-header {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  padding: 0px 25px;
}

@media screen and (min-width: 768px) {
  #show-product-header {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
#show-product-header .product-image-container {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

#show-product-header .product-image {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  overflow: hidden;
  /*width: 100%;*/
}

#show-product-header .product-image-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: #FFF; /*FBAB21*/
  text-shadow: 0px 0px 1px rgb(0, 0, 0);
  pointer-events: none;
}

#show-product-header .product-image img {
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

@media screen and (min-width: 768px) {
  #show-product-header .product-image img {
    width: 376px;
    height: 376px;
  }
}
#show-product-header .product-text-container {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

#show-product-header .product-side {
  text-align: center;
}

#show-product-header .product-title h1, #show-product-header .product-title h2 {
  margin-top: 0px;
}

#show-product-header .product-title .btn {
  margin-top: 10px;
}

.product-category {
  width: 100%;
  text-align: center;
  font-size: 0.85em;
  font-style: italic;
}

#kontakt-player-container {
  margin-top: 30px;
}

#kontakt-player-logo {
  text-align: center;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 500px) {
  #kontakt-player-logo {
    float: left;
    margin: 0 10px 10px 0;
  }
}

.feature-container {
  margin-top: 30px;
}

.feature-logo {
  text-align: center;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 500px) {
  .feature-logo {
    float: left;
    margin: 0 10px 10px 0;
  }
}

#release-info {
  margin: 20px 0 20px 0;
  width: 100%;
  text-align: center;
  font-size: 0.7em;
  font-style: italic;
}

#more-videos {
  width: 100%;
  text-align: center;
}

#downloads-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
#downloads-container .download-item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
#downloads-container .download-item .file-format {
  margin-right: 10px;
}
#documentation-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
#documentation-container .documentation-item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
#documentation-container .documentation-item .documentation-icon {
  margin-right: 10px;
}

.product-screenshot {
  margin: 30px 0;
  text-align: center;
  /*width: 100%;*/
}

#video-title {
  width: 100%;
  text-align: center;
  font-size: 1.2em;
}

#video-container {
  position: relative;
  width: 700px;
  height: 394px;
}

#video-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}

#video-column {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#video-column h1 {
  text-align: center;
  margin: 0px 0px 30px 0px;
}

#video-column:last-child {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.responsive-video-container {
  width: 100%;
  max-width: 700px;
}

.video-youtube-embed {
  position: relative;
  /*	width:560px;
  	height:315px;*/
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
========== PAGES ==========
*/
#headline-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  padding: 0px 25px;
}
#headline-container .headline-image {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#headline-container .headline-image img {
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 768px) {
  #headline-container .headline-image img {
    width: 376px;
    height: 376px;
  }
}
#headline-container .headline-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#headline-container .headline-text .headline-description {
  text-align: center;
}
#headline-container .headline-text .headline-description .btn {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  #headline-container {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.news-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}

.news-box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex: 1 1 250px;
  -ms-flex: 1 1 250px;
  flex: 1 1 250px;
  /*min-width: 250px;*/
  /*overflow: hidden;*/
  /*border: 1px solid #CCC;*/
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.news-image img {
  width: 66%;
  max-width: 175px;
  -webkit-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1); /* older webkit */
  -webkit-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65);
  -moz-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65);
  -o-transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65);
  transition: all 350ms cubic-bezier(0.195, 0.01, 0, 1.65); /* custom */
}

.news-box:hover .news-image img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.news-title {
  margin: 10px 0 5px 0;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  font-weight: 600;
}

.news-date {
  margin-bottom: 5px;
  font-size: 0.8em;
  font-style: italic;
  color: #777;
}

.news-blurb {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.news-link {
  font-style: italic;
  margin-top: 8px;
}

.banner-background {
  min-height: 150px;
  padding: 15px 15px;
  margin-bottom: 25px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-color: #252525;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 85px #000 inset;
}
.banner-background h1 {
  margin: 0px;
}
.banner-background h5 {
  margin-bottom: 0px;
  color: #777;
}

@media screen and (min-width: 768px) {
  .banner-background {
    background-attachment: fixed;
  }
}
.about-section {
  background-color: #EEEEEE;
  background-size: cover;
  background-repeat: no-repeat;
  /* border-top: 1px solid #EEE; */
  border-bottom: 1px solid #EEE;
}

.about-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  min-height: 350px;
  padding: 25px 0;
}

.about-container.about-left {
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}

.about-container.about-right {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}

.about-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .about-text {
    max-width: 650px;
  }
}
.about-text a {
  margin-top: 15px;
}

.social-title {
  text-align: center;
}

.social-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 15px;
}

.social-item {
  display: inline-block;
  margin: 0 15px;
}

.social-item a {
  opacity: 0.33;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.social-item a:hover {
  opacity: 0.66;
}

.downloads-newsletter {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.downloads-newsletter .downloads, .downloads-newsletter .newsletter {
  margin: 0 15px;
  -webkit-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
}

.news-product-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.news-product-description {
  -webkit-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
}

/*
========== CART ==========
*/
.item-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.remove-item {
  margin-right: 15px;
}

.remove-item a {
  padding: 5px;
}

.cart-control-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: -10px 0; /* Negative margin to compensate for wrapping (see .cart-discount) */
}

.cart-control-box-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.cart-control-box {
  margin-left: 15px;
}

.cart-discount {
  margin: 10px 0;
  -webkit-flex: 1 0 200px;
  -ms-flex: 1 0 200px;
  flex: 1 0 200px;
}

#paymentMethods {
  margin-top: 40px;
}

.order-summary {
  margin: 20px 0;
}

.order-summary .item-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 10px 0;
}

.item-container .item-bullet {
  width: 24px;
  color: #337AB7; /*#CCC;*/
}

.item-container .item-title {
  font-weight: bold;
}

#paymentProcessing {
  display: none;
}

#paymentOptions {
  margin-top: 20px;
}

.content-footer-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 80px 0 35px 0;
  width: 100%;
}

.content-footer {
  max-width: 750px;
  font-size: 12px;
  font-style: italic;
  text-align: center;
}

.faq-category {
  margin: 0px 0px 35px 0px;
}

.purchase-agreement-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 80px 0 35px 0;
  width: 100%;
}

.purchase-agreement {
  max-width: 750px;
  font-size: 12px;
  font-style: italic;
  text-align: center;
}

.paypal-credit-banner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 35px 0 35px 0;
  width: 100%;
}

.order-success h4 {
  margin-top: 30px;
}

/*
========== BLOG ==========
*/
.blog-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-left: -15px;
}

.article-list, .sidebar {
  margin-left: 15px;
}

.article-list {
  -webkit-flex: 3 1 450px;
  -ms-flex: 3 1 450px;
  flex: 3 1 450px;
}

.sidebar {
  -webkit-flex: 1 0 170px;
  -ms-flex: 1 0 170px;
  flex: 1 0 170px;
}

/*
========== ACCOUNT ==========
*/
.account-form {
  margin: 20px 0 50px 0;
}

#survey-questions {
  margin: 16px 0 16px 0;
}
#survey-questions .other-text-field {
  visibility: hidden;
  margin-left: 8px;
}
#survey-questions .other-text-field.show-field {
  visibility: visible;
}

#redeem-code {
  text-align: center;
  margin-bottom: 40px;
}

.download-name {
  margin-right: 10px;
}

#download-links {
  margin: 20px 0 20px 0;
}

.update-available-text {
  color: #FF0000;
}

#server-selection {
  margin: 20px 0 20px 0;
  font-size: 12px;
}

.notification-container {
  margin-bottom: 30px;
}

.notification-title {
  font-size: 16px;
  font-weight: bold;
}

.notification-subtitle {
  font-size: 12px;
}

.notification-text {
  margin: 15px 0;
}

.product-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.notification-product-description {
  -webkit-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
}

.login-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.login-container .login-form {
  /*		-webkit-flex: 1;
  		    -ms-flex: 1;
  		        flex: 1;*/
  max-width: 350px;
}

.login-container .login-form h2 {
  text-align: center;
}

.login-container .login-form .forget-password {
  text-align: center;
  font-size: 12px;
}

input[name=firstname] {
  display: none;
}

.order-info-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: stretch;
  -ms-align-content: stretch;
  align-content: stretch;
}

.order-info-container .order-box {
  padding: 8px;
}

.table > tbody > tr > .emptyrow {
  border-top: none;
}

.table > thead > tr > .emptyrow {
  border-bottom: none;
}

.table > tbody > tr > .highrow {
  border-top: 3px solid;
}

/*
========== ACCOUNT GROUP BUY ==========
 */
.tier.passed .name {
  text-decoration: line-through;
}
.tier.current .name {
  font-weight: bold;
  color: red;
}

#group-buy-product-container .item-container {
  margin: 15px 0;
}
#group-buy-product-container .item-container .item-details .product-name {
  font-weight: bold;
}

#add-group-buy-entry {
  margin: 25px 0;
}

/*
========== _PARTIALS ==========
*/
#installation-instructions .instruction-note {
  font-style: italic;
}
#installation-instructions .instruction-section {
  margin-bottom: 24px;
}
#installation-instructions .instruction-section:last-child {
  margin-bottom: 0px;
}

.audio-demo-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.audio-demo-container .audio-demo {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 350px;
  height: 52px;
  margin: 15px 5px;
  padding: 5px 15px;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border: 1px solid #337AB7;
  color: #337AB7;
  -webkit-transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, text-shadow 0.15s ease-in-out 0s;
  -webkit-transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, text-shadow 0.15s ease-in-out 0s;
  -moz-transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, text-shadow 0.15s ease-in-out 0s;
  -o-transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, text-shadow 0.15s ease-in-out 0s;
  transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, text-shadow 0.15s ease-in-out 0s;
  outline: 0 none;
  text-decoration: none;
}
.audio-demo-container .audio-demo.active, .audio-demo-container .audio-demo:hover {
  background-color: #337AB7;
  border: 1px solid #337AB7;
  color: #FFF;
}
.audio-demo-container .audio-demo h4 {
  text-align: center;
}
.audio-demo-container .audio-demo .play-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}
.audio-demo-container .audio-demo .play-position-container .play-position {
  height: 100%;
  width: 100%;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #5C95C5;
  background-clip: content-box;
  padding-right: 100%;
}
.audio-demo-container .audio-demo .play-button {
  width: 25px;
  margin-right: 5px;
  font-size: 20px;
  z-index: 1;
}
.audio-demo-container .audio-demo .play-button .stop-audio {
  display: none;
}
.audio-demo-container .audio-demo .audio-demo-content {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.audio-demo-container .audio-demo .audio-demo-content .track-title {
  font-weight: 600;
  font-size: 18px;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
}
.audio-demo-container .audio-demo .audio-demo-content .track-author {
  font-weight: 200;
  font-size: 11px;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
}

.audio-demo-addendum {
  text-align: center;
  font-size: 0.8em;
}

.testimonial-section {
  position: relative;
  height: 500px;
}

@media screen and (min-width: 768px) {
  .testimonial-section {
    height: 250px;
  }
}
.testimonial-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}

.testimonial-container.active {
  z-index: 5;
}

.testimonial {
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .testimonial {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.testimonial-image {
  opacity: 0;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  -ms-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  transition: opacity 1s linear;
}

.active .testimonial-image {
  opacity: 1;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  -ms-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  transition: opacity 1s linear;
  transition-delay: 1.25s;
}

.testimonial-image img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 25px;
}

.testimonial-content {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  -moz-transition: opacity 1s ease-in;
  -ms-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  transition-delay: 0s;
}

.active .testimonial-content {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in;
  -moz-transition: opacity 0.5s ease-in;
  -ms-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  transition-delay: 1.25s;
}

.testimonial-author {
  font-weight: 500;
  font-size: 24px;
}

.testimonial-quote {
  margin: 10px 0;
}

.testimonial-credits {
  font-weight: 200;
  font-size: 14px;
}

.dual-title-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-content: center;
  -ms-align-content: center;
  align-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.dual-title-container h2 {
  margin-top: 0px;
  flex: 1;
}

.dual-title-container div {
  margin-left: 5px;
}

.dual-title-container ~ .dual-title-container {
  margin-top: 40px;
}

/*# sourceMappingURL=master.css.map */
