/*------------------------------------*\
    #IMPORTS
\*------------------------------------*/
.reset {
  margin: 0px;
  padding: 0px;
}
html,
body {
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  /* Sets up the Base 10 stuff */
}
/*prevents divs from getting focus outline*/
div:active,
div:focus {
  outline: none;
}
/****** Jeff Russell colors: round 2, they are new names, values, and used for different things *********/
/* rgba(70,70,70,0.8); */
.gray-1 {
  color: #f1f1f1;
}
.gray-2 {
  color: #e6e6e6;
}
.gray-3 {
  color: #d1d1d1;
}
.gray-4 {
  color: #999999;
}
.gray-5 {
  color: #636363;
}
.gray-6 {
  color: #464646;
}
.gray-7 {
  color: #333333;
}
.gray-8 {
  color: #707070;
}
.gray-9 {
  color: #7f7f7f;
}
.gray-10 {
  color: #d8d8d8;
}
.gray-11 {
  color: #f6f6f6;
}
.gray-bg-1 {
  background-color: #f1f1f1;
}
.gray-bg-2 {
  background-color: #e6e6e6;
}
.gray-bg-3 {
  background-color: #d1d1d1;
}
.gray-bg-4 {
  background-color: #999999;
}
.gray-bg-5 {
  background-color: #636363;
}
.gray-bg-6 {
  background-color: #464646;
}
.gray-bg-7 {
  background-color: #333333;
}
.gray-bg-8 {
  background-color: #707070;
}
.gray-bg-9 {
  background-color: #7f7f7f;
}
.gray-bg-10 {
  background-color: #d8d8d8;
}
.gray-bg-11 {
  background-color: #f6f6f6;
}
.white-bg {
  background-color: #ffffff;
}
html {
  font-size: 62.5%;
  /* Sets up the Base 10 stuff http://pxtoem.com/ */
}
@media (max-width: 320px) {
  html {
    font-size: 56.3%;
  }
}
body {
  font-family: 'Open Sans', sans-serif;
}
/*
https://css-tricks.com/snippets/css/less-mixin-for-rem-font-sizing/

*/
.base-font-family {
  font-family: 'Open Sans', sans-serif;
}
.lightest-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 100 !important;
}
.light-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300 !important;
}
.base-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400  !important;
}
.semibold-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600  !important;
}
.bold-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700  !important;
}
h1,
.h1 {
  font-size: 30px;
  font-size: 3rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700  !important;
  margin: 0px;
  padding: 0px;
}
h2,
.h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700  !important;
  margin: 0px;
  padding: 0px;
}
h3,
.h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 100 !important;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0px;
  padding: 0px;
}
h4,
.h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400  !important;
  font-size: 20px;
  font-size: 2rem;
  margin: 0px;
  padding: 0px;
}
h5,
.h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400  !important;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0px;
  padding: 0px;
}
h6,
.h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400  !important;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0px;
  padding: 0px;
}
.appTitle {
  line-height: 30px;
  font-size: 30px;
  font-size: 3rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400  !important;
  font-size: 20px;
  font-size: 2rem;
  margin: 0px;
  padding: 0px;
}
.text-small {
  font-size: 11px;
  font-size: 1.1rem;
}
.text-normal {
  font-size: 12px;
  font-size: 1.2rem;
}
.text-small-medium {
  font-size: 13px;
  font-size: 1.3rem;
}
.text-medium {
  font-size: 14px;
  font-size: 1.4rem;
}
/*
designers ><
*/
.text-medium-large {
  font-size: 15px;
  font-size: 1.5rem;
}
.text-large {
  font-size: 16px;
  font-size: 1.6rem;
}
.text-xlarge {
  font-size: 18px;
  font-size: 1.8rem;
}
.text-xxlarge {
  font-size: 20px;
  font-size: 2rem;
}
.text-xxxlarge {
  font-size: 24px;
  font-size: 2.4rem;
}
.text-38 {
  font-size: 38px;
  font-size: 3.8rem;
}
.icon-large {
  font-size: 140px;
  font-size: 14rem;
}
.icon-xxlarge {
  font-size: 200px;
  font-size: 20rem;
}
.check-mark-icon {
  -webkit-text-stroke: 12px #ffffff;
  font-size: 12em;
}
.line-height-11 {
  line-height: 1.1;
}
.line-height-13 {
  line-height: 1.3;
}
.line-height-15 {
  line-height: 1.5;
}
.break-word {
  word-break: break-word;
}
.strikethrough {
  text-decoration: line-through;
}
/* bootstrap overrides to use rem */
.input-lg {
  font-size: 18px;
  font-size: 1.8rem;
}
.btn-lg {
  font-size: 18px;
  font-size: 1.8rem;
}
/* END bootstrap overrides to use rem */
.i {
  font-style: italic;
}
.ellipsis-single {
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.ellipsis-single-120 {
  width: 120px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.ellipsis-single-160 {
  width: 160px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.ellipsis-single-200 {
  width: 200px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.ellipsis-single-300 {
  width: 300px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.ellipsis-double {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.overflow-ellipsis {
  text-overflow: ellipsis;
}
.no-wrap {
  white-space: nowrap;
}
.show-on-hover-container .show-on-hover {
  opacity: 0;
}
.show-on-hover-container:hover .show-on-hover {
  opacity: 1;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflowY {
  overflow: hidden;
}
/*vh grid*/
.vh100 {
  height: 100vh;
  overflow: hidden;
}
.vh92 {
  height: 92vh;
  overflow: hidden;
}
.vh90 {
  height: 90vh;
  overflow: hidden;
}
.vh87 {
  height: 87vh;
  overflow: hidden;
}
.vh85 {
  height: 85vh;
  overflow: hidden;
}
.vh84 {
  height: 84vh;
  overflow: hidden;
}
.vh82 {
  height: 82vh;
  overflow: hidden;
}
.vh80 {
  height: 80vh;
  overflow: hidden;
}
.vh79 {
  height: 79vh;
  overflow: hidden;
}
.vh77 {
  height: 77vh;
  overflow: hidden;
}
.vh76 {
  height: 76vh;
  overflow: hidden;
}
.vh75 {
  height: 75vh;
  overflow: hidden;
}
.vh72 {
  height: 72vh;
  overflow: hidden;
}
.vh70 {
  height: 70vh;
  overflow: hidden;
}
.vh67 {
  height: 67vh;
  overflow: hidden;
}
.vh65 {
  height: 65vh;
  overflow: hidden;
}
.vh60 {
  height: 60vh;
  overflow: hidden;
}
.vh55 {
  height: 55vh;
  overflow: hidden;
}
.vh50 {
  height: 50vh;
  overflow: hidden;
}
.vh45 {
  height: 45vh;
  overflow: hidden;
}
.vh44 {
  height: 44vh;
  overflow: hidden;
}
.vh40 {
  height: 40vh;
  overflow: hidden;
}
.vh36 {
  height: 36vh;
  overflow: hidden;
}
.vh30 {
  height: 30vh;
  overflow: hidden;
}
.vh25 {
  height: 25vh;
  overflow: hidden;
}
.vh20 {
  height: 20vh;
  overflow: hidden;
}
.vh17 {
  height: 17vh;
  overflow: hidden;
}
.vh16 {
  height: 16vh;
  overflow: hidden;
}
.vh15 {
  height: 15vh;
  overflow: hidden;
}
.vh13 {
  height: 13vh;
  overflow: hidden;
}
.vh12 {
  height: 12vh;
  overflow: hidden;
}
.vh10 {
  height: 10vh;
  overflow: hidden;
}
.vh9 {
  height: 9vh;
  overflow: hidden;
}
.vh8 {
  height: 8vh;
  overflow: hidden;
}
.vh7 {
  height: 7vh;
  overflow: hidden;
}
.vh6 {
  height: 6vh;
  overflow: hidden;
}
.vh5 {
  height: 5vh;
  overflow: hidden;
}
.vh4 {
  height: 4vh;
  overflow: hidden;
}
/*vw grid*/
.vw100 {
  width: 100vw;
}
.vw95 {
  width: 95vw;
}
.vw90 {
  width: 90vw;
}
.vw85 {
  width: 85vw;
}
.vw80 {
  width: 80vw;
}
.vw75 {
  width: 75vw;
}
.vw70 {
  width: 70vw;
}
.vw65 {
  width: 65vw;
}
.vw60 {
  width: 60vw;
}
.vw55 {
  width: 55vw;
}
.vw50 {
  width: 50vw;
}
.vw45 {
  width: 45vw;
}
.vw40 {
  width: 40vw;
}
.vw35 {
  width: 35vw;
}
.vw30 {
  width: 30vw;
}
.vw25 {
  width: 25vw;
}
.vw20 {
  width: 20vw;
}
.vw15 {
  width: 15vw;
}
.vw10 {
  width: 10vw;
}
.vw5 {
  width: 5vw;
}
/*standard height*/
.h100 {
  height: 100%;
}
.h95 {
  height: 95%;
}
.h90 {
  height: 90%;
}
.h85 {
  height: 85%;
}
.h80 {
  height: 80%;
}
.h78 {
  height: 78%;
}
.h75 {
  height: 75%;
}
.h70 {
  height: 70%;
}
.h65 {
  height: 65%;
}
.h60 {
  height: 60%;
}
.h55 {
  height: 55%;
}
.h50 {
  height: 50%;
}
.h45 {
  height: 45%;
}
.h40 {
  height: 40%;
}
.h35 {
  height: 35%;
}
.h33 {
  height: 33.3%;
}
.h30 {
  height: 30%;
}
.h25 {
  height: 25%;
}
.h20 {
  height: 20%;
}
.h15 {
  height: 15%;
}
.h12 {
  height: 12%;
}
.h10 {
  height: 10%;
}
.h5 {
  height: 5%;
}
.h0 {
  height: 0;
}
/*standard width*/
.w100 {
  width: 100%;
}
.w95 {
  width: 95%;
}
.w90 {
  width: 90%;
}
.w85 {
  width: 85%;
}
.w80 {
  width: 80%;
}
.w78 {
  width: 78%;
}
.w75 {
  width: 75%;
}
.w70 {
  width: 70%;
}
.w65 {
  width: 65%;
}
.w60 {
  width: 60%;
}
.w55 {
  width: 55%;
}
.w50 {
  width: 50%;
}
.w45 {
  width: 45%;
}
.w40 {
  width: 40%;
}
.w35 {
  width: 35%;
}
.w30 {
  width: 30%;
}
.w25 {
  width: 25%;
}
.w20 {
  width: 20%;
}
.w15 {
  width: 15%;
}
.w12 {
  width: 12%;
}
.w10 {
  width: 10%;
}
.w5 {
  width: 5%;
}
.w0 {
  width: 0;
}
.w20px {
  width: 20px;
}
.w30px {
  width: 30px;
}
.w33px {
  width: 33px;
}
.w49px {
  width: 49px;
}
.w64px {
  width: 64px;
}
.w80px {
  width: 80px;
}
.w100px {
  width: 100px;
}
.w150px {
  width: 150px;
}
.w240px {
  width: 240px;
}
.w250px {
  width: 250px;
}
.w280px {
  width: 280px;
}
.w580px {
  width: 580px;
}
.w840px {
  width: 840px;
}
.h100 {
  max-height: 100%;
}
.h95 {
  max-height: 95%;
}
.h90 {
  max-height: 90%;
}
.h85 {
  max-height: 85%;
}
.h80 {
  max-height: 80%;
}
.h78 {
  max-height: 78%;
}
.h77 {
  max-height: 77%;
}
.h75 {
  max-height: 75%;
}
.h70 {
  max-height: 70%;
}
.h65 {
  max-height: 65%;
}
.h60 {
  max-height: 60%;
}
.h55 {
  max-height: 55%;
}
.h50 {
  max-height: 50%;
}
.h45 {
  max-height: 45%;
}
.h40 {
  max-height: 40%;
}
.h35 {
  max-height: 35%;
}
.h30 {
  max-height: 30%;
}
.h25 {
  max-height: 25%;
}
.h20 {
  max-height: 20%;
}
.h15 {
  max-height: 15%;
}
.h12 {
  max-height: 12%;
}
.h10 {
  max-height: 10%;
}
.h5 {
  max-height: 5%;
}
.h0 {
  max-height: 0;
}
.mw100 {
  max-width: 100%;
}
.mw95 {
  max-width: 95%;
}
.mw90 {
  max-width: 90%;
}
.mw85 {
  max-width: 85%;
}
.mw80 {
  max-width: 80%;
}
.mw78 {
  max-width: 78%;
}
.mw75 {
  max-width: 75%;
}
.mw70 {
  max-width: 70%;
}
.mw65 {
  max-width: 65%;
}
.mw60 {
  max-width: 60%;
}
.mw55 {
  max-width: 55%;
}
.mw50 {
  max-width: 50%;
}
.mw45 {
  max-width: 45%;
}
.mw40 {
  max-width: 40%;
}
.mw35 {
  max-width: 35%;
}
.mw30 {
  max-width: 30%;
}
.mw25 {
  max-width: 25%;
}
.mw20 {
  max-width: 20%;
}
.mw15 {
  max-width: 15%;
}
.mw12 {
  max-width: 12%;
}
.mw10 {
  max-width: 10%;
}
.mw5 {
  max-width: 5%;
}
.mw0 {
  max-width: 0;
}
.max-h-500 {
  max-height: 500px;
}
.min-h-50 {
  min-height: 50px;
}
.min-h-60vh {
  min-height: 60vh;
}
.max-64 {
  max-width: 64px;
}
.max-100 {
  max-width: 100px;
}
.max-150 {
  max-width: 150px;
}
.max-180 {
  max-width: 180px;
}
.max-200 {
  max-width: 200px;
}
.max-360 {
  max-width: 360px;
}
.max-480 {
  max-width: 480px;
}
.max-768 {
  max-width: 768px;
}
.min-400 {
  min-width: 400px;
}
.min-0 {
  min-width: 0;
}
/*jeff's padding system*/
.p0 {
  padding: 0;
}
.p4 {
  padding: 4px;
}
.p {
  padding: 4px;
}
.p5 {
  padding: 5px;
}
.p8 {
  padding: 8px;
}
.p12 {
  padding: 12px;
}
.p16 {
  padding: 16px;
}
.p20 {
  padding: 20px;
}
.p24 {
  padding: 24px;
}
.p32 {
  padding: 32px;
}
.pT0 {
  padding-top: 0;
}
.pT4 {
  padding-top: 4px;
}
.pT5 {
  padding-top: 5px;
}
.pT6 {
  padding-top: 6px;
}
.pT8 {
  padding-top: 8px;
}
.pT10 {
  padding-top: 10px;
}
.pT12 {
  padding-top: 12px;
}
.pT15 {
  padding-top: 15px;
}
.pT16 {
  padding-top: 16px;
}
.pT18 {
  padding-top: 18px;
}
.pT20 {
  padding-top: 20px;
}
.pT22 {
  padding-top: 22px;
}
.pT24 {
  padding-top: 24px;
}
.pT28 {
  padding-top: 28px;
}
.pT32 {
  padding-top: 32px;
}
.pT40 {
  padding-top: 40px;
}
.pT64 {
  padding-top: 64px;
}
.pT72 {
  padding-top: 72px;
}
.pB0 {
  padding-bottom: 0;
}
.pB4 {
  padding-bottom: 4px;
}
.pB5 {
  padding-bottom: 5px;
}
.pB8 {
  padding-bottom: 8px;
}
.pB10 {
  padding-bottom: 10px;
}
.pB15 {
  padding-bottom: 15px;
}
.pB16 {
  padding-bottom: 16px;
}
.pB20 {
  padding-bottom: 20px;
}
.pB32 {
  padding-bottom: 32px;
}
.pB40 {
  padding-bottom: 40px;
}
.pTB0 {
  padding-top: 0;
  padding-bottom: 0;
}
.pTB4 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.pTB5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.pTB6 {
  padding-top: 6px;
  padding-bottom: 6px;
}
.pTB8 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pTB10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.pTB12 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.pTB16 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.pTB20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.pTB32 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.pTB40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.pR0 {
  padding-right: 0;
}
.pR2 {
  padding-right: 2px;
}
.pR4 {
  padding-right: 4px;
}
.pR5 {
  padding-right: 5px;
}
.pR8 {
  padding-right: 8px;
}
.pR12 {
  padding-right: 12px;
}
.pR15 {
  padding-right: 15px;
}
.pR16 {
  padding-right: 16px;
}
.pR25 {
  padding-right: 25px;
}
.pR32 {
  padding-right: 32px;
}
.pR40 {
  padding-right: 40px;
}
.pR64 {
  padding-right: 64px;
}
.pL0 {
  padding-left: 0;
}
.pL4 {
  padding-left: 4px;
}
.pL5 {
  padding-left: 5px;
}
.pL8 {
  padding-left: 8px;
}
.pL10 {
  padding-left: 10px;
}
.pL12 {
  padding-left: 12px;
}
.pL15 {
  padding-left: 15px;
}
.pL16 {
  padding-left: 16px;
}
.pL18 {
  padding-left: 18px;
}
.pL20 {
  padding-left: 20px;
}
.pL24 {
  padding-left: 24px;
}
.pL28 {
  padding-left: 28px;
}
.pL30 {
  padding-left: 30px;
}
.pL32 {
  padding-left: 32px;
}
.pL40 {
  padding-left: 40px;
}
.pL48 {
  padding-left: 48px;
}
.pL64 {
  padding-left: 64px;
}
.pL72 {
  padding-left: 72px;
}
.pRL0 {
  padding-right: 0;
  padding-left: 0;
}
.pRL4 {
  padding-right: 4px;
  padding-left: 4px;
}
.pRL8 {
  padding-right: 8px;
  padding-left: 8px;
}
.pRL10 {
  padding-right: 10px;
  padding-left: 10px;
}
.pRL12 {
  padding-right: 12px;
  padding-left: 12px;
}
.pRL16 {
  padding-right: 16px;
  padding-left: 16px;
}
.pRL20 {
  padding-right: 20px;
  padding-left: 20px;
}
.pRL24 {
  padding-right: 24px;
  padding-left: 24px;
}
.pRL32 {
  padding-right: 32px;
  padding-left: 32px;
}
.pRL40 {
  padding-right: 40px;
  padding-left: 40px;
}
.pRL48 {
  padding-right: 48px;
  padding-left: 48px;
}
.pR3vw {
  padding-right: 3vw;
}
.pL3vw {
  padding-left: 3vw;
}
.pRL10vw {
  padding-right: 10vw;
  padding-left: 10vw;
}
.margin-auto {
  margin: auto;
}
.m0 {
  margin: 0;
}
.m4 {
  margin: 4px;
}
.m {
  margin: 4px;
}
.m8 {
  margin: 8px;
}
.m16 {
  margin: 16px;
}
.mT-16 {
  margin-top: -16px;
}
.mT-4 {
  margin-top: -4px;
}
.mT-2 {
  margin-top: -2px;
}
.mT0 {
  margin-top: 0;
}
.mT4 {
  margin-top: 4px;
}
.mT7 {
  margin-top: 7px;
}
.mT8 {
  margin-top: 8px;
}
.mT10 {
  margin-top: 10px;
}
.mT12 {
  margin-top: 12px;
}
.mT16 {
  margin-top: 16px;
}
.mT20 {
  margin-top: 20px;
}
.mT25 {
  margin-top: 25px;
}
.mT32 {
  margin-top: 32px;
}
.mT64 {
  margin-top: 64px;
}
.mT100 {
  margin-top: 100px;
}
.mRL4 {
  margin: 0 4px;
}
.mRL8 {
  margin: 0 8px;
}
.mRL16 {
  margin: 0 16px;
}
.mRL32 {
  margin: 0 32px;
}
.mLR-8 {
  margin-right: -8px;
  margin-left: -8px;
}
.mLR40 {
  margin-right: 40px;
  margin-left: 40px;
}
.mL-5 {
  margin-left: -5px;
}
.mL0 {
  margin-left: 0;
}
.mL4 {
  margin-left: 4px;
}
.mL7 {
  margin-left: 7px;
}
.mL8 {
  margin-left: 8px;
}
.mL10 {
  margin-left: 10px;
}
.mL12 {
  margin-left: 12px;
}
.mL16 {
  margin-left: 16px;
}
.mL20 {
  margin-left: 20px;
}
.mL24 {
  margin-left: 24px;
}
.mL32 {
  margin-left: 32px;
}
.mL36 {
  margin-left: 36px;
}
.mL80 {
  margin-left: 80px;
}
.mR-16 {
  margin-right: -16px;
}
.mR0 {
  margin-right: 0;
}
.mR4 {
  margin-right: 4px;
}
.mR5 {
  margin-right: 5px;
}
.mR8 {
  margin-right: 8px;
}
.mR12 {
  margin-right: 12px;
}
.mR16 {
  margin-right: 16px;
}
.mR20 {
  margin-right: 20px;
}
.mR24 {
  margin-right: 24px;
}
.mR32 {
  margin-right: 32px;
}
.mR40 {
  margin-right: 40px;
}
.mR48 {
  margin-right: 48px;
}
.mR80 {
  margin-right: 80px;
}
.mB-16 {
  margin-bottom: -16px;
}
.mB0 {
  margin-bottom: 0;
}
.mB4 {
  margin-bottom: 4px;
}
.mB6 {
  margin-bottom: 6px;
}
.mB8 {
  margin-bottom: 8px;
}
.mB10 {
  margin-bottom: 10px;
}
.mB12 {
  margin-bottom: 12px;
}
.mB16 {
  margin-bottom: 16px;
}
.mB18 {
  margin-bottom: 18px;
}
.mB20 {
  margin-bottom: 20px;
}
.mB30 {
  margin-bottom: 30px;
}
.mB32 {
  margin-bottom: 32px;
}
.h1px {
  height: 1px;
}
.h15px {
  height: 15px;
}
.h16px {
  height: 16px;
}
.h18px {
  height: 18px;
}
.h20px {
  height: 20px;
}
.h30px {
  height: 30px;
}
.h32px {
  height: 32px;
}
.h33px {
  height: 33px;
}
.h40px {
  height: 40px;
}
.h46px {
  height: 46px;
}
.h60px {
  height: 60px;
}
.h80px {
  height: 80px;
}
.h617px {
  height: 617px;
}
.h950px {
  height: 950px;
}
.opacity0 {
  opacity: 0;
}
.opacity50 {
  opacity: 0.5;
}
.opacity70 {
  opacity: 0.7;
}
.opacity100 {
  opacity: 1;
}
/* z-index layers*/
.z0 {
  z-index: 0;
}
.z1 {
  z-index: 1;
}
.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}
.z4 {
  z-index: 4;
}
.z5 {
  z-index: 5;
}
.bottom-layer {
  z-index: 0;
  position: relative;
}
.middle-layer {
  z-index: 1;
  position: relative;
}
.top-layer {
  z-index: 2;
  position: relative;
}
.overlay-layer {
  z-index: 5;
  position: relative;
}
/*layout style for a fixed footer widget/component */
.fixed-bottom {
  z-index: 0;
  position: relative;
  position: fixed;
  bottom: 0;
}
/*borders on outer containers changes the vh size*/
.borderbox {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.contentbox {
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
/*divs as table cells*/
.display-table {
  display: table;
}
.display-row {
  display: table-row;
}
.display-cell {
  display: table-cell;
}
.display-inlineblock {
  display: inline-block;
}
.display-block {
  display: block;
}
.display-flex {
  display: flex;
}
.display-none {
  display: none;
}
/*
todo: remove copy in mobile.less, its duplicated beacuse our other apps dont use layout.less yet

Now that our scrolling is in a seperate container, it lost its momentum! To get it back, we have to add -webkit-overflow-scrolling: touch;
to the container with overflow: scroll on it. This gives the element momentum scrolling, instead of ending the scroll the
moment the user takes their finger off the page.*/
.scrolling-content {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}
.virtualscroll .container {
  -webkit-overflow-scrolling: touch;
}
.scrollable {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}
.overlay-down {
  width: 100vw;
  z-index: 5;
  position: relative;
  position: fixed;
  background-color: rgba(51, 51, 51, 0.62);
}
.center-transform-y {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.center-transform-x {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/*flexbox */
.flex-center-vertically-column {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  /* vertically aligned ... things will in the middle vertically of the column */
  justify-content: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-top-column {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-col-left,
.flex-row-top {
  -webkit-align-items: flex-start;
  /* vertically aligned 'stuff' will be aligned toward the left (flex-start) */
  align-items: flex-start;
}
.flex-col-right {
  -webkit-align-items: flex-end;
  /* vertically aligned 'stuff' will be aligned toward the right (flex-end) */
  align-items: flex-end;
}
.flex-justify-align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-col-center {
  -webkit-align-items: center;
  /* vertically aligned 'stuff' will be aligned horizontally in the middle (center) */
  align-items: center;
  text-align: center;
}
.flex-center-vertically-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
}
.flex-row-left {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-row-center {
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-row-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-align-self-stretch {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.flex-wrap-wrap {
  flex-wrap: wrap;
}
.align-self-center {
  align-self: center;
}
.flex-float-right {
  margin-left: auto;
}
.flex-fill {
  flex: 0 1 100%;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-auto {
  flex: auto;
}
.flex-none {
  flex: none;
}
.justify-space-around {
  justify-content: space-around;
}
.justify-space-between {
  justify-content: space-between;
}
.align-items-center {
  -webkit-align-items: center;
  align-items: center;
}
.legacy-icon {
  height: 32px;
  width: 32px;
}
.half-size-legacy-icon {
  height: 16px;
  width: 16px;
}
.border-light {
  border: 1px solid #d1d1d1;
}
.border-bottom-light {
  border-bottom: 1px solid #d1d1d1;
}
.border-med {
  border: 1px solid #333333;
}
.border-round {
  border: 1px solid #d1d1d1;
  border-radius: 4px;
}
.border-2 {
  border-width: 2px;
}
.border-white {
  border-color: white;
}
.border-solid {
  border-style: solid;
}
.input-right-icon {
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  margin: 0;
  padding: 6px 0px 6px 12px;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.right-to-left {
  direction: rtl;
}
.arrow-up {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  content: "";
  display: block;
  position: absolute;
}
.half-width {
  display: inline-block;
  width: 49%;
}
.half-width-right {
  display: inline-block;
  width: 49%;
  float: right;
}
.inherit-width {
  width: inherit;
}
.origin-center {
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
@media screen and (max-width: 400px) {
  .hidden-w400 {
    display: none !important;
  }
}
.horizontal-preview {
  width: 90%;
  height: 180px;
}
.middle-vertical {
  vertical-align: middle;
}
.top-vertical {
  vertical-align: top;
}
.vertical-preview {
  height: 392px;
  width: 290px;
}
.vertical-preview.four-cell {
  height: 438px;
}
.vertical-preview.five-cell {
  height: 508px;
}
.sub-vertical {
  vertical-align: sub;
}
.block-margin-center-hor {
  display: block;
  margin: auto;
}
.border-circle {
  border-radius: 50%;
}
.border-gray {
  border-color: #d1d1d1;
}
.aspect-ratio-1-1 {
  padding-top: 100%;
}
.aspect-ratio-1-1 > * {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.absolute-full-width-height {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.preformatted {
  white-space: pre-wrap;
}
.skeleton-pulse:after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-animation: loading 1.5s infinite;
  animation: loading 1.5s infinite;
}
.skeleton-block {
  background-color: #d1d1d1;
  position: relative;
}
.skeleton-block:after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-animation: loading 1.5s infinite;
  animation: loading 1.5s infinite;
}
.skeleton-block-dark {
  background-color: #999999;
  position: relative;
}
.skeleton-block-dark:after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-animation: loading 1.5s infinite;
  animation: loading 1.5s infinite;
}
.skeleton-block-light {
  background-color: #e6e6e6;
  position: relative;
}
.skeleton-block-light:after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  -webkit-animation: loading 1.5s infinite;
  animation: loading 1.5s infinite;
}
@keyframes loading {
  100% {
    transform: translateX(100%);
  }
}
.h2-modal {
  line-height: normal;
  text-align: center;
  margin-bottom: unset;
}
.table.middle-vertical > tbody > tr > td,
.table.middle-vertical > tbody > tr > th,
.table.middle-vertical > tfoot > tr > td,
.table.middle-vertical > tfoot > tr > th,
.table.middle-vertical > thead > tr > td,
.table.middle-vertical > thead > tr > th {
  vertical-align: middle;
}
.wrap-word {
  word-break: break-all;
}
/*------------------------------------*\
    #COLORS
\*------------------------------------*/
.good {
  color: #17AD37;
}
.warning {
  color: #D58512;
}
.notice {
  color: #d0021b;
}
.error {
  color: #d0021b;
}
.zen-text-shadow {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  /* Firefox 3.5 - 3.6 */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}
.primary-gradient-background {
  background-color: #b3272d;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3272d), to(#74191d));
  background: -webkit-linear-gradient(top, #b3272d, #74191d);
  background: -moz-linear-gradient(top, #b3272d, #74191d);
  background: -ms-linear-gradient(top, #b3272d, #74191d);
  background: -o-linear-gradient(top, #b3272d, #74191d);
}
.secondary-gradient-background {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#e6e6e6));
  background: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background: -o-linear-gradient(top, #ffffff, #e6e6e6);
}
.grey-dark-gradient-background {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#636363), to(#333333));
  background: -webkit-linear-gradient(top, #636363, #333333);
  background: -moz-linear-gradient(top, #636363, #333333);
  background: -ms-linear-gradient(top, #636363, #333333);
  background: -o-linear-gradient(top, #636363, #333333);
}
.gray-black-gradient-background {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#636363), to(#000000));
  background: -webkit-linear-gradient(top, #636363, #000000);
  background: -moz-linear-gradient(top, #636363, #000000);
  background: -ms-linear-gradient(top, #636363, #000000);
  background: -o-linear-gradient(top, #636363, #000000);
}
.zp-red {
  color: #b3272d;
}
.gray-one {
  color: #f1f1f1;
}
.gray-two {
  color: #e6e6e6;
}
.gray-three {
  color: #d1d1d1;
}
.gray-four {
  color: #999999;
}
.gray-five {
  color: #636363;
}
.gray-six {
  color: #464646;
}
.gray-seven {
  color: #333333;
}
.gray-eight {
  color: #707070;
}
.white {
  color: #ffffff;
}
.black {
  color: #000000;
}
.success {
  color: #17AD37;
}
.zp-green {
  color: #559955;
}
.gray-one-bg {
  background-color: #f1f1f1;
}
.gray-two-bg {
  background-color: #e6e6e6;
}
.gray-three-bg {
  background-color: #d1d1d1;
}
.gray-seven-bg {
  background-color: #333333;
}
.white-bg {
  background-color: #ffffff !important;
}
.fix-bg {
  position: absolute;
  height: 100%;
}
.brand-color {
  color: #b3272d;
}
.brand-color-bg {
  background-color: #b3272d;
}
.nobullet {
  list-style-type: none;
}
.noborder {
  border: none !important;
}
.background-black {
  background-color: black;
}
/*------------------------------------*\
    #HELPER-CLASSES
\*------------------------------------*/
.clear {
  clear: both;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.weight-100 {
  font-weight: 100;
}
.height-50px {
  height: 50px;
}
.vert-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.child-center {
  margin: auto;
}
.vert-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.width-15 {
  width: 15%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-16 {
  width: 16%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-20 {
  width: 20%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-24 {
  width: 24%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-28 {
  width: 28%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-30 {
  width: 30.75%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-33 {
  width: 33.33333%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-75 {
  width: 75%;
  -webkit-flex: none !important;
  flex: none !important;
}
.width-80 {
  width: 80%;
  -webkit-flex: none !important;
  flex: none !important;
}
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.display-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
/* these make things center vertically and justify center, left, or right. it's amazing. */
.flex-center {
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: auto;
}
.flex-space-evenly {
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-evenly;
  overflow: auto;
}
.flex-center-row {
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: auto;
}
.flex-center-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.flex-center-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}
.flex-center-right-column {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-center-right-column.vertical-align {
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
}
.flex-1 {
  flex: 1;
}
.flex-none {
  flex: none;
}
.align-center {
  align-items: center;
}
.justify-space-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
/*------------------------------------*\
    #FORM-ELEMENTS
\*------------------------------------*/
.form-group {
  font-weight: 300;
}
.form-control {
  border-radius: 3px;
  color: #636363;
}
.form-control-invalid {
  border-color: #d0021b;
}
/* placeholder text color */
input::-webkit-input-placeholder {
  color: #636363;
}
textarea::-webkit-input-placeholder {
  color: #636363;
}
input::-moz-placeholder {
  color: #636363;
}
input:-moz-placeholder {
  color: #636363;
}
/* older version of firefox */
input:-ms-input-placeholder {
  color: #636363;
}
textarea:-ms-input-placeholder {
  color: #636363;
}
input:-ms-input-placeholder {
  color: #636363;
}
textarea:-ms-input-placeholder {
  color: #636363;
}
.zen-header {
  color: #b3272d;
  font-size: 18pt;
}
.zen-header-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.zen-msg {
  background-color: #d1d1d1;
  color: #b3272d;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  font-weight: 300;
  line-height: 1.1;
  padding: 0 8px 8px 8px;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.zen-error-msg {
  color: #d0021b;
  font-size: 14px;
  font-weight: 100;
}
.zen-lg-error-msg {
  color: #d0021b;
  font-size: 20px;
  font-weight: 100;
}
.zen-underline {
  border-bottom: 1pt solid #d1d1d1;
}
.btn-hover-gray-1:hover {
  color: #f1f1f1;
}
.zen-transparent-button {
  background: transparent;
  border: none;
  font-size: 36px;
  color: #ffffff;
  box-shadow: none;
  padding: 5px;
  transition: all 0.2s ease-in-out;
}
.zen-transparent-buttonfocus,
.zen-transparent-buttonvisited .zen-transparent-buttonactive,
.zen-transparent-buttonhover {
  color: #ffffff;
  background: none;
  border: none;
  box-shadow: none;
}
.bottom-button {
  display: -webkit-flex;
  display: flex;
  min-height: 60px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.bottom-button .reserve-button {
  -webkit-flex: 1;
  flex: 1;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  display: -webkit-flex;
  display: flex;
}
.bottom-button .reserve-button .button-text {
  font-size: 1.25em;
  font-weight: 300;
  margin-left: 10px;
}
.zen-primary-button {
  width: 100%;
  color: #f1f1f1;
  font-weight: 300;
  border-radius: 3px;
  background-color: #b3272d;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3272d), to(#74191d));
  background: -webkit-linear-gradient(top, #b3272d, #74191d);
  background: -moz-linear-gradient(top, #b3272d, #74191d);
  background: -ms-linear-gradient(top, #b3272d, #74191d);
  background: -o-linear-gradient(top, #b3272d, #74191d);
}
.zen-primary-button:active,
.zen-primary-button:hover,
.zen-primary-button:focus,
.zen-primary-button:visited {
  color: #f1f1f1;
  background-color: #b3272d;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3272d), to(#74191d));
  background: -webkit-linear-gradient(top, #b3272d, #74191d);
  background: -moz-linear-gradient(top, #b3272d, #74191d);
  background: -ms-linear-gradient(top, #b3272d, #74191d);
  background: -o-linear-gradient(top, #b3272d, #74191d);
}
.zen-overlay-button {
  width: 100%;
  color: #b3272d;
  font-weight: 300;
  border-radius: 3px;
  background-color: #ffffff;
  background-color: #ffffff !important;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700  !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.75);
  width: inherit;
  font-size: 1.8rem;
}
.zen-overlay-button:active,
.zen-overlay-button:hover,
.zen-overlay-button:focus,
.zen-overlay-button:visited {
  color: #b3272d;
  background-color: #ffffff;
  background-color: #ffffff !important;
}
.zen-button {
  width: 100%;
  color: #ffffff;
  font-weight: 300;
  border-radius: 3px;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#636363), to(#333333));
  background: -webkit-linear-gradient(top, #636363, #333333);
  background: -moz-linear-gradient(top, #636363, #333333);
  background: -ms-linear-gradient(top, #636363, #333333);
  background: -o-linear-gradient(top, #636363, #333333);
}
.zen-button:active,
.zen-button:hover,
.zen-button:focus,
.zen-button:visited {
  color: #ffffff;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#636363), to(#333333));
  background: -webkit-linear-gradient(top, #636363, #333333);
  background: -moz-linear-gradient(top, #636363, #333333);
  background: -ms-linear-gradient(top, #636363, #333333);
  background: -o-linear-gradient(top, #636363, #333333);
}
.zen-secondary-button {
  width: 100%;
  color: #636363;
  font-weight: 300;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#e6e6e6));
  background: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background: -o-linear-gradient(top, #ffffff, #e6e6e6);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  border: 1px solid #d1d1d1;
}
.zen-secondary-button:active,
.zen-secondary-button:hover,
.zen-secondary-button:focus,
.zen-secondary-button:visited {
  color: #636363;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#e6e6e6));
  background: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background: -o-linear-gradient(top, #ffffff, #e6e6e6);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
}
.zen-secondary-button-sm {
  width: 100%;
  color: #636363;
  font-weight: 300;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#e6e6e6));
  background: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background: -o-linear-gradient(top, #ffffff, #e6e6e6);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  width: 88px;
  height: 32px;
  border: 1px solid #d1d1d1;
}
.zen-secondary-button-sm:active,
.zen-secondary-button-sm:hover,
.zen-secondary-button-sm:focus,
.zen-secondary-button-sm:visited {
  color: #636363;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#e6e6e6));
  background: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background: -o-linear-gradient(top, #ffffff, #e6e6e6);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
}
.zen-utility-button {
  width: 100%;
  color: #f1f1f1;
  font-weight: 300;
  border-radius: 3px;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#636363), to(#333333));
  background: -webkit-linear-gradient(top, #636363, #333333);
  background: -moz-linear-gradient(top, #636363, #333333);
  background: -ms-linear-gradient(top, #636363, #333333);
  background: -o-linear-gradient(top, #636363, #333333);
}
.zen-utility-button:active,
.zen-utility-button:hover,
.zen-utility-button:focus,
.zen-utility-button:visited {
  color: #f1f1f1;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#636363), to(#333333));
  background: -webkit-linear-gradient(top, #636363, #333333);
  background: -moz-linear-gradient(top, #636363, #333333);
  background: -ms-linear-gradient(top, #636363, #333333);
  background: -o-linear-gradient(top, #636363, #333333);
}
.rectangle-button {
  border-radius: 3px;
  background-image: linear-gradient(to bottom, #636363, #464646);
  color: white;
  min-height: 50px;
}
.rectangle-button:hover {
  color: white;
}
.rectangle-button:active {
  color: #333;
}
.rectangle-button.btn-small {
  min-height: 0;
}
.btn.text-only-btn {
  background-color: inherit;
}
.zen-btn-disabled {
  opacity: 0.65;
}
.indented {
  margin-left: 20px;
  margin-right: 20px;
}
.header-settings-bar {
  position: relative;
  z-index: 11;
  background: white;
  overflow: visible;
  border-top: 1px solid #333333;
}
.header-settings-bar:before {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  content: "";
  display: block;
  position: absolute;
  border-bottom-color: #000;
  right: 4vw;
  top: -8px;
  z-index: 10;
  height: 8px;
}
.header-settings-bar:after {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  content: "";
  display: block;
  position: absolute;
  right: 4vw;
  top: -7px;
  z-index: 10;
}
.profile-photo {
  position: relative;
  border: 1px solid #d1d1d1;
}
.profile-photo.x-small {
  width: 32px;
  height: 32px;
  background-size: 32px;
}
.profile-photo.smaller {
  width: 40px;
  height: 40px;
  background-size: 40px;
}
.profile-photo.george {
  width: 60px;
  height: 60px;
}
.profile-photo.small {
  width: 72px;
  height: 72px;
}
@media only screen and (max-width: 390px) {
  .profile-photo.small.responsive {
    width: 45px;
    height: 45px;
    background-size: 45px;
  }
}
.profile-photo.medium {
  width: 108px;
  height: 108px;
  background-size: 72px;
}
@media only screen and (max-width: 365px) {
  .profile-photo.medium {
    width: 60px ;
    height: 60px;
    background-size: 60px;
  }
}
.profile-photo.medium-small {
  width: 80px;
  height: 80px;
  background-size: 80px;
}
.profile-photo.medium-large {
  width: 200px;
  height: 200px;
  background-size: 200px;
}
.profile-photo.large {
  width: 250px;
  height: 250px;
  background-size: 250px;
}
@media only screen and (max-width: 365px) {
  .profile-photo.large {
    width: 236px;
    height: 236px;
    background-size: 236px;
  }
}
.profile-photo.i-no-repeat {
  background: no-repeat center;
  background-color: #ffffff;
}
.retail-photo-container.large {
  height: 200px;
}
.retail-item-dialog-view .currency-input-widget {
  max-width: 120px;
}
.retail-photo {
  position: relative;
  border: 1px solid #f1f1f1;
  display: block;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.retail-photo.x-small {
  width: 48px;
  height: 48px;
  background-size: 48px auto;
}
.retail-photo.small {
  width: 80px;
  height: 80px;
  background-size: 80px auto;
}
.retail-photo.medium {
  margin: 0 auto;
}
.retail-photo.large {
  width: 200px;
  height: 200px;
  background-size: 200px auto;
}
.retail-photo.hover-add-to-cart:hover::before {
  content: url(/zenplanner/skin/img/add-to-cart-hover.png);
  zoom: 100%;
  background-color: rgba(70, 70, 70, 0.8);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .retail-photo.medium {
    width: 120px;
    height: 120px;
    background-size: 120px auto;
  }
  .retail-photo-name {
    padding-left: calc((100% - 120px) / 2);
  }
}
@media (min-width: 768px) {
  .retail-photo.medium {
    width: 160px;
    height: 160px;
    background-size: 160px auto;
  }
  .retail-photo-name {
    padding-left: calc((100% - 160px) / 2);
  }
}
.zen-default-border-bottom {
  border-bottom: 2px solid #e6e6e6;
}
.zen-default-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300 !important;
  font-size: 24px;
}
.zen-light-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 100 !important;
}
.zen-no-box-shadow {
  -webkit-box-shadow: 0 4px 4px #ffffff;
  -moz-box-shadow: 0 4px 4px #ffffff;
  box-shadow: 0 4px 4px #ffffff;
}
.zen-text-field {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300 !important;
  font-size: 24px;
  -webkit-box-shadow: 0 4px 4px #ffffff;
  -moz-box-shadow: 0 4px 4px #ffffff;
  box-shadow: 0 4px 4px #ffffff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  height: 50px;
  color: #999999;
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.zen-text-field-disabled {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300 !important;
  font-size: 24px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  color: #e6e6e6;
  background-color: #999999;
}
.icon {
  /*font-size: 30px;

  height: 36px;
  line-height: 1.2;*/
}
.icon-active {
  color: #333333;
}
.icon-inactive {
  color: #999999;
}
.icon-gray-2 {
  color: #e6e6e6;
}
.fa-hollow {
  color: transparent;
}
.fa-hollow.light {
  -webkit-text-stroke: 1px #f1f1f1;
}
.fa-6x {
  font-size: 6em;
}
.fa-10x {
  font-size: 10em;
}
.fa-13x {
  font-size: 13em;
}
.background-shaded {
  background-color: #f1f1f1;
}
.bottom-separator-light {
  border-bottom: solid 1px #e6e6e6;
}
.list-separator-light:not(:last-child) {
  border-bottom: solid 1px #e6e6e6;
}
.bottom-separator {
  border-bottom: solid 1px #d1d1d1;
}
.bottom-separator-black {
  border-bottom: solid 1px #000000;
}
.top-separator {
  border-top: solid 1px #d1d1d1;
}
.checkbox-label {
  font-size: 16px;
  font-weight: lighter;
  color: #4a4a4a;
}
/*replace with fontawesome*/
.glyphicon {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.glyphicon-chevron-right:before {
  content: "\f105";
}
.glyphicon-chevron-left:before {
  content: "\f104";
}
.glyphicon-chevron-up:before {
  content: "\f077";
}
.glyphicon-chevron-down:before {
  content: "\f078";
}
.centered-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.logo-animated {
  height: 87px;
  width: 87px;
  /* margin: 100px; */
  -webkit-transition: transform 1s;
  -webkit-animation-name: throb;
  -webkit-animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  transition: transform 1s;
  animation: throb 5s ease-in-out infinite;
}
@-webkit-keyframes throb {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.5);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}
@keyframes throb {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.5);
    opacity: 1;
  }
  75% {
    transform: scale(0.75);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.main-menu-separator {
  border: 0;
  border-top: 1px solid #464646;
  margin-top: 16px;
  width: 248px;
}
.main-menu-link {
  margin-left: 16px;
  opacity: 0.6;
}
.error-state {
  border: 1px solid #d0021b;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(208, 2, 27, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(208, 2, 27, 0.6);
}
.dropdown-error {
  border: 1px solid #d0021b !important;
}
.blinking-cursor {
  font-weight: 100;
  font-size: 30px;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}
.cursor-hand {
  cursor: pointer;
}
@keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-moz-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-webkit-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-ms-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-o-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-webkit-keyframes fade-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(0.75);
    opacity: 0;
  }
  75% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(0.75);
    opacity: 0;
  }
  75% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.fade-in {
  -webkit-transition: transform 0.5s;
  -webkit-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  transition: transform 0.5s;
  animation: fade-in 0.5s ease-in-out 1;
}
@-webkit-keyframes fade-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  25% {
    transform: scale(0.75);
    opacity: 0.5;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  75% {
    transform: scale(0.25);
    opacity: 0.5;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  25% {
    transform: scale(0.75);
    opacity: 0.5;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  75% {
    transform: scale(0.25);
    opacity: 0.5;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.fade-out {
  -webkit-transition: transform 0.5s;
  -webkit-animation-name: fade-out;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  transition: transform 0.5s;
  animation: fade-out 0.5s ease-in-out 1;
}
.hyperlink {
  text-decoration: underline;
  color: inherit;
}
.check-animation:after {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  top: calc((100% - 100px) / 2);
  left: calc((100% - 100px) / 2);
  content: "\f00c";
  color: white;
  background: green;
  opacity: 0.9;
  padding-top: 15px;
  position: absolute;
  z-index: 12;
  border-radius: 5000px;
  font-size: 80px;
  text-align: center;
  /* border: 5px solid #3B1700; */
  width: 100px;
  height: 100px;
}
.check-animation.on:after {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in(0, 2, 1, 0.5);
  transition-timing-function: ease-in(0, 2, 1, 0.5);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.last-child-no-border:last-child {
  border-bottom: none;
}
.right-shadow-border {
  -webkit-box-shadow: inset -5px 2px 0.75em -10px #000000;
}
.line-height-12 {
  line-height: 1.2;
}
.calendar-fade-toggle {
  display: flex;
  position: absolute;
}
#skillsTable {
  position: absolute;
  width: 100vw;
}
#calender-class-filter-container {
  min-height: 50px;
}
.zp-widget {
  /* Layout Less */
  /* Theme Less */
}
.zp-widget .horizontal-three-cell {
  width: 25%;
}
.zp-widget .horizontal-four-cell {
  width: 20%;
}
.zp-widget .horizontal-five-cell {
  width: 16.6%;
}
.zp-widget .error-state {
  border: 1px solid #d0021b;
  outline: 0;
}
.zp-widget input,
.zp-widget button,
.zp-widget select {
  height: 40px;
  border: none;
  border-radius: 0;
  font-weight: normal;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
}
.zp-widget .widget-radio-container {
  padding: 4px;
  margin: 4px 0px;
}
.zp-widget .widget-radio-container input {
  height: 17px;
  margin-bottom: 0;
}
.zp-widget .widget-radio-container label {
  margin-bottom: 0;
}
.zp-widget button {
  color: white;
}
.zp-widget input {
  padding-left: 8px;
  padding-right: 8px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400  !important;
}
.zp-widget select {
  padding: 6px 12px;
  background: #e6e6e6 none;
  -webkit-appearance: menulist;
}
.zp-widget button.submit {
  text-transform: uppercase;
}
.zp-widget .gender-select {
  font-size: 12px;
  padding: 6px 27px 6px 6px;
  background: url(/zenplanner/studio/skin/images/layout/select-no-divider.png) #e6e6e6 no-repeat right center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.zp-widget.horizontal {
  height: 100px;
}
.zp-widget.horizontal .widget-container {
  display: inline-block;
}
.zp-widget.horizontal .input-container,
.zp-widget.horizontal .submit-container {
  float: left;
}
.zp-widget.horizontal .input-container {
  padding-right: 8px;
}
.zp-widget.vertical input {
  width: 100%;
}
.zp-widget.light {
  background-color: white;
}
.zp-widget.light input {
  background-color: #e6e6e6;
}
.zp-widget.dark {
  background-color: black;
}
.zp-widget.dark select {
  background-color: white;
}
.zp-widget .success {
  color: #17AD37;
}
.zp-widget #widget-success-container {
  margin-top: 50px;
  text-align: center;
}
.zp-widget #main-success-message {
  font-size: 14pt;
  margin-top: 1em;
  margin-bottom: 1em;
}
.widget-header-class {
  text-align: center;
  font-weight: bold;
  font-size: 21px;
}
@media screen and (min-width: 1025px) {
  #free-trial-widget {
    width: 840px;
  }
  .class-card {
    background-color: #ffffff;
    margin: 0 auto 15px;
    border-radius: 4px;
    width: 580px;
    flex-direction: row;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
    padding-left: 40px;
  }
  .name-class {
    width: 65%;
    display: inline-block;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .date-time-class {
    width: 35%;
    display: inline-block;
    text-align: right;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  #footer-free-trial {
    width: 60%;
  }
}
@media screen and (min-width: 561px) and (max-width: 1024px) {
  #free-trial-widget {
    width: 600px;
  }
  .class-card {
    background-color: #ffffff;
    margin: 0 auto 15px;
    border-radius: 4px;
    width: 520px;
    flex-direction: row;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
  }
  .name-class {
    width: 65%;
    display: inline-block;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .date-time-class {
    width: 35%;
    display: inline-block;
    text-align: right;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  #footer-free-trial {
    width: 80%;
  }
}
@media screen and (max-width: 560px) {
  #free-trial-widget {
    width: 280px;
  }
  .class-card {
    background-color: #ffffff;
    margin: 0 auto 15px;
    border-radius: 4px;
    width: 250px;
    display: flex;
    flex-direction: column;
  }
  .name-class {
    width: 100%;
    display: inline-block;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    /* vertically aligned ... things will in the middle vertically of the column */
    justify-content: center;
  }
  .date-time-class {
    width: 100%;
    display: inline-block;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    /* vertically aligned ... things will in the middle vertically of the column */
    justify-content: center;
  }
  #footer-free-trial {
    width: 90%;
  }
}
.class-card-title {
  margin-bottom: 40px;
  font-size: 18px;
}
.whiteFrame-1dp {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.font-size-17 {
  font-size: 17px;
}
.font-size-20 {
  font-size: 20px;
}
.bold {
  font-weight: bold;
}
.clickable {
  cursor: pointer;
}
#footer-free-trial {
  font-size: 17px;
  margin: auto;
  position: relative;
  bottom: 6px;
}
#footer-free-trial button.footer-chevron-up {
  outline: none;
  width: 49px;
  height: 32px;
  background: #f6f6f6;
  color: #7f7f7f;
  margin: 0 1px 0 0;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
#footer-free-trial button.footer-chevron-down {
  outline: none;
  width: 49px;
  height: 32px;
  background: #f6f6f6;
  color: #7f7f7f;
  margin: 0 0 0 0;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
.progress {
  border-radius: 10px;
}
.footer-chevron {
  outline: none;
  width: 49px;
  height: 32px;
  background: #f6f6f6;
  color: #7f7f7f;
}
button.class-list-chevron {
  height: 30px;
  width: 30px;
  outline: none;
  background: #f6f6f6;
  color: #7f7f7f;
  border-radius: 4px;
  padding-top: 4px;
}
.free-trial-nav {
  background-color: #707070;
  color: #ffffff;
}
.nav-button-inner {
  border: 2px solid #707070;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffffff;
}
.nav-button-outer {
  border: 2px solid #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
hr.nav-divider {
  border-top: solid 1px #ffffff;
  margin-top: 60px;
}
