@charset "UTF-8";
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/*=================RESPONSIVE===============*/
html {
  color: #222;
  font-size: 1em;
  line-height: 1.5;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  background: linear-gradient(#efe6e2, #e6dfdd, #ddd9d6);
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

#wrapper {
  width: 94%;
  z-index: 9999;
  margin: 0 auto;
  max-width: 1024px;
  color: #333;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  #wrapper {
    /*width: 100%;  */
    margin: 24px auto;
    padding: 0px;
    box-shadow: 0 0 12px #807e7e;
  }
}

header {
  width: 100%;
  padding: 24px 0;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  header {
    background-repeat: repeat-x;
    background-size: contain;
    margin: 0 0 0 0;
  }
}
header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 4.25em;
  font-weight: 700;
  line-height: 1em;
  margin: 0 0 0.15em 0;
  padding: 4px;
  display: inline-block;
  color: #303030;
}
@media only screen and (max-width: 320px) {
  header h1 {
    font-size: 4.5em;
  }
}
@media only screen and (min-width: 768px) {
  header h1 {
    font-size: 5.25em;
  }
}
@media only screen and (min-width: 1440px) {
  header h1 {
    font-size: 6.25em;
  }
}
header h1 span {
  display: inline-block;
  font-size: 0.65em;
  margin: 0;
  line-height: 0.88em;
}
header h2 {
  font-family: "Crimson Text", sans-serif;
  font-size: 2.75em;
  font-weight: 400;
  letter-spacing: 0.088em;
  padding: 0 4px 0 4px;
  margin: 0 0 0 0;
  line-height: 1em;
}
@media only screen and (max-width: 320px) {
  header h2 {
    font-size: 1.5em;
  }
}
@media only screen and (min-width: 768px) {
  header h2 {
    font-size: 3r 0.25em;
  }
}
@media only screen and (min-width: 1440px) {
  header h2 {
    font-size: 4.5em;
    margin: 0 0 0 0;
  }
}
header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.85em;
  font-weight: 400;
  text-align: center;
  margin: 24px 0 0 0;
  padding: 4px 4px;
  text-transform: uppercase;
}
@media only screen and (max-width: 320px) {
  header h3 {
    padding: 8px 4px;
  }
}
@media only screen and (min-width: 768px) {
  header h3 {
    font-size: 2.05em;
  }
}
header h4 {
  display: inline-block;
  padding: 6px 0;
}
header img {
  height: auto;
  width: auto;
  max-width: 500px;
  margin: 1em 0;
}
@media only screen and (min-width: 768px) {
  header img {
    max-height: 100%;
  }
}

/*==========================MAIN CONTAINER======================*/
.container {
  margin: 0 auto;
  max-width: 1024px;
  padding: 12px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .container {
    margin: 0 0 64px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/*==========================BOOK======================*/
.book {
  padding: 0 12px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  text-align: center;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}
.book img {
  height: auto;
  width: auto;
  max-width: 100%;
}
.book a {
  padding: 12px 12px;
  display: block;
  width: 75%;
  margin: 24px auto;
  background-color: white;
  color: black;
  border-radius: 6px;
}
.book a:hover {
  background-color: white;
}
@media only screen and (min-width: 768px) {
  .book {
    padding: 12px 12px;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .book {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

figcaption {
  font-size: 0.75em;
}

/*==========================BUYLINKS======================*/
#buynow {
  font-size: 0.85em;
  color: #fff;
  text-align: center;
  font-weight: 400;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
@media only screen and (min-width: 768px) {
  #buynow {
    color: #333;
    font-size: 1.25em;
    margin: 12px 0;
  }
}

.buylinks {
  padding: 0 0px 6px 0px;
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  background-color: #c6b6b1;
  background: #303030;
  /* Old browsers */
  background: -moz-linear-gradient(top, #303030 0%, #4a4a4a 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #303030 0%, #4a4a4a 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #303030 0%, #4a4a4a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$grad-color-one", endColorstr="$grad-color-two",GradientType=0 );
  /* IE6-9 */
  /*background-attachment: fixed;*/
  /*flex-basis: 46%;*/
}
@media only screen and (min-width: 768px) {
  .buylinks {
    /*flex-basis: 25%;*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    background-image: none;
  }
}
@media only screen and (min-width: 1440px) {
  .buylinks {
    /*flex-basis: 25%;*/
    position: relative;
    background-color: transparent;
    background-image: none;
    margin: 0 0 24px 0;
  }
}
.buylinks a {
  display: block;
  padding: 12px 12px;
  margin: 2px;
  -ms-flex-preferred-size: 31%;
  flex-basis: 31%;
  /*background-color: lighten($color-accent, 50%);*/
  background: #e3e3e3;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e3e3e3 0%, #b0b0b0 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #e3e3e3 0%, #b0b0b0 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e3e3e3 0%, #b0b0b0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$grad-color-one", endColorstr="$grad-color-two",GradientType=0 );
  /* IE6-9 */
  /*background-attachment: fixed;*/
  border: 1px solid #4d4d4d;
  border-radius: 6px;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (min-width: 768px) {
  .buylinks a {
    padding: 16px 12px;
    margin: 6px 6px;
    border-radius: 6px;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .buylinks a {
    padding: 16px 12px;
    margin: 6px 6px;
    border-radius: 6px;
    -ms-flex-preferred-size: 13%;
    flex-basis: 13%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media only screen and (min-width: 768px) {
  .buylinks a:hover {
    /*background-color: lighten($link-color, 8%);*/
    background: white;
    /* Old browsers */
    background: -moz-linear-gradient(top, white 0%, #cccccc 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, white 0%, #cccccc 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, white 0%, #cccccc 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$grad-color-one", endColorstr="$grad-color-two",GradientType=0 );
    /* IE6-9 */
    /*background-attachment: fixed;*/
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.buylinks a img {
  width: auto;
  max-width: 100%;
  max-height: 80%;
  /*max-height: 20px;*/
  border: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .buylinks a img {
    max-height: 30px;
  }
}
.buylinks h4 {
  font-size: 1em;
  text-align: center;
  margin: 8px 0;
}

/*==========================COPY======================*/
.copy {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 12px;
  text-align: center;
  font-family: "Crimson Text", sans-serif;
  font-size: 1.15em;
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}
.copy p {
  margin: 12px 0;
  padding: 12px 0;
  font-weight: 400;
  text-align: left;
}
.copy h4 {
  font-size: 1.05em;
  line-height: 1.6em;
  text-transform: uppercase;
  font-style: italic;
  margin: 12px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .copy h4 {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 768px) {
  .copy {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    font-size: 1.5em;
    padding: 12px 12px 12px 12px;
  }
}
@media only screen and (min-width: 1440px) {
  .copy {
    padding: 12px 36px 12px 36px;
    font-size: 1.35em;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

.headline {
  font-family: "Crimson Text", sans-serif;
  font-size: 1.5em;
  text-align: center;
  padding: 0 0.5em;
}
@media only screen and (min-width: 768px) {
  .headline {
    padding: 0 3em;
  }
}

/*===================QUOTES SECTION====================*/
q, cite {
  display: block;
  font-weight: 700;
}

q {
  quotes: "“" "”";
  margin: 36px 0 0 0;
}

cite {
  margin: 8px 0 18px 0;
  color: #565656;
  font-style: normal;
  font-size: 0.98em;
}

cite:before {
  content: "—";
}

/*===================BOTTOM SECTION====================*/
.bottom-line {
  max-width: 1024px;
  margin: 24px auto 48px;
  padding: 0 8px;
  text-align: center;
  font-size: 1.25em;
}
.bottom-line a {
  background: #969696;
  /* Old browsers */
  background: -moz-linear-gradient(top, #969696 0%, #565656 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #969696 0%, #565656 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #969696 0%, #565656 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$grad-color-one", endColorstr="$grad-color-two",GradientType=0 );
  /* IE6-9 */
  /*background-attachment: fixed;*/
  padding: 4px 8px;
  margin: 4px 0;
  display: inline-block;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}
.bottom-line a:hover {
  background: #c9c9c9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #c9c9c9 0%, #898989 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #c9c9c9 0%, #898989 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #c9c9c9 0%, #898989 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$grad-color-one", endColorstr="$grad-color-two",GradientType=0 );
  /* IE6-9 */
  /*background-attachment: fixed;*/
  color: #333;
}

/*==========================ONSALE======================*/
#onsale {
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  font-family: "Crimson Text", sans-serif;
  text-align: center;
  padding: 24px 0px;
  margin: 0px auto;
  line-height: 1.4em;
}
@media only screen and (min-width: 768px) {
  #onsale {
    margin: 0 auto 12px;
    font-size: 2.5em;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 8px 0px;
    line-height: 1em;
  }
}
@media only screen and (min-width: 1440px) {
  #onsale {
    font-size: 2.75em;
    margin: 0px auto;
  }
}

/*==========================VIDEO======================*/
#videoYT {
  width: 100%;
  max-width: 1024px;
  padding: 12px;
  overflow: hidden;
  clear: both;
  margin: 36px auto;
  font-size: 1.5em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #videoYT {
    padding: 36px;
  }
}

.videoContainer {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}
.videoContainer iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0px;
  border: 1px solid #333;
}

/*==========================CONNECT======================*/
.connect {
  max-width: 1024px;
  margin: 24px auto;
  text-align: center;
}
.connect a {
  color: #303030;
}
.connect a img {
  margin-right: 12px;
}

/*==========================SIGN UP======================*/
#myForm {
  width: 100%;
  max-width: 320px;
  margin: 12px auto;
  background-color: #fff;
  padding: 12px;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#myForm h1 {
  font-size: 1.24em;
  margin: 0 0 12px 0;
  text-align: center;
}
#myForm label {
  font-size: 0.78em;
  width: 96px;
  display: block;
  padding: 7px 0 4px 0;
}
#myForm sub {
  display: block;
  font-size: 0.78em;
  color: #C50600;
  margin: 6px 0;
}

#macsite input[type=text] {
  background-color: #efefef;
  color: #333;
  border: 1px solid #b9b9b9;
  margin: 0 0 8px 0;
  padding: 9px 6px;
  font-size: 0.84em;
  display: inline-block;
  border-radius: 0px;
}
#macsite input[type=text][name=txtEmail] {
  margin: 0 0 16px 0;
}
#macsite input[type=submit] {
  background-color: #1b7696;
  color: #fff;
  font-size: 1.3em;
  margin: 12px 0 0 0;
  padding: 8px 24px;
  border: 0;
  display: block;
  width: 98%;
  cursor: pointer;
}
#macsite input[type=submit]:hover {
  background-color: #666;
  color: #fff;
}

.age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fancybox-slide--iframe .fancybox-content {
  width: 360px;
  height: 100%;
  max-width: 360px;
  max-height: 554px;
  margin: 0;
}

/*=========================FOOTER============================*/
footer {
  width: 100%;
  font-size: 0.75em;
  padding: 24px 0;
  text-align: center;
  margin: 0 0 222px 0;
  color: #333;
  background-color: transparent;
}
@media only screen and (min-width: 768px) {
  footer {
    margin: 4em 0 0 0;
    bottom: 0;
  }
}

footer a {
  color: black;
}

footer a:hover {
  color: #988b82;
}

footer a:visited {
  color: #e6dfdd;
}

.footerlinks {
  display: block;
  margin: 0 24px 0 0;
}

/*===================BOTTOM SECTION====================*/
.tour {
  max-width: 1024px;
  margin: 24px auto 48px;
  padding: 12px 0 8px 0;
  text-align: center;
  font-size: 1.25em;
  background-color: #efefef;
}
.tour h3 {
  margin: 4px 0 12px 0;
  font-family: "Montserrat", sans-serif;
}
.tour p {
  margin: 0 0 12px 0;
  font-size: 0.88em;
}

.tour-dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.88em;
  font-family: "Montserrat", sans-serif;
}

.tourdate {
  margin: 0 12px 36px 12px;
  -ms-flex-preferred-size: 94%;
  flex-basis: 94%;
}
@media only screen and (min-width: 768px) {
  .tourdate {
    -ms-flex-preferred-size: 29%;
    flex-basis: 29%;
  }
}
.tourdate h3 {
  font-size: 0.96em;
  color: #555;
  margin: 0 0 12px 0;
  background-color: #d0c3c0;
  padding: 4px 6px;
}
@media only screen and (min-width: 768px) {
  .tourdate h3 {
    font-size: 0.8em;
  }
}
.tourdate h4 {
  font-size: 0.88em;
  padding: 0 0 4px 0;
  margin: 0;
}
.tourdate p {
  font-size: 0.82em;
  margin: 0;
  padding: 0 4px 4px 4px;
  font-family: "Montserrat", sans-serif;
}
.tourdate p span {
  color: #a39890;
  font-style: italic;
  display: block;
}

a.tourdate {
  text-decoration: none;
  border: 1px solid #d4d4d4;
  color: #333;
  background-color: #fcfcfc;
}
a.tourdate:hover {
  background-color: white;
}
a.tourdate:hover h3 {
  background-color: #bba8a2;
}

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