@charset "UTF-8";
@import '/templates/spacetornado/css/gfonts.css';
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: black;
  /* IE8 e*/
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

.sweet-alert {
  background-color: white;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #797979;
  float: none;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: inherit;
  display: block;
  font-family: Open Sans;
}

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.sweet-alert fieldset {
  border: none;
  position: relative;
}

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.sweet-alert .sa-error-container p {
  display: inline-block;
}

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert.show-input input {
  display: block;
}

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
  margin-top: 0px;
}
@media (max-width: 410px) {
  .sweet-alert .sa-confirm-button-container {
    margin-top: 10px;
  }
}

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}

.sweet-alert button {
  background-color: #607D8B !important;
  border: 1px solid #c6c6c6;
  color: white;
  font-size: 1em;
  border-radius: 4px;
  padding: 10px 45px;
  cursor: pointer;
}

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
  background-color: #516a76 !important;
}

.sweet-alert button:active {
  background-color: #5dc2f1;
}

.sweet-alert button.cancel {
  background-color: #C1C1C1;
}

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.sweet-alert button.confirm[disabled] {
  color: transparent;
}

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: "";
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@-webkit-keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s;
}

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s;
}

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s;
}

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate;
}

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fall.la-dark {
  color: #333;
}

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fall {
  width: 54px;
  height: 18px;
}

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}
/**
 * selectize.default.css (v0.12.3) - Default Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissioesns and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
  box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #0073bb;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #00578d;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #aaaaaa;
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 28px;
  top: 6px;
  font-size: 23px;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 5px 8px 2px;
}

.selectize-input.full {
  background-color: #ffffff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #ffffff;
  border: 1px solid #0073bb;
}

.selectize-control.multi .selectize-input > div.active {
  background: #92c836;
  color: #ffffff;
  border: 1px solid #00578d;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #ffffff;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 1px !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #ffffff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #d2e8ef;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
  box-shadow: 0 0 10px lightblue;
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

.selectize-control.multi .selectize-input.has-items {
  padding-left: 5px;
  padding-right: 5px;
}

.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.selectize-control.multi .selectize-input.disabled [data-value],
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  border-color: #e6e6e6;
}

.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  background: none;
}

.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1b9dec;
  background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
  background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff1da7ee", endColorstr="#ff178ee9", GradientType=0);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.selectize-control.multi .selectize-input [data-value].active {
  background-color: #0085d4;
  background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
  background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
  background-image: -o-linear-gradient(top, #008fd8, #0075cf);
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff008fd8", endColorstr="#ff0075cf", GradientType=0);
}

.selectize-control.single .selectize-input {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-color: #f9f9f9;
  background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fffefefe", endColorstr="#fff2f2f2", GradientType=0);
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
  border-color: #b8b8b8;
}

.selectize-dropdown .optgroup-header {
  padding-top: 7px;
  font-weight: bold;
  font-size: 0.85em;
}

.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}

.selectize-dropdown .optgroup:first-child {
  border-top: 0 none;
}

body, html {
  height: 100%;
}

.mainMenuContainer, #alone {
  visibility: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a, .hideShowShippingAccountText {
  text-decoration: none;
  color: #14679b;
  font-size: 16px;
  cursor: pointer;
  word-break: break-word;
}

a:hover, .hideShowShippingAccountText:hover {
  text-decoration: underline;
}

@media (max-width: 650px) {
  li a, li .hideShowShippingAccountText {
    font-size: 18px;
  }
}

p {
  color: #2d2d2d;
  padding: 10px;
  text-align: left;
  margin: 0;
}

div {
  color: #2d2d2d;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

p, a, .hideShowShippingAccountText, div {
  font-family: "Open Sans", helvetica;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, .mailTo {
  font-family: "PT Serif";
  font-weight: normal;
  text-align: center;
  color: #2d2d2d;
  margin: 0 !important;
  margin-top: 10px !important;
}

h1 {
  font-size: 30px;
}
@media (min-width: 992px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 28px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: 26px;
}
@media (min-width: 992px) {
  h3 {
    font-size: 32px;
  }
}

h4 {
  font-size: 24px;
}
@media (min-width: 992px) {
  h4 {
    font-size: 30px;
  }
}

h5 {
  font-size: 20px;
}
@media (min-width: 992px) {
  h5 {
    font-size: 26px;
  }
}

h6, .mailTo {
  font-size: 18px;
}
@media (min-width: 992px) {
  h6, .mailTo {
    font-size: 24px;
  }
}

.headerLink {
  color: #14679b;
}

.headerLink:hover {
  cursor: pointer;
  text-decoration: underline;
}

.flex {
  display: flex;
  width: 100%;
  height: 100%;
}

.rightContentArea {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  padding: 0 10px;
}
@media (min-width: 767px) {
  .rightContentArea {
    padding: 0 0 0 10px;
  }
}

.bgContainer {
  width: 100%;
  background-position: top left;
  background-repeat: no-repeat;
}

.colmn {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.colmn2 {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.colmnContainer {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.OneColmnContainer {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.substratum, .rightContentArea .calculate {
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ffffff));
  background: -webkit-linear-gradient(top, #f8f8f8, #ffffff);
  background: -moz-linear-gradient(top, #f8f8f8, #ffffff);
  background: -ms-linear-gradient(top, #f8f8f8, #ffffff);
  background: -o-linear-gradient(top, #f8f8f8, #ffffff);
  background: linear-gradient(top, #f8f8f8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#f8f8f8", end-colourStr="#ffffff");
  border: 1px solid #c6c6c6;
  border-radius: 0px;
}
@media (min-width: 600px) {
  .substratum, .rightContentArea .calculate {
    border-radius: 3px;
  }
}

.menuSubstratum {
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ffffff));
  background: -webkit-linear-gradient(top, #f8f8f8, #ffffff);
  background: -moz-linear-gradient(top, #f8f8f8, #ffffff);
  background: -ms-linear-gradient(top, #f8f8f8, #ffffff);
  background: -o-linear-gradient(top, #f8f8f8, #ffffff);
  background: linear-gradient(top, #f8f8f8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#f8f8f8", end-colourStr="#ffffff");
  border: 1px solid #c6c6c6;
  border-radius: 2px;
}

.pageSpanner, .reportProdMyCharts a, .reportProdMyCharts .hideShowShippingAccountText {
  flex: 1 1 100%;
  text-align: center;
}

.formContainer, .createAccount, .login {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 100%;
}

.formElement, .createAccount button, .createAccount .floatlabel-wrapper, .createAccount input, .login input {
  flex: 1 1 180px;
  height: 50px;
}

.imageHalf {
  flex: 1 1 450px;
  justify-content: flex-start;
}

.textHalf {
  flex: 1 1 320px;
  justify-content: flex-start;
}

.singleColmn {
  display: flex;
  flex-direction: column;
}

input {
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  box-shadow: 2px 2px 2px #efefef inset;
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

input:focus {
  outline: none !important;
  box-shadow: 0 0 10px lightblue;
}

input[type=text] {
  font-size: 16px;
}

input[type=radio] {
  margin-top: 15px;
  margin-right: 10px;
  box-shadow: none;
}

input[type=email], input[type=tel] {
  font-size: 16px;
}

.inputLg {
  height: 50px;
}

::-webkit-input-placeholder {
  font-size: 16px;
  color: #a1a0a0;
  opacity: 1;
}

:-moz-placeholder {
  font-size: 16px;
  color: #a1a0a0;
  opacity: 1;
}

::-moz-placeholder {
  font-size: 16px;
  color: #a1a0a0;
  opacity: 1;
}

:-ms-input-placeholder {
  font-size: 16px;
  color: #a1a0a0;
  opacity: 1;
}

.radioDiv label {
  font-size: 16px;
  width: 100%;
  padding: 10px 0;
  display: block;
}

.radioDiv label:hover {
  cursor: pointer;
}

.radioDiv {
  display: flex;
  padding: 0 0 0 5px;
}

.radioDiv:hover {
  cursor: pointer;
  background-color: #eaebeb;
  border-radius: 4px;
}

.isSelected {
  background-color: #f4f5f5;
}

.radioContainer {
  display: flex;
  flex-direction: column;
}

.btn, .btnLg, .btnSm {
  background-color: #eeeded;
  background: -webkit-gradient(linear, left top, left bottom, from(#eeeded), to(#ededed));
  background: -webkit-linear-gradient(top, #eeeded, #ededed);
  background: -moz-linear-gradient(top, #eeeded, #ededed);
  background: -ms-linear-gradient(top, #eeeded, #ededed);
  background: -o-linear-gradient(top, #eeeded, #ededed);
  background: linear-gradient(top, #eeeded, #ededed);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#eeeded", end-colourStr="#ededed");
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  color: #14679b;
  font-size: 20px;
  padding: 5px 35px;
}
@media (min-width: 767px) {
  .btn, .btnLg, .btnSm {
    padding: 3px 35px;
  }
}

.btn:hover, .btnLg:hover, .btnSm:hover, .btn:focus, .btnLg:focus, .btnSm:focus {
  cursor: pointer;
  background-color: #eeeded;
  background: -webkit-gradient(linear, left top, left bottom, from(#eeeded), to(#ffffff));
  background: -webkit-linear-gradient(top, #eeeded, #ffffff);
  background: -moz-linear-gradient(top, #eeeded, #ffffff);
  background: -ms-linear-gradient(top, #eeeded, #ffffff);
  background: -o-linear-gradient(top, #eeeded, #ffffff);
  background: linear-gradient(top, #eeeded, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#eeeded", end-colourStr="#ffffff");
  color: #1982c4;
  border: 1px solid lightgray;
  box-shadow: 0 0 10px lightblue;
  outline: 0;
}

.btnSm {
  font-size: 16px;
  padding: 4px 15px;
}

.btnLg {
  font-size: 22px;
  margin: 15px 10px;
  padding: 11px 55px;
}

.btn2, #proopc-order-submit, #proopc-task-loginajax, .vm-button-correct, #proopc-task-registercheckout, .btn2Lg, .btn2Sm, .show_cart a, .show_cart .hideShowShippingAccountText, #proopc-task-savecoupon {
  background-color: #51798c;
  border: 1px solid #c6c6c6;
  color: white;
  font-size: 20px;
  border-radius: 4px;
  padding: 7px 35px;
  box-shadow: none;
}
@media (min-width: 767px) {
  .btn2, #proopc-order-submit, #proopc-task-loginajax, .vm-button-correct, #proopc-task-registercheckout, .btn2Lg, .btn2Sm, .show_cart a, .show_cart .hideShowShippingAccountText, #proopc-task-savecoupon {
    padding: 7px 35px;
  }
}

.btn2:hover, #proopc-order-submit:hover, #proopc-task-loginajax:hover, .vm-button-correct:hover, #proopc-task-registercheckout:hover, .btn2Lg:hover, .btn2Sm:hover, .show_cart a:hover, .show_cart .hideShowShippingAccountText:hover, #proopc-task-savecoupon:hover {
  cursor: pointer;
  background-color: #446575;
  border: 1px solid #adadad;
  text-decoration: none;
}

.btn2:focus, #proopc-order-submit:focus, #proopc-task-loginajax:focus, .vm-button-correct:focus, #proopc-task-registercheckout:focus, .btn2Lg:focus, .btn2Sm:focus, .show_cart a:focus, .show_cart .hideShowShippingAccountText:focus, #proopc-task-savecoupon:focus {
  background-color: #40606f;
  border: 1px solid #adadad;
}

.btn2Sm, .show_cart a, .show_cart .hideShowShippingAccountText, #proopc-task-savecoupon {
  font-size: 16px;
  padding: 4px 15px;
}

.btn2Lg {
  font-size: 22px;
  margin: 15px 10px;
  padding: 11px 55px;
}

.btnFull {
  width: 100%;
  height: 50px;
}

.spinner-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}

.sk-circle {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 9999;
  opacity: 1 !important;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1 !important;
}

.sk-circle .sk-child:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  opacity: 1 !important;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
footer {
  display: none;
}

.button-disabled {
  opacity: 0.5;
}

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a, .hideShowShippingAccountText {
  background-color: transparent;
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active, .hideShowShippingAccountText:active,
a:hover,
.hideShowShippingAccountText:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * Change font properties to `inherit` in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  font: inherit;
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 * 2. Show the overflow in Edge, Firefox, and IE.
 */
button,
input,
select {
  /* 2 */
  overflow: visible;
}

/**
 * Remove the margin in Safari.
 * 1. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  /* 1 */
  margin: 0;
}

/**
 * Remove the inheritence of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritence of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Change the cursor in all browsers (opinionated).
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

/**
 * Restore the default cursor to disabled elements unset by the previous rule.
 */
[disabled] {
  cursor: default;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: none;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the odd appearance of search inputs in Chrome and Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
}

/**
 * Remove the inner padding and cancel buttons in Chrome on OS X and
 * Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* TINY - Mobile */
.main {
  width: 100%;
  font-size: 15px;
  margin: 0 auto;
  height: 100%;
  display: none;
  min-height: 300px;
}

@media (min-width: 600px) {
  .main {
    width: 600px;
    font-size: 16px;
  }
}
/* SMALL */
@media (min-width: 767px) {
  .main {
    width: 750px;
    font-size: 17px;
  }

  .main p, .main li {
    font-size: 16px;
  }
}
/* MEDIUM */
@media (min-width: 992px) {
  .main {
    width: 980px;
    font-size: 25px;
  }

  .main p, .main li {
    font-size: 16px;
  }
}
/* LARGE */
@media (min-width: 1200px) {
  .main.covers {
    width: 1180px;
    font-size: 27px;
  }

  .main p, .main li {
    font-size: 16px;
  }
}
#dimmer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  background-color: #000;
  display: none;
}

/* Main Menu */
.mainMenu {
  width: 100%;
  background-color: #455A64;
  height: 48px;
  position: relative;
  z-index: 99;
}

.mainMenu .moduletable {
  display: flex;
  justify-content: center;
}

.mainMenuUL {
  display: inline-block;
  width: 100%;
  display: flex;
  max-width: 875px;
}

.mainMenuUL li {
  flex: 1 1 auto;
  display: flex;
  text-align: center;
  font-family: "Quattrocento Sans", helvetica;
  justify-content: center;
}

.mainMenuUL > li > a:not(.togethernessBagA), .mainMenuUL > li > .hideShowShippingAccountText:not(.togethernessBagA) {
  flex: 1 1 auto;
  line-height: 48px;
  color: #FFFFFF;
  height: 100%;
}
@media (min-width: 767px) {
  .mainMenuUL > li > a:not(.togethernessBagA), .mainMenuUL > li > .hideShowShippingAccountText:not(.togethernessBagA) {
    font-size: 16px;
  }
}

.mainMenuUL a:not(#togethernessBag):hover, .mainMenuUL .hideShowShippingAccountText:not(#togethernessBag):hover {
  cursor: pointer;
  transition: box-shadow 0.15s linear;
  box-shadow: inset 0 -48px 20px -20px #58727f, inset 0 48px 20px -20px #4b626d;
  text-decoration: none;
}

.mainMenuUL .active {
  pointer-events: none;
  box-shadow: inset 0 -48px 20px -20px #324249, inset 0 48px 20px -20px #3f525b;
}

.mainMenuUL .active a:hover, .mainMenuUL .active .hideShowShippingAccountText:hover {
  cursor: default !important;
  box-shadow: none !important;
}

/* Bags */
.bagMenu .active {
  pointer-events: none;
  box-shadow: none;
}

.bagMenu .active a, .bagMenu .active .hideShowShippingAccountText {
  color: #2d2d2d;
}

#alone {
  display: flex;
  align-items: center;
}

.bag {
  display: flex;
  align-items: center;
  position: relative;
  height: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.bagIcon {
  background: url("/images/site/bagIcon.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px;
  height: 100%;
  width: 100%;
}

.bagIcon:hover {
  cursor: pointer;
  opacity: 0.8;
}

.bagMenu > .moduletable {
  background-color: white;
}

#aloneBag {
  margin-right: 6px;
  height: 46px;
  width: 30px;
  margin-left: auto;
}

.bagMenu {
  left: -285px;
  top: 5px;
  position: absolute;
  display: none;
  z-index: 1;
}

.bagMenu ul {
  width: 100%;
  padding: 10px;
}

.bagMenu li {
  text-align: left;
}

.bagMenu li a, .bagMenu li .hideShowShippingAccountText {
  color: #14679b;
  display: block;
  width: 100%;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 7px;
}

.bagMenu li a:hover, .bagMenu li .hideShowShippingAccountText:hover {
  text-decoration: none;
  box-shadow: none !important;
  color: #1c8ed6;
}

.bagMenu .moduletable {
  justify-content: flex-start;
}

.bagMenu > div > ul > li {
  justify-content: flex-start;
  margin-bottom: 5px;
  padding: 0 20px 0 0;
}

/* Mobile Menu */
#leftHamburger {
  background: url("/images/site/menuIcon.png");
  height: 39px;
  width: 75px;
  margin-left: 6px;
}

#leftHamburger:hover {
  cursor: pointer;
  opacity: 0.8;
}

.mobileMainMenuContainer {
  position: absolute;
  background-color: white;
  border: 1px solid #c6c6c6;
  height: 100vh;
  width: 300px;
  margin-left: -302px;
  z-index: 5;
  display: none;
}

.panel {
  width: 100%;
  height: 100%;
  border-right: 1px solid #c6c6c6;
  background-color: white;
  left: -302px;
  position: absolute;
  margin-top: 0px;
}

#levelOne {
  position: absolute;
  width: 100%;
  height: 100%;
}

.mobileMainMenu {
  position: relative;
}

#mobileUL {
  padding: 0 15px;
  background-color: white;
}

#mobileUL a, #mobileUL .hideShowShippingAccountText {
  color: #14679b;
  display: block;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 7px;
  position: relative;
  padding: 13px 0;
}

#mobileUL .active a, #mobileUL .active .hideShowShippingAccountText {
  color: #2d2d2d;
  pointer-events: none;
}

#mobileUL .active a:hover, #mobileUL .active .hideShowShippingAccountText:hover {
  cursor: default;
}

.menuHeader {
  margin-bottom: 0px;
}

.levelContainer {
  height: 100%;
}

.backArrow {
  cursor: pointer;
}

.backArrow a, .backArrow .hideShowShippingAccountText {
  padding-left: 30px !important;
}

.backArrow a::after, .backArrow .hideShowShippingAccountText::after {
  background-image: url("/images/site/uniqloArrow.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 50%;
  content: "";
  height: 31px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 253px;
  top: 11px;
  width: 15px;
  opacity: 0.4;
  transform: rotate(180deg);
}

.deepArrow::after {
  background-image: url("/images/site/uniqloArrow.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 50%;
  content: "";
  height: 30px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 11px;
  width: 15px;
  opacity: 0.4;
}

/* Left side menu */
.leftBar {
  flex: 0 0 200px;
  height: 100%;
  margin-top: 32px;
  padding: 0px 0 12px;
}

.leftBar a, .leftBar .hideShowShippingAccountText {
  margin-left: 25px;
}

.leftBar ul {
  line-height: 30px;
}

.leftBar .nav-child li {
  margin-left: 15px;
}

.separator {
  font-size: 24px;
}

.divider {
  text-align: center;
  margin: 15px 0px 10px 0px;
}

/* Submenu for Desktop */
.subMenuDesktop {
  flex: 0 0 100%;
  width: 700px;
  margin: 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
  display: none;
}

.subMenuDesktop ul {
  display: flex;
  justify-content: center;
}

.subMenuDesktop li {
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}

.mainWithSub {
  flex-wrap: wrap;
}

.bagMenuContainer {
  background-color: white;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  box-shadow: 0 0 8px #dedddd;
  padding: 0 10px 20px;
  width: 285px;
}

.rotatedSquare {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 5px;
  top: -5px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: white;
  border: 1px solid #c6c6c6;
}

.rotatedSquare2 {
  background-color: white;
  height: 20px;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 40px;
}

#aloneBagMenu .rotatedSquare, #aloneBagMenu .rotatedSquare2 {
  display: intial;
}
@media (min-width: 767px) {
  #aloneBagMenu .rotatedSquare, #aloneBagMenu .rotatedSquare2 {
    display: none;
  }
}

#togethernessBagMenu .rotatedSquare, #togethernessBagMenu .rotatedSquare2 {
  display: none;
}
@media (min-width: 767px) {
  #togethernessBagMenu .rotatedSquare, #togethernessBagMenu .rotatedSquare2 {
    display: initial;
  }
}

.bagMenuContainer {
  text-align: left;
}

.emptyFull {
  font-size: 12px;
  position: absolute;
  right: -60px;
  color: #14679b;
}

.emptyFull:hover {
  cursor: pointer;
}

.emptyBagMessage {
  padding-top: 30px;
  font-family: PT serif;
  text-align: center;
  font-size: 18px;
  color: #adadad;
}

.bagFull {
  display: none;
}

.bagMenuCart {
  min-height: 90px;
  margin-top: 15px;
  border-bottom: 1px solid #c6c6c6;
  width: 100%;
}

.bagCartItem {
  display: flex;
  margin-bottom: -5px;
  align-items: center;
}

.bagCartItem a, .bagCartItem .hideShowShippingAccountText {
  flex: 1 1 85%;
}

.bagCartItem p {
  flex: 1 1 10%;
}

.bagTotalContainer {
  font-weight: bold;
  text-align: right;
}

.bagTotal {
  font-weight: normal;
}

.viewBagButton {
  margin: -2px auto 10px auto;
  display: block;
  width: 92%;
}

.bagLink {
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 10px;
  padding-top: 10px;
}

.bagMenuContainer a:hover, .bagMenuContainer .hideShowShippingAccountText:hover {
  box-shadow: none !important;
  text-decoration: underline !important;
}

.bagLink button {
  height: 40px;
  line-height: 20px;
}

.contactUsElement {
  padding-top: 5px;
}

.contactUsExpand {
  display: none;
}

#professionalsSub .separator {
  display: none;
}

.menuAnchor {
  width: 10px;
  height: 10px;
  position: relative;
}

.product_row {
  margin-bottom: 10px;
  display: flex;
}

.bagMenuCart .product_name {
  display: block;
  margin-right: 13px;
}

.subtotal_with_tax {
  margin-left: auto;
}

.bagMenuUserLoggedInMessage {
  text-align: left;
  margin-top: 7px;
  font-weight: bold;
}

.show_cart a:hover, .show_cart .hideShowShippingAccountText:hover {
  text-decoration: none !important;
}

li.divider {
  margin: 0;
}

li.divider .separator {
  font-size: 20px;
}

li.divider .leftHeading {
  display: block;
  padding: 10px 0 5px;
}

.bgHome {
  background-color: #1E415D;
  background: url("/images/home/homeBanner.jpg");
  height: 470px;
  background-repeat: no-repeat;
}
@media (min-width: 767px) {
  .bgHome {
    background-position: top center;
  }
}

@media (max-width: 500px) {
  .bgHome {
    background-color: #1E415D;
    background: url("/images/home/bannerSmallTall.png");
    height: 100%;
    background-repeat: no-repeat;
  }

  .chartReports {
    height: 100vh;
  }

  .home .colmn {
    margin-top: -50px;
  }
}
.chart {
  background-image: url("/images/home/chartWithRays.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .chart {
    background-size: 530px auto;
  }
}

@media (max-width: 767px) {
  .chart {
    display: none;
  }
}
.home h1 {
  color: white;
  text-shadow: 1px 1px 4px #1f4865;
  padding-bottom: 15px;
}

.home h4 {
  text-shadow: 1px 1px 4px #1f4865;
  color: white;
  font-family: "Open Sans";
  line-height: 1.8em;
  font-weight: lighter;
  margin-top: 20px;
}

.home a:hover, .home .hideShowShippingAccountText:hover {
  text-decoration: none;
}

.price {
  color: firebrick;
  margin-right: 5px;
}

.productTitle {
  flex: 1 1 100%;
  padding: 15px 0 25px;
}

.productImage {
  flex: 1 1 100%;
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .productImage {
    flex: 1 1 450px;
    max-width: initial;
    margin: initial;
    margin-top: 10px;
  }
}

.productImage img {
  max-width: 303px;
  max-height: 403px;
}
@media (min-width: 992px) {
  .productImage img {
    margin-left: 100px;
  }
}
@media (min-width: 1200px) {
  .productImage img {
    margin-left: 150px;
  }
}

.productInfo {
  align-items: center;
  flex: 1 1 400px;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .productInfo {
    flex: 1 1 200px;
  }
}
@media (min-width: 992px) {
  .productInfo {
    align-items: flex-start;
  }
}

.productInfo p {
  padding: 5px 10px;
}

.rptProdChartInfo {
  margin-bottom: 20px;
}

.rptBox {
  display: none;
  margin: 10px;
}

.rptLoggedIn {
  display: none;
  max-height: 340px;
  overflow-y: scroll;
  padding-bottom: 5px;
}

.rptChartSection {
  display: none;
}

.reportProdMyCharts {
  overflow: hidden;
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  max-height: 215px;
  padding: 0 5px;
}

.reportProdMyCharts a, .reportProdMyCharts .hideShowShippingAccountText {
  margin: 7px 0;
}

.addReportToCart {
  text-align: center;
  margin: 0 15px;
}

.reportProductBackOne {
  flex: 1 1 100%;
  margin-bottom: -10px;
  background: url("/images/site/leftArrow.png");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: 5px 2px;
  height: 25px;
  padding-left: 24px;
  margin-top: -68px;
  margin-left: -5px;
}
@media (min-width: 600px) {
  .reportProductBackOne {
    margin-top: -35px;
    margin-left: 0px;
    margin-bottom: -5px;
  }
}

.reportProductTeaser {
  text-align: left;
}

.someMargin {
  margin-bottom: 5px;
}

.productQuantity {
  margin-left: 15px;
  width: 35px;
  text-align: center;
  padding: 0;
}

.buyProductButton {
  margin-left: 7px;
  margin-top: 2px;
}

.prodCategoryProd {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 10px;
  border: none;
}
@media (min-width: 992px) {
  .prodCategoryProd {
    border-top: 1px solid #efefef;
    padding-top: 15px;
  }
}

.prodCategoryProd .shortDescription {
  flex: initial;
}
@media (min-width: 992px) {
  .prodCategoryProd .shortDescription {
    flex: 1 0 100%;
  }
}

.catProductTitle {
  margin: 0 auto 0 0;
  display: none;
}
@media (min-width: 992px) {
  .catProductTitle {
    padding-left: 10px;
    display: initial;
    text-decoration: none;
    font-family: "PT Serif";
    font-weight: normal;
    text-align: center;
  }
}

.catProductTitle a, .catProductTitle .hideShowShippingAccountText {
  font-size: 20px;
}

.catProductTitle:hover {
  cursor: pointer;
}

.prodCatOne {
  flex: 1 1 10%;
  text-align: center;
}

.prodCatTwo {
  flex: 1 1 80%;
  display: flex;
  flex-wrap: wrap;
}

.categoryTitle {
  margin: 7px 0;
  padding: 10px;
  flex: 1 1 100%;
}

.mobileCatProductTitleContainer {
  border-top: 1px solid #efefef;
  flex: 1 1 100%;
  padding-top: 5px;
  margin: 0 0 10px 0;
  display: initial;
  font-size: 18px;
}
@media (min-width: 992px) {
  .mobileCatProductTitleContainer {
    display: none;
  }
}

.mobileCatProductTitleContainer h5 {
  color: #14679b;
}

.mobileCatProductTitle:hover {
  cursor: pointer;
}

.prodCategoryView {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.catBuyProductButton {
  margin-right: auto;
}
@media (min-width: 600px) {
  .catBuyProductButton {
    margin-right: 0;
  }
}

.catProductImageContainter {
  margin: 12px auto 0;
}
@media (min-width: 600px) {
  .catProductImageContainter {
    margin: 12px auto 0;
    margin-right: 7px;
  }
}
@media (min-width: 992px) {
  .catProductImageContainter {
    margin: 12px 10px 0px 6px;
  }
}

.calculate {
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.calculate input, .calculate select, .calculate button, .calculate .selectize-control {
  height: 50px;
  flex: 1 1 180px;
  margin: 9px;
  border: 1px solid #c6c6c6;
}

.calculate button {
  flex: 1 1 100%;
}
@media (min-width: 600px) {
  .calculate button {
    flex: 1 1 163px;
  }
}

.calculate .selectize-control {
  flex: 1 1 165px;
}

.calculate .combodate .selectize-control {
  flex: 1 1 80px;
}

.calculate .floatlabel-wrapper {
  display: flex;
  flex: 1 1 280px;
}

.calculate .selectize-control {
  border: none;
  text-align: left;
}

.selectize-control.single .selectize-input {
  background-color: white;
  background-image: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.selectize-input .item {
  font-size: 16px;
  color: #2d2d2d;
  text-align: left;
  line-height: 50px;
}

.selectize-control.single .selectize-input::after {
  display: none;
}

.selectize-input {
  padding: 0 0 0 8px;
  height: 50px;
}

.selectize-dropdown, .selectize-input, .selectize-input input {
  font-size: 16px;
  line-height: 20px;
}

.calculate select {
  font-size: 16px;
}

.label-floatlabel {
  left: 16px !important;
  top: 11px !important;
  font-weight: normal !important;
}

.myChartsList {
  display: flex;
  flex-direction: column;
}

.myChartsList .newChartButton {
  margin: 25px auto 5px;
}

.myChartsItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  margin-bottom: 7px;
  border-bottom: 1px solid #efefef;
}

.myChartsItem p {
  text-align: center;
  vertical-align: bottom;
  align-self: flex-end;
}

p.myChartsItem {
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ffffff));
  background: -webkit-linear-gradient(top, #f8f8f8, #ffffff);
  background: -moz-linear-gradient(top, #f8f8f8, #ffffff);
  background: -ms-linear-gradient(top, #f8f8f8, #ffffff);
  background: -o-linear-gradient(top, #f8f8f8, #ffffff);
  background: linear-gradient(top, #f8f8f8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#f8f8f8", end-colourStr="#ffffff");
  border: 1px solid #c6c6c6;
  border-radius: 2px;
  margin: 10px;
  padding-bottom: 20px;
}
@media (min-width: 767px) {
  p.myChartsItem {
    border: none;
    border-bottom: 1px solid #efefef;
    background: none;
    margin: 0;
    padding-bottom: 10px;
  }
}

.buyDimmer {
  opacity: 0.6;
}

.nameField {
  flex: 1 1 40%;
  text-align: center;
}
@media (min-width: 767px) {
  .nameField {
    text-align: left !important;
  }
}

.bodygraphField, .profileField {
  flex: 1 1 10%;
}

.chartField {
  flex: 1 1 7%;
}

.deleteField {
  flex: 1 1 0.5%;
  display: inline-block;
}

.deleteField a, .deleteField .hideShowShippingAccountText {
  -webkit-filter: brightness(100%);
  background-image: url("/images/site/x.png");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position-y: 4px;
  height: 22px;
  width: 22px;
  display: inline-block;
}

.myChartsItem .deleteField a:hover, .myChartsItem .deleteField .hideShowShippingAccountText:hover {
  cursor: pointer;
  -webkit-filter: brightness(60%);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}

span.chartField,
span.mobileChartField,
span.bodygraphField,
span.mobileBodygraphField,
span.profileField,
span.mobileProfileField {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #efefef;
}

.chartField .viewChart,
.mobileChartField .viewChart,
.bodygraphField .viewBodygraph,
.mobileBodygraphField .viewBodygraph,
.profileField .viewProfile,
.mobileProfileField .viewProfile {
  margin-right: 5px;
}

.downloadChart {
  -webkit-filter: brightness(100%);
  background-image: url("/images/site/downloadArrow.png");
  background-repeat: no-repeat;
  height: 22px;
  width: 20px;
  background-size: 15px;
  display: inline-block;
  margin-left: 5px;
  background-position-y: 3px;
}

.downloadChart:hover {
  cursor: pointer;
  -webkit-filter: brightness(60%);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}

.myChartsHeaders .deleteField {
  background: none;
}

.mobileChartField,
.mobileBodygraphField,
.mobileProfileField,
.mobileDeleteField,
span.mobileChartField,
span.mobileBodygraphField,
span.mobileProfileField {
  display: none;
}

@media (max-width: 766px) {
  .chartField,
.bodygraphField,
.profileField,
.myChartsHeaders .nameField,
.deleteField,
span.chartField,
span.bodygraphField,
span.profileField {
    display: none;
  }

  .mobileChartField, .mobileBodygraphField, .mobileProfileField, .nameField, .mobileDeleteField {
    display: initial;
    flex: 1 1 100%;
    background-size: 20px;
    margin-top: 10px;
  }

  span.mobileChartField, span.mobileBodygraphField, span.mobileProfileField {
    display: flex;
  }

  .nameField {
    font-weight: bold;
  }
}
.mobileDeleteField {
  background-image: url("/images/site/x.png");
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -65px;
  background-size: 15px;
  background-position-y: 4px;
}

.mobileDeleteFieldText {
  margin-left: 75px;
}

.bgChartReports {
  background-color: black;
  background: url("/images/chartReport/banner.jpg");
  height: 470px;
  background-repeat: no-repeat;
  background-position: top center;
}

@media (max-width: 767px) {
  .chartReportsRight {
    display: none;
  }
}
@media (max-width: 500px) {
  .bgChartReports {
    background: url("/images/chartReport/bannerSmallTall.jpg");
    height: 942px;
    background-repeat: no-repeat;
  }

  .ChartReports .colmn {
    margin-top: -50px;
  }
}
@media (min-width: 767px) {
  .chartReportsRight {
    flex: 1 1 520px;
  }
}
@media (min-width: 992px) {
  .chartReportsRight {
    flex: 1 1 320px;
  }
}

.chartReportsTeasers {
  flex-wrap: wrap;
}

.viewChartTeaserContainer {
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
}

.viewChartTeaserContainer .reportTeaser {
  flex: 1 1 320px;
}

.viewChartTeaserContainer .btn2, .viewChartTeaserContainer #proopc-order-submit, .viewChartTeaserContainer #proopc-task-loginajax, .viewChartTeaserContainer .vm-button-correct, .viewChartTeaserContainer #proopc-task-registercheckout, .viewChartTeaserContainer .btn2Sm, .viewChartTeaserContainer .show_cart a, .show_cart .viewChartTeaserContainer a, .viewChartTeaserContainer .show_cart .hideShowShippingAccountText, .show_cart .viewChartTeaserContainer .hideShowShippingAccountText, .viewChartTeaserContainer #proopc-task-savecoupon, .viewChartTeaserContainer .btn2Lg {
  order: 3;
}

#viewChart, #viewChart .viewChartContainer {
  margin: 0 auto;
  padding: 0 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 1200px) {
  #viewChart, #viewChart .viewChartContainer {
    flex-direction: row-reverse;
  }
}

#viewChart {
  padding: 0px 0px 20px 0px;
}
@media (min-width: 767px) {
  #viewChart {
    padding: 0 20px 20px 20px;
  }
}

#viewChart .viewChartContainer {
  padding: 0px 0px 20px 0px;
}
@media (min-width: 767px) {
  #viewChart .viewChartContainer {
    padding: 0 20px 20px 20px;
  }
}

#viewChart h1 {
  flex: 1 1 100%;
  padding-bottom: 25px;
}

#viewChart img {
  transform: scale(1.2);
  height: auto;
  max-width: 750px;
  max-height: 503px;
  width: 100%;
}
@media (min-width: 767px) {
  #viewChart img {
    transform: scale(1);
  }
}

#viewChart .chartInfo {
  flex: 1 1 300px;
  margin-top: 30px;
}
@media (min-width: 767px) {
  #viewChart .chartInfo {
    margin-top: 10px;
  }
}

.chartInfo p {
  border-color: transparent -moz-use-text-color;
  border-image: linear-gradient(to left, #f8f8f8 0%, #b7b7b7 100%) 1 1 1 1;
  border-style: solid none;
  border-width: 0 0 1px;
  margin-left: 25px;
  padding-bottom: 6px;
  text-align: left;
  margin-top: -5px;
}

.chartContainer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  padding-bottom: 10px;
  margin-bottom: 17px;
}
@media (min-width: 600px) {
  .chartContainer {
    margin-top: 10px;
  }
}

.orhgho1 {
  order: 2;
}

.orhgho2 {
  order: 1;
  margin-top: 60px;
}
@media (min-width: 600px) {
  .orhgho2 {
    margin-top: 50px;
  }
}

.orhgho3 {
  order: 3;
}

@media (min-width: 767px) {
  .chartContainer {
    flex-direction: row;
  }

  .chartInfo p {
    margin-top: 0px;
  }

  .orhgho1 {
    order: 1;
    margin-top: 40px;
  }

  .orhgho2 {
    order: 2;
  }

  .orhgho3 {
    order: 3;
  }
}
@media (min-width: 994px) {
  .orhgho1 {
    margin-top: 50px;
  }
}
.calculateAgain {
  position: absolute;
  background: url("/images/site/leftArrowSprite.png");
  background-size: 4%;
  background-repeat: no-repeat;
  background-position: 6px 4px;
  height: 19px;
  margin-left: 10px;
  margin-top: 14px;
  font-size: 16px;
  color: #9D9D9D;
  line-height: 23px;
}

.calculateAgain:hover {
  background: url("/images/site/leftArrowSprite.png");
  background-size: 4%;
  background-repeat: no-repeat;
  background-position: 6px -15px;
}

.calculateAgain a, .calculateAgain .hideShowShippingAccountText {
  margin-left: 25px;
  margin-right: 5px;
  vertical-align: text-top;
}

.calculateAgain a:hover, .calculateAgain .hideShowShippingAccountText:hover {
  cursor: pointer;
}

.calculateAgain .newChart {
  margin-left: 5px;
}

.chartButtons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  padding: 10px;
}

.theButtonsThemselves {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.theButtonsThemselves a, .theButtonsThemselves .hideShowShippingAccountText {
  margin-top: 8px;
  padding: 0 10px;
}

.chartReportLoginOrCreateAccountText {
  display: none;
}

.chartImage {
  flex: 1 1 420px;
}

.chartImage img.ravechart {
  width: 120%;
}
@media (min-width: 767px) {
  .chartImage img.ravechart {
    width: 100%;
  }
}

.chartInfoName {
  margin-bottom: -10px;
}

.reportTeaser {
  z-index: 5;
  flex: 1 1 320px;
  align-content: flex-start;
}

.reportTeaser > * {
  margin: 7px 0px;
}

.firstBuyButton {
  text-align: center;
  width: 77%;
  font-size: 1em;
}
@media (max-width: 400px) {
  .firstBuyButton {
    margin: 0 15px;
  }
}
@media (min-width: 992px) {
  .firstBuyButton {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .firstBuyButton {
    font-size: 1em;
  }
}

.teaserInfoSection {
  margin: 15px 7px 7px 0;
  paddding-top: 10px;
  padding-bottom: 20px;
}

.teaserInfoSection .btn2, .teaserInfoSection #proopc-order-submit, .teaserInfoSection #proopc-task-loginajax, .teaserInfoSection .vm-button-correct, .teaserInfoSection #proopc-task-registercheckout, .teaserInfoSection .btn2Sm, .teaserInfoSection .show_cart a, .show_cart .teaserInfoSection a, .teaserInfoSection .show_cart .hideShowShippingAccountText, .show_cart .teaserInfoSection .hideShowShippingAccountText, .teaserInfoSection #proopc-task-savecoupon, .teaserInfoSection .btn2Lg {
  margin-top: 10px;
  font-size: 1em;
}
@media (min-width: 992px) {
  .teaserInfoSection .btn2, .teaserInfoSection #proopc-order-submit, .teaserInfoSection #proopc-task-loginajax, .teaserInfoSection .vm-button-correct, .teaserInfoSection #proopc-task-registercheckout, .teaserInfoSection .btn2Sm, .teaserInfoSection .show_cart a, .show_cart .teaserInfoSection a, .teaserInfoSection .show_cart .hideShowShippingAccountText, .show_cart .teaserInfoSection .hideShowShippingAccountText, .teaserInfoSection #proopc-task-savecoupon, .teaserInfoSection .btn2Lg {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .teaserInfoSection .btn2, .teaserInfoSection #proopc-order-submit, .teaserInfoSection #proopc-task-loginajax, .teaserInfoSection .vm-button-correct, .teaserInfoSection #proopc-task-registercheckout, .teaserInfoSection .btn2Sm, .teaserInfoSection .show_cart a, .show_cart .teaserInfoSection a, .teaserInfoSection .show_cart .hideShowShippingAccountText, .show_cart .teaserInfoSection .hideShowShippingAccountText, .teaserInfoSection #proopc-task-savecoupon, .teaserInfoSection .btn2Lg {
    font-size: 1em;
  }
}

.teaserInfoSection img {
  float: left;
  margin: 0 10px 10px 0;
}

.mobileExpand .teaserInfoSection {
  margin-left: 7px;
}

.chartReportsTeasers .teaserShrunk {
  background: url("/images/site/Arrow.png");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: right center;
  margin-right: 20px;
}
@media (min-width: 767px) {
  .chartReportsTeasers .teaserShrunk {
    background: none;
  }
}

.chartReportsTeasers .teaserShrunk p {
  padding-right: 55px;
}
@media (min-width: 767px) {
  .chartReportsTeasers .teaserShrunk p {
    padding-right: 10px;
  }
}

.chartReportsTeasers .teaserShrunk p:first-child {
  padding-right: 10px;
}

.chartReportsTeasers .teaserReadMoreLess {
  display: none;
}
@media (min-width: 767px) {
  .chartReportsTeasers .teaserReadMoreLess {
    display: initial;
  }
}

.rptChartSectionContainer .teaserReadMoreLess {
  display: initial;
}

.rptProductTitle {
  padding-top: 20px;
}
@media (min-width: 600px) {
  .rptProductTitle {
    padding-top: 0px;
  }
}

.mobileExpand {
  display: none;
  margin: 0 auto;
}

.goBack {
  background: url("/images/site/leftArrow.png");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: 5px 2px;
  height: 25px;
  margin-top: 10px;
}

.goBack:hover {
  cursor: pointer;
}

.goBack a, .goBack .hideShowShippingAccountText {
  margin-left: 25px;
}

.login input {
  border: 1px solid #c6c6c6;
  margin: 9px;
}

.login .floatlabel-wrapper {
  display: flex;
  flex: 1 1 180px;
}

.login button {
  margin: 9px;
  flex: 1 1 299px;
}
@media (min-width: 992px) {
  .login button {
    height: 50px;
  }
}

.loginFields {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 299px;
}

.loginFields a, .loginFields .hideShowShippingAccountText {
  flex: 0 0 100%;
  margin: -6px 0 0 15px;
  font-size: 12px;
  text-align: left;
  padding: 0;
}

.chartCalculatorLogin {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
}

.chartCalculatorLogin > * {
  flex: 1 1 180px;
}

.chartCalculatorLogin button {
  width: 100%;
}

.createAccount input {
  border: 1px solid #c6c6c6;
}

.createAccount .floatlabel-wrapper {
  display: flex;
  margin: 9px;
}

.createAccount button {
  margin: 9px;
}

.classesCatItem {
  border-bottom: 1px solid #efefef;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}

.classesItemTitle {
  flex: 1 1 100%;
  margin: 0;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 767px) {
  .classesItemTitle {
    text-align: left;
    font-weight: normal;
  }
}

.classesItemTitleSubhead {
  font-style: italic;
  padding: 0;
  text-align: center;
}
@media (min-width: 767px) {
  .classesItemTitleSubhead {
    text-align: left;
  }
}

.classesCatClassSectionTwo {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}

.classCatOne {
  flex: 1 1 10%;
  padding-top: 15px;
  text-align: center;
  display: none;
}

.classCatTwo {
  flex: 1 1 70%;
  margin-bottom: -10px;
}
@media (min-width: 992px) {
  .classCatTwo {
    flex: 1 1 80%;
  }
}

.classesCatImageFloat {
  float: left;
  padding: 7px 15px 0 0;
}

.classesCatClassSectionThree {
  margin-top: 5px;
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 767px) {
  .classesCatClassSectionThree {
    justify-content: flex-end;
  }
}

.classesItemTitle a, .classesItemTitle .hideShowShippingAccountText {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
}

.classesCatDate {
  font-weight: bold;
}

.classesItemTitleSubhead {
  width: 100%;
}

.classesCatPrice {
  color: firebrick;
  flex: 1 1 100%;
  text-align: center;
  padding-top: 5px;
}
@media (min-width: 600px) {
  .classesCatPrice {
    padding-top: 10px;
    flex: initial;
    text-align: left;
  }
}

.classesCatMore {
  margin: auto;
}
@media (min-width: 767px) {
  .classesCatMore {
    margin: 0;
  }
}

.classesCatMore:hover {
  text-decoration: none;
}

.simpleBodygraph {
  width: 100%;
  margin: auto;
  max-height: 590px;
  max-width: 593px;
  display: initial;
}
@media (min-width: 767px) {
  .simpleBodygraph {
    display: none;
  }
}

.fancyBodygraph {
  display: none;
}
@media (min-width: 767px) {
  .fancyBodygraph {
    display: initial;
  }
}

.fourTypesText {
  text-align: left;
  flex: 1 1 320px;
  padding-left: 20px;
}

.fourTypes img {
  width: 100%;
  margin-top: 10px;
}

.generator, .manGenerator, .projector, .manifestor, .reflector {
  display: none;
}

.types img {
  float: right;
  height: auto;
  width: 300px;
}

.fourTypesB {
  cursor: pointer;
  font-family: pt serif;
  margin: 10px 0 0;
  text-align: center;
  font-size: 20px;
}

.typeColmnContainer {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.typeColmnContainer img {
  width: 300px;
  height: 303px;
}

.whatIsTypeContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whatIsTypeImage {
  height: auto;
  margin: 0 auto;
  width: 98%;
}

.genEdHeader {
  font-weight: bold;
  text-align: center;
}

.genEdPanel {
  margin: 10px;
}

.mailTo {
  color: #14679b;
}

.teacherBioPic {
  border-radius: 4px;
  box-shadow: 0 1px 5px #6e6e6e;
  float: right;
  height: auto;
  margin: 12px 8px 5px 20px !important;
  right: 0;
  top: 0;
  width: 200px;
  display: none;
}
@media (min-width: 767px) {
  .teacherBioPic {
    display: initial;
  }
}

.teacherBioPicAlone {
  border-radius: 4px;
  box-shadow: 0 1px 5px #6e6e6e;
  width: 200px;
  height: auto;
  align-self: center;
  display: initial;
}
@media (min-width: 767px) {
  .teacherBioPicAlone {
    display: none;
  }
}

.teacherPanel {
  display: flex;
  flex-direction: column;
  margin: 10px;
  border-bottom: 1px solid #efefef;
}

.classSubhead {
  font-style: italic;
}

.classItemImageAlone {
  margin: 10px 10px 0;
  display: initial;
  border-radius: 4px;
  box-shadow: 0 1px 5px #6e6e6e;
  width: 95%;
  height: 95%;
}
@media (min-width: 767px) {
  .classItemImageAlone {
    display: none;
  }
}

.classItemImageInside {
  margin: 12px 8px 5px 20px !important;
  display: none;
  border-radius: 4px;
  box-shadow: 0 1px 5px #6e6e6e;
  float: right;
}
@media (min-width: 767px) {
  .classItemImageInside {
    display: initial;
  }
}

.classesFields div {
  margin: 5px;
  flex: 1 1 400px;
}

.classPrice {
  color: firebrick;
}

.classesFields {
  margin-bottom: 20px;
}

.classesFields p {
  border-bottom: 1px solid #efefef;
}

.classPaypal {
  line-height: 23px;
  padding: 10px;
  text-align: center;
}

.classPaypal a, .classPaypal .hideShowShippingAccountText {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: white;
}

.classItemHeading {
  width: 100%;
  padding: 0 5px;
}

.profItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 7px;
}

.profItem p {
  text-align: left;
  vertical-align: bottom;
  padding: 0;
}

.profItem a, .profItem .hideShowShippingAccountText {
  text-align: left;
}

.profNameField {
  flex: 1 1 16%;
  text-align: left;
  color: #2d2d2d;
  padding-top: 6px;
}
@media (min-width: 600px) {
  .profNameField {
    text-align: left;
    padding-top: 0;
  }
}

.profCatItem.profHeaders {
  padding-bottom: 10px;
}

.profTypeField {
  flex: 1 1 20%;
}

.profLocationField {
  flex: 1 1 46%;
}

.profProfileField {
  flex: 1 1 7%;
}

.profHeaders {
  margin: 0 30px;
}
@media (min-width: 600px) {
  .profHeaders {
    margin: 10px 0 0 0;
  }
}

.mobileProfProfileField, .mobileProfTypeField, .mobileProfLocationField {
  display: none;
}

@media (max-width: 599px) {
  .profProfileField, .profTypeField, .profLocationField, .profHeaders .profNameField {
    display: none;
  }

  .mobileProfLocationField, .profNameField {
    display: initial;
    flex: 1 1 100%;
  }

  .mobileProfTypeField {
    flex: 1 1 48%;
    display: initial;
  }

  .mobileProfProfileField {
    display: initial;
    flex: 0 1 37px;
  }
}
.profCatItem {
  padding: 0;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

.profItemOnly {
  margin-left: 30px;
  margin-right: 30px;
  background-image: url("/images/site/Arrow.png");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right center;
}
@media (min-width: 600px) {
  .profItemOnly {
    padding: 10px 0;
    margin: initial;
    background: initial;
  }
}

.profItemOnly:hover {
  cursor: pointer;
  text-decoration: underline;
}

.profHeaders p {
  font-weight: bold;
  padding: 5px;
}

.profHeaderArrow {
  background-image: url("/images/site/downArrow.jpg");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right center;
  width: 20px;
  height: 10px;
  display: inline-block;
  margin-left: 4px;
}

.profImageChartalone img {
  width: 250px;
  height: auto;
  margin: 10px 10px 0;
  display: initial;
  border-radius: 4px;
  box-shadow: 0 1px 5px #6e6e6e;
}
@media (min-width: 767px) {
  .profImageChartalone img {
    display: none;
  }
}

.profImageChartInside {
  float: right;
  width: 100%;
}
@media (min-width: 767px) {
  .profImageChartInside {
    display: inline-block;
    background: white;
    margin-left: 7px;
    width: 250px;
  }
}

.profImageChartInside img {
  margin: 0px 8px 5px 20px;
  width: 250px;
  display: none;
  border-radius: 4px;
  box-shadow: 0 1px 5px #6e6e6e;
}
@media (min-width: 767px) {
  .profImageChartInside img {
    display: initial;
  }
}

.viewProfChart {
  width: 250px;
  margin: -5px 0 20px 0;
}
@media (min-width: 767px) {
  .viewProfChart {
    margin: 0px 8px 5px 20px;
  }
}

.profItemInfoLine {
  display: block;
  border-bottom: 1px solid #efefef;
  width: 100%;
  padding: 7px 0;
}

.profCertifications p {
  text-align: center;
}

.profCertificationsImg {
  display: flex;
}

.profCertificationsImg img {
  width: 100px;
  height: 75px;
  margin: 0 auto;
  padding-top: 0;
}
@media (min-width: 600px) {
  .profCertificationsImg img {
    padding-top: 10px;
  }
}

.profCertificationSection {
  margin-bottom: 20px;
  flex-direction: column-reverse;
}

.profItemView p {
  width: 100%;
}

.mandalaColmn {
  flex: 1 1 100%;
}

.mandalaColmn img {
  max-width: 95%;
}
@media (min-width: 600px) {
  .mandalaColmn img {
    max-width: 55%;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .nineCentersImage {
    max-width: 75% !important;
  }
}
.accountInfoContainer {
  max-width: 686px;
  margin: 0 auto;
}

.accountInfoNotLoggedIn {
  display: none;
}

.accountInfoPanel .floatlabel-wrapper {
  display: flex;
  flex: 1 1 300px;
}

.accountInfoRow .selectize-control {
  flex: 1 1 283px;
  height: 50px;
  margin: 9px;
}

.accountInfoRow {
  display: flex;
  flex-wrap: wrap;
}

.accountInfoRow input {
  flex: 1 1 250px;
  height: 50px;
  margin: 9px;
}

.updateAccountInfoButton {
  width: 100%;
  margin: 10px 10px;
  height: 50px;
}

.accountInfoLoggedIn h5 {
  margin-bottom: 5px;
}

.orderListHeaderPanel, .orderListItemPanel {
  display: flex;
  align-items: center;
}

.orderListOrderNumber {
  flex: 1 1 18%;
}

.orderListDate {
  flex: 1 1 15%;
}

.orderListStatus {
  flex: 1 1 10%;
  display: none;
}
@media (min-width: 600px) {
  .orderListStatus {
    display: initial;
  }
}

.orderListTotal {
  flex: 1 1 5%;
}

.orderListItemPanel, .orderListHeaderPanel {
  border-bottom: 1px solid #efefef;
}

.orderItemInfo p, .orderItemShipTo {
  font-weight: bold;
}

.orderItemInfo span {
  font-weight: normal;
}

.orderItemInfo {
  flex: 1 1 50%;
}

.orderItemContact {
  flex: 1 1 100%;
  align-self: center;
}
@media (min-width: 600px) {
  .orderItemContact {
    flex: 1 1 40%;
  }
}

.orderItemContact p, .orderItemInfo p {
  padding: 3px 10px;
  border-bottom: 1px solid #efefef;
  margin-right: 10px;
}

.orderItemInfoPMaxWidth {
  max-width: 100%;
}
@media (min-width: 600px) {
  .orderItemInfoPMaxWidth {
    max-width: 360px;
  }
}

.orderItemContainer {
  display: flex;
  flex-wrap: wrap;
  max-width: 875px;
  margin: 0 auto;
}

.orderItemContainer h1 {
  flex: 1 1 100%;
  padding: 10px 0 20px;
}

.orderItemCartPanel {
  margin-top: 5px;
  flex: 1 1 100%;
}

.orderItemItems {
  flex: 1 1 40%;
  padding-bottom: 0px;
  font-weight: bold;
}

.orderItemsQty {
  flex: 0 1 45px;
}

.orderItemsPrice {
  flex: 0 1 50px;
}

.orderItemItemPanel {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
  flex-wrap: wrap;
}

.orderItemComments {
  flex: 1 1 100%;
  word-wrap: break-word;
  max-width: 95%;
  margin: 5px 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 600px) {
  .orderItemComments {
    justify-content: flex-start;
  }
}

.orderItemComments a, .orderItemComments .hideShowShippingAccountText {
  padding: 4px 35px !important;
}

.orderItemDownloadLinkContainer {
  flex: 1 1 100%;
  padding-top: 0px;
}

.subClick {
  color: #14679b;
  font-size: 14px;
  margin: 25px auto 5px;
  width: 250px;
}

.subClick:hover {
  text-decoration: underline;
  cursor: pointer;
}

.Sub input {
  box-shadow: none !important;
  height: 35px;
  font-size: 16px;
}

.unlink a, .unlink .hideShowShippingAccountText {
  color: #2d2d2d;
}

#enterEmail {
  height: 35px;
  width: 190px;
}

.orderConfirmationOrderInfo p {
  padding: 3px 10px;
}

.orderConfirmationContainer {
  justify-content: center;
}

.orderConfirmationContainer .orderItemCartPanel {
  border: none;
}

.genEdPanel {
  border-top: 1px solid #efefef;
}

.nineCentersImage {
  margin-top: 10px;
  width: 95%;
}

.myReportsNoReports p {
  text-align: center;
}

.addtocart-area {
  flex: 1 1;
}

.catProdprice {
  color: firebrick;
  align-items: center;
  display: flex;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .catProdprice {
    margin: 0 0 0 auto;
  }
}

.addtocart-button {
  margin-left: 10px;
}

.quantity-box {
  display: flex;
}

.subMeat .myForms {
  width: 320px;
}

.subMeat {
  position: relative;
  display: none;
}

.professionalsCat {
  width: 100%;
  padding: 10px;
}

.combodate {
  display: flex;
  flex: 1 1 280px;
}

.featherlight-content {
  border-radius: 5px;
}

.featherlight-close-icon {
  top: 5px !important;
  right: 4px !important;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px white inset;
  -webkit-text-fill-color: #333;
}

#ui-tabs > ul,
#tab-1 > fieldset,
#tab-1 #username_field {
  display: none;
}

#tab-1 input {
  height: 50px;
  width: 100%;
}

#tab-1 .floatlabel-wrapper, #tab-1 .selectize-control, #tab-1 #virtuemart_state_id_field {
  flex: 1 1 250px;
  margin: 7px;
}

#tab-1 {
  display: flex !important;
  flex-wrap: wrap;
  max-width: 790px;
  margin: 0 auto;
}

#tab-1 h5 {
  width: 100%;
  margin-bottom: 10px !important;
}

#tab-1 .emailField {
  flex: 1 1 100%;
}

#tab-1 .label-floatlabel {
  top: 3px !important;
  left: 6px !important;
}

.ordersListContainer {
  max-width: 875px;
  margin: 0 auto;
}

#ui-tabs .tabs {
  padding-top: 5px;
}

.subMeat {
  width: 250px;
  margin: 25px auto 5px;
}

.subMeat input {
  width: 100%;
  height: 50px;
}

.subMeat form > * {
  margin: 7px;
  width: 100%;
}

.footer-header {
  padding-bottom: 3px;
  text-align: left;
  padding-left: 9px;
  display: flex;
}

.footerx {
  display: inline-block;
  height: 20px;
  width: 20px;
  background: url(/images/site/x.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 0px 4px;
  margin-left: 6px;
  -webkit-filter: brightness(100%);
}

.footerx:hover {
  cursor: pointer;
  -webkit-filter: brightness(60%);
  transition: all 200ms;
}

.subMeat #submit {
  margin-top: 3px;
  margin-bottom: 15px;
}

.footer-facebook {
  margin-bottom: 15px;
}

.footer-facebook a, .footer-facebook .hideShowShippingAccountText {
  font-size: 14px;
}

.footer-facebook img {
  margin-right: 3px;
}

.subMeat .label-floatlabel {
  top: 2px !important;
  left: 6px !important;
}

.orderItemPanelHeaders > * {
  font-weight: bold;
}

p.reportLink {
  width: 100%;
  padding: 3px 10px 5px;
}

.orderItemPrice {
  width: 50px;
}

.standalone-login h1 {
  width: 100%;
  margin-bottom: 10px !important;
}

.standalone-login .btn2, .standalone-login #proopc-order-submit, .standalone-login #proopc-task-loginajax, .standalone-login .vm-button-correct, .standalone-login #proopc-task-registercheckout, .standalone-login .btn2Sm, .standalone-login .show_cart a, .show_cart .standalone-login a, .standalone-login .show_cart .hideShowShippingAccountText, .show_cart .standalone-login .hideShowShippingAccountText, .standalone-login #proopc-task-savecoupon, .standalone-login .btn2Lg {
  width: 100%;
  margin: 7px 0 0 0;
}

.standalone-login-reset {
  margin: -10px 0 0 10px;
}

.standalone-login-reset a, .standalone-login-reset .hideShowShippingAccountText {
  font-size: 12px;
}

.reset {
  max-width: 675px;
  margin: 10px auto;
}

.reset .control-label {
  display: none;
}

.reset .controls {
  display: flex;
  justify-content: center;
  padding: 0px 27px;
}

.reset .control-group {
  margin: 7px 0;
}

.reset input {
  height: 50px;
  width: 100%;
}

.reset .btn2, .reset #proopc-order-submit, .reset #proopc-task-loginajax, .reset .vm-button-correct, .reset #proopc-task-registercheckout, .reset .btn2Sm, .reset .show_cart a, .show_cart .reset a, .reset .show_cart .hideShowShippingAccountText, .show_cart .reset .hideShowShippingAccountText, .reset #proopc-task-savecoupon, .reset .btn2Lg {
  width: 100%;
}

.reset fieldset {
  padding: 0;
}

.reset .floatlabel-wrapper {
  width: 100%;
}

.reset .label-floatlabel {
  top: 3px !important;
  left: 7px !important;
}

.no-reports-message {
  text-align: center;
}

.login-is-loading {
  position: relative;
}

.login-is-loading * {
  opacity: 0.5;
}

.chartReports .sk-circle .sk-child:before {
  background-color: white;
}

.your-account-register {
  display: flex;
  flex-wrap: wrap;
}

.your-account-login, .your-account-register {
  max-width: 675px;
  margin: 0 auto;
}

.your-account-register input {
  height: 50px;
  width: 100%;
  font-size: 16px;
}

.your-account-register > * {
  display: flex;
  flex: 1 1 250px;
  margin: 9px;
}

.your-account-register .your-account-phone {
  flex: 1 1 100%;
}

.your-account-register #username_field {
  display: none;
}

.your-account-register #virtuemart_state_id_field {
  flex: 1 1 250px !important;
}

.your-account-register button {
  text-align: center;
  flex: 1 1 100%;
  justify-content: center;
  height: 50px;
}

.your-account-register .floatlabel-wrapper:first-child {
  flex: 1 1 100%;
}

.your-account-register .label-floatlabel, .chartContainer .createAccount .label-floatlabel {
  left: 6px !important;
  top: 3px !important;
}

.order-view {
  display: none;
}

.loggedOutOrdersTitle {
  margin-top: 15px !important;
}

.logout .controls {
  display: flex;
  justify-content: center;
}

.logout .btn, .logout .btnSm, .logout .btnLg {
  margin-top: 25px;
  background: #51798c;
  border: 1px solid #c6c6c6;
  color: white;
}

.logout .btn:hover, .logout .btnSm:hover, .logout .btnLg:hover {
  cursor: pointer;
  background-color: #446575;
  border: 1px solid #adadad;
  text-decoration: none;
}

.subMeat img {
  height: 15px;
  width: 15px;
  position: absolute;
  right: -4px;
  top: 5px;
}

.subMeat img:hover {
  cursor: pointer;
}

.reportPriceBuyContainer button {
  margin-left: 5px;
}

.rptChartSection img {
  width: 100%;
  max-width: 750px;
}

.rptChartSectionContainer {
  margin-top: 10px;
}

.rptLoggedIn p {
  text-align: center;
}

p.orderItemQty, p.orderItemPrice {
  flex: 0 1 55px;
  text-align: center;
}

.vm-customfield-cart {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  margin-bottom: 10px;
  margin-top: -5px;
}

.vm-customfield-cart > * {
  padding-left: 10px;
}

.vm-customfield-cart span {
  margin-top: 5px;
  margin-right: 5px;
  display: inline-block;
  font-size: 16px;
}

.vm-customfield-cart > div {
  font-size: 16px;
  margin-bottom: -2px;
}

.proopc-loggedin-user {
  display: none;
}

.coupon-details {
  display: none;
}

.profCatItem {
  padding-top: 0px;
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #efefef;
}
@media (min-width: 767px) {
  .profCatItem {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
  }
}

.profCatItem a, .profCatItem .hideShowShippingAccountText {
  padding: 5px;
}
@media (min-width: 767px) {
  .profCatItem a, .profCatItem .hideShowShippingAccountText {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

a.btn2.classesCatMore, a.classesCatMore#proopc-order-submit, a.classesCatMore#proopc-task-loginajax, a.classesCatMore.vm-button-correct, a.classesCatMore#proopc-task-registercheckout, .btn2.classesCatMore.hideShowShippingAccountText, .classesCatMore.hideShowShippingAccountText#proopc-order-submit, .classesCatMore.hideShowShippingAccountText#proopc-task-loginajax, .classesCatMore.hideShowShippingAccountText.vm-button-correct, .classesCatMore.hideShowShippingAccountText#proopc-task-registercheckout, a.classesCatMore.btn2Sm, .show_cart a.classesCatMore, a.classesCatMore#proopc-task-savecoupon, .classesCatMore.btn2Sm.hideShowShippingAccountText, .show_cart .classesCatMore.hideShowShippingAccountText, .classesCatMore.hideShowShippingAccountText#proopc-task-savecoupon, a.classesCatMore.btn2Lg, .classesCatMore.btn2Lg.hideShowShippingAccountText {
  margin: 7px 0 10px 10px;
}

.chartReportsRight img {
  width: 100%;
  margin-left: 25px;
}
@media (min-width: 992px) {
  .chartReportsRight img {
    width: 90%;
    margin-left: 0px;
  }
}

.logged-out-library-login {
  max-width: 750px;
  text-align: center;
  font-size: 16px;
  margin: 15px auto;
}

h2.sweetAlertTitle {
  padding-bottom: 10px;
}

.profCertifications {
  max-width: 550px;
  margin: 0 auto;
}

.chart-calculator-register input {
  height: 50px;
  width: 100%;
}

.chart-calculator-register .label-floatlabel {
  top: 3px !important;
  left: 7px !important;
}

.chart-calculator-register form {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
}

.chart-calculator-register form .floatlabel-wrapper {
  flex: 1 1 250px;
  margin: 7px;
}

.chart-calculator-register form .floatlabel-wrapper:first-child {
  flex: 1 1 100%;
}

.chart-calculator-register #name_field, .chart-calculator-register #username_field, .chart-calculator-register {
  display: none;
}

.chart-calculator-register form button {
  margin: 7px;
  flex: 1 1 100%;
  height: 50px;
}

.chart-calculator-register p {
  text-align: center;
}

html body div.fr-window div.fr-bubble canvas {
  z-index: -1 !important;
  bottom: -100px !important;
}

html:not(head) body:not(head) div.fr-window:not(head) > :not(.fr-bubble) {
  z-index: -1 !important;
  bottom: -100px !important;
}

.teaserReadMoreLessWrapper {
  padding-top: 0px;
}

.bodygraphExpanded img {
  display: none;
}

.profileExpanded, .bodygraphExpanded {
  margin-right: 20px;
}

.reset-confirm p, .reset-complete p, .reset p {
  text-align: center;
}

.reset button, .reset-confirm button, .reset-complete button {
  width: 100%;
  max-width: 500px;
  margin: 15px 9px 0;
}

.reset input, .reset-confirm input, .reset-complete input {
  width: 100%;
  max-width: 500px;
  margin-top: 9px;
}

.reset .floatlabel-wrapper, .reset-confirm .floatlabel-wrapper, .reset-complete .floatlabel-wrapper {
  width: 100%;
  max-width: 500px;
}

.reset form, .reset-confirm form, .reset-complete form {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.reset .label-floatlabel, .reset-confirm .label-floatlabel, .reset-complete .label-floatlabel {
  left: 7px !important;
  top: 11px !important;
}

.calculate.rptLogin form {
  display: flex;
  flex-wrap: wrap;
}

.rptLogin .noAccount {
  padding-top: 0px;
}

.repcontent {
  margin: 0 auto;
  box-shadow: 0px 0px 20px #D8D8D8;
  max-width: 650px;
  padding: 10px 0;
}
@media (min-width: 600px) {
  .repcontent {
    padding: 10px 15px 20px;
  }
}
@media (min-width: 1200px) {
  .repcontent {
    padding: 10px 100px 20px;
  }
}

.repcontent img {
  float: right;
  height: 150px;
  width: auto;
  border: 1px solid gray;
  border-radius: 3px;
  margin: 5px;
  margin-left: 10px;
  box-shadow: 3px 3px 8px #ccc;
}

.repcontent #viewChart img {
  border: none;
  box-shadow: none;
  float: none;
  margin-right: 0px;
}

.repcontent #viewChart {
  margin: 25px auto;
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ffffff));
  background: -webkit-linear-gradient(top, #f8f8f8, #ffffff);
  background: -moz-linear-gradient(top, #f8f8f8, #ffffff);
  background: -ms-linear-gradient(top, #f8f8f8, #ffffff);
  background: -o-linear-gradient(top, #f8f8f8, #ffffff);
  background: linear-gradient(top, #f8f8f8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#f8f8f8", end-colourStr="#ffffff");
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  padding: 40px 0 20px;
}
@media (min-width: 767px) {
  .repcontent #viewChart {
    padding: 20px 0 20px;
  }
}

div.pReportDisplay div.cover h1 {
  font-family: "PT Serif";
  font-size: 46px;
  color: #484848;
  padding-top: 60px;
}
@media (min-width: 600px) {
  div.pReportDisplay div.cover h1 {
    font-size: 60px;
  }
}

div.pReportDisplay div.cover h4 {
  font-family: "PT Serif";
  font-size: 28px;
  color: #484848;
  font-weight: normal;
}

div.pReportDisplay div.cover h3 {
  font-family: "PT Serif";
  font-size: 28px;
  color: #484848;
  margin: 20px 0 0 0;
  font-weight: normal;
}

div.pReportDisplay div.cover h2 {
  font-family: "PT Serif";
  font-size: 35px;
  color: #484848;
  font-weight: normal;
}

div.pReportDisplay div.cover img {
  width: 100%;
  max-width: 200px;
  margin: 40px auto;
}

div.pReportDisplay div.content h1 {
  color: #484848;
  font-size: 35px;
  padding: 10px 0;
}

div.pReportDisplay div.content h2 {
  font-size: 28px;
  color: #484848;
  margin: 25px 0 15px 10px !important;
  text-align: left;
}

div.pReportDisplay div.content h3 {
  font-size: 20px;
  color: #484848;
  text-align: left;
  margin: 5px 0 -5px 10px !important;
}

div.pReportDisplay {
  background: url(/images/profileReport/tree.png) no-repeat scroll 10px -90px;
  max-width: 650px;
  padding: 10px 15px 20px;
  margin: 30px auto;
  box-shadow: 0px 0px 20px #D8D8D8;
  background-position-y: -150px;
  background-position-x: -150px;
}
@media (min-width: 600px) {
  div.pReportDisplay {
    background-position-y: -130px;
    background-position-x: 0px;
  }
}
@media (min-width: 1200px) {
  div.pReportDisplay {
    padding: 10px 100px 20px;
  }
}

div.pReportDisplay p.narrator {
  margin: 0 15px;
  font-size: 16px;
  color: #606060;
  line-height: 160%;
  font-style: italic;
  padding: 10px 0;
}

div.pReportDisplay div.content img.left {
  padding-top: 15px;
  margin: 0 auto 15px;
  display: block;
}
@media (min-width: 600px) {
  div.pReportDisplay div.content img.left {
    margin: 0 30px 15px -10px;
    float: left;
  }
}

div.pReportDisplay div.content img.right {
  float: none;
  margin: 0 auto 15px;
  display: block;
}
@media (min-width: 600px) {
  div.pReportDisplay div.content img.right {
    margin: 0 -10px 15px 30px;
    float: right;
  }
}

#phone_1_field {
  font-size: 16px;
}

.profRefContainer {
  width: 100%;
  font-size: 16px;
  font-family: "Open Sans", "helvetica";
  margin: 10px 0;
}

.profRefContainer h2 {
  font-size: 20px;
  padding-bottom: 15px;
  font-family: "Open Sans";
}

.profRefItemContainer {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #efefef;
  padding: 5px 0px;
}

.profRefItemContainer > div {
  flex: 1;
  margin-bottom: 5px;
}

.profRefItemContainer > div:nth-child(1) {
  flex: 0 0 75px;
  margin-right: 5px;
}

.profRefItemContainer > div:nth-child(2) {
  flex: 0 0 120px;
  margin-right: 5px;
}

.profRefItemContainer > div:nth-child(3) {
  flex: 0 0 290px;
  margin-right: 5px;
}

.profRefItemContainer > div:nth-child(4) {
  flex: 1 1 100%;
  margin-right: 5px;
}
@media (min-width: 992px) {
  .profRefItemContainer > div:nth-child(4) {
    flex: 1;
  }
}

.vm-order-done table {
  margin: 0 auto;
}

.bgRepHeading {
  padding-top: 10px;
}

.bgRepHeadingMini {
  margin-bottom: -7px !important;
  font-size: 20px;
}

.leftBar.substratum.fourTypesLeft, .rightContentArea .leftBar.fourTypesLeft.calculate {
  margin-top: -39px;
}

.phone_1-group {
  flex: 1 1 100%;
}

.backToAllOrdersLink {
  padding-bottom: 0px;
  margin-bottom: -8px;
  margin-top: 3px;
}

.backToAllOrdersLink a, .backToAllOrdersLink .hideShowShippingAccountText {
  background: url(/images/site/leftArrowSprite.png);
  background-size: 10%;
  background-repeat: no-repeat;
  background-position: 6px 3px;
  padding-left: 25px;
}

.backToAllOrdersLink a:hover, .backToAllOrdersLink .hideShowShippingAccountText:hover {
  background-position: 6px -18px;
}

.libaryTopButtonsContainer {
  text-align: left;
  width: 100%;
  margin: 8px auto 17px;
  font-size: 16px;
  color: #efefef;
}

.libaryTopButtonsContainer.bgreport {
  margin: 15px auto 22px;
  max-width: 850px;
  margin-left: 5px;
}
@media (min-width: 767px) {
  .libaryTopButtonsContainer.bgreport {
    margin: 15px auto 20px;
  }
}
@media (min-width: 600px) {
  .libaryTopButtonsContainer.bgreport {
    margin-left: auto;
  }
}

.libaryTopButtonsContainer.viewChart {
  margin-top: 14px;
  margin-bottom: 14px;
  margin-left: 5px;
}
@media (min-width: 600px) {
  .libaryTopButtonsContainer.viewChart {
    margin-left: 0px;
  }
}

.backToLibraryLink {
  background: url(/images/site/leftArrowSprite.png);
  background-size: 8%;
  background-repeat: no-repeat;
  background-position: 6px 3px;
  padding-left: 25px;
}

.backToLibraryLink:hover {
  background-position: 6px -20px;
}

.profileReportButtons {
  max-width: 875px;
  margin: 18px auto -6px;
  margin-left: 5px;
}
@media (min-width: 992px) {
  .profileReportButtons {
    margin: 16px auto -8px;
  }
}
@media (min-width: 600px) {
  .profileReportButtons {
    margin-left: auto;
  }
}

#viewChart .viewChartContainer {
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ffffff));
  background: -webkit-linear-gradient(top, #f8f8f8, #ffffff);
  background: -moz-linear-gradient(top, #f8f8f8, #ffffff);
  background: -ms-linear-gradient(top, #f8f8f8, #ffffff);
  background: -o-linear-gradient(top, #f8f8f8, #ffffff);
  background: linear-gradient(top, #f8f8f8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#f8f8f8", end-colourStr="#ffffff");
  border: 1px solid #c6c6c6;
  padding-top: 25px;
  border-radius: 0px;
}
@media (min-width: 600px) {
  #viewChart .viewChartContainer {
    border-radius: 3px;
  }
}

.rightContentArea .moduletable {
  width: 100%;
}

#storeBanner {
  padding-top: 10px;
}

#storeBanner span {
  display: block;
  font-size: 18px;
  margin-top: -15px;
  font-family: "Open sans";
}

.storelanding {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

div.storelanding div.bottbutt {
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ffffff));
  background: -webkit-linear-gradient(top, #f8f8f8, #ffffff);
  background: -moz-linear-gradient(top, #f8f8f8, #ffffff);
  background: -ms-linear-gradient(top, #f8f8f8, #ffffff);
  background: -o-linear-gradient(top, #f8f8f8, #ffffff);
  background: linear-gradient(top, #f8f8f8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#f8f8f8", end-colourStr="#ffffff");
  border: 1px solid #c6c6c6;
  border-radius: 2px;
  height: 145px;
  margin: 0 5px;
}

div.storelanding div.mid {
  background: url("/images/webstore/courseManuals.png");
  background: url("/images/webstore/courseManuals.png"), -moz-linear-gradient(top, #f3f4f4, #ffffff);
  background: url("/images/webstore/courseManuals.png"), -webkit-linear-gradient(top, #f3f4f4, #ffffff);
  background-repeat: no-repeat, repeat-x;
  background-size: auto, cover auto;
  background-position: center;
}

div.storelanding div.mid:hover {
  background: url("/images/webstore/courseManuals.png"), #ffffff;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, cover auto;
  background-position: center;
  border: 1px solid #b9b9b9;
}

div.storelanding div.left {
  background: url("/images/webstore/introductoryProducts.png"), url(/images/site/f1f2f2.png);
  background: url("/images/webstore/introductoryProducts.png"), -moz-linear-gradient(top, #f3f4f4, #ffffff);
  background: url("/images/webstore/introductoryProducts.png"), -webkit-linear-gradient(top, #f3f4f4, #ffffff);
  background-repeat: no-repeat, repeat-x;
  background-size: auto, cover auto;
  background-position: center;
}

div.storelanding div.left:hover {
  background: url("/images/webstore/introductoryProducts.png"), #ffffff;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, cover auto;
  background-position: center;
  border: 1px solid #b9b9b9;
}

div.storelanding div.right {
  background: url("/images/webstore/referenceBooks.png"), url(/images/site/f1f2f2.png);
  background: url("/images/webstore/referenceBooks.png"), -moz-linear-gradient(top, #f3f4f4, #ffffff);
  background: url("/images/webstore/referenceBooks.png"), -webkit-linear-gradient(top, #f3f4f4, #ffffff);
  background-repeat: no-repeat, repeat-x;
  background-size: auto, cover auto;
  background-position: center;
}

div.storelanding div.right:hover {
  background: url("/images/webstore/referenceBooks.png"), #ffffff;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, cover auto;
  background-position: center;
  border: 1px solid #b9b9b9;
}

.storelanding > h2 {
  flex: 1 1 100%;
  padding-top: 10px;
}

div.storeLanding .bottbutt > h2 {
  font-size: 20px;
}

div.storeLanding a, div.storeLanding .hideShowShippingAccountText {
  flex: 1 1 100%;
  margin-top: 10px;
}
@media (min-width: 600px) {
  div.storeLanding a, div.storeLanding .hideShowShippingAccountText {
    flex: 1 1 170px;
  }
}

div.storeLanding a:hover, div.storeLanding .hideShowShippingAccountText:hover {
  text-decoration: none;
}

.profItemView > p img {
  width: 100%;
}

.logout {
  padding-top: 10px;
}

.giicImg {
  width: 100%;
  max-width: 309px;
  margin: 0 auto;
  display: block;
}

.grecaptcha-badge {
  display: none;
}

.hideShowShippingAccountText {
  flex: 1 1 100%;
  justify-content: center;
}

.credit-card-type {
  display: none;
}

.newsletterOptIn {
  display: flex;
  flex-direction: row-reverse;
  flex: 1 1 101%;
  justify-content: flex-end;
  align-items: center;
  padding: 7px;
}

#ProOPC .newsletterOptIn input[type=checkbox] {
  flex: 0 0 10px;
  margin: 1px 6px 0 0px;
  box-shadow: none;
}

#ProOPC .newsletterOptIn input[type=checkbox]:hover {
  cursor: pointer;
}

.your-account-update-form #tab-2 {
  display: none;
}

.addReportToCartButton {
  height: 35px;
  line-height: 35px;
}

.addReportToCartButton.login-is-loading {
  background: rgba(81, 121, 140, 0.6);
}

.cartReportDeleteContainer {
  display: block;
}
@media (min-width: 600px) {
  .cartReportDeleteContainer {
    display: inline;
  }
}

.cartReportDeleteContainer:hover {
  cursor: pointer;
}

.cartReportDeleteContainer span {
  display: initial;
  color: #14679b;
}
@media (min-width: 600px) {
  .cartReportDeleteContainer span {
    display: none;
  }
}

.downloadProduct {
  display: none;
}

li.item-349 {
  margin-top: 7px;
  border-top: 1px solid #c6c6c6;
  padding-top: 8px;
}

p.reportPriceBuyContainer {
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  p.reportPriceBuyContainer {
    margin-bottom: 0px;
  }
}

.androidKeyboard {
  margin-top: 100px;
}
@media (min-width: 600px) {
  .androidKeyboard {
    margin-top: 0px;
  }
}

.noInternetExplorer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 30px;
  background-color: #455A64;
}

.noInternetExplorer > h2 {
  color: white;
}

.checkoutExpand {
  display: none;
}

.checkout {
  margin: 0 auto;
  max-width: 750px;
  padding-right: 5px;
  padding-bottom: 30px;
}

.cartHeaderPanel, .cartItemPanel {
  display: flex;
  align-items: center;
}

.cartItemPanel {
  border-bottom: 1px solid #efefef;
}

.cartPrice {
  flex: 0 1 50px;
  min-width: 60px;
}

.cartItems {
  flex: 1 1 40%;
}

.cartQty {
  flex: 0 1 35px;
}

.cartQty input {
  width: 45px;
  color: #2d2d2d;
  font-size: 16px;
}

.cartDeleteField {
  flex: 1 1 0.5%;
  background: url(/images/site/x.png);
  background-repeat: no-repeat;
  background-position: 0px 5px;
  background-size: 14px;
  border: none;
  width: 20px;
  height: 20px;
  padding-top: 14px;
  margin-left: 3px;
  -webkit-filter: brightness(100%);
}

.cartHeaderPanel .cartDeleteField {
  background: none;
  width: 10px;
  padding: 0px;
}

.cartDeleteField {
  flex: 0 1 10px;
}

.cartDeleteField:hover {
  cursor: pointer;
  -webkit-filter: brightness(60%);
  transition: all 300ms ease;
}

.cartHeaderPanel .cartDeleteField:hover {
  cursor: default;
}

.couponInput {
  height: 30px;
  flex: 0 1 20px;
  max-width: 200px;
  font-size: 16px;
  color: #2d2d2d;
}

.couponCodePanel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 30px;
  margin-top: 10px;
}

.couponSubmit {
  height: 30px;
  font-size: 16px;
  line-height: 100%;
  flex: 0 1 20px;
  margin: 0 7px 0 10px;
}

.cartTotalRow {
  display: flex;
  justify-content: flex-end;
}

.cartTotalRow p {
  flex: 0 1 80px;
  text-align: right;
}

.cartTaxRow, .cartDiscountRow, .cartShippingRow, .cartGrandTotalRow, .cartButtonRow {
  margin-top: -14px;
}

.cartCheckoutButton {
  margin: 15px 7px 0 0;
}

.contactInfoRow {
  display: flex;
  flex-wrap: wrap;
}

.contactInfoRow input {
  flex: 1 1 250px;
  height: 50px;
  margin: 9px;
}

.checkoutContactInfo select {
  height: 50px;
  flex: 1 1 180px;
  margin: 9px;
  border: 1px solid #c6c6c6;
}

.checkoutConfirm {
  display: flex;
  justify-content: flex-end;
}

.continueBelow {
  font-size: 14px !important;
  font-style: italic;
  margin-bottom: -10px;
  padding-top: 2px;
}

.contactInfoHeader {
  padding-bottom: 5px;
}

.createAccountHeader {
  padding-bottom: 7px;
}

.checkoutCreateAccount, .checkoutShippingMethod, .checkoutPaymentMethod {
  padding: 0 9px;
}

.createAccountPasswordField {
  height: 40px;
}

.checkoutCreateAccountRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.checkoutCreateAccountRow input, .checkoutCreateAccountRow p {
  flex: 1 1 300px;
}

.checkoutCreateAccountRow p {
  padding-left: 2px;
}
@media (min-width: 767px) {
  .checkoutCreateAccountRow p {
    padding-left: 10px;
  }
}

.checkoutBottomTotalPanel {
  border-top: 1px solid #efefef;
  margin-top: 20px;
}

.shippingMethodHeader, .paymentHeader {
  padding-bottom: 10px;
}

.paymentHeader {
  font-size: 30px;
}

form #card_number {
  background: url("/images/webstore/creditCardLogos.png") 7px -104px no-repeat, url("/images/webstore/creditCardLogos.png") 235px -50px no-repeat;
  background-size: 120px 361px, 120px 361px;
  background-repeat: no-repeat, no-repeat;
  padding-left: 59px;
  width: 104%;
}

form #card_number.visa {
  background-position: 7px -141px, 235px -50px;
}

form #card_number.visa_electron {
  background-position: 7px -141px, 235px -50px;
}

form #card_number.mastercard {
  background-position: 7px -214px, 235px -50px;
}

form #card_number.maestro {
  background-position: 7px -214px, 235px -50px;
}

form #card_number.discover {
  background-position: 7px -288px, 235px -50px;
}

form #card_number.amex {
  background-position: 7px -325px, 235px -50px;
}

form #card_number.valid.visa {
  background-position: 7px -141px, 235px -74px;
}

form #card_number.valid.visa_electron {
  background-position: 7px -141px, 235px -74px;
}

form #card_number.valid.mastercard {
  background-position: 7px -214px, 235px -74px;
}

form #card_number.valid.maestro {
  background-position: 7px -214px, 235px -74px;
}

form #card_number.valid.discover {
  background-position: 7px -288px, 235px -74px;
}

form #card_number.valid.amex {
  background-position: 7px -325px, 235px -74px;
}

.creditCardFormContainer > input, .creditCardFormContainer > div {
  height: 35px;
  margin: 9px;
}

.creditCardFormContainer {
  margin: 5px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
}

.creditCardFormContainer p {
  font-style: italic;
  padding-left: 0px;
  font-size: 14px;
}

.creditCardExpiration span {
  font-size: 16px;
}

.creditCardExpiration input {
  padding-left: 0;
  text-align: center;
  height: 35px;
  width: 50px;
}

.cardNumberContainer input {
  height: 35px;
}

.creditCardCVC {
  max-width: 50px;
}
@media (min-width: 1200px) {
  .creditCardCVC {
    margin-top: 10px !important;
  }
}

.cardNumberContainer {
  flex: 1 1 100%;
  max-width: none;
  margin-left: 0 !important;
}
@media (min-width: 600px) {
  .cardNumberContainer {
    flex: 1 1 0;
    max-width: 255px;
  }
}

.ccExpiration {
  position: relative;
  margin-right: 10px;
}

.creditCardExpiration {
  margin-left: 0 !important;
}
@media (min-width: 600px) {
  .creditCardExpiration {
    margin-left: 10px !important;
  }
}

.contactInfoPanel .floatlabel-wrapper {
  display: flex;
  flex: 1 1 300px;
}

.paypalDescription {
  font-style: italic;
  padding-left: 0px;
  font-size: 14px !important;
  padding-top: 5px;
  display: none;
}

.contactInfoRow .selectize-control {
  flex: 1 1 283px;
  height: 50px;
  margin: 9px;
}

.newsletterOptCheckBox {
  height: auto !important;
  margin-left: 0px !important;
}

.newsletterOptContainer {
  margin-top: -5px;
}

.total_products {
  margin-top: 23px;
  text-align: center;
}

.show_cart {
  width: 100%;
  margin-top: 58px;
  text-align: center;
  margin-bottom: 20px;
}

.bagMenuContainer .product_name a, .bagMenuContainer .product_name .hideShowShippingAccountText {
  font-size: 15px !important;
}

.vm2-add_quantity_cart {
  display: none;
}

#facebox h4 {
  font-size: 18px;
  padding-bottom: 10px;
}

#facebox {
  max-width: 475px;
  min-width: 225px;
  width: 100%;
}

#facebox .popup {
  box-shadow: none;
  display: flex;
  height: 130px;
  justify-content: center;
  background-color: white;
}

#facebox .content {
  width: 85%;
  display: flex;
  flex-direction: column-reverse;
  padding: 17px;
  align-items: center;
  justify-content: space-between;
}

#facebox .close {
  background: url("/images/site/x.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position-y: 5px;
  height: 20px;
  width: 20px;
  right: 7px;
  top: 3px;
  -webkit-filter: brightness(100%);
}

#facebox .close:hover {
  -webkit-filter: brightness(60%);
  transition: all 200ms;
}

#facebox .close img {
  display: none;
}

#facebox .showcart {
  background-color: #51798c;
  border: 1px solid #c6c6c6;
  color: white;
  font-size: 1em;
  border-radius: 4px;
  padding: 7px 35px;
  box-shadow: none;
  text-align: center;
  margin-top: 10px;
  max-width: 250px;
  width: 70%;
  margin-bottom: 5px;
}

#facebox .showcart:hover {
  cursor: pointer;
  background-color: #446575;
  border: 1px solid #adadad;
  text-decoration: none;
}

#facebox .continue_link {
  display: none;
}

.emptyBagYo {
  color: #545454;
  padding: 40px;
  border-bottom: 1px solid #efefef;
  border-top: 1px solid #efefef;
}

.cartPanel {
  position: relative;
}

.cartPanelLoader {
  display: none;
}

#virtuemart_state_id_field {
  background-color: white;
  flex: 1 1 283px;
  height: 50px;
  border-color: #b8b8b8;
  font-size: 16px;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  box-shadow: 2px 2px 2px #efefef inset;
  padding-left: 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  font-family: "Open Sans", helvetica;
}

#virtuemart_state_id_field:hover {
  cursor: pointer;
}

.vm-payment-select {
  font-size: 16px;
}

.vm-payment-header-select {
  display: none;
}

.vm-payment-plugin-single {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0 5px;
}

.vm-payment-plugin-single label {
  font-size: 16px;
  padding: 10px 0;
  display: block;
  width: 90%;
}

.vmpayment_cardinfo {
  width: 100%;
}

.vm-payment-plugin-single:hover {
  cursor: pointer;
  background-color: #eaebeb;
  border-radius: 4px;
}

.vm-payment-plugin-single label:hover {
  cursor: pointer;
}

.vmpayment_cardinfo td:first-child {
  display: none;
}

.vmpayment_cardinfo tbody {
  display: flex;
  flex-wrap: wrap;
}

.vmpayment_cardinfo table {
  margin-left: -12px;
}

#ProOPC input[type=text]#cc_number_6 {
  background: url(/images/webstore/creditCardLogos.png) 15px -95px no-repeat, url(/images/webstore/creditCardLogos.png) 280px -42px no-repeat;
  background-size: 120px 361px, 120px 361px;
  background-repeat: no-repeat, no-repeat;
  padding-left: 85px !important;
  width: 230px;
  height: 50px;
  clip-path: inset(10px 10px);
  -webkit-clip-path: inset(10px 10px);
  letter-spacing: 1px;
}

#ProOPC input[type=text]#cc_number_6:hover {
  cursor: text;
}

.creditCardNumberContainer {
  border: 1px solid #c6c6c6;
  border-radius: 3px;
}

#proopc-payment-form li .creditCardNumberContainer:hover {
  cursor: default;
}

#ProOPC input[type=text]#cc_cvv_6 {
  height: 50px;
  padding-left: 18px !important;
}

#cc_cvv_6:hover {
  cursor: text !important;
}

.vmpayment_cardinfo {
  background-color: white;
  margin-left: -5px;
  padding-left: 5px;
  padding-top: 10px;
}

.vmpayment_cardinfo tr {
  margin: 0 5px;
}

.vmpayment_cardinfo .selectize-input {
  height: 50px;
  padding-right: 8px;
  min-width: 60px;
}

.vmpayment_cardinfo .selectize-input .item {
  line-height: 35px;
}

.ccExpiration {
  display: flex;
  line-height: 35px;
  align-items: center;
}

.ccExpiration .selectize-control:nth-of-type(1) {
  margin: 0 8px 0 0;
}

.ccExpiration .selectize-control:nth-of-type(2) {
  margin: 0 0 0 8px;
}

.vm-payment-header-selected {
  display: none;
}

.vm-shipment-header-selected {
  display: none;
}

#ProOPC input[type=text]#cc_number_6.visa {
  background-position: 15px -132px, 280px -42px;
}

#ProOPC input[type=text]#cc_number_6.visa_electron {
  background-position: 15px -141px, 280px -42px;
}

#ProOPC input[type=text]#cc_number_6.mastercard {
  background-position: 15px -206px, 280px -42px;
}

#ProOPC input[type=text]#cc_number_6.maestro {
  background-position: 15px -206px, 280px -42px;
}

#ProOPC input[type=text]#cc_number_6.discover {
  background-position: 15px -288px, 280px -42px;
}

#ProOPC input[type=text]#cc_number_6.amex {
  background-position: 15px -325px, 280px -42px;
}

#ProOPC input[type=text]#cc_number_6.valid.visa {
  background-position: 15px -132px, 280px -65px;
}

#ProOPC input[type=text]#cc_number_6.valid.visa_electron {
  background-position: 15px -141px, 280px -65px;
}

#ProOPC input[type=text]#cc_number_6.valid.mastercard {
  background-position: 15px -206px, 280px -65px;
}

#ProOPC input[type=text]#cc_number_6.valid.maestro {
  background-position: 15px -206px, 280px -65px;
}

#ProOPC input[type=text]#cc_number_6.valid.discover {
  background-position: 15px -288px, 280px -65px;
}

#ProOPC input[type=text]#cc_number_6.valid.amex {
  background-position: 15px -325px, 280px -65px;
}

#proopc-order-submit, #proopc-task-loginajax, .vm-button-correct, #proopc-task-registercheckout {
  background-image: none;
  height: 50px;
  font-size: 22px !important;
  margin-top: 7px;
}

#proopc-task-savecoupon {
  background-image: none;
  height: 30px;
  font-size: 16px;
  line-height: 100%;
  flex: 0 1 20px;
  margin: 0 7px 0 8px;
}

.emptyCart-view .cart-page-title {
  text-transform: none !important;
  color: #545454 !important;
  padding: 40px;
}

.col-name a, .col-name .hideShowShippingAccountText {
  text-transform: none;
}

.proopc-empty-continue-link, .proopc-continue-link {
  display: none;
}

#ProOPC #shoppingBagTitle {
  text-transform: none;
  font-family: "Open Sans";
  padding: 10px 0 20px;
  font-size: 24px;
}

table.cart-summary.proopc-table-striped tr th {
  text-transform: none;
  font-size: 16px;
}

#ProOPC span {
  font-size: 16px;
}

.cart-images {
  display: none;
}

#ProOPC .cart-product-description.with-image {
  padding-left: 0px;
}

table.cart-summary.proopc-table-striped tbody tr td:before {
  text-transform: none;
  font-size: 16px;
}

.remove_from_cart:hover, .proopc-task-updateqty:hover {
  cursor: pointer;
}

.vmCartModule > .total {
  margin-top: 4px;
}

.show_cart a, .show_cart .hideShowShippingAccountText {
  float: none !important;
}

.creditcard-label, .hover-tootip, #__lpform_cc_number_6 {
  display: none;
}

.proopc-creditcard-info {
  display: flex;
  flex-wrap: wrap;
}

.proopc-creditcard-info > * {
  flex: 0 1 180px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.credit-card-selector {
  flex: 1 1 73px;
}

.credit-card-cvv {
  flex: 0 1;
}

#proopc-payment-form .proopc-creditcard-info .selectize-input {
  display: flex;
  align-items: center;
  justify-content: center;
}

.credit-card-number {
  flex: 0 1 60px;
}

#ProOPC .vmpayment .vmpayment_cardinfo {
  display: none;
}

#cc_expiredate_errormsg_6 {
  position: absolute;
  top: 56px;
  left: 1px;
  width: 176px;
  color: red;
}

.month-selectize-dropdown .selectize-dropdown {
  width: 100px !important;
}

button.proopc-btn.proopc-task-updateqty, button.remove_from_cart {
  background-color: white;
  box-shadow: none;
  margin-bottom: 6px;
}

.onlyDownloads .address_1-group,
.onlyDownloads .address_2-group,
.onlyDownloads .zip-group,
.onlyDownloads .city-group,
.onlyDownloads .virtuemart_country_id-group,
.onlyDownloads .virtuemart_state_id-group,
.onlyDownloads .phone_1-group,
.virtuemart_state_id-group {
  display: none;
}

#tab-1 .floatlabel-wrapper.accountUpdatePhone {
  flex: 1 1 100%;
}

input#proopc-coupon-code::placeholder {
  font-size: 14px;
}

.checkout-logout {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  color: #14679b;
  margin: 0 0 2px 5px;
}

.checkout-logout:hover {
  text-decoration: underline;
}

.proopc-shipments.onlyDownloads {
  display: none;
}

.selectize-control.accountCountrySelect.single, .selectize-control.accountStateSelect.single {
  width: 100% !important;
}

.proopc-bottom-pricelist > div {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

.proopc-bottom-value {
  width: 80px;
  text-align: right;
}

div#proopc-bottom-total-value {
  font-weight: bold;
}

.vm-order-done {
  text-align: center;
  font-size: 16px;
  margin: 15px 0 25px 0;
}

.vm-order-done h3 {
  font-size: 26px;
  padding: 10px 0 25px 0;
}

.terms-of-service-cont {
  display: none;
}

.cart-tos-group {
  display: none;
}

.order-done-history {
  margin-top: 15px;
}

.vmLoadingDiv {
  display: none;
}

.vm-order-done input[type=submit] {
  color: black;
  background: white;
  box-shadow: none;
  border: none;
  overflow-wrap: normal;
  font-weight: bold;
  font-size: 16px;
  height: 160px;
  padding-bottom: 110px;
  background-image: url("/images/site/paypalLogo.png");
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: bottom;
}

.vm-order-done .vm-button-correct {
  border: none;
  background: none;
  font-weight: normal;
  text-decoration: none;
  color: #14679b;
  font-size: 16px !important;
  cursor: pointer;
  word-break: break-word;
  margin-left: 2px;
  padding: 0;
}

.vm-order-done .vm-button-correct:hover {
  cursor: pointer;
  text-decoration: underline;
}

.post_payment_order_number {
  margin-top: -25px;
  max-width: 550px;
  margin: 0 auto;
}

#ProOPC input[type=text].report-qty {
  border: none;
  box-shadow: none;
  text-align: center;
}

.reportDeleteButton {
  height: 20px;
  width: 20px;
}

.reportProductSection {
  display: flex;
  flex-wrap: wrap;
}

.singleReportRow {
  width: 100%;
  padding-left: 10px;
}

.singleReportRow > p {
  padding: 7px 0px 0px;
}

#ProOPC input[type=text].proopc-qty-input {
  text-align: center;
}

#ProOPC .cart-product-description a, #ProOPC .cart-product-description .hideShowShippingAccountText {
  color: #2d2d2d;
}

#proopc-pricelist thead tr {
  border-bottom: 1px solid #efefef;
  padding-bottom: 3px;
  margin-bottom: 10px;
}

#proopc-pricelist thead tr span {
  font-weight: bold;
}

#proopc-pricelist .sub-total-pricelist {
  display: block;
  margin-top: 4px;
}

#proopc-pricelist tbody tr {
  margin: 4px 0;
}

#ProOPC .accountStateSelect,
#ProOPC .accountCountrySelect {
  height: 50px;
}

#ProOPC .next-button-container {
  flex: 1 1 100%;
}

#ProOPC #proopc-task-loginajax,
#ProOPC #proopc-task-registercheckout,
#ProOPC .proopc-register-login-next {
  display: none;
}

.proopc-register-login .isSelected {
  background: transparent;
}

#ProOPC .proopc-bt-address,
#ProOPC .proopc-shipments,
#ProOPC .proopc-payments,
#ProOPC .proopc-register-login {
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ffffff));
  background: -webkit-linear-gradient(top, #f8f8f8, #ffffff);
  background: -moz-linear-gradient(top, #f8f8f8, #ffffff);
  background: -ms-linear-gradient(top, #f8f8f8, #ffffff);
  background: -o-linear-gradient(top, #f8f8f8, #ffffff);
  background: linear-gradient(top, #f8f8f8, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(start-colourStr="#f8f8f8", end-colourStr="#ffffff");
  border-top: 1px solid #e0e0e0;
  padding: 0 12px;
  position: relative;
}

#ProOPC .proopc-register-login {
  margin-top: 45px;
}

#proopc-payments .inner-wrap, #proopc-shipments .inner-wrap {
  border: 1px solid #e6e4e4;
  border-radius: 3px;
  background: white;
  padding: 0px 12px;
}

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