﻿/**
 * Starting point for styles
 * WARNING: edit only the LESS files.
 * *.css and *.min.css are auto-generated from the less file, and changes in them will be overwritten. 
*/
@font-face {
  font-family: 'OpenSans';
  src: url('../Content/fonts/opensans-regular-webfont.woff2') format('woff2'), url('../Content/fonts/opensans-regular-webfont.woff') format('woff');
}
@font-face {
  font-family: 'PlayFairDisplay';
  src: url('../Content/fonts/playfairdisplay-variablefont_wght-webfont.woff2') format('woff2'), url('../Content/fonts/playfairdisplay-variablefont_wght-webfont.woff') format('woff');
}
/*
maroon: #710000
light yellow: #faf6df
dark yellow: #efe5a1
*/
/* ----- MIXINS ----- */
/** big border radius on top and inset box shadow */
html {
  height: 100%;
}
body {
  background-color: #1a0000;
  color: white;
  font-family: "OpenSans", "Trebuchet MS", Helvetica, sans-serif;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
}
a:link {
  color: #006699;
}
a:visited {
  color: #006699;
}
a:active {
  color: #990000;
}
a:hover {
  text-shadow: 0.5px 0.5px rgba(0, 0, 0, 0.8);
  text-decoration: none;
}
button,
input,
select,
textarea,
.adv-button-like {
  color: #710000;
  background-color: #fcf9eb;
  border: none;
  border: 1px solid #7A8067;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  transition: background-color 0.1s;
}
button:not([type="checkbox"]),
input:not([type="checkbox"]),
select:not([type="checkbox"]),
textarea:not([type="checkbox"]),
.adv-button-like:not([type="checkbox"]) {
  height: 30px;
  min-width: 30px;
}
button:hover,
input:hover,
select:hover,
textarea:hover,
.adv-button-like:hover {
  background-color: white;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
.adv-button-like:focus {
  outline-color: currentColor;
  box-shadow: 0 0 2px #faf6df;
  background-color: white;
}
textarea {
  height: 60px;
}
input {
  padding-left: 6px;
}
input[type="radio"] {
  height: auto;
  min-width: unset;
}
textarea {
  padding: 6px;
}
button,
.adv-button-like {
  color: #222;
  background-color: #efe5a1;
}
button:focus,
.adv-button-like:focus {
  background-color: white;
}
a.adv-button-like {
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  padding: 6px 16px;
}
a.adv-button-like:hover,
a.adv-button-like:link,
a.adv-button-like:visited {
  text-decoration: none;
  text-shadow: none;
  color: #390000;
}
a.adv-button-like:focus {
  color: #710000;
}
a.adv-button-like.adv-small {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  padding: 4px 12px;
}
select {
  cursor: pointer;
}
select option:hover,
select option:active,
select option:focus {
  box-shadow: inset 20px 20px #710000;
}
.adv-align-center {
  text-align: center;
}
.adv-align-right {
  text-align: right;
}
a.color-maroon {
  color: #710000;
}
.bigger {
  font-size: 1.2em;
}
.biggerer {
  font-size: 1.5em;
}
.bordered-strong {
  border: 1px solid currentColor;
  border-radius: 2px;
  box-shadow: 0 0 1px inset currentColor;
  display: inline-block;
  padding: 2px 11px;
}
.bordered-strong,
.bordered-strong:visited {
  color: #222;
}
.bordered-strong-selected {
  border: 1px solid currentColor;
  border-radius: 2px;
  box-shadow: 0 0 1px inset currentColor;
  display: inline-block;
  padding: 2px 11px;
  border-width: 2px;
  padding: 1px 10px;
}
.bordered-strong-selected,
.bordered-strong-selected:visited {
  color: #222;
}
.bordered-section {
  border: 1px solid currentColor;
  border-radius: 2px;
  box-shadow: 0 0 1px inset currentColor;
  display: inline-block;
  padding: 2px 11px;
  border-color: #E1B01E;
  padding: 4px 16px;
}
.bordered-section,
.bordered-section:visited {
  color: #222;
}
.underline {
  text-decoration: underline;
}
ul.inline-list,
ul.inline-list > li {
  list-style: none;
  display: inline;
  padding: 5px;
}
ul.basic-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.basic-list > li {
  list-style: none;
  margin: 0;
  padding: 2px;
}
button.adv-text-like {
  background: none;
  border: none;
  box-shadow: none;
}
button.adv-text-like:focus {
  outline: 1px dotted currentColor;
}
.adv-header-like {
  font-family: "PlayFairDisplay", "OpenSans", "Trebuchet MS", Helvetica, sans-serif;
}
.adv-dialog-base {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
}
.adv-dialog {
  background-color: white;
  border: 4px solid #E1B01E;
  box-shadow: 5px 2px 5px rgba(0, 0, 0, 0.8);
  color: #222;
  height: 80%;
  width: 80%;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
  position: absolute;
}
header.adv-dialog-header {
  background: -webkit-linear-gradient(top, #710000, #390000);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(top, #710000, #390000);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(top, #710000, #390000);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to top, #710000, #390000);
  /* Standard syntax */
  align-items: center;
  color: white;
  display: flex;
  flex-direction: row;
  height: 60px;
}
header.adv-dialog-header h1 {
  margin: 0;
  padding: 10px;
  flex: 1 1 auto;
}
header.adv-dialog-header button {
  display: inline-block;
  text-align: right;
  margin: 10px;
  font-size: 20px;
}
.adv-dialog-body {
  padding: 10px;
  height: calc(100% - 60px);
  overflow: auto;
}
#adv-full-screen-loading {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  text-shadow: 0 0 1px #1a0000;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 42069;
}
.main-content {
  color: #1a0000;
  font-family: "OpenSans", "Trebuchet MS", Helvetica, sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: -1px;
}
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
  color: rgba(113, 0, 0, 0.85);
  font-family: "PlayFairDisplay", "OpenSans", "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  padding-bottom: 0;
}
.main-content hr {
  color: #E1B01E;
  background-color: #E1B01E;
  border-color: #E1B01E;
}
.main-content iframe {
  max-width: 100%;
}
.main-content iframe[src^="https://calendar.google.com"] {
  width: 100%;
}
.main-content-inner {
  text-align: left;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-top: 8px;
  padding-bottom: 10px;
  background: linear-gradient(to bottom right, #faf6df, #efe5a1);
}
.main-col-left,
.main-col-center,
.main-col-right {
  min-height: 1px;
  white-space: normal;
  vertical-align: top;
}
.main-col-left,
.main-col-right {
  flex: 0 0 200px;
  margin: 0 10px;
  width: 200px;
}
.main-col-left.main-col-hidden,
.main-col-right.main-col-hidden {
  display: none;
}
.main-col-left {
  margin-right: 0;
  order: 1;
}
.main-col-right {
  margin-left: 0;
  order: 3;
}
.main-col-center {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  flex: 1 1 auto;
  margin: 0 10px;
  min-height: 42vh;
  order: 2;
  padding: 16px;
}
.main-col-center img {
  max-width: 100%;
}
.main-col-center h1:first-child {
  margin-top: 0;
}
.main-col-center h1:first-child ~ hr {
  margin-top: 0;
}
@media (max-width: 800px) {
  .main-content-inner {
    display: block;
  }
  .main-col-left,
  .main-col-right {
    order: 3;
    display: inline-block;
    width: calc(50% - 12px);
    margin-top: 10px;
  }
}
@media (max-width: 420px) {
  .main-col-left,
  .main-col-right {
    display: block;
    width: auto;
    margin: 10px;
  }
}
.main-col-left > div:not(:last-child),
.main-col-right > div:not(:last-child) {
  margin-bottom: 10px;
}
.adv-data-list dd {
  margin-bottom: 6px;
}
.adv-data-list hr {
  margin: 10px 0;
}
@media (min-width: 500px) {
  .adv-data-list dt {
    float: left;
    max-width: 40%;
  }
  .adv-data-list dd {
    margin-left: 16ch;
    text-align: left;
  }
  .adv-data-list dd:after {
    content: " ";
    display: block;
    clear: left;
  }
}
.adv-data-list-numbers {
  max-width: 200px;
}
.adv-data-list-numbers dd {
  margin-bottom: 6px;
}
.adv-data-list-numbers hr {
  margin: 10px 0;
}
@media (min-width: 300px) {
  .adv-data-list-numbers dt {
    float: left;
    max-width: 40%;
  }
  .adv-data-list-numbers dd {
    margin-left: 16ch;
    text-align: right;
  }
  .adv-data-list-numbers dd:after {
    content: " ";
    display: block;
    clear: left;
  }
}
.adv-callout-box {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 20px auto;
  max-width: 800px;
  padding: 20px;
  border: 1px solid #E1B01E;
}
/*----------------- header things ------------------- */
header.adv-main-header {
  color: white;
  background-color: #710000;
  background: -webkit-linear-gradient(top, #710000, #390000);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(top, #710000, #390000);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(top, #710000, #390000);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to top, #710000, #390000);
  /* Standard syntax */
  border: none;
}
header.adv-main-header h1,
header.adv-main-header h2,
header.adv-main-header h3,
header.adv-main-header h4,
header.adv-main-header h5,
header.adv-main-header h6 {
  padding: 0;
  margin: 0;
}
header.adv-main-header h2 {
  font-size: medium;
  display: inline-block;
}
header.adv-main-header h3,
header.adv-main-header .header-tag {
  font-size: small;
}
header.adv-main-header a,
header.adv-main-header a:link {
  color: white;
}
.header-search {
  vertical-align: middle;
  text-align: right;
  font-size: 0;
  white-space: nowrap;
  display: inline-block;
}
.header-search input {
  border-radius: 3px 0 0 3px;
  font-size: 14px;
}
.header-search button {
  border-radius: 0 3px 3px 0;
  font-size: 14px;
}
.adv-mobile-header {
  display: none;
}
@media (max-width: 800px) {
  .adv-mobile-header {
    display: block;
  }
  .adv-wide-header {
    display: none;
  }
}
.adv-header-logo {
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
}
.adv-header-logo a {
  height: 100%;
}
.adv-header-logo img {
  height: 100%;
  padding: 3px;
  vertical-align: text-bottom;
}
.header-row-3 {
  background-color: #efe5a1;
}
.header-row-3 .header-row-3-contents {
  text-align: center;
  vertical-align: middle;
  color: rgba(113, 0, 0, 0.5);
  background: linear-gradient(to bottom, rgba(26, 0, 0, 0.42) 0%, #efe5a1 13%, #efe5a1 92%, rgba(26, 0, 0, 0.42) 100%);
  padding: 8px;
  border-bottom: 1px solid #1a0000;
}
.header-row-3 .header-row-3-contents a,
.header-row-3 .header-row-3-contents a:link {
  display: inline-block;
  color: #390000;
}
.charley-portal {
  position: absolute;
  left: 40%;
  top: 40%;
  width: 5px;
  height: 5px;
  z-index: 42;
}
.adv-contact-header {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.adv-contact-header .adv-title {
  padding: 10px;
  color: white;
  font-size: 24px;
  line-height: 30px;
}
.adv-contact-header .adv-header-logo {
  vertical-align: bottom;
}
.adv-contact-header .adv-name {
  font-weight: bold;
}
.adv-contact-header .adv-tel {
  margin-top: 8px;
  flex: 2 0 auto;
}
.adv-contact-header .header-search {
  margin: 5px;
}
.adv-contact-header .adv-cart {
  display: inline-block;
  font-size: 20px;
}
.adv-contact-header .adv-cart a,
.adv-contact-header .adv-cart a:link {
  color: white;
}
/*
 bunny logo is 6em x 7em
*/
.header-row-2 {
  width: 100%;
  padding: 0 22px 3px;
  clear: both;
}
.header-row-2 .header-row-2-links {
  background-color: #faf6df;
  box-shadow: 1px 4px 5px inset rgba(0, 0, 0, 0.5);
  border-radius: 25px 25px 0 0;
  display: flex;
}
.header-row-2 .header-row-2-links a,
.header-row-2 .header-row-2-links a:link {
  color: #390000;
}
.header-row-2 .link-holder {
  height: 100%;
  width: 35%;
  width: calc(50% - 3em);
  display: inline-block;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}
.header-row-2 .link-holder > span {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  flex: 1 0 auto;
  margin: 0 10px;
}
.header-row-2 .link-holder-left {
  text-align: left;
  padding-left: 20px;
}
.header-row-2 .link-holder-right {
  text-align: right;
  padding-right: 20px;
  margin-left: 7em;
}
html.no-flexbox .header-row-2 .link-holder-left > span {
  padding-right: 10%;
  padding-right: calc(33% - 8ch);
}
html.no-flexbox .header-row-2 .link-holder-right > span {
  padding-left: 10%;
  padding-left: calc(33% - 8ch);
}
/* bunny logo */
.bunny-placeholder {
  width: 100%;
  position: relative;
  display: block;
  font-size: 0;
  line-height: 0;
}
.bunny-placeholder .rabbit-logo-center {
  position: absolute;
  left: 45%;
  left: calc(50% - 42px);
  bottom: -15px;
  width: 84px;
  height: 98px;
  z-index: 2;
}
.adv-mobile-header {
  clear: both;
}
.adv-mobile-header button.adv-menu-btn.adv-form-button-link {
  color: white;
}
.adv-mobile-header .adv-title {
  flex: 2 1 auto;
}
.adv-mobile-header .adv-name {
  font-size: 1.2em;
}
@media (max-width: 480px) {
  .adv-mobile-header .adv-name {
    width: 0;
    overflow: hidden;
  }
}
@media (max-width: 360px) {
  .adv-mobile-header .adv-header-logo {
    flex: 2 1 auto;
    text-align: center;
  }
}
.adv-mobile-header .adv-mobile-header-main {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  align-items: center;
}
.adv-mobile-header .adv-mobile-header-right {
  white-space: nowrap;
}
.adv-mobile-header .adv-cart {
  padding-left: 5px;
  flex: 0 0 auto;
}
.adv-mobile-header .adv-cart a,
.adv-mobile-header .adv-cart a:link {
  color: white;
}
.adv-mobile-header .adv-departments-toggle {
  color: #faf6df;
  background: none;
  border: none;
  box-shadow: none;
  margin-left: 10px;
}
.adv-mobile-header .adv-departments-toggle i {
  line-height: 0;
  vertical-align: middle;
  transition: transform 0.4s;
}
.adv-mobile-header .adv-departments-toggle.adv-departments-active i {
  transform: rotate(180deg);
}
.adv-mobile-header .adv-mobile-header-menu {
  display: none;
  background-color: rgba(250, 246, 223, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) inset;
  padding: 5px;
}
.adv-mobile-header .adv-mobile-header-menu .adv-search-container {
  padding: 5px;
}
.adv-mobile-header .adv-mobile-header-menu a,
.adv-mobile-header .adv-mobile-header-menu a:link {
  color: #390000;
}
.adv-mobile-header .adv-mobile-header-menu ul,
.adv-mobile-header .adv-mobile-header-menu li {
  list-style: none;
  margin: 0;
  padding: 5px;
}
.adv-mobile-header .adv-mobile-header-menu ul {
  background-color: #faf6df;
  box-shadow: 1px 4px 5px inset rgba(0, 0, 0, 0.5);
  border-radius: 25px 25px 0 0;
  border-bottom: 3px solid #710000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}
.adv-mobile-header .adv-mobile-header-menu li {
  display: inline-block;
}
.adv-mobile-header .header-row-3 a,
.adv-mobile-header .header-row-3 a:link {
  color: #390000;
}
header.adv-main-header .adv-user-block {
  font-size: 12px;
  text-align: right;
  color: white;
  padding: 5px;
  position: relative;
  display: inline-block;
}
header.adv-main-header .adv-user-block .adv-user-block-toggle,
header.adv-main-header .adv-user-block a.adv-login-button {
  cursor: pointer;
  line-height: 25px;
  color: white;
}
header.adv-main-header .adv-user-block .adv-user-block-content {
  background-color: #faf6df;
  border: 4px solid #710000;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.69);
  color: #710000;
  padding: 7px;
  position: absolute;
  right: 0;
  white-space: normal;
  width: 187px;
}
header.adv-main-header .adv-user-block .adv-user-block-content.adv-minimized {
  display: none;
}
header.adv-main-header .adv-user-block .adv-user-block-content a,
header.adv-main-header .adv-user-block .adv-user-block-content a:link {
  color: #710000;
}
/* ---------------- quick search form -------------- */
.quick-search {
  background-color: #efe5a1;
  padding: 0;
  padding-top: 5px;
}
.quick-search .form-group {
  padding-left: 5px;
  padding-right: 5px;
}
.quick-search-button,
.quick-search-button img {
  width: 100%;
  border: none;
  padding: 0;
}
/*--------------- footer -------------------- */
footer {
  text-align: center;
  color: white;
  background-color: #390000;
  background: -webkit-linear-gradient(bottom, #390000, #1a0000);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(bottom, #390000, #1a0000);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(bottom, #390000, #1a0000);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to bottom, #390000, #1a0000);
  /* Standard syntax */
  padding: 3px;
}
html.no-cssgradients footer .footer-line {
  border-color: #710000;
  background-color: #710000;
  height: 10px;
  margin-bottom: 3px;
}
footer .footer-copyright {
  font-size: x-small;
}
footer a:link {
  color: white;
}
footer a:visited {
  color: white;
}
footer a:hover {
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}
html.no-textshadow footer a:hover {
  font-weight: bold;
}
.adv-form {
  margin: auto;
  max-width: 666px;
  padding: 20px;
  border: 1px solid #E1B01E;
}
.adv-form-col,
.adv-form-col-double {
  display: inline-block;
  margin-bottom: 10px;
  min-width: 310px;
  vertical-align: top;
  white-space: nowrap;
}
.adv-form-col label,
.adv-form-col-double label {
  width: 110px;
  text-align: right;
  white-space: nowrap;
  margin-left: 4px;
  vertical-align: middle;
}
.adv-form-col input:not([type="checkbox"]),
.adv-form-col-double input:not([type="checkbox"]),
.adv-form-col select,
.adv-form-col-double select,
.adv-form-col textarea,
.adv-form-col-double textarea,
.adv-form-col .adv-input-validation,
.adv-form-col-double .adv-input-validation {
  width: 190px;
}
.adv-form-col button,
.adv-form-col-double button {
  padding: 0 20px;
}
.adv-form-col button[disabled],
.adv-form-col-double button[disabled] {
  opacity: 0.5;
}
.adv-form-col.adv-wide-label label,
.adv-form-col-double.adv-wide-label label {
  width: 160px;
}
.adv-form-col.adv-wide-label input:not([type="checkbox"]),
.adv-form-col-double.adv-wide-label input:not([type="checkbox"]),
.adv-form-col.adv-wide-label select,
.adv-form-col-double.adv-wide-label select,
.adv-form-col.adv-wide-label textarea,
.adv-form-col-double.adv-wide-label textarea,
.adv-form-col.adv-wide-label .adv-input-validation,
.adv-form-col-double.adv-wide-label .adv-input-validation {
  width: 140px;
}
.adv-form-col.adv-double-value input:not([type="checkbox"]):not(first-child),
.adv-form-col-double.adv-double-value input:not([type="checkbox"]):not(first-child),
.adv-form-col.adv-double-value select:not(first-child),
.adv-form-col-double.adv-double-value select:not(first-child),
.adv-form-col.adv-double-value textarea:not(first-child),
.adv-form-col-double.adv-double-value textarea:not(first-child),
.adv-form-col.adv-double-value .adv-input-validation:not(first-child),
.adv-form-col-double.adv-double-value .adv-input-validation:not(first-child) {
  width: calc(115px - 0.25ch);
}
.adv-form-col.adv-double-value input:not([type="checkbox"]):last-child,
.adv-form-col-double.adv-double-value input:not([type="checkbox"]):last-child,
.adv-form-col.adv-double-value select:last-child,
.adv-form-col-double.adv-double-value select:last-child,
.adv-form-col.adv-double-value textarea:last-child,
.adv-form-col-double.adv-double-value textarea:last-child,
.adv-form-col.adv-double-value .adv-input-validation:last-child,
.adv-form-col-double.adv-double-value .adv-input-validation:last-child {
  width: calc(75px - 0.25ch);
}
.adv-form-col.adv-align-right,
.adv-form-col-double.adv-align-right {
  text-align: right;
  width: 310px;
}
.adv-form-col .adv-number-span,
.adv-form-col-double .adv-number-span {
  white-space: nowrap;
  display: inline-block;
}
.adv-form-col .adv-number-span input:not([type="checkbox"]),
.adv-form-col-double .adv-number-span input:not([type="checkbox"]) {
  width: 80px;
}
.adv-form-col .adv-number-span span,
.adv-form-col-double .adv-number-span span {
  display: inline-block;
  width: calc(30px - 1ch);
  text-align: center;
}
.adv-form-col.adv-form-col-checkbox label,
.adv-form-col-double.adv-form-col-checkbox label {
  width: 300px;
  white-space: normal;
}
@media (max-width: 420px) {
  .adv-form-col,
  .adv-form-col-double {
    white-space: normal;
    min-width: 100px;
  }
  .adv-form-col label,
  .adv-form-col-double label {
    text-align: left;
  }
  .adv-form-col.adv-align-right,
  .adv-form-col-double.adv-align-right {
    width: auto;
  }
}
.adv-form-col.adv-form-col-double,
.adv-form-col-double.adv-form-col-double {
  width: 100%;
}
.adv-form-col.adv-form-col-double textarea,
.adv-form-col-double.adv-form-col-double textarea {
  width: 503px;
  height: 90px;
  resize: vertical;
  max-width: calc(100% - 120px);
}
@media (max-width: 420px) {
  .adv-form-col.adv-form-col-double textarea,
  .adv-form-col-double.adv-form-col-double textarea {
    width: 190px;
  }
}
.adv-form-col.adv-invalid input,
.adv-form-col-double.adv-invalid input,
.adv-form-col.adv-invalid select,
.adv-form-col-double.adv-invalid select,
.adv-form-col.adv-invalid textarea,
.adv-form-col-double.adv-invalid textarea {
  outline: 1px groove #a94442;
}
.adv-form-col .adv-input-validation,
.adv-form-col-double .adv-input-validation {
  color: #a94442;
  white-space: normal;
}
@media (min-width: 380px) {
  .adv-form-col .adv-input-validation,
  .adv-form-col-double .adv-input-validation {
    margin-left: 116px;
  }
  .adv-form-col.adv-wide-label .adv-input-validation,
  .adv-form-col-double.adv-wide-label .adv-input-validation {
    margin-left: 166px;
  }
}
.adv-form-col-content {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}
.adv-cart-table {
  width: 100%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.42);
  border: 2px solid #E1B01E;
}
.adv-cart-table .adv-item-title {
  margin: 0;
  font-weight: bold;
}
.adv-cart-table .adv-item-title a {
  color: #390000;
}
.adv-cart-table tr:nth-child(odd) {
  background-color: rgba(250, 246, 223, 0.33);
}
.adv-cart-table th,
.adv-cart-table td {
  padding: 5px;
  vertical-align: top;
}
.adv-cart-table th {
  background-color: #faf6df;
  border: 1px solid #E1B01E;
  font-size: 12px;
  font-family: initial;
}
.adv-cart-table td {
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.adv-cart-table .adv-cart-quantity {
  text-align: center;
}
.adv-cart-table .adv-cart-quantity input {
  width: 42px;
  text-align: right;
  padding: 3px;
}
.adv-cart-table .adv-cart-actions {
  text-align: center;
}
.adv-cart-table .adv-cart-actions .adv-form-input-button {
  color: #a94442;
  margin: 0;
}
.adv-update-cart-button {
  float: right;
  margin-left: 10px;
  color: #7A8067;
}
.adv-cart-checkout-button {
  text-align: right;
}
.adv-cart-random-item {
  display: inline-block;
  vertical-align: top;
}
.adv-cart-random-item .adv-item-detail-block {
  min-height: 222px;
}
.adv-cart-random-item img {
  max-height: 120px;
}
.adv-cart-subdetails {
  margin-top: 5px;
}
.adv-address-form .adv-address-col {
  width: 320px;
}
.adv-shipping-address-type label {
  display: block;
}
.adv-order-summary {
  border: 3px solid #E1B01E;
  margin: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.42);
  padding: 10px;
}
.adv-order-summary .adv-order-summary-title {
  margin-top: 0;
  text-align: center;
}
.adv-checkout-info {
  /*display: flex;
    flex-wrap: wrap;*/
}
.adv-checkout-info > div {
  display: inline-block;
  min-width: 200px;
  vertical-align: top;
  width: 32%;
}
.adv-checkout-shipping-warning {
  font-size: 12px;
  font-style: italic;
}
.adv-checkout-edit-shipping > a {
  color: #7A8067;
}
.adv-checkout-totals dd {
  margin-bottom: 6px;
}
.adv-checkout-totals hr {
  margin: 10px 0;
}
@media (min-width: 300px) {
  .adv-checkout-totals dt {
    float: left;
    max-width: 40%;
  }
  .adv-checkout-totals dd {
    margin-left: 16ch;
    text-align: right;
  }
  .adv-checkout-totals dd:after {
    content: " ";
    display: block;
    clear: left;
  }
}
div.main-col-center h2.adv-item-subtitle {
  border: none;
  font-size: 24px;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  color: black;
}
@media (min-width: 500px) {
  .adv-item-image-details-container {
    display: flex;
    flex-direction: row;
  }
}
.adv-item-main-image {
  flex: 0 0 160px;
  margin-right: 6px;
  margin-bottom: 6px;
  max-height: 500px;
}
.adv-item-main-image > img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  max-height: 420px;
}
@media (max-width: 499px) {
  .adv-item-main-image {
    width: 100%;
  }
}
.adv-item-side-details {
  font-size: 20px;
}
dl.adv-item-main-details {
  clear: both;
  background-color: white;
  border: 1px solid rgba(113, 0, 0, 0.5);
  box-shadow: 0 0 3px inset rgba(113, 0, 0, 0.5);
  padding: 9px;
  border-radius: 3px;
  margin-top: 10px;
}
dl.adv-item-main-details dd {
  margin-bottom: 6px;
}
dl.adv-item-main-details hr {
  margin: 10px 0;
}
@media (min-width: 500px) {
  dl.adv-item-main-details dt {
    float: left;
    max-width: 40%;
  }
  dl.adv-item-main-details dd {
    margin-left: 16ch;
    text-align: left;
  }
  dl.adv-item-main-details dd:after {
    content: " ";
    display: block;
    clear: left;
  }
}
.adv-cart-button {
  margin-top: 12px;
}
.adv-orders {
  list-style: none;
  margin: 0;
  padding: 0;
}
.adv-orders h4,
.adv-orders h5 {
  margin-top: 0;
}
.adv-orders-item {
  border: 1px solid #E1B01E;
  padding: 10px;
  position: relative;
}
.adv-orders-item:not(:last-child) {
  border-bottom: none;
}
.adv-orders-item-list-container {
  background-color: white;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.42);
  padding: 14px;
}
table.adv-orders-item-list {
  width: 100%;
}
table.adv-orders-item-list th {
  border-bottom: 1px solid #222;
}
table.adv-orders-item-list th,
table.adv-orders-item-list td {
  padding: 5px;
}
table.adv-orders-item-list .adv-orders-grandtotal {
  font-weight: bold;
  text-align: right;
  width: 100%;
  padding-top: 8px;
}
table.adv-orders-item-list .adv-orders-grandtotal-span {
  border-top: 1px solid #222;
  padding-top: 8px;
}
.adv-search-tips {
  max-width: 100%;
  position: relative;
}
.adv-search-tips .adv-search-tips-button:after {
  content: 'X';
  display: inline-block;
  font-size: 0;
  position: absolute;
  right: 5px;
  transition: font-size 0.3s;
  vertical-align: middle;
}
.adv-search-tips .adv-search-tips-text {
  display: none;
  border: 1px solid #710000;
  border-radius: 10px;
  padding: 5px;
  background-color: white;
  max-width: 999px;
}
.adv-search-tips.adv-search-tips-expanded .adv-search-tips-button:after {
  font-size: 1em;
}
#adv-criteria-form-toggle {
  transition: margin-bottom linear 0.3s;
}
#adv-criteria-form-toggle.adv-expanded {
  margin-bottom: 12px;
}
.adv-search-results {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.adv-search-results:empty:before {
  content: "No results found.";
  font-size: 20px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.8);
}
.adv-search-results li {
  position: relative;
  padding: 8px;
  height: auto;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  background-color: white;
  cursor: pointer;
  transition: transform 0.1s, background-color 0.1s;
  border: 2px solid #E1B01E;
  border-top-width: 1px;
  border-bottom-width: 1px;
  white-space: nowrap;
}
.adv-search-results li:first-child {
  border-radius: 3px 3px 0 0;
  border-top-width: 2px;
}
.adv-search-results li:last-child {
  border-radius: 0 0 3px 3px;
  border-bottom-width: 2px;
}
.adv-search-results li:hover {
  border-color: #710000;
  z-index: 2;
}
.adv-search-results li .adv-stock-li-icon {
  text-align: center;
}
.adv-search-results li .adv-stock-li-icon > img {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.42);
}
.adv-search-results li .adv-stock-li-details {
  max-width: calc(99% -  104px);
  text-overflow: ellipsis;
}
.adv-search-results li .adv-stock-li-details > div,
.adv-search-results li .adv-stock-li-details > .adv-li-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adv-search-results li .adv-li-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 2px;
}
.adv-search-results li .adv-li-title > a {
  color: #710000;
}
.adv-search-results li .adv-li-price {
  font-size: 13px;
}
.adv-search-results li .adv-li-extra {
  font-size: 13px;
}
.adv-search-results li .adv-li-tags {
  font-size: 13px;
  margin-bottom: 4px;
}
.adv-search-results li .adv-stock-li-icon,
.adv-search-results li .adv-stock-li-details {
  display: inline-block;
}
.adv-search-results li .adv-stock-li-icon {
  width: 104px;
  height: 104px;
  vertical-align: top;
}
.adv-search-results li .adv-stock-li-icon > img {
  max-width: 104px;
  max-height: 104px;
}
.adv-li-search-index {
  color: #390000;
  position: absolute;
  right: 6px;
  bottom: 3px;
  opacity: 0.8;
  background-color: white;
  border-radius: 20px;
  padding: 1px;
}
.adv-search-queries .adv-search-queries-title {
  color: #222;
}
.adv-search-queries table {
  padding-left: 5px;
}
.adv-search-queries table tr {
  background-color: white;
  border: 1px solid #390000;
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  position: relative;
}
.adv-search-queries table td,
.adv-search-queries table th {
  display: block;
}
.adv-search-queries table th {
  font-weight: normal;
  margin-right: 20px;
}
.adv-search-queries table td {
  color: #710000;
  font-weight: bold;
}
.adv-search-queries table .adv-search-queries-x {
  position: absolute;
  top: 0;
  right: 0;
}
.adv-search-queries table .adv-search-queries-x > button {
  padding: 0;
}
.adv-gallery {
  color: #710000;
  border-radius: 8px;
  padding: 0 42px;
}
.adv-gallery .adv-img-container {
  height: 300px;
  padding: 0 20px;
}
.adv-gallery .adv-img-container > img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.adv-gallery ul.adv-gallery-list {
  list-style: none;
  padding: 0;
}
.adv-gallery li.adv-gallery-item {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4) inset;
  padding-bottom: 40px;
}
.adv-gallery li.adv-gallery-item h4 {
  border: none;
}
.adv-gallery li:focus {
  outline: none;
}
.adv-gallery .slick-arrow {
  min-width: 0;
  height: 100%;
  display: inline-block;
  border-radius: 0;
  width: 42px;
  transition: all 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.adv-gallery .slick-arrow,
.adv-gallery .slick-arrow:focus {
  background-color: rgba(0, 0, 0, 0.2);
}
.adv-gallery .slick-arrow:before {
  transition: all 0.2s;
  color: white;
}
.adv-gallery .slick-arrow:hover,
.adv-gallery .slick-arrow:focus:hover {
  background-color: rgba(113, 0, 0, 0.9);
  opacity: 1;
}
.adv-gallery .slick-arrow.slick-prev {
  left: -42px;
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.adv-gallery .slick-arrow.slick-next {
  right: -42px;
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.adv-gallery .slick-dots button {
  box-shadow: none;
}
.adv-header-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 0, 0, 0.9);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 0.3em;
}
@media (max-width: 800px) {
  .adv-header-subtitle {
    font-size: 5vw;
  }
}
@media (max-width: 600px) {
  .adv-header-subtitle {
    font-size: 7vw;
  }
}
.adv-header-subtitle-left > div:first-child {
  white-space: nowrap;
}
.adv-header-subtitle-left > div:nth-child(2) {
  font-size: 0.333em;
  text-align: center;
}
.adv-header-subtitle-left > div:nth-child(2) > span {
  border-bottom: 0.15em solid currentColor;
}
ul.adv-header-subtitle-center {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.38em;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-left: 6px;
  margin-bottom: 0;
  padding: 0;
}
ul.adv-header-subtitle-center > li {
  list-style: none;
  margin: 0;
}
ul.adv-header-subtitle-center > li > a {
  color: inherit;
}
.adv-header-subtitle-right {
  padding-bottom: 0.38em;
}
/** 
 * this file is for styles supporting @helper functions in App_Code 
 */
button.adv-form-button-link {
  border: none;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  height: auto;
  text-decoration: none;
  color: #006699;
}
button.adv-form-button-link:link {
  color: #006699;
}
button.adv-form-button-link:visited {
  color: #006699;
}
button.adv-form-button-link:active {
  color: #990000;
}
button.adv-form-button-link:hover {
  text-shadow: 0.5px 0.5px rgba(0, 0, 0, 0.8);
  text-decoration: none;
}
.adv-form-input-button {
  text-decoration: none;
  cursor: pointer;
}
.adv-form-input-button:link {
  color: #006699;
}
.adv-form-input-button:visited {
  color: #006699;
}
.adv-form-input-button:active {
  color: #990000;
}
.adv-form-input-button:hover {
  text-shadow: 0.5px 0.5px rgba(0, 0, 0, 0.8);
  text-decoration: none;
}
.adv-add-to-cart {
  font-size: 14px;
}
.adv-selected {
  font-weight: bold;
  text-decoration: underline;
}
.adv-hero {
  height: 42vh;
  overflow: hidden;
}
.adv-hero .slick-dots {
  bottom: 13px;
}
.adv-hero .slick-dots button {
  box-shadow: none;
  text-shadow: 0 0 2px #390000;
}
.adv-hero .slick-dots button:before {
  color: #efe5a1;
}
.adv-hero .slick-dots li.slick-active button:before {
  color: #fcf9eb;
}
.adv-hero-list {
  width: 100%;
  height: 42vh;
  list-style: none;
  margin: 0;
  padding: 0;
}
.adv-hero-item.slick-slide {
  width: 100%;
  height: 42vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
img.adv-hero-image {
  object-fit: contain;
  height: 42vh;
  object-position: center center;
  margin: auto;
}
.adv-index-nav {
  background-color: white;
  border: 1px solid #E1B01E;
  padding: 16px;
  padding-top: 16px;
}
.adv-index-nav-ul {
  padding-left: 0;
}
.adv-index-nav-li {
  list-style-type: none;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.adv-index-nav-li > .adv-index-nav-toggle {
  position: absolute;
  left: 0;
  color: inherit;
  cursor: pointer;
  padding: 1px;
}
.adv-index-nav-li > .adv-index-nav-ul {
  margin-top: 5px;
}
.adv-index-nav-li:not(.adv-expanded) > .adv-index-nav-ul {
  height: 0;
  margin-top: 0;
  overflow: hidden;
}
.adv-index-nav-name {
  display: inline-block;
  padding-left: 5px;
  border-left: 1px solid currentColor;
}
.adv-index-nav-name a {
  color: #390000;
}
.adv-index-nav-name.adv-current {
  border-left-width: 2px;
}
.adv-index-nav-name:not(.adv-current) {
  text-decoration: none;
}
.adv-index-nav-name:not(.adv-current):link {
  color: #006699;
}
.adv-index-nav-name:not(.adv-current):visited {
  color: #006699;
}
.adv-index-nav-name:not(.adv-current):active {
  color: #990000;
}
.adv-index-nav-name:not(.adv-current):hover {
  text-shadow: 0.5px 0.5px rgba(0, 0, 0, 0.8);
  text-decoration: none;
}
.adv-index-nav-name:not(.adv-current):hover {
  border-left-width: 2px;
  padding-left: 4px;
}
.adv-index-breadcrumb {
  color: rgba(57, 0, 0, 0.8);
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
}
.adv-index-breadcrumb-li {
  list-style: none;
  display: inline-block;
}
.adv-item-detail-block-container {
  background-color: white;
  max-width: 420px;
}
.adv-item-detail-block {
  border: 1px solid #E1B01E;
  padding: 16px;
  min-height: 100px;
  border-bottom-width: 0;
}
.adv-item-detail-block:first-child {
  padding-top: 12px;
}
.adv-item-detail-block:not(:first-child) {
  border-radius: 0;
}
.adv-item-detail-block:last-child {
  border-bottom-width: 1px;
  padding-bottom: 12px;
}
.adv-item-detail-block p {
  background-color: transparent;
  font-size: 12px;
}
.adv-item-detail-block img {
  max-width: 100%;
}
.adv-item-detail-block img.adv-error-img {
  display: none;
}
h4.adv-item-detail-block-title {
  margin: 0;
}
a.adv-item-detail-block-title-a {
  color: #390000;
}
.adv-item-detail-block-tags {
  font-size: 11px;
}
.adv-item-detail-block-tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.adv-item-detail-block-tag-list-tag-list-item {
  display: inline-block;
  padding: 3px;
}
.adv-pagination-stats {
  margin-top: 20px;
}
.adv-pagination-link-row {
  text-align: center;
}
.adv-raw-text {
  border: 1px solid #E1B01E;
  background-color: white;
  padding: 16px;
}