@import url('https://cdnjs.cloudflare.com/ajax/libs/dashicons/0.9.0/css/dashicons.min.css');
@import "../fonts/din/bold/index.css";
html,
body {
  scroll-behavior: smooth;
}
.blog-header {
  text-align: center;
  margin-top: 40px;
}
.blog-header .blog-bcs {
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5em;
  padding-bottom: 1em;
}
.blog-header .blog-bcs a.blog-bc {
  font-size: smaller;
  padding: 0px 5px;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}
.blog-header .blog-bcs a.blog-bc i {
  font-size: 120%;
}
.blog-header .blog-bcs a.blog-bc.index {
  padding: 4px 10px;
}
.blog-header .blog-bcs a.blog-bc:hover {
  cursor: pointer;
  text-decoration: underline;
}
.blog-header .blog-bcs .blog-share {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #000;
  cursor: default;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blog #breadcrumbs,
.archive #breadcrumbs {
  display: none;
}
.blog #content,
.archive #content {
  padding-bottom: 0;
}
.archive .archive-header {
  text-align: center;
  margin: 60px 0 0 0;
  padding: 0 40px;
}
.archive .main-blog-container .blog-posts-container,
.archive .main-blog-container .page-content-holder {
  width: 100%;
}
.main-blog-container {
  display: flex;
  flex-direction: column;
  background: #EAE6E1;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container {
    flex-direction: row;
    background: none;
  }
}
.main-blog-container .filter-sidebar {
  order: 2;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .filter-sidebar {
    order: 0;
    position: sticky;
    top: 143px;
    height: calc(100vh - 143px);
    width: 20%;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.main-blog-container .filter-sidebar .cat-list_item.active {
  font-family: 'DIN W01 Medium';
}
.main-blog-container .filter-sidebar .filter-sidebar-content {
  background: white;
  padding: 0px;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .filter-sidebar .filter-sidebar-content {
    padding: 30px;
  }
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_toggle {
  font-size: 26px;
  text-align: center;
  position: relative;
  border-bottom: solid 1px #EAE6E1;
  margin: 0;
  padding: 10px 0;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .filter-sidebar .filter-sidebar-content #filter_toggle {
    padding: 0;
    text-align: left;
    border-bottom: none;
    margin: 20px 0 10px 0;
  }
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_toggle.active::after {
  transform: rotate(180deg);
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_toggle::after {
  content: '';
  height: 25px;
  width: 25px;
  background: url(../images/arrow-down--gray.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 9px;
  margin: 0 10px;
  transition: .5s;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .filter-sidebar .filter-sidebar-content #filter_toggle::after {
    content: unset;
  }
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_list {
  padding: 0;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_list.is-open {
  max-height: 1000px;
  padding: 10px 30px 30px 30px;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .filter-sidebar .filter-sidebar-content #filter_list.is-open {
    max-height: none;
    padding: 0;
  }
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .filter-sidebar .filter-sidebar-content #filter_list {
    padding: 0;
    max-height: none;
  }
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_list li {
  cursor: pointer;
  font-size: 17px;
  text-transform: uppercase;
  padding: 15px 0;
  border-bottom: 1px solid #000;
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_list li .active {
  font-family: 'DIN W01 Medium';
}
.main-blog-container .filter-sidebar .filter-sidebar-content #filter_list li:hover {
  text-decoration: underline;
}
.main-blog-container .filter-sidebar .social {
  display: none;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .filter-sidebar .social {
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 10px;
    width: 100%;
  }
  .main-blog-container .filter-sidebar .social .social-icon {
    background: #C6BAAC;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
  }
  .main-blog-container .filter-sidebar .social .social-icon i {
    color: #fff;
  }
}
.main-blog-container .page-content-holder {
  background: #EAE6E1;
  width: 100%;
  display: contents;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .page-content-holder {
    width: 80%;
    display: block;
  }
}
.main-blog-container .blog-posts-container {
  order: 3;
  scroll-margin-top: 200px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  max-width: 1400px;
  padding: 0 40px 20px 40px;
  margin: 0 auto;
  gap: 24px;
  justify-content: center;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .blog-posts-container {
    order: 2;
  }
}
@media only screen and (min-width: 900px) {
  .main-blog-container .blog-posts-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .blog-posts-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.main-blog-container .blog-posts-container.is-loading {
  pointer-events: none;
  opacity: 0.5;
}
.main-blog-container .blog-posts-container .end-of-posts {
  text-align: center;
  grid-column: 1 / 4;
}
.main-blog-container .blog-posts-container .blog-post {
  width: 100%;
  background-color: white;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-image {
  overflow: hidden;
  width: 100%;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-image img {
  aspect-ratio: 1.5;
  object-fit: cover;
  width: 100%;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 20px 24px;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-content * {
  margin: 0;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-content p {
  font-size: 16px;
  font-family: 'DIN W01 Light';
}
.main-blog-container .blog-posts-container .blog-post .blog-post-content__title {
  font-size: 24px;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-content__category {
  text-transform: uppercase;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-content__excerpt--long {
  display: none;
}
.main-blog-container .blog-posts-container .blog-post .blog-post-content__link a {
  text-transform: uppercase;
  text-decoration: underline;
  color: #b34f2d;
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) {
  grid-column: span 1;
  margin: 0 -40px 0 -40px;
  width: calc(100% + 80px);
  grid-row: span 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 900px) {
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(1) {
    grid-column: span 2;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(1) {
    grid-column: span 3;
    margin: 0 0 0 0;
    width: 100%;
    max-height: 70vh;
  }
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-image {
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-image {
    width: calc(100% / 3 * 2);
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-image img {
    aspect-ratio: unset;
    height: 100%;
  }
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-content {
  width: 100%;
  display: flex;
  gap: 0;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
@media only screen and (min-width: 900px) {
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-content {
    width: calc(100% / 3);
  }
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-content__title {
  margin: 0 0 20px 0;
  font-size: 28px;
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-content__category {
  margin: 0 0 35px 0;
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-content__date:after {
  content: "";
  height: 1px;
  width: 100px;
  display: block;
  background: #D9D9D9;
  margin: 30px auto;
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-content__excerpt--long {
  display: block;
  margin: 0 0 35px 0;
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1) .blog-post-content__excerpt--short {
  display: none;
}
.main-blog-container .blog-posts-container .blog-post:nth-of-type(1)__image {
  width: calc(((100% / 3) * 2) + 15px);
  order: 2;
}
@media only screen and (min-width: 1140px) {
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6),
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14),
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23) {
    width: 100%;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    grid-column: span 2;
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6) .blog-post-content,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14) .blog-post-content,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23) .blog-post-content {
    width: 100%;
    display: flex;
    gap: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px;
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6) .blog-post-content__title,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14) .blog-post-content__title,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23) .blog-post-content__title {
    margin: 0 0 20px 0;
    font-size: 28px;
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6) .blog-post-content__category,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14) .blog-post-content__category,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23) .blog-post-content__category {
    margin: 0 0 35px 0;
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6) .blog-post-content__date:after,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14) .blog-post-content__date:after,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23) .blog-post-content__date:after {
    content: "";
    height: 1px;
    width: 100px;
    display: block;
    background: #D9D9D9;
    margin: 30px auto;
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6) .blog-post-content__excerpt--long,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14) .blog-post-content__excerpt--long,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23) .blog-post-content__excerpt--long {
    display: block;
    margin: 0 0 35px 0;
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6) .blog-post-content__excerpt--short,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14) .blog-post-content__excerpt--short,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23) .blog-post-content__excerpt--short {
    display: none;
  }
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(6)__image,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(14)__image,
  .main-blog-container .blog-posts-container .blog-post:nth-of-type(23)__image {
    width: 100%;
    order: 2;
  }
}
.load_more {
  margin: 0 auto 10px auto;
  text-align: center;
  order: 4;
}
@media only screen and (min-width: 1140px) {
  .load_more {
    order: 3;
  }
}
.load_more button {
  background: none;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 16px;
  border: none;
}
.blog-form-container {
  max-width: 950px;
  padding: 0 40px;
  margin: 60px auto;
  order: 5;
}
@media only screen and (min-width: 1140px) {
  .blog-form-container {
    order: 4;
  }
}
.blog-form-container__icon {
  max-width: 60px;
  margin: 0 auto 20px auto;
}
.blog-form-container__title {
  text-align: center;
  font-size: 32px;
  margin: 0 0 20px 0;
}
.blog-form-container__description {
  text-align: center;
  font-size: 16px;
  margin: 0 0 20px 0;
}
.blog-form-container__form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.blog-form-container__form label {
  font-family: 'DIN W01 Light';
  text-transform: none;
}
.blog-form-container__form textarea {
  width: 100%;
}
.blog-form-container__form .gform_body {
  font-size: 16px;
}
.blog-form-container__form .gform_body legend {
  font-size: 16px;
}
.blog-form-container__form .gform_body .gform_fields {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-name,
.blog-form-container__form .gform_body .gform_fields .gfield--type-textarea,
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox {
  width: 100%;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox {
  display: flex;
  flex-flow: row wrap;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox legend {
  width: fit-content;
  display: block;
  float: left;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox .ginput_container_checkbox {
  width: auto;
  display: block;
  margin: 5px 0 0 20px;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox .ginput_container_checkbox label {
  margin: 0;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox .ginput_container_checkbox .gchoice {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox .ginput_container_checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #F9F9F9;
  border: solid 1px #CBCBCB;
  font: inherit;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 5px;
  margin-top: 0;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox .ginput_container_checkbox input[type="checkbox"]:checked {
  background: #b34f2d;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox .ginput_container_checkbox input[type="checkbox"]:checked::before {
  border-color: #fff !important;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-checkbox .ginput_container_checkbox input[type="checkbox"]::before {
  content: "";
  width: 8px;
  height: 15px;
  transform-origin: bottom left;
  transform: rotate(45deg);
  transition: 120ms transform ease-in-out;
  border-color: #33425400 !important;
  border-right: solid 3px;
  border-bottom: solid 3px;
  position: absolute;
  bottom: 13px;
  left: 5px;
  cursor: pointer;
}
.blog-form-container__form .gform_body .gform_fields .gfield--type-email,
.blog-form-container__form .gform_body .gform_fields .gfield--type-phone {
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .blog-form-container__form .gform_body .gform_fields .gfield--type-email,
  .blog-form-container__form .gform_body .gform_fields .gfield--type-phone {
    width: 49%;
  }
}
.blog-form-container__form .gform_footer {
  text-align: center;
}
.page-bundles #content,
.page-build-your-set #content,
.page-settosave #content {
  padding: 0 0 !important;
}
.page-bundles #content #main_content,
.page-build-your-set #content #main_content,
.page-settosave #content #main_content {
  padding: 0 !important;
}
.page-bundles #breadcrumbs,
.page-build-your-set #breadcrumbs,
.page-settosave #breadcrumbs {
  display: none;
}
.page-bundles article,
.page-bundles article.has-post-thumbnail,
.page-build-your-set article,
.page-build-your-set article.has-post-thumbnail,
.page-settosave article,
.page-settosave article.has-post-thumbnail {
  margin: 0 0;
}
.page-bundles .page-content,
.page-build-your-set .page-content,
.page-settosave .page-content {
  margin: 0 auto;
}
.page-bundles .button-add-giftregistry,
.page-bundles .giftregistry-detail,
.page-build-your-set .button-add-giftregistry,
.page-build-your-set .giftregistry-detail,
.page-settosave .button-add-giftregistry,
.page-settosave .giftregistry-detail {
  display: none;
}
.page-bundles p,
.page-build-your-set p,
.page-settosave p {
  margin: 0 0 0 0;
}
.bundle_builder {
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 1000px) {
  .bundle_builder {
    grid-template-columns: 56% 44%;
  }
}
.bundle_builder.loading {
  pointer-events: none;
  opacity: 0.5;
}
.bundle_builder__error {
  border: solid 1px #b34f2d;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 5px 10px;
  align-items: center;
  text-align: left;
}
.bundle_builder__error::before {
  content: "⚠";
}
.bundle_builder__form {
  padding: 0;
}
@media (min-width: 1000px) {
  .bundle_builder__form {
    padding: 60px;
  }
}
.bundle_builder__intro {
  background: #c6baac;
  padding: 20px;
  margin: 0 auto 40px auto;
}
@media (min-width: 1000px) {
  .bundle_builder__intro {
    background: none;
    padding: 0;
    text-align: center;
    margin: 0 auto 60px auto;
  }
}
.bundle_builder__intro p {
  margin: 10px 0;
}
.bundle_builder__slider-container {
  padding: 0 44px;
}
@media (min-width: 1000px) {
  .bundle_builder__slider-container {
    padding: 0 0;
  }
}
.bundle_builder__slider-container .splide__arrow {
  width: 50px;
  height: 70px;
  background: transparent;
  opacity: 1;
}
.bundle_builder__slider-container .splide__arrow--prev {
  left: -40px;
}
.bundle_builder__slider-container .splide__arrow--next {
  right: -40px;
}
.bundle_builder__slider {
  align-items: flex-start;
}
.bundle_builder__category {
  margin-bottom: 30px;
  position: relative;
}
.bundle_builder__picker {
  display: block;
}
.bundle_builder__picker.inactive {
  display: none;
}
.bundle_builder__picker--landscape .bundle_builder__product img {
  aspect-ratio: 4 / 3;
}
.bundle_builder__picker--square .bundle_builder__product img {
  aspect-ratio: 1 / 1;
}
.bundle_builder__picker--portrait .bundle_builder__product img {
  aspect-ratio: 3 / 4;
}
.bundle_builder__slider-heading {
  color: #717171;
  text-align: center;
  margin: 15px auto;
  display: block;
  font-family: "DIN OT";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  width: 100%;
}
.bundle_builder__product {
  background: transparent;
  border: none;
}
.bundle_builder__product img {
  border: 1px solid #C6BAAC;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.bundle_builder__back-arrow {
  position: absolute;
  left: -30px;
  top: 35%;
  background: #fff;
  border: none;
  align-self: center;
  padding: 5px;
}
@media (min-width: 675px) {
  .bundle_builder__back-arrow {
    position: static;
  }
}
.bundle_builder__back-arrow svg {
  transform: rotate(180deg);
  height: 1.2em;
  width: 1.2em;
}
@media (min-width: 675px) {
  .bundle_builder__back-arrow svg {
    width: 40px;
  }
}
.bundle_builder__product-title {
  color: #717171;
  text-align: center;
  font-family: "DIN OT";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
}
.bundle_builder__active-selection {
  height: 100%;
  width: 100%;
  background: #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 15px 0;
}
@media (min-width: 675px) {
  .bundle_builder__active-selection {
    gap: 0 0;
  }
}
.bundle_builder__product-image-container {
  position: relative;
  max-width: 100%;
}
@media (min-width: 675px) {
  .bundle_builder__product-image-container {
    max-width: 37%;
  }
}
.bundle_builder__product-image-container:hover .bundle_builder__quick-look-button,
.bundle_builder__product-image-container:focus .bundle_builder__quick-look-button {
  opacity: 1;
}
.bundle_builder__product-image-container .bundle_builder__quick-look-button {
  color: #717171;
  background: #d9d9d9e6;
  backdrop-filter: blur(7.5px);
  border: none;
  border-radius: 2px;
  text-align: center;
  font-family: "DIN OT";
  font-size: 18px;
  font-weight: 700;
  padding: 5px 14px;
  position: absolute;
  bottom: 13px;
  left: auto;
  right: 13px;
  opacity: 1;
}
.bundle_builder__product-image-container .bundle_builder__quick-look-button:focus {
  opacity: 1;
}
@media (min-width: 675px) {
  .bundle_builder__product-image-container .bundle_builder__quick-look-button {
    opacity: 0;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    transform: translate(-50%,-50%);
  }
}
.bundle_builder__product-image {
  width: 100%;
  object-fit: contain;
  border: solid 1px #C6BAAC;
}
.bundle_builder__product-details {
  padding-left: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 675px) {
  .bundle_builder__product-details {
    padding-left: 20px;
    max-width: calc(100% - 37% - 50px);
  }
}
.bundle_builder__product-details .bundle_builder__product-title {
  color: #000;
  font-family: "Noe Display";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
  margin: 8px 0 0 0;
}
.bundle_builder__variations_form {
  width: 100%;
  position: relative;
  padding-bottom: 5px;
}
.bundle_builder__variations_form .variations {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 10px;
}
.bundle_builder__variations_form .variations .swatch-toggle {
  margin: 0 0 10px;
}
.bundle_builder__variations_form .bundle_builder__quantity {
  flex-direction: column;
  margin: 50px 0 20px 0;
  display: flex;
  width: 100%;
}
.bundle_builder__variations_form .bundle_builder__quantity label {
  margin-right: 5px;
  width: auto;
  cursor: default;
  color: #666;
  font-family: "DIN OT";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: none;
  text-align: left;
}
.bundle_builder__variations_form .bundle_builder__quantity .qty {
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  background: #FFF;
  padding: 0 5px 0 0;
  text-align: center;
  box-shadow: none;
  outline: none;
  height: 100%;
  width: 50px;
  margin: 0;
}
.bundle_builder__variations_form .bundle_builder__quantity .quantity-adjustments {
  background: #FFF;
  height: 42px;
  width: auto;
  display: flex;
}
.bundle_builder__variations_form .bundle_builder__quantity .qty-minus,
.bundle_builder__variations_form .bundle_builder__quantity .qty-plus {
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFF;
  border: 1px solid #CCCCCC;
  display: inline-block;
  height: 42px;
  width: 42px;
  padding: 0;
}
.bundle_builder__variations_form .bundle_builder__quantity .qty-minus {
  background-image: url('/wp-content/themes/thosmoser2/images/icon-minus.svg');
  float: left;
}
.bundle_builder__variations_form .bundle_builder__quantity .qty-minus.disabled {
  cursor: not-allowed;
}
.bundle_builder__variations_form .bundle_builder__quantity .qty-plus {
  background-image: url('/wp-content/themes/thosmoser2/images/icon-plus.svg');
  float: right;
}
.bundle_builder__variations_form .woocommerce-variation-price {
  display: none;
}
.bundle_builder__variation {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .bundle_builder__variation {
    width: calc(50% - 5px);
  }
}
.bundle_builder__variation .value.swatch-toggling {
  position: relative;
}
.bundle_builder__variation .swatch-label {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.bundle_builder__variation .swatch-selection-name,
.bundle_builder__variation .select2-selection__rendered {
  border: 1px solid #CCCCCC;
  background: url(/wp-content/themes/thosmoser2/images/icon-arrow-down--black.svg), #ffffff;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
}
.bundle_builder__variation .select2-container--focus .select2-selection {
  border: none;
}
.bundle_builder__variation select,
.bundle_builder__variation .select2-selection {
  background: url('/wp-content/themes/thosmoser2/images/icon-arrow-down--black.svg'), #ffffff;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  margin-bottom: 0 !important;
  outline: none;
  height: 42px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.bundle_builder__variation .select2 {
  margin: 0 !important;
}
.bundle_builder__variation .select2-selection--single .select2-selection__arrow,
.bundle_builder__variation .select2-selection__arrow {
  display: none;
}
.bundle_builder__variation .label {
  text-align: left;
  padding: 0;
  margin: 0 0 5px 0;
}
.bundle_builder__variation .label label {
  cursor: default;
  padding: 0;
  color: #666;
  font-family: "DIN OT";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: none;
  text-align: left;
}
.bundle_builder__variation .swatch-anchor {
  width: auto !important;
  height: auto !important;
}
.bundle_builder__variation .swatch-control {
  padding: 5px;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background: #fff;
  clip: initial;
  height: fit-content;
  margin: initial;
  margin-top: -8px;
  position: absolute !important;
  width: 100%;
  z-index: 1;
}
.bundle_builder__variation .swatch-control h3 {
  font-size: 1em;
  clear: both;
  margin: 8px 5px 5px;
  font-family: inherit;
  width: 100%;
}
.bundle_builder__variation .reset_variations {
  padding: 0;
  position: absolute;
  z-index: 0;
  bottom: -10px;
  left: 0;
  color: #666;
  font-family: "DIN OT";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: none;
  text-align: left;
  text-decoration: underline;
}
.bundle_builder__variation .reset_variations:hover {
  text-decoration-thickness: 2px;
}
.bundle_builder__variation-price {
  font-family: "DIN OT";
  font-size: 18px;
  font-style: normal;
  display: inline-block;
  color: #000;
}
.bundle_builder__variation-price--regular {
  font-weight: 400;
  text-decoration: line-through;
}
.bundle_builder__variation-price--discount {
  font-weight: 700;
  color: #B3502D;
  margin-right: 10px;
}
.bundle_builder__preview {
  margin-top: 20px;
  position: relative;
}
.bundle_builder__preview::before {
  content: "Your Bundle:";
  display: block;
  color: #000;
  text-align: center;
  font-family: "Noe Display";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 52px;
}
@media (min-width: 1000px) {
  .bundle_builder__preview {
    position: sticky;
    top: 107px;
    right: 0;
    height: calc(100vh - 107px);
    width: 100%;
    aspect-ratio: 2000 / 2551;
    margin: 0 0 0 auto;
    overflow: hidden;
  }
  .bundle_builder__preview::before {
    content: "";
    display: none;
  }
}
.bundle_builder__preview-image {
  object-fit: contain;
}
@media (min-width: 1024px) {
  .bundle_builder__preview-image {
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    height: 100%;
  }
}
.bundle_builder__preview-image--default {
  object-fit: cover;
}
@media (min-width: 1000px) {
  .bundle_builder__preview-image--default {
    height: 100%;
  }
}
.bundle_builder__preview-message {
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 20px;
  top: 75px;
  padding: 7px 10px;
  background: #ffffff3b;
  backdrop-filter: blur(10px);
}
@media (min-width: 1000px) {
  .bundle_builder__preview-message {
    top: auto;
    left: 20px;
    bottom: 20px;
  }
}
.bundle_builder__summary {
  padding: 20px;
}
.bundle_builder__summary--disabled span {
  opacity: 0.3;
}
.bundle_builder__summary--disabled::before {
  content: "Configure your products to continue";
  display: block;
  color: #000;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  padding: 0 0 20px 0;
  width: auto;
}
@media (min-width: 1000px) {
  .bundle_builder__summary {
    position: fixed;
    right: 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(2px);
    top: 176px;
  }
}
@media (min-width: 1024px) {
  .bundle_builder__summary {
    top: 107px;
  }
}
.bundle_builder__summary-item {
  display: flex;
  justify-content: space-between;
}
.bundle_builder__add-more {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.bundle_builder__button {
  width: auto;
  border: 1px solid #8B461D;
  background: #FFF;
  padding: 10px 25px;
  color: #8B461D;
  text-align: center;
  font-family: "DIN OT";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.bundle_builder__button--add-to-cart {
  opacity: 1;
  color: #FFF;
  background: #8B461D;
  cursor: pointer;
  width: 100%;
}
.bundle_builder__button--add-to-cart.success::after {
  content: url('/wp-content/themes/thosmoser2/images/icon-checkmark.svg');
  margin-left: 10px;
}
.bundle_builder__button[data-disabled="disabled"] {
  opacity: 0.3;
  cursor: not-allowed;
}
.bundle_builder__link {
  margin-top: 20px;
  width: 100%;
  border: none;
  background: none;
  color: #717171;
  text-align: center;
  font-family: "DIN OT";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration-line: underline;
}
.bundle_builder__loading-dots.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.bundle_builder__loading-dots.loading i {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #b34f2d;
  border-radius: 100%;
  display: inline-block;
  animation: bouncedelay 1.4s infinite ease-in-out;
  animation-fill-mode: both;
}
.bundle_builder__loading-dots.loading i:nth-child(1) {
  animation-delay: -0.48s;
}
.bundle_builder__loading-dots.loading i:nth-child(2) {
  animation-delay: -0.32s;
}
.bundle_builder__loading-dots.loading i:nth-child(3) {
  animation-delay: -0.16s;
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: .5;
  }
  40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 1;
  }
}
.bundle-removed + a.restore-item {
  display: none;
}
.button {
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  padding: 11px 37px;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #b34f2d;
  border-radius: 0;
}
.button:visited {
  color: white;
}
.button:hover {
  color: black;
  text-decoration: none;
  background: #c88c64;
}
.button--slate {
  background: #7a8691;
  color: white;
}
.button--slate:visited {
  color: white;
}
.button--slate:hover {
  background: #415162;
  color: white;
}
.contract__gravity-form input[type="submit"],
input[type="submit"],
input[type="button"],
button[type="submit"] {
  font-family: 'DIN W01 Regular';
  text-transform: uppercase;
  padding: 11px 37px;
  color: white;
  font-size: 24px;
  border: none;
  text-decoration: none;
  background: #b34f2d;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
}
.contract__gravity-form input[type="submit"]:hover,
.contract__gravity-form input[type="submit"]:focus,
.contract__gravity-form input[type="submit"]:active,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
button[type="submit"]:hover,
button[type="submit"]:focus,
button[type="submit"]:active {
  color: black;
  text-decoration: none;
  background: #c88c64;
}
.gform_button_select_files {
  background: inherit;
  color: black;
  font-size: inherit;
  text-transform: none;
  text-decoration: underline;
  padding: 0;
}
.woocommerce-message .button {
  background: inherit;
  font-size: inherit;
  text-transform: inherit;
}
.woocommerce-message .button:hover {
  color: #555;
}
.buttons--underline .button span {
  cursor: pointer;
}
.buttons--underline .button span:hover {
  color: #000;
  text-decoration: underline;
}
button.button--slate[type="submit"],
.checkout-button.button.alt.wc-forward.wp-element-button {
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  padding: 11px 37px;
  font-size: 24px;
  border: none;
  text-decoration: none;
  background: #7a8691;
  color: white;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
}
button.button--slate[type="submit"]:visited,
.checkout-button.button.alt.wc-forward.wp-element-button:visited {
  color: white;
}
button.button--slate[type="submit"]:hover,
button.button--slate[type="submit"]:focus,
button.button--slate[type="submit"]:active,
.checkout-button.button.alt.wc-forward.wp-element-button:hover,
.checkout-button.button.alt.wc-forward.wp-element-button:focus,
.checkout-button.button.alt.wc-forward.wp-element-button:active {
  background: #415162;
  color: white;
  text-decoration: none;
}
.woocommerce-info:before {
  color: #7a8691;
}
.woocommerce-message .button {
  padding: 0;
}
.woocommerce-message .button:visited {
  color: #000;
}
.woocommerce-terms-and-conditions-checkbox-text {
  text-align: left;
}
.miniCart .checkout-button {
  display: block;
}
#miniCart .woocommerce-mini-cart__empty-message.cartItem.cartItem--empty {
  padding: 10px !important;
}
.woocommerce-order-received #content #main_content,
.woocommerce-order-received #content #main_content.has-sidebar,
.woocommerce-checkout #content #main_content,
.woocommerce-checkout #content #main_content.has-sidebar {
  padding: 0 !important;
}
.woocommerce-cart #main_content {
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-cart #main_content {
    padding: 0;
  }
}
.woocommerce-cart #breadcrumbs,
.woocommerce-order-received #breadcrumbs {
  display: none;
}
.woocommerce-cart h1,
.woocommerce-order-received h1 {
  text-align: center;
  font-size: 36px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-cart h1,
  .woocommerce-order-received h1 {
    font-size: 54px;
  }
}
.woocommerce-cart .woocommerce,
.woocommerce-order-received .woocommerce {
  position: relative;
}
.woocommerce-cart .woocommerce .shop_table thead,
.woocommerce-order-received .woocommerce .shop_table thead {
  border: none;
  border-bottom: 1px solid #E5E5E5;
}
.woocommerce-cart .woocommerce .shop_table tr,
.woocommerce-order-received .woocommerce .shop_table tr {
  position: relative;
  vertical-align: middle;
  padding: 15px 0;
  border-bottom: 1px solid #E5E5E5;
}
.woocommerce-cart .woocommerce .shop_table tr:nth-last-child(2),
.woocommerce-order-received .woocommerce .shop_table tr:nth-last-child(2) {
  border-bottom: none;
}
.woocommerce-cart .woocommerce .shop_table th,
.woocommerce-cart .woocommerce .shop_table td,
.woocommerce-cart .woocommerce .shop_table label,
.woocommerce-order-received .woocommerce .shop_table th,
.woocommerce-order-received .woocommerce .shop_table td,
.woocommerce-order-received .woocommerce .shop_table label {
  color: #666;
  text-transform: none;
}
.woocommerce-cart .woocommerce .shop_table th.product-thumbnail,
.woocommerce-order-received .woocommerce .shop_table th.product-thumbnail {
  width: 160px;
}
.woocommerce-cart .woocommerce .shop_table th.product-name,
.woocommerce-order-received .woocommerce .shop_table th.product-name {
  position: absolute;
  left: 0;
}
.woocommerce-cart .woocommerce .shop_table th.product-quantity,
.woocommerce-order-received .woocommerce .shop_table th.product-quantity {
  width: 100px;
  padding: 15px 35px !important;
  text-align: center;
}
.woocommerce-cart .woocommerce .shop_table td,
.woocommerce-order-received .woocommerce .shop_table td {
  vertical-align: middle;
}
.woocommerce-cart .woocommerce .shop_table td.product-thumbnail img,
.woocommerce-order-received .woocommerce .shop_table td.product-thumbnail img {
  width: auto;
}
.woocommerce-cart .woocommerce .shop_table td.product-thumbnail,
.woocommerce-order-received .woocommerce .shop_table td.product-thumbnail {
  font-family: 'DIN W01 Medium';
  padding: 15px 0;
}
.woocommerce-cart .woocommerce .shop_table td.product-thumbnail .backorder_notification,
.woocommerce-order-received .woocommerce .shop_table td.product-thumbnail .backorder_notification {
  font-family: 'DIN W01 Regular';
}
.woocommerce-cart .woocommerce .shop_table td.product-price,
.woocommerce-order-received .woocommerce .shop_table td.product-price {
  font-family: 'DIN W01 Bold';
}
.woocommerce-cart .woocommerce .shop_table td .product-quantity,
.woocommerce-order-received .woocommerce .shop_table td .product-quantity {
  padding: 15px 35px;
  text-align: center;
}
.woocommerce-cart .woocommerce .shop_table td .product-quantity .quantity input.qty,
.woocommerce-order-received .woocommerce .shop_table td .product-quantity .quantity input.qty {
  border: 1px solid #E5E5E5;
  width: 40px;
  height: 55px;
  text-align: center;
}
.woocommerce-cart .woocommerce .shop_table td.product-subtotal,
.woocommerce-order-received .woocommerce .shop_table td.product-subtotal {
  font-family: 'DIN W01 Bold';
}
.woocommerce-cart .woocommerce .shop_table td.product-subtotal small,
.woocommerce-order-received .woocommerce .shop_table td.product-subtotal small {
  font-family: 'DIN W01 Regular';
  position: absolute;
}
.woocommerce-cart .woocommerce .shop_table td.remove,
.woocommerce-order-received .woocommerce .shop_table td.remove {
  display: inline-block;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.5em;
  line-height: 32px;
  height: 32px;
  width: 32px;
  text-align: center;
  text-decoration: none !important;
  color: #666;
}
.woocommerce-cart .woocommerce .shop_table input[type=number]::-webkit-inner-spin-button,
.woocommerce-order-received .woocommerce .shop_table input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.woocommerce-cart .woocommerce input#coupon_code,
.woocommerce-order-received .woocommerce input#coupon_code {
  padding: 11.5px;
  font-size: 22px;
  height: auto;
  border: solid 1px #CBCBCB;
  width: auto;
  clear: both;
  margin: 0 15px 0 0;
}
.woocommerce-cart .woocommerce input#coupon_code::placeholder,
.woocommerce-order-received .woocommerce input#coupon_code::placeholder {
  color: #666;
  font-style: normal !important;
}
.woocommerce-cart .woocommerce table.cart td.actions .coupon,
.woocommerce-order-received .woocommerce table.cart td.actions .coupon {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.woocommerce-cart .woocommerce .coupon-error-notice,
.woocommerce-order-received .woocommerce .coupon-error-notice {
  background: #fff;
  border: 1px solid #E5E5E5;
  padding: 10px 15px;
  margin: 15px 0;
  position: relative;
  width: 100%;
  text-align: center;
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout,
.woocommerce-order-received .woocommerce .wc-proceed-to-checkout {
  padding: 0;
}
.woocommerce-cart .woocommerce .cart_totals,
.woocommerce-order-received .woocommerce .cart_totals {
  color: #666;
  float: right;
  width: 35%;
}
.woocommerce-cart .woocommerce .cart_totals h2,
.woocommerce-order-received .woocommerce .cart_totals h2 {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.woocommerce-cart .woocommerce .cart_totals .shop_table,
.woocommerce-order-received .woocommerce .cart_totals .shop_table {
  margin: 1em 0;
  background: #F2F2F2;
  border: 1px solid #E5E5E5;
}
.woocommerce-cart .woocommerce .cart_totals .shop_table th,
.woocommerce-order-received .woocommerce .cart_totals .shop_table th {
  width: 50%;
}
.woocommerce-cart .woocommerce .cart_totals .shop_table tr,
.woocommerce-order-received .woocommerce .cart_totals .shop_table tr {
  border-bottom: solid 1px #E5E5E5;
}
.woocommerce-cart .woocommerce .cart_totals .shop_table tr:nth-last-child(2),
.woocommerce-order-received .woocommerce .cart_totals .shop_table tr:nth-last-child(2) {
  border-bottom: solid 1px #E5E5E5;
}
.woocommerce-cart .woocommerce .cart_totals .shop_table td,
.woocommerce-order-received .woocommerce .cart_totals .shop_table td {
  background: #FFF;
}
.woocommerce-cart .woocommerce .cart_totals .shop_table small,
.woocommerce-order-received .woocommerce .cart_totals .shop_table small {
  color: #666;
}
.woocommerce-cart .woocommerce .cart_totals .shop_table select,
.woocommerce-order-received .woocommerce .cart_totals .shop_table select {
  width: 100%;
}
.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type="tel"],
.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type="text"],
.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-echeck-form-input[type="tel"],
.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-echeck-form-input[type="text"],
.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-form-nickname,
#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type="tel"],
#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type="text"],
#add_payment_method input.js-sv-wc-payment-gateway-echeck-form-input[type="tel"],
#add_payment_method input.js-sv-wc-payment-gateway-echeck-form-input[type="text"],
#add_payment_method input.js-sv-wc-payment-gateway-form-nickname {
  font-size: 20px !important;
}
.woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper input::placeholder,
.woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .select2-selection--single .select2-selection__placeholder,
.woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .checkout .woocommerce-shipping-fields__field-wrapper input::placeholder,
.woocommerce-checkout .checkout .woocommerce-shipping-fields__field-wrapper .select2-selection--single .select2-selection__placeholder,
.woocommerce-checkout .checkout .woocommerce-shipping-fields__field-wrapper .select2-selection--single .select2-selection__rendered {
  font-style: normal;
  font-family: 'DIN W01 Regular';
  color: #666 !important;
}
.woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .select2-selection--single,
.woocommerce-checkout .checkout .woocommerce-shipping-fields__field-wrapper .select2-selection--single {
  border: 1px solid #E5E5E5;
}
.woocommerce-checkout .checkout .woocommerce-additional-fields__field-wrapper textarea::placeholder {
  font-style: normal;
  font-family: 'DIN W01 Regular';
  color: #666 !important;
}
.woocommerce-checkout .woocommerce-form.woocommerce-form-login.login {
  width: 100%;
  padding: 0 30px;
  margin: 0 0 2em 0;
}
.woocommerce-checkout .checkout .checkbox {
  display: flex;
  align-items: center;
}
.woocommerce-checkout .checkout-title {
  text-align: center;
}
.woocommerce-checkout .checkout-title span {
  color: #A54F38;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none;
}
.woocommerce-checkout .select2-selection--single .select2-selection__arrow {
  background-color: #CBCBCB;
  color: #334254;
}
.woocommerce-checkout tfoot {
  border: none;
}
.woocommerce-checkout form .form-row .required {
  color: #A54F38;
}
.woocommerce-checkout label {
  text-transform: none;
  color: #666666;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox span {
  margin-left: 15px;
}
.woocommerce-checkout .hubspot-optin {
  margin-top: 15px;
}
.woocommerce-checkout .hubspot-optin input#hubspot_optin {
  margin-right: 20px;
}
.woocommerce-checkout label.woocommerce-form__label.woocommerce-form__label-for-checkbox.inline {
  display: flex !important;
  align-items: center;
}
.woocommerce-checkout .woocommerce-account-fields label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.woocommerce-checkout input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #F9F9F9;
  border: solid 1px #CBCBCB;
  font: inherit;
  width: 30px;
  height: 30px;
  min-width: 30px;
  position: relative;
  margin-right: 5px;
  margin-top: 0;
}
.woocommerce-checkout input[type="checkbox"]::before {
  content: "";
  width: 8px;
  height: 15px;
  transform-origin: bottom left;
  transform: rotate(45deg);
  transition: 120ms transform ease-in-out;
  border-color: #33425400 !important;
  border-right: solid 3px;
  border-bottom: solid 3px;
  position: absolute;
  bottom: 13px;
  left: 5px;
  cursor: pointer;
}
.woocommerce-checkout input[type="checkbox"]:checked::before {
  border-color: #fff !important;
}
.woocommerce-checkout input[type="checkbox"]:checked {
  background: #334254;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout #wc_checkout_add_ons,
  .woocommerce-checkout #customer_details {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.woocommerce-checkout #order_review_heading {
  font-size: 36px;
  font-style: normal;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout #order_review_heading {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.woocommerce-checkout #order_review {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 0 0 0;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody {
  width: 100%;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead tr {
  width: 100%;
  display: flex;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart_item {
  display: flex;
  width: 100%;
  flex-direction: row;
  padding-left: 0;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart_item td {
  padding: 15px 0;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th.product-name,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-name {
  width: 55%;
  padding: 4px 0;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th.product-quantity,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-quantity {
  width: 15%;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-total {
  width: 30%;
}
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.cart-subtotal td,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.tax-total td,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.order-total td {
  width: 35%;
  padding: 15px 30px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.cart-subtotal td,
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.tax-total td,
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tr.order-total td {
    width: 18%;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart_item {
    padding-left: 0;
  }
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
    padding-left: 30px;
    padding-right: 30px;
  }
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th.product-name,
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-name {
    width: 85%;
    padding: 15px 30px 25px 30px;
  }
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th.product-quantity,
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-quantity {
    width: 10%;
  }
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th.product-total,
  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-total {
    width: 20%;
    padding: 15px 30px;
    text-align: left;
  }
}
.woocommerce-checkout #order_review thead,
.woocommerce-checkout #order_review tfoot {
  border: none;
}
.woocommerce-checkout #order_review tfoot {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.woocommerce-checkout #order_review tfoot tr {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  background: #e5e5e54d;
}
.woocommerce-checkout #order_review tfoot tr.order-total {
  background: #7a869133;
}
.woocommerce-checkout #order_review tfoot tr.order-total th {
  font-weight: 700;
}
.woocommerce-checkout #order_review tfoot tr.order-total:after {
  content: 'Payment';
  width: 100%;
  background: #fff;
  font-family: Noe Display;
  font-size: 36px;
  font-style: normal;
  padding: 30px;
}
.woocommerce-checkout #order_review tfoot tr.order-paid,
.woocommerce-checkout #order_review tfoot tr.order-remaining {
  width: 20%;
  background: #7a8691;
  justify-content: flex-start;
  flex-direction: column;
}
.woocommerce-checkout #order_review tfoot tr.order-paid th,
.woocommerce-checkout #order_review tfoot tr.order-remaining th {
  padding: 30px 30px 20px 30px;
}
.woocommerce-checkout #order_review tfoot tr.order-paid td,
.woocommerce-checkout #order_review tfoot tr.order-remaining td {
  padding: 0px 0px 0px 30px;
  font-size: 24px;
  font-family: 'DIN W01 Regular';
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout #order_review tfoot tr.order-paid td,
  .woocommerce-checkout #order_review tfoot tr.order-remaining td {
    font-size: 30px;
  }
}
.woocommerce-checkout #order_review tfoot tr.order-paid *,
.woocommerce-checkout #order_review tfoot tr.order-remaining * {
  color: #fff;
}
.woocommerce-checkout #order_review tfoot tr.order-remaining {
  order: 12;
}
.woocommerce-checkout #order_review tfoot tr.order-paid {
  order: 11;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button {
  background: #7a8691;
  width: 60%;
  order: 10;
  justify-content: flex-start;
  flex-direction: column;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 20%;
  background: #7a8691;
  right: 0;
  z-index: -10;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button td {
  padding: 0;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button:before {
  content: 'How would you like to pay?';
  width: 100%;
  color: #fff;
  padding: 30px 30px 20px 30px;
  font-family: "DIN W01 Medium";
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option {
  background: #7a8691;
  border: none;
  display: flex;
  padding: 0 0 0 15px;
  width: 100%;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option .awcdp-deposits-description {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option .awcdp-radio {
  border: none;
  padding: 0 15px;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option .awcdp-radio .awcdp-deposit-radio+.awcdp-radio-label {
  color: #fff;
  border: none;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option .awcdp-radio .awcdp-deposit-radio+.awcdp-radio-label:before {
  width: 1.65em;
  height: 1.65em;
  top: 0;
  box-sizing: content-box;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option .awcdp-radio .awcdp-deposit-radio:checked+.awcdp-radio-label:before {
  box-shadow: inset 0 0 0 8px #415162;
  border: none;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option .awcdp-radio .awcdp-radio-label {
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button * {
  color: #fff;
}
.woocommerce-checkout #order_review tfoot td {
  background: transparent;
}
.woocommerce-checkout #order_review th {
  text-transform: none;
}
.woocommerce-checkout #order_review th .product-name {
  width: 62%;
}
.woocommerce-checkout #order_review th.product-quantity,
.woocommerce-checkout #order_review td.product-quantity {
  text-align: center;
}
.woocommerce-checkout #order_review tr.cart_item {
  position: relative;
  vertical-align: middle;
  padding: 0;
  border-bottom: 1px solid #E5E5E5;
}
.woocommerce-checkout #order_review tr.cart_item:nth-last-child(1) {
  border-bottom: none;
}
.woocommerce-checkout .wc_payment_method.payment_method_authorize_net_cim_credit_card {
  display: flex;
  flex-flow: row wrap;
  padding: 30px;
  justify-content: right;
}
.woocommerce-checkout .woocommerce-checkout-payment label[for='payment_method_authorize_net_cim_credit_card'] {
  order: 2;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout .woocommerce-checkout-payment label[for='payment_method_authorize_net_cim_credit_card'] {
    padding-right: 40%;
  }
}
.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods.payment_methods.methods {
  background: #BDC2C7;
  padding: 30px 20px;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card {
  order: 1;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card p {
  display: none;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form #wc-authorize-net-cim-credit-card-account-number_field {
  width: 100%;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form #wc-authorize-net-cim-credit-card-expiry_field,
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form #wc-authorize-net-cim-credit-card-csc_field {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form #wc-authorize-net-cim-credit-card-account-number_field {
    width: 60%;
  }
  .woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form #wc-authorize-net-cim-credit-card-expiry_field {
    width: 16%;
  }
  .woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form #wc-authorize-net-cim-credit-card-csc_field {
    width: 20%;
  }
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form .woocommerce-input-wrapper input {
  border: 1px solid #CBCBCB !important;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box.payment_method_authorize_net_cim_credit_card .wc-authorize-net-cim-credit-card-new-payment-method-form.js-wc-authorize-net-cim-credit-card-new-payment-method-form label {
  color: #415162;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box fieldset#wc-authorize-net-cim-credit-card-credit-card-form p {
  display: block;
}
.woocommerce-checkout .woocommerce-checkout-payment #place_order {
  background: #415162;
  color: white;
  margin: 1.5em auto;
}
.woocommerce-checkout .woocommerce-checkout-payment #place_order:visited {
  color: white;
}
.woocommerce-checkout .woocommerce-checkout-payment #place_order:hover {
  background: #7a8691;
  color: white;
}
.woocommerce-order-received .woocommerce-order {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.woocommerce-order-received .checkout-title {
  display: none;
}
.woocommerce-order-received .woocommerce-order-details__title {
  color: #666666;
  margin: 36px 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-received .woocommerce-order-details__title {
    padding: 0 30px;
  }
}
.woocommerce-order-received .woocommerce-customer-details {
  margin: 2em 30px;
}
.woocommerce-order-received .woocommerce-thankyou-order-received {
  font-size: 54px;
  font-style: normal;
  padding: 0;
  text-align: center;
  font-family: 'Noe Display';
  margin: 1.5em auto;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-received .woocommerce-thankyou-order-received {
    padding: 0 30px;
  }
}
.woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 2.5em 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    flex-direction: row;
    padding: 0 30px;
  }
}
.woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
  display: flex;
  flex-direction: column;
  color: #8C8C8C;
  padding: 5px 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    padding: 0;
  }
}
.woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li strong {
  color: #000;
  margin: 15px 0 0 0;
}
.woocommerce-order-received .woocommerce-order-details .woocommerce-order-details__title {
  display: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-received .woocommerce-order-details .shop_table tr:nth-last-child(1) {
    border-bottom: none;
  }
}
.woocommerce-order-received .woocommerce-order-details .shop_table th.product-name {
  padding-left: 0;
}
.woocommerce-order-received .woocommerce-order-details .shop_table th.product-total,
.woocommerce-order-received .woocommerce-order-details .shop_table td.product-total {
  padding-left: 30px;
  width: 17%;
}
.woocommerce-order-received .woocommerce-order-details .shop_table .wc-item-meta {
  padding: 0;
}
.woocommerce-order-received .order-totals {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #F7F7F7;
}
.woocommerce-order-received .order-totals--row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: solid 1px #E5E5E5;
  font-size: 20px;
  font-family: 'DIN W01 Medium';
  font-weight: 700;
}
.woocommerce-order-received .order-totals--row:nth-last-child(3) {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce-order-received .order-totals--row div {
    padding: 0 30px;
  }
  .woocommerce-order-received .order-totals--row div:nth-child(even) {
    width: 17%;
  }
}
.woocommerce-order-received .order-totals--row p {
  position: absolute;
}
.woocommerce-order-received .order-totals--row.payment-method,
.woocommerce-order-received .order-totals--row.order-total {
  display: none;
}
.woocommerce-order-received .order-totals--row.shipping,
.woocommerce-order-received .order-totals--row.tax {
  font-size: 16px;
}
.woocommerce-order-received .order-totals--row.balance-due {
  background: #fff;
  border: none;
}
@media only screen and (max-width: 767px) {
  .woocommerce-cart tr.woocommerce-cart-form__cart-item.cart_item,
  .woocommerce-order-received tr.woocommerce-cart-form__cart-item.cart_item {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .woocommerce-cart input.qty,
  .woocommerce-order-received input.qty {
    border: 1px solid #E5E5E5;
    height: 40px;
    width: 30px;
    text-align: center;
  }
  .woocommerce-cart .shop_table td.product-quantity,
  .woocommerce-order-received .shop_table td.product-quantity {
    text-align: center;
  }
  .woocommerce-cart td.product-price,
  .woocommerce-cart td.product-quantity,
  .woocommerce-cart td.product-subtotal,
  .woocommerce-order-received td.product-price,
  .woocommerce-order-received td.product-quantity,
  .woocommerce-order-received td.product-subtotal {
    margin: 10px;
  }
  .woocommerce-cart tr.woocommerce-cart-form__cart-item.cart_item,
  .woocommerce-order-received tr.woocommerce-cart-form__cart-item.cart_item {
    display: flex;
  }
  .woocommerce-cart .shop_table td.product-thumbnail,
  .woocommerce-order-received .shop_table td.product-thumbnail {
    border-bottom: 1px solid #E5E5E5;
    width: 30%;
  }
  .woocommerce-cart .shop_table td.product-name,
  .woocommerce-order-received .shop_table td.product-name {
    width: 70%;
    padding: 20px !important;
    margin: 0 0 0 0 !important;
  }
  .woocommerce-cart .shop_table td.product-name,
  .woocommerce-order-received .shop_table td.product-name {
    border-bottom: solid 1px #E5E5E5;
  }
  .woocommerce-cart .shop_table td,
  .woocommerce-order-received .shop_table td {
    width: calc((25% - 20px));
  }
  .woocommerce-cart .shop_table td.actions,
  .woocommerce-order-received .shop_table td.actions {
    width: 100%;
  }
  .woocommerce-cart .woocommerce table.cart td.actions .coupon,
  .woocommerce-order-received .woocommerce table.cart td.actions .coupon {
    display: flex;
    margin: 0 0 20px 0;
  }
  .woocommerce-cart .woocommerce table.cart td.actions .coupon .button,
  .woocommerce-order-received .woocommerce table.cart td.actions .coupon .button {
    width: 30%;
  }
  .woocommerce-cart .shop_table td.actions input#coupon_code,
  .woocommerce-order-received .shop_table td.actions input#coupon_code {
    width: 70%;
    margin: 0;
    max-width: none;
  }
  .woocommerce-cart .woocommerce table.cart td.actions .button,
  .woocommerce-order-received .woocommerce table.cart td.actions .button {
    width: 100%;
    font-size: 18px;
    padding: 11px 15px;
  }
  .woocommerce-cart td.product-remove,
  .woocommerce-order-received td.product-remove {
    text-align: right;
    font-size: 22px;
    display: flex;
    align-content: center;
    justify-content: center;
  }
  .woocommerce-cart .woocommerce .cart_totals,
  .woocommerce-order-received .woocommerce .cart_totals {
    width: 100%;
  }
  .woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button {
    width: 100%;
  }
  .woocommerce-checkout #order_review tfoot tr.order-paid,
  .woocommerce-checkout #order_review tfoot tr.order-remaining {
    width: 50%;
    padding-bottom: 30px;
  }
  .woocommerce-checkout #order_review tfoot tr.order-paid th,
  .woocommerce-checkout #order_review tfoot tr.order-remaining th {
    padding: 0px 30px 20px 30px;
  }
  .awcdp-deposits-option .awcdp-radio-label {
    font-size: 14px !important;
  }
  .awcdp-deposits-wrapper {
    width: 100%;
    padding: 0 15px;
  }
  .awcdp-radio.pay-full {
    width: 50%;
  }
  .awcdp-radio.pay-deposit {
    width: 50%;
  }
  tr.awcdp-deposit-checkout-button td {
    width: 100%;
  }
  .woocommerce-checkout #order_review tfoot tr.awcdp-deposit-checkout-button .awcdp-deposits-wrapper .awcdp-deposits-option {
    padding: 0;
  }
}
@media only screen and (max-width: 500px) {
  .awcdp-radio.pay-full,
  .awcdp-radio.pay-deposit {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
    align-content: space-between;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper p {
    width: 100%;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field,
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_email_field,
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_first_name_field,
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_last_name_field,
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .form-row.form-row-wide.mailchimp-newsletter {
    width: 49%;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .mailchimp-newsletter .woocommerce-form__label-for-checkbox span {
    text-transform: lowercase;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .mailchimp-newsletter .woocommerce-form__label-for-checkbox span:first-letter {
    text-transform: uppercase;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .woocommerce-account-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    align-items: start;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .woocommerce-account-fields .create-account {
    grid-column: 1;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper .woocommerce-account-fields #hubspot_optin_field {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_address_1_field {
    width: 59%;
    margin: 0 0 1.5em;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_address_2_field {
    width: 39%;
    display: flex;
    align-items: flex-end;
    margin: 0 0 1.5em;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_address_2_field .woocommerce-input-wrapper {
    width: 100%;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_city_field {
    width: 50%;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_state_field {
    width: calc((30% - 60px));
    margin: 0 30px;
  }
  .woocommerce-checkout .checkout .woocommerce-billing-fields__field-wrapper #billing_postcode_field {
    width: 20%;
  }
}
.hubspot-optin-description {
  font-size: 15px;
}
.hubspot-optin-description a {
  text-decoration: underline;
}
.hubspot-optin-description a:hover {
  text-decoration-thickness: 2px;
}
.email-check-spinner {
  display: flex;
  align-items: center;
  margin-top: 5px;
  color: #666;
}
.email-check-spinner .bundle_builder__loading-dots {
  position: static;
  transform: none;
  margin-right: 8px;
  margin-bottom: 4px;
}
.email-check-spinner .bundle_builder__loading-dots i {
  width: 6px;
  height: 6px;
  margin-right: 6px;
  background: #b34f2d;
  border-radius: 100%;
  display: inline-block;
  animation: bouncedelay 1.4s infinite ease-in-out;
  animation-fill-mode: both;
}
.email-check-spinner .bundle_builder__loading-dots i:nth-child(1) {
  animation-delay: -0.48s;
}
.email-check-spinner .bundle_builder__loading-dots i:nth-child(2) {
  animation-delay: -0.32s;
}
.email-check-spinner .bundle_builder__loading-dots i:nth-child(3) {
  animation-delay: -0.16s;
}
.email-check-spinner .email-check-text {
  font-size: 14px;
  font-style: italic;
}
.email-exists-message,
.email-new-message {
  margin-top: 10px;
  padding: 10px;
  background-color: #f7f7f7;
}
.email-exists-message p,
.email-new-message p {
  margin: 0;
  color: #666;
}
.email-exists-message {
  border-left: 4px solid #415162;
}
.email-new-message {
  border-left: 4px solid #737949;
}
#createaccount:disabled,
#createaccount:disabled + span,
#createaccount:disabled ~ span {
  cursor: not-allowed;
  opacity: 0.6;
}
.show-login-prompt {
  background: none;
  border: none;
  padding: 0;
  color: #7a8691;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
}
.show-login-prompt:hover {
  color: #415162;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.woocommerce-page.woocommerce-cart .woocommerce {
  display: flex;
  flex-direction: column;
}
.woocommerce-page.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
  order: 1;
}
.woocommerce-page.woocommerce-cart .woocommerce .woocommerce-cart-form {
  order: 2;
}
.woocommerce-page.woocommerce-cart .woocommerce .woocommerce-bogof-notices-wrapper {
  order: 3;
}
.woocommerce-page.woocommerce-cart .woocommerce .woocommerce-bogof-notices-wrapper .wc-bogof-notice {
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-page.woocommerce-cart .woocommerce .woocommerce-bogof-notices-wrapper .wc-bogof-notice .wc-bogof-woo-notice-content {
  gap: 20px 30px;
  display: flex !important;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: auto;
}
.woocommerce-page.woocommerce-cart .woocommerce .woocommerce-bogof-notices-wrapper .wc-bogof-announcement-action-button.button-choose-your-gift {
  font-family: 'DIN W01 Medium';
  padding: 8px 30px;
  border: none;
  text-decoration: none !important;
  background: #7a8691;
  color: white;
  cursor: pointer;
  margin-left: 0px !important;
  white-space: nowrap;
}
.woocommerce-page.woocommerce-cart .woocommerce .woocommerce-bogof-notices-wrapper .wc-bogof-announcement-action-button.button-choose-your-gift:hover {
  background: #415162;
}
.woocommerce-page.woocommerce-cart .woocommerce .cart-collaterals {
  order: 4;
}
.woocommerce-page #wc-bogo-modal-backdrop {
  z-index: 2147483639;
}
.woocommerce-page .wc-bogo-modal {
  z-index: 2147483640;
}
.woocommerce-page .wc-bogo-modal .swatch__details,
.woocommerce-page .wc-bogo-modal .swatch__inner-container,
.woocommerce-page .wc-bogo-modal .swatch-toggle.add_focus {
  display: none;
}
.woocommerce-page .wc-bogo-modal .wc-bogof-gift-variation {
  display: flex;
  flex-flow: row wrap;
}
.woocommerce-page .wc-bogo-modal .wc-bogof-gift-variation:before {
  content: "Select product options:";
  margin: 0 0 5px 0;
  width: 100%;
  text-align: left;
}
.woocommerce-page .wc-bogo-modal .wc-bogof-gift-variation label {
  width: auto !important;
  padding: 0 0;
  margin-right: 10px;
}
.woocommerce-page .wc-bogo-modal .wc-bogof-product-summary {
  width: 100% !important;
  align-items: flex-start !important;
}
.woocommerce-page .wc-bogo-modal .wc-bogof-product-summary .wc-bogof-gift-item__title {
  color: #000;
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  text-align: left;
  width: 100%;
}
.woocommerce-page .wc-bogo-modal .add_to_cart_button {
  font-size: 16px !important;
  width: 100% !important;
  padding: 10px 15px;
}
@media screen and (min-width: 1200px) {
  .woocommerce-page .wc-bogo-modal .add_to_cart_button {
    font-size: 18px !important;
  }
}
.woocommerce-page #choose-your-gift-dialog .wc-bogof-products .wc-bogof-product {
  padding: 10px;
}
.woocommerce-page #choose-your-gift-dialog .wc-bogo-modal-dialog .wc-bogo-modal-content {
  padding: 10px;
}
@media screen and (min-width: 1200px) {
  .woocommerce-page #choose-your-gift-dialog .wc-bogo-modal-dialog {
    margin-top: 60px;
  }
  .woocommerce-page #choose-your-gift-dialog .wc-bogof-products .wc-bogof-product {
    padding: 0 10px 10px 10px;
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce-page #choose-your-gift-dialog .wc-bogo-modal-dialog {
    width: 85%;
    max-width: 85%;
  }
}
.contract-slider .caption {
  width: 90%;
}
.contract-slider h1 {
  color: #fff;
  font-family: 'Noe Display';
  font-weight: normal;
  text-transform: none;
  text-shadow: 0 0 10px black;
  font-size: 20px;
}
@media only screen and (min-width: 1024px) {
  .contract-slider h1 {
    font-size: 44px;
  }
}
.contract-slider p {
  font-family: 'DIN W01 Medium';
  color: #fff;
  font-size: 18px;
  text-shadow: 0 0 4px black;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%,0%);
  font-size: 12px;
}
@media only screen and (min-width: 600px) {
  .contract-slider p {
    top: 75%;
  }
}
@media only screen and (min-width: 800px) {
  .contract-slider p {
    top: 80%;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .contract-slider p {
    top: 85%;
    font-size: 18px;
  }
}
.contract-slider .owl-dots button.owl-dot span {
  width: 11px !important;
  height: 11px !important;
}
@media (max-width: 1024px) {
  .page-template-contract_product .product-masthead {
    width: 100%;
    max-height: 650px;
  }
  .page-template-contract_product .product-masthead img {
    height: 100%;
    width: 100%;
  }
  .page-template-contract_product .product-masthead.portrait {
    height: 80vh;
  }
  .page-template-contract_product .product-masthead.portrait img {
    object-fit: contain;
  }
  .page-template-contract_product .product-masthead.landscape {
    height: auto;
  }
}
@media (min-width: 1024px) {
  .page-template-contract_product .product-masthead img {
    width: 100%;
    max-height: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .page-template-contract_product .product-masthead {
    margin-left: -15px;
    max-width: 100%;
    max-height: 400px;
  }
}
.page-template-contract_product .single-carousel .owl-nav {
  top: 30%;
  display: flex;
}
article.has-post-thumbnail.category-contract-products {
  margin-top: 0px;
}
.contract__excerpt {
  max-width: none;
  padding: 10px 1em;
  margin: 50px auto;
  color: #666666;
}
@media only screen and (min-width: 1024px) {
  .contract__excerpt {
    max-width: 60%;
    margin: auto;
  }
}
.contract__category-images {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 50px auto;
}
.contract__image-link {
  margin: auto;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .contract__image-link {
    width: 30%;
  }
}
.contract__image-link a {
  text-decoration: none;
}
.contract__image-link h3 {
  font-family: 'Noe Display';
  font-weight: normal;
  line-height: 45px;
  width: 100%;
  text-align: center;
  color: #000;
  text-decoration: none;
  text-transform: none;
}
.contract__image-link .image-container img {
  margin: auto;
  border-radius: 3px;
}
.contract__form-section {
  background: #F5F5F5;
}
.contract__form-section .inner-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto -50px auto;
}
@media only screen and (min-width: 1024px) {
  .contract__form-section .inner-container {
    padding-top: 150px;
    padding-bottom: 125px;
    max-width: 1300px;
  }
}
.contract__text-block {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .contract__text-block {
    width: 40%;
    margin-right: 10%;
  }
}
.contract__text-block h3 {
  width: 100%;
  text-align: left;
}
.contract__gravity-form {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .contract__gravity-form {
    width: 35%;
    margin-left: 10%;
  }
}
.contract__gravity-form .gfield_label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.contract__gravity-form input,
.contract__gravity-form textarea {
  margin: 5px 0;
  background: #E6E6E6;
  border: none;
}
.contract__gravity-form input[type="submit"] {
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  padding: 11px 37px;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #b34f2d;
  border-radius: 0;
}
.contract__gravity-form input[type="submit"]:visited {
  color: white;
}
.contract__gravity-form input[type="submit"]:hover {
  color: black;
  text-decoration: none;
  background: #c88c64;
}
.contract__gravity-form form ul li.gfield {
  margin: 0px;
}
.contract__gravity-form input::placeholder,
.contract__gravity-form textarea::placeholder {
  padding-left: 10px;
  color: #000 !important;
  font-weight: normal;
  font-style: normal !important;
  font-size: 14px;
  font-family: "DIN W01 Medium";
}
.contract__heading1 {
  margin-bottom: 0 !important;
}
.contract__heading1 h1 {
  font-family: Noe Display;
  text-transform: none;
  color: #000;
  font-size: 38px;
  font-weight: bold;
  padding: 50px 0px;
}
.contract__heading1--blue h1 {
  color: ;
}
.contract__contact-form {
  margin: 100px auto 0 auto;
  background: #F5F5F5;
  padding: 30px 70px;
}
.contract__contact-form .simple.module-columns .section-content p {
  color: #000;
}
.contract__contact-form .columns-col-inner-content .columns-col-content .section-content .title {
  font-size: 40px;
  font-family: Noe Display;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  color: #000;
}
.contract__contact-form #gform_24,
.contract__contact-form #gform_26 {
  max-width: 100%;
  margin: 0 0 0 auto;
}
.contract__contact-form #gform_24 .gfield_label,
.contract__contact-form #gform_26 .gfield_label {
  display: none;
}
.contract__contact-form #gform_24 ul li.gfield,
.contract__contact-form #gform_26 ul li.gfield {
  margin-bottom: 0.5em;
}
.contract__contact-form #gform_24 input,
.contract__contact-form #gform_24 textarea,
.contract__contact-form #gform_26 input,
.contract__contact-form #gform_26 textarea {
  background: #e6e6e6;
  border-bottom: none;
  color: #6b6b6b;
}
.contract__contact-form #gform_24 input[type="submit"],
.contract__contact-form #gform_26 input[type="submit"] {
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  padding: 11px 37px;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #b34f2d;
  border-radius: 0;
}
.contract__contact-form #gform_24 input[type="submit"]:visited,
.contract__contact-form #gform_26 input[type="submit"]:visited {
  color: white;
}
.contract__contact-form #gform_24 input[type="submit"]:hover,
.contract__contact-form #gform_26 input[type="submit"]:hover {
  color: black;
  text-decoration: none;
  background: #c88c64;
}
.contract__contact-form #gform_24 input::placeholder,
.contract__contact-form #gform_24 textarea::placeholder,
.contract__contact-form #gform_26 input::placeholder,
.contract__contact-form #gform_26 textarea::placeholder {
  padding-left: 10px;
  color: #000 !important;
  font-weight: normal;
  font-style: normal !important;
  font-size: 14px;
  font-family: "DIN W01 Medium";
}
.contract__sildeshow .header h1 {
  font-size: 34px;
  font-weight: bold;
  text-transform: none;
  font-family: Noe Display;
  color: white;
  text-shadow: 2px 2px 15px #000;
}
.contract__sildeshow a {
  margin: auto;
  background: white;
  padding: 10px 50px;
}
.contract__tagline h6 {
  line-height: 1.5;
  padding: 90px 0 25px 0;
  text-align: center;
  font-weight: 900;
  font-size: 25px;
}
.contract__projects-columns {
  max-width: 1200px;
  margin: 0 auto !important;
}
.contract__projects-columns figure {
  margin: 0;
  max-width: 555px;
}
.contract__projects-columns .project-name {
  text-align: center;
  height: 0;
}
.contract__projects-columns .project-name a {
  padding: 2px;
  font-family: noe display;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin: auto;
  color: #fff;
  font-size: 30pt;
  text-shadow: 0px 0px 10px #000;
  z-index: 5;
  top: -300px;
  transition: .5s ease;
}
.contract__projects-columns .project-name a:hover {
  color: #334254;
  text-shadow: 0px 0px 10px #fff;
}
.contract__projects-columns .project-name a:hover ~ .overlay {
  opacity: 1;
}
.contract__projects-columns .project-name .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #ffffff90;
}
.contract__projects-columns .flex-item .columns-col-inner-content {
  max-width: 555px;
}
.contract__projects-columns .columns-col-inner-content {
  margin: 0 auto;
  max-width: 80%;
}
.contract__projects-button {
  margin: 50px auto;
  padding: 0 0 60px 0;
}
.contract__fake-button {
  text-decoration: none !important;
  font-family: Noe Display;
  font-weight: 900;
  margin: auto;
  color: white !important;
  background: #334254;
  outline: solid 1px transparent;
  padding: 14px 45px;
  transition: .5s;
}
.contract__fake-button:hover {
  color: #334254 !important;
  background: #fff;
  outline: solid 1px #334254;
}
.contract__content-columns {
  max-width: 1100px;
  margin: 0 auto 0 auto !important;
}
.contract__content-columns .image-caption {
  padding: 0px 55px;
  line-height: 1.2;
}
.contract__content-columns--mobile {
  display: block;
}
.contract__content-columns--desktop {
  display: none;
}
.contract__case-study-subtitle {
  padding: 100px 0;
  margin-bottom: 0 !important;
}
.contract__case-study-subtitle p {
  text-transform: uppercase;
  color: #6b6b6b;
  font-size: 12px;
  letter-spacing: 1px;
}
.contract__case-study-subtitle h2 {
  font-size: 40px;
  text-transform: none;
  font-family: Noe Display;
  color: #000;
}
.contract__case-study-columns {
  max-width: 1000px;
  margin: auto;
}
.contract__case-study-columns .case-study-content h3 {
  text-transform: none;
  padding: 10px 0 0 0;
}
.contract__case-study-columns .case-study-content .case-study-list {
  line-height: 1.5;
}
.contract__case-study-columns .case-study-content .case-study-list li {
  list-style-type: disc;
  font-size: 14pt;
}
.contract__case-study-columns .entry-images {
  border-bottom: none;
  max-width: 360px;
  margin: auto;
}
.contract__case-study-columns .entry-images .thumbs a.thumb {
  width: 30%;
  display: inline-block;
}
.contract__case-study-columns .entry-images .thumbs a.thumb img {
  max-height: 80px;
  min-width: 115px;
  object-fit: cover;
}
.contract__case-study-columns .entry-images .thumb:nth-child(1),
.contract__case-study-columns .entry-images .thumb:nth-child(2) {
  margin-right: 14px;
}
.contract__case-study-columns .entry-images .thumb:nth-child(3) {
  margin: 0 !important;
}
.contract__case-study-columns .img-primary {
  margin: auto;
}
.contract__case-study-columns .img-primary img {
  max-width: 360px;
  height: 380px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .contract__sildeshow .header h1 {
    font-size: 60px;
  }
  .contract__tagline h6 {
    max-width: 780px;
    margin: 20px auto;
  }
  .contract__content-columns .image-caption {
    width: 70%;
    margin: 0 30px;
    padding: 0;
  }
  .contract__content-columns figure {
    margin: 0;
  }
  .contract__content-columns--mobile {
    display: none;
  }
  .contract__content-columns--desktop {
    display: block;
  }
  .contract__contact-form #gform_24,
  .contract__contact-form #gform_26 {
    max-width: 70%;
  }
  .contract__contact-form input {
    padding: 10px 4px 17px 4px;
  }
  .contract__contact-form input[type="submit"] {
    padding: 10px;
  }
  .contract__case-study-columns {
    margin-bottom: 150px !important;
  }
  .contract__case-study-columns .entry-images {
    border-bottom: none;
    max-width: 360px;
    margin: 0 0 0 auto;
  }
  .contract__case-study-columns .entry-images .thumbs a.thumb {
    width: 30%;
  }
  .contract__case-study-columns .img-primary {
    margin: 0 0 0 auto;
    max-width: 360px;
    height: 380px;
    object-fit: cover;
  }
}
.contract-product__summary .product_title {
  font-size: 44px;
  font-family: Noe Display;
  line-height: 1;
  margin-bottom: 10px;
  color: #000;
  text-transform: none;
  max-width: 330px;
  padding-bottom: 20px;
}
.contract-product__summary .learn-more {
  margin: 20px 0;
}
.contract-product__summary .learn-more a {
  font-family: 'DIN W01 Medium';
  -webkit-font-smoothing: antialiased;
  background: #7a8691;
  width: fit-content;
  padding: 11px 37px;
  font-size: 24px;
  color: white;
  border: none;
}
.contract-product__summary .learn-more a:visited {
  color: white;
}
.contract-product__summary .learn-more a:hover {
  background: #415162;
  color: white;
}
.contract-product__summary .contract-product__product-details {
  display: flex;
}
@media (max-width: 768px) {
  .contract-product__summary .contract-product__product-details {
    display: block;
  }
}
.contract-product__summary .contract-product__description {
  width: 100%;
}
@media (min-width: 768px) {
  .contract-product__summary .contract-product__description {
    padding-right: 20px;
    max-width: 50%;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .contract-product__summary .contract-product__description {
    max-width: 330px;
  }
}
.contract-product__summary .contract-product__attributes {
  width: 50%;
  padding: 0 0 0 20px;
  margin: 0 0 0 10px;
  border-left: solid 1px #eee;
}
@media (max-width: 768px) {
  .contract-product__summary .contract-product__attributes {
    padding: 0;
    width: 100%;
    margin: 30px 0px;
    border-left: none;
  }
}
.contract-product__summary .contract-product__attributes .label {
  color: #666;
  font-size: 18px;
  padding: 0;
}
.contract-product__summary .contract-product__attributes p {
  font-size: 18px;
  margin: 10px 0;
}
.contract-product__columns-section {
  margin: 50px auto;
  background: #F7F7F7;
}
.contract-product__columns-section .inner-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1400px;
  padding-top: 150px;
  padding-bottom: 125px;
  margin: 0 auto -50px auto;
}
@media only screen and (min-width: 1024px) {
  .contract-product__columns-section .inner-container {
    justify-content: space-between;
  }
}
.contract-product__columns-section .contract__column {
  width: 100%;
  padding: 20px;
}
@media only screen and (min-width: 1024px) {
  .contract-product__columns-section .contract__column {
    width: 30%;
  }
}
.contract-product__columns-section .contract__column--double-column {
  width: 100%;
}
.contract-product__columns-section .contract__column h2 {
  font-size: 44px;
  font-family: Noe Display;
  line-height: 1;
  margin-bottom: 20px;
  color: #2D2D2D;
  text-transform: none;
}
.contract-product__columns-section .contract__column p {
  font-family: 'DIN W01 Medium';
  color: #666666;
  font-size: 18px;
  line-height: 28px;
}
.contract-product__columns-section .contract__column a.button {
  box-shadow: rgba(0,0,0,0.25) 0 9px 34px -10px;
  font-family: 'Noe Display';
  -webkit-font-smoothing: antialiased;
  background: #334254;
  width: fit-content;
  padding: 11px 37px;
  font-weight: bold;
  font-size: 24px;
  color: white;
  border: none;
}
@media only screen and (min-width: 1024px) {
  .contract-product__columns-section .contract__column ul#gform_fields_30,
  .contract-product__columns-section .contract__column ul#gform_fields_38 {
    display: contents;
  }
  .contract-product__columns-section .contract__column li#field_30_1,
  .contract-product__columns-section .contract__column li#field_30_2,
  .contract-product__columns-section .contract__column li#field_30_6,
  .contract-product__columns-section .contract__column li#field_30_5,
  .contract-product__columns-section .contract__column li#field_38_1,
  .contract-product__columns-section .contract__column li#field_38_2,
  .contract-product__columns-section .contract__column li#field_38_6,
  .contract-product__columns-section .contract__column li#field_38_5 {
    grid-column: 1;
    margin: 0 10px 0 0;
  }
  .contract-product__columns-section .contract__column li#field_30_7,
  .contract-product__columns-section .contract__column li#field_38_7 {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin: 0 0 0 10px;
  }
  .contract-product__columns-section .contract__column .gform_footer.top_label {
    grid-column: 2;
    grid-row: 5;
    margin: 0 0 0 10px;
  }
  .contract-product__columns-section .contract__column .gform_body {
    display: contents;
  }
  .contract-product__columns-section .contract__column form#gform_30,
  .contract-product__columns-section .contract__column form#gform_38 {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.contract-product__columns-section .contract__column .gfield_label {
  display: none;
}
.contract-product__columns-section .contract__column input,
.contract-product__columns-section .contract__column textarea {
  margin: 5px 0;
  background: #E6E6E6;
  border: none;
}
.contract-product__columns-section .contract__column input[type="submit"] {
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  padding: 11px 37px;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #b34f2d;
  border-radius: 0;
}
.contract-product__columns-section .contract__column input[type="submit"]:visited {
  color: white;
}
.contract-product__columns-section .contract__column input[type="submit"]:hover {
  color: black;
  text-decoration: none;
  background: #c88c64;
}
.contract-product__columns-section .contract__column form ul li.gfield {
  margin: 0px;
}
.contract-product__columns-section .contract__column input::placeholder,
.contract-product__columns-section .contract__column textarea::placeholder {
  padding-left: 10px;
  color: #000 !important;
  font-weight: normal;
  font-style: normal !important;
  font-size: 14px;
  font-family: "DIN W01 Medium";
}
.contract-product__columns-section .contract__column .style-container {
  display: flex;
  justify-content: space-between;
}
.contract-product__columns-section .contract__column .style-container .style {
  width: 47%;
}
.contract-product__columns-section .contract__column .style-container .style p.name {
  text-align: left;
  margin: 0;
  font-size: 14px;
}
.contract-product__columns-section .contract__column .style-container .style p.dimensions {
  font-family: 'DIN W01 regular';
  font-size: 12px;
}
.contract-product__columns-section .contract__column .style-container .style img {
  border-radius: 4px;
}
.contract-product__columns-section .contract__column .finishes {
  margin: 10px auto;
}
.contract-product__location {
  padding: 0 0 100px 0;
}
.contract-product__location .contract-product__text-block {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .contract-product__location .contract-product__text-block {
    width: 40%;
    margin-right: 10%;
  }
}
.contract-product__location .contract-product__text-block h2 {
  font-size: 44px !important;
  font-family: Noe Display;
  line-height: 1;
  margin-bottom: 10px;
  color: #000;
  text-transform: none;
}
.contract-product__location .contract-product__text-block h3 {
  font-size: 34px;
  font-family: Noe Display;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 5px 0;
  color: #000;
  text-transform: none;
}
.contract-product__location .contract-product__text-block h4 {
  font-family: 'DIN W01 Medium';
  margin: 5px 0 0 0;
  font-size: 18px;
}
.contract-product__location .contract-product__text-block p {
  font-family: 'DIN W01 Regular';
  color: #666666;
  font-size: 20px;
  line-height: 1.5;
  margin: 30px 0;
}
.contract-product__location .contract-product__text-block a.button {
  background: #000;
  color: #fff;
  padding: 10px 80px;
  width: fit-content;
  text-align: center;
  margin: 0 0 30px 0;
  font-family: Noe Display;
  font-weight: 900;
  font-size: 24px;
  text-transform: none;
}
.contract-product__location .contract-product__location-image {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .contract-product__location .contract-product__location-image {
    width: 35%;
    margin-left: 10%;
  }
}
.contract-product__location .contract-product__location-image img {
  margin: auto;
}
.contract-product__custom {
  visibility: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  top: -200px;
  background: #F7F7F7;
  padding: 10px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 4px;
}
@media only screen and (min-width: 1024px) {
  .contract-product__custom {
    margin-left: -71px;
    margin-top: 100px;
  }
}
.contract-product__custom p {
  font-size: 12px;
  margin: 5px 0;
  text-align: center;
  line-height: 1.5;
}
.contract-product__custom a {
  font-size: 12px;
  text-align: center;
  color: #334254 !important;
  font-weight: bold;
}
.contract-product__custom:after {
  content: '';
  position: absolute;
  height: 15px;
  width: 15px;
  background: #f7f7f7;
  left: 28px;
  bottom: -7px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1024px) {
  .contract-product__custom:after {
    left: 100px;
  }
}
.contract-product__custom.visible {
  visibility: visible;
  clip: auto !important;
  clip-path: none !important;
  height: auto !important;
  overflow: auto !important;
  white-space: normal !important;
  width: 220px;
  z-index: 10000;
  display: block;
  box-shadow: 0 2px 26px rgba(0,0,0,0.25);
}
#custom-button {
  text-transform: uppercase;
  font-size: 14px;
  width: fit-content;
  padding: 0px 6px;
  line-height: 2;
  height: 28px;
  border-radius: 8px;
  margin: 0 auto 25px 0;
  cursor: pointer;
}
@media screen and (max-width: 515px) {
  body.zoomed .page-template-contract_product-collection #content {
    padding: 0 !important;
  }
}
.page-template-contract_product-collection .contract__filters {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  margin: 50px auto;
  left: 0;
  right: 0;
  padding: 0 15px;
  background: #fff;
  overflow: hidden;
  max-height: 48px;
  transition: .5s;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_product-collection .contract__filters {
    flex-direction: row;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    background: none;
    padding: 0 !important;
  }
}
.page-template-contract_product-collection .contract__filters.expanded {
  max-height: 2000px;
  box-shadow: 0 8px 8px #00000025;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_product-collection .contract__filters .menu-container {
    width: 17%;
    margin: 0 1%;
  }
}
.page-template-contract_product-collection .contract__filters .filter-label,
.page-template-contract_product-collection .contract__filters #reset {
  font-family: 'DIN W01 regular';
  font-weight: bold;
  color: #666666;
  line-height: 40px;
}
.page-template-contract_product-collection .contract__filters .filter-label {
  font-size: 24px;
  font-family: 'DIN W01 medium';
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_product-collection .contract__filters .filter-label {
    font-family: 'DIN W01 regular';
    color: #666666;
    cursor: auto;
    margin: 0 15px 0 0;
  }
  .page-template-contract_product-collection .contract__filters .filter-label:after {
    display: none;
  }
}
.page-template-contract_product-collection .contract__filters .filter-label:after {
  content: '';
  height: 25px;
  width: 25px;
  background: url(../images/arrow-down--gray.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  right: 20px;
  top: 9px;
  transition: .5s;
}
.page-template-contract_product-collection .contract__filters .filter-label.expanded:after {
  transform: rotate(180deg);
}
.page-template-contract_product-collection .contract__filters #reset {
  cursor: pointer;
  font-size: 20px;
  color: #CCCCCC;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_product-collection .contract__filters #reset {
    text-align: left;
  }
}
.page-template-contract_product-collection .contract__filters #reset:hover {
  text-decoration: underline;
}
.page-template-contract_product-collection .contract__filters #reset.active {
  color: #666666;
}
.page-template-contract_product-collection .contract__filters .filter-top-nav {
  cursor: pointer;
  border: solid 1px #CCCCCC;
  background: #fff;
  padding: 8px 65px 10px 10px;
  margin: 0px;
  color: #666666;
  display: flex;
  height: 46px;
  position: relative;
  transition: .002s;
  transition-delay: .5s;
}
.page-template-contract_product-collection .contract__filters .filter-top-nav.expanded {
  border-bottom: none;
}
.page-template-contract_product-collection .contract__filters .filter-top-nav.expanded:after {
  transform: rotate(180deg);
}
.page-template-contract_product-collection .contract__filters .filter-top-nav p {
  font-weight: normal;
  font-family: 'DIN W01 Medium';
  font-size: 20px;
}
.page-template-contract_product-collection .contract__filters .filter-top-nav p.num {
  font-family: 'DIN W01 Regular';
  padding: 0 0 0 5px;
}
.page-template-contract_product-collection .contract__filters .filter-top-nav:after {
  content: '';
  height: 25px;
  width: 25px;
  background: url(../images/arrow-down--gray.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  right: 10px;
  top: 11px;
  transition: .5s;
}
.page-template-contract_product-collection .contract__filters .sub-menu {
  overflow: hidden;
  max-height: 0px;
  transition: .5s;
  font-size: 17px;
  border: #CCCCCC solid 1px;
  background: #fff;
  padding: 5px 5px 5px 32px;
  color: #666666;
  transition-timing-function: ease;
  margin-top: -12px;
  pointer-events: none;
}
.page-template-contract_product-collection .contract__filters .sub-menu.expanded {
  max-height: 500px;
  border: solid 1px #CCCCCC;
  border-top: none;
  box-shadow: 0 6px 6px #00000025;
  padding-top: 15px;
  pointer-events: all;
}
.page-template-contract_product-collection .contract__filters .filter,
.page-template-contract_product-collection .contract__filters .filter-all {
  text-transform: uppercase;
  color: #666;
  position: relative;
  cursor: pointer;
  padding: 5px 0px;
}
.page-template-contract_product-collection .contract__filters .filter:before,
.page-template-contract_product-collection .contract__filters .filter-all:before {
  content: '';
  width: 15px;
  height: 15px;
  border: solid 1px #CCCCCC;
  position: absolute;
  left: -25px;
  top: 6px;
}
.page-template-contract_product-collection .contract__filters .filter.active:before,
.page-template-contract_product-collection .contract__filters .filter-all.active:before {
  background: url('../images/checkmark.png');
  background-size: 86%;
  background-repeat: no-repeat;
  background-position: center;
}
.page-template-contract_product-collection .contract__top-text {
  margin: 40px auto;
}
@media screen and (min-width: 785px) {
  .page-template-contract_product-collection .contract__top-text {
    display: flex;
    margin: 100px auto;
  }
}
.page-template-contract_product-collection .contract__top-text .title {
  font-size: 38px;
  width: 100%;
  font-family: 'Noe Display';
  color: #000;
  margin: 10px 0 !important;
  text-transform: none;
}
@media screen and (min-width: 785px) {
  .page-template-contract_product-collection .contract__top-text .title {
    width: 40%;
    margin: 0 56px 0 20px;
    font-size: 48px;
  }
}
.page-template-contract_product-collection .contract__top-text .description {
  width: 100%;
  font-size: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 785px) {
  .page-template-contract_product-collection .contract__top-text .description {
    width: 60%;
  }
}
.page-template-contract_product-collection .contract__products {
  display: flex;
  flex-wrap: wrap;
  padding: 70px 10px 30px 10px;
  width: 100%;
  max-width: 1800px;
}
@media screen and (min-width: 1800px) {
  .page-template-contract_product-collection .contract__products {
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-contract_product-collection .contract__products .product {
  width: calc((50% - 20px)) !important;
  margin: 20px 10px;
}
@media screen and (min-width: 785px) {
  .page-template-contract_product-collection .contract__products .product {
    width: calc((25% - 20px)) !important;
  }
}
.page-template-contract_product-collection .contract__products .product a {
  font-family: 'DIN W01 Medium';
  color: #666;
  font-size: 18px;
  line-height: 20px;
  margin: 20px 0 0 0;
  display: block;
}
.page-template-contract_product-collection .contract__products .product img {
  object-fit: cover;
  height: 300px;
}
.page-template-contract_product-collection .contract__products .project img {
  object-fit: cover;
  height: 300px;
}
.page-template-contract_product-collection .contract__no-result {
  display: none;
  text-align: center;
  width: 100%;
  margin: 150px auto;
}
.page-template-contract_product-collection .contract__inspiration {
  width: 100%;
}
@media screen and (min-width: 785px) {
  .page-template-contract_product-collection .contract__inspiration .container {
    display: flex;
    margin: 120px auto;
  }
}
@media screen and (max-width: 784px) {
  .page-template-contract_product-collection .contract__inspiration .container {
    display: flex;
    flex-direction: column;
  }
}
.page-template-contract_product-collection .contract__inspiration .container .left {
  width: 100%;
  padding: 20px;
  margin: 50px auto;
}
@media screen and (min-width: 785px) {
  .page-template-contract_product-collection .contract__inspiration .container .left {
    width: 50%;
    padding: 0px 30px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 784px) {
  .page-template-contract_product-collection .contract__inspiration .container .left {
    order: 2;
  }
}
.page-template-contract_product-collection .contract__inspiration .container .left h2 {
  font-family: 'Noe Display';
  font-weight: bold;
  text-transform: none;
  font-size: 34px;
  color: #000;
}
.page-template-contract_product-collection .contract__inspiration .container .left .button {
  background: #334254;
  padding: 15px 22px;
  font-family: 'Noe Display';
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  margin: 20px 0;
}
.page-template-contract_product-collection .contract__inspiration .container .left p {
  margin: 20px 0;
  font-size: 18px;
}
@media screen and (min-width: 785px) {
  .page-template-contract_product-collection .contract__inspiration .container .right {
    width: 50%;
    padding-left: 10px;
  }
}
@media screen and (max-width: 784px) {
  .page-template-contract_product-collection .contract__inspiration .container .right {
    width: 100vw;
    order: 1;
    margin-left: -30px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 345px) {
  .page-template-contract_product-collection .contract__inspiration .container .right {
    margin-left: -60px;
  }
}
.page-template-contract_product-collection .contract__inspiration .container .right img {
  object-fit: cover;
  width: 100%;
  height: 500px;
}
.page-template-contract_product-collection .contract__form-section h3 {
  font-size: 34px;
}
.page-template-contract_product-collection .contract__form-section .inner-container {
  padding: 70px 20px;
}
@media screen and (min-width: 1000px) {
  .page-template-contract_product-collection .contract__form-section .inner-container {
    padding: 120px 0;
  }
}
.page-template-contract_product-collection .contract__gravity-form .gfield_label {
  display: block;
  text-transform: none;
  color: #666;
  font-family: 'DIN W01 Medium';
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
}
.page-template-contract_product-collection .contract__gravity-form input::placeholder,
.page-template-contract_product-collection .contract__gravity-form textarea::placeholder {
  padding-left: 10px;
  color: #666666 !important;
  font-weight: normal;
  font-style: normal !important;
  font-size: 18px;
  font-family: "DIN W01 Medium";
}
.page-template-contract_product-collection .contract__gravity-form .gfield_required {
  display: none;
}
.page-template-contract_product-collection .container {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1800px) {
  .page-template-contract_product-collection .container {
    width: 1500px !important;
  }
}
.page-template-contract_projects .contract__filters {
  flex-direction: column;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  margin: -10px auto 50px auto;
  left: 0;
  right: 0;
  padding: 0 20px;
  background: #fff;
  overflow: hidden;
  transition: .5s;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_projects .contract__filters {
    flex-direction: row;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    background: none;
    padding: 0 !important;
  }
}
@media only screen and (min-width: 1200px) {
  .page-template-contract_projects .contract__filters {
    margin: 50px auto;
  }
}
@media only screen and (min-width: 1800px) {
  .page-template-contract_projects .contract__filters {
    max-height: 48px;
  }
}
.page-template-contract_projects .contract__filters.expanded {
  max-height: 2000px;
  box-shadow: 0 8px 8px #00000025;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_projects .contract__filters .menu-container {
    width: 25%;
    margin: 0 3%;
  }
}
.page-template-contract_projects .contract__filters .filter-label,
.page-template-contract_projects .contract__filters #reset {
  font-family: 'DIN W01 regular';
  font-weight: bold;
  color: #666666;
  line-height: 40px;
}
.page-template-contract_projects .contract__filters .filter-label {
  font-size: 24px;
  font-family: 'DIN W01 medium';
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_projects .contract__filters .filter-label {
    font-family: 'DIN W01 regular';
    color: #666666;
    cursor: auto;
    margin: 0 0 0 0;
  }
}
.page-template-contract_projects .contract__filters #reset {
  cursor: pointer;
  font-size: 20px;
  color: #CCCCCC;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .page-template-contract_projects .contract__filters #reset {
    text-align: left;
  }
}
.page-template-contract_projects .contract__filters #reset:hover {
  text-decoration: underline;
}
.page-template-contract_projects .contract__filters #reset.active {
  color: #666666;
}
.page-template-contract_projects .contract__filters .filter-top-nav {
  cursor: pointer;
  border: solid 1px #CCCCCC;
  background: #fff;
  padding: 8px 65px 10px 10px;
  margin: 0px;
  color: #666666;
  display: flex;
  height: 46px;
  position: relative;
  transition: .002s;
  transition-delay: .5s;
}
.page-template-contract_projects .contract__filters .filter-top-nav.expanded {
  border-bottom: none;
}
.page-template-contract_projects .contract__filters .filter-top-nav.expanded:after {
  transform: rotate(180deg);
}
.page-template-contract_projects .contract__filters .filter-top-nav p {
  font-weight: normal;
  font-family: 'DIN W01 Medium';
  font-size: 20px;
}
.page-template-contract_projects .contract__filters .filter-top-nav p.num {
  font-family: 'DIN W01 Regular';
  padding: 0 0 0 5px;
}
.page-template-contract_projects .contract__filters .filter-top-nav:after {
  content: '';
  height: 25px;
  width: 25px;
  background: url(../images/arrow-down--gray.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  right: 10px;
  top: 11px;
  transition: .5s;
}
.page-template-contract_projects .contract__filters .sub-menu {
  overflow: hidden;
  max-height: 0px;
  transition: .5s;
  font-size: 17px;
  border: #CCCCCC solid 1px;
  background: #fff;
  padding: 5px 5px 5px 32px;
  color: #666666;
  transition-timing-function: ease;
  margin-top: -12px;
  pointer-events: none;
}
.page-template-contract_projects .contract__filters .sub-menu.expanded {
  max-height: 500px;
  border: solid 1px #CCCCCC;
  border-top: none;
  box-shadow: 0 6px 6px #00000025;
  padding-top: 15px;
  pointer-events: all;
}
.page-template-contract_projects .contract__filters .filter,
.page-template-contract_projects .contract__filters .filter-all {
  text-transform: uppercase;
  color: #666;
  position: relative;
  cursor: pointer;
  padding: 5px 0px;
}
.page-template-contract_projects .contract__filters .filter:before,
.page-template-contract_projects .contract__filters .filter-all:before {
  content: '';
  width: 15px;
  height: 15px;
  border: solid 1px #CCCCCC;
  position: absolute;
  left: -25px;
  top: 6px;
}
.page-template-contract_projects .contract__filters .filter.active:before,
.page-template-contract_projects .contract__filters .filter-all.active:before {
  background: url('../images/checkmark.png');
  background-size: 86%;
  background-repeat: no-repeat;
  background-position: center;
}
.page-template-contract_projects .contract__top-text {
  margin: 40px auto;
}
@media screen and (min-width: 785px) {
  .page-template-contract_projects .contract__top-text {
    display: flex;
    margin: 100px auto;
  }
}
.page-template-contract_projects .contract__top-text .title {
  font-size: 38px;
  width: 100%;
  font-family: 'Noe Display';
  color: #000;
  margin: 10px 0 !important;
  text-transform: none;
}
@media screen and (min-width: 785px) {
  .page-template-contract_projects .contract__top-text .title {
    width: 40%;
    margin: 0 56px 0 20px;
    font-size: 48px;
  }
}
.page-template-contract_projects .contract__top-text .description {
  width: 100%;
  font-size: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 785px) {
  .page-template-contract_projects .contract__top-text .description {
    width: 60%;
  }
}
.page-template-contract_projects .contract__products {
  display: flex;
  flex-wrap: wrap;
  margin: 100px auto 30px auto;
  width: 100%;
  max-width: 1800px;
}
.page-template-contract_projects .contract__products .product {
  width: calc((50% - 20px)) !important;
  margin: 20px 10px;
}
@media screen and (min-width: 785px) {
  .page-template-contract_projects .contract__products .product {
    width: calc((25% - 20px)) !important;
  }
}
.page-template-contract_projects .contract__products .product a {
  font-family: 'DIN W01 Medium';
  color: #666;
  font-size: 18px;
  line-height: 20px;
  margin: 20px 0 0 0;
  display: block;
}
.page-template-contract_projects .contract__products .project img {
  object-fit: cover;
  height: 300px;
}
.page-template-contract_projects .contract__no-result {
  display: none;
  text-align: center;
  width: 100%;
  margin: 150px auto;
}
@media screen and (min-width: 785px) {
  .page-template-contract_projects .contract__inspiration {
    display: flex;
    margin: 120px 0;
  }
}
.page-template-contract_projects .contract__inspiration .left {
  width: 100%;
  padding: 20px;
  margin: 50px auto;
}
@media screen and (min-width: 785px) {
  .page-template-contract_projects .contract__inspiration .left {
    width: 45%;
    padding: 0px;
  }
}
.page-template-contract_projects .contract__inspiration .left p {
  margin: 20px 0;
  font-size: 18px;
}
@media screen and (min-width: 785px) {
  .page-template-contract_projects .contract__inspiration .right {
    width: 65%;
  }
}
.page-template-contract_projects .contract__inspiration .right img {
  object-fit: cover;
  width: 100%;
  height: 500px;
}
.page-template-contract_projects .contract__form-section h3 {
  font-size: 34px;
}
.page-template-contract_projects .contract__form-section .inner-container {
  padding: 70px 15px;
}
@media screen and (min-width: 1000px) {
  .page-template-contract_projects .contract__form-section .inner-container {
    padding: 120px 0;
  }
}
.page-template-contract_projects .contract__gravity-form .gfield_label {
  display: block;
  text-transform: none;
  color: #666;
  font-family: 'DIN W01 Medium';
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
}
.page-template-contract_projects .contract__gravity-form input::placeholder,
.page-template-contract_projects .contract__gravity-form textarea::placeholder {
  padding-left: 10px;
  color: #666666 !important;
  font-weight: normal;
  font-style: normal !important;
  font-size: 18px;
  font-family: "DIN W01 Medium";
}
.page-template-contract_projects .contract__gravity-form .gfield_required {
  display: none;
}
@media only screen and (min-width: 1800px) {
  .page-template-contract_projects .container {
    width: 1500px !important;
  }
}
.page-template-contract_landing .contract__form-section .inner-container {
  padding: 70px 30px;
}
@media screen and (min-width: 1000px) {
  .page-template-contract_landing .contract__form-section .inner-container {
    padding: 120px 0;
  }
}
.masthead {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.masthead::-webkit-scrollbar {
  display: none;
}
.masthead img {
  width: 100%;
}
.contractDetailContent {
  display: flex;
  flex-direction: column;
  padding: 0px 0px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.contractDetailContent__text {
  padding: 20px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contractDetailContent__text {
    max-width: 1066px;
    margin: 0 auto;
  }
}
.contractDetailContent__text h1 {
  font-family: Noe Display;
  font-size: 36px;
  text-transform: none;
  line-height: 38px;
  margin: 0px 0px 10px;
}
@media screen and (min-width: 1025px) {
  .contractDetailContent__text h1 {
    font-size: 44px;
  }
}
.contractDetailContent__text h2 {
  font-family: Noe Display;
  font-size: 28px;
  text-transform: none;
  line-height: 36px;
  margin: 0px 0px 10px;
}
@media screen and (min-width: 1025px) {
  .contractDetailContent__text h2 {
    font-size: 34px;
  }
}
.contractDetailContent__text h2.dropdownToggle {
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
}
.contractDetailContent__text h2.dropdownToggle.active .chevron {
  transform: rotate(0.5turn);
}
.contractDetailContent__text h2.dropdownToggle .chevron {
  float: right;
  padding: 10px 0px;
  transition: 0.2s all ease;
}
.contractDetailContent__text h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: none;
  margin: 0px 0px 10px;
}
.contractDetailContent__text p {
  margin-top: 20px;
  font-size: 20px;
  color: #666;
}
.contractDetailContent__text--collapsible {
  height: 70px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .contractDetailContent__text--collapsible {
    height: auto;
    overflow: visible;
  }
}
.contractDetailContent__text--collapsible * {
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .contractDetailContent__text--collapsible * {
    opacity: 1;
  }
}
.contractDetailContent__text--collapsible h1,
.contractDetailContent__text--collapsible h2,
.contractDetailContent__text--collapsible h3,
.contractDetailContent__text--collapsible h4,
.contractDetailContent__text--collapsible h5,
.contractDetailContent__text--collapsible h6 {
  font-family: Noe Display;
  font-weight: 400;
  font-size: 28px;
  text-transform: none;
}
.contractDetailContent__text--collapsible h1:first-child,
.contractDetailContent__text--collapsible h2:first-child,
.contractDetailContent__text--collapsible h3:first-child,
.contractDetailContent__text--collapsible h4:first-child,
.contractDetailContent__text--collapsible h5:first-child,
.contractDetailContent__text--collapsible h6:first-child {
  opacity: 1;
  margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
  .contractDetailContent__text--collapsible h1:first-child,
  .contractDetailContent__text--collapsible h2:first-child,
  .contractDetailContent__text--collapsible h3:first-child,
  .contractDetailContent__text--collapsible h4:first-child,
  .contractDetailContent__text--collapsible h5:first-child,
  .contractDetailContent__text--collapsible h6:first-child {
    display: none;
  }
}
.contractDetailContent__text--collapsible ul {
  margin: 20px 0px 30px;
}
.contractDetailContent__text--collapsible li {
  list-style-type: initial;
  font-size: 18px;
  margin: 15px 0px;
  color: #666;
}
.contractDetailContent__text--collapsible .chevron {
  opacity: 1;
}
.contractDetailContent__text--collapsible.active {
  height: auto;
  overflow: visible;
}
.contractDetailContent__text--collapsible.active * {
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .contractDetailContent {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .contractDetailContent .contractDetailContent__text {
    width: 50%;
    margin-top: 75px;
  }
  .contractDetailContent .contractDetailContent__text--first {
    order: 0;
    padding-left: 120px;
  }
  .contractDetailContent .contractDetailContent__text--first p {
    max-width: 440px;
  }
  .contractDetailContent .contractDetailContent__text--second {
    order: 4;
  }
  .contractDetailContent .contractDetailContent__text .logoImage {
    position: absolute;
    left: 0;
    top: 40px;
  }
  .contractDetailContent .infoImage {
    width: 50%;
    margin-top: 75px;
  }
  .contractDetailContent .infoImage--first {
    order: 1;
  }
  .contractDetailContent .infoImage--second {
    order: 3;
  }
}
@media screen and (min-width: 1440px) {
  .contractDetailContent .infoImage--second {
    transform: translateX(calc((100vw - 1440px) / 2 * -1));
  }
}
.contractDetailSecondary {
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contractDetailSecondary {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .contractDetailSecondary .masthead {
    order: 0;
  }
  .contractDetailSecondary .contractDetailContent__text {
    order: 1;
  }
  .contractDetailSecondary .infoImage {
    order: 2;
  }
  .contractDetailSecondary .secondaryGallery {
    order: 3;
  }
}
@media screen and (min-width: 1024px) {
  .contractDetailSecondary .masthead {
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 1440px) {
  .contractDetailSecondary .masthead {
    margin-bottom: 150px;
    min-width: 100vw;
    margin-left: calc((100vw - 1440px) / 2 * -1);
  }
  .contractDetailSecondary .masthead img {
    width: 100%;
  }
}
.contractDetailSecondary .infoImage {
  margin: 20px 0px;
}
@media screen and (min-width: 768px) {
  .contractDetailSecondary .infoImage,
  .contractDetailSecondary .contractDetailContent__text {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .contractDetailSecondary .contractDetailContent__text {
    max-width: 470px;
  }
  .contractDetailSecondary .contractDetailContent__text h2 {
    font-size: 44px;
    line-height: 48px;
  }
}
.secondaryGallery {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  max-width: none;
  margin: 20px 0px 20px 10px;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.secondaryGallery::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  .secondaryGallery {
    margin-top: 50px;
  }
}
.secondaryGallery.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  max-height: 764px;
}
.secondaryGallery.owl-carousel.owl-theme .owl-nav {
  justify-content: space-between;
  width: 100%;
  position: absolute;
  margin: 0;
  display: flex;
  top: 50%;
  pointer-events: none;
}
@media (min-width: 900px) {
  .secondaryGallery.owl-carousel.owl-theme .owl-nav {
    display: flex;
    margin: 0;
    width: 100%;
  }
}
.secondaryGallery.owl-carousel.owl-theme .owl-nav button {
  background: url('/wp-content/themes/thosmoser2/images/icon-arrow--blue.svg'), rgba(255,255,255,0.65);
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  border: 2px solid #FFF;
  background-size: 15px;
  padding: 28px 29px !important;
  height: 15px;
  width: 15px;
  pointer-events: all;
}
@media (min-width: 900px) {
  .secondaryGallery.owl-carousel.owl-theme .owl-nav button {
    padding: 33px 34px;
    margin: 0;
  }
}
.secondaryGallery.owl-carousel.owl-theme .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.secondaryGallery.owl-carousel.owl-theme .owl-nav button:focus {
  outline: none;
}
.secondaryGallery.owl-carousel.owl-theme .owl-nav button span {
  display: none;
}
.upNextHead {
  width: 100%;
  font-family: Noe Display;
  font-size: 34px;
  text-transform: none;
  margin-bottom: 30px;
  padding: 0px 20px;
}
@media screen and (min-width: 1025px) {
  .upNextHead {
    margin: 120px auto 30px;
    max-width: 1440px;
  }
}
.upNext {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.upNext__inner {
  padding: 0px 20px 30px;
}
@media screen and (min-width: 700px) {
  .upNext__inner {
    width: 50%;
  }
}
.upNext__inner h4 {
  font-family: Noe Display;
  font-size: 24px;
}
.readMore {
  box-shadow: 0px 9px 24px -10px rgba(0,0,0,0.25);
  padding: 15px 0px 5px;
  position: relative;
  cursor: pointer;
  transition: 0.2s all ease;
}
@media screen and (min-width: 768px) {
  .readMore {
    display: none;
  }
}
.readMore:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
}
.readMore.active {
  box-shadow: 0px -9px 24px -10px rgba(0,0,0,0.25);
}
.readMore.active:before {
  top: -10px;
  bottom: initial;
  border-bottom: 10px solid #fff;
  border-top: 0;
}
.readMore p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.page-template-contract_detail .flexible_content {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  order: 4;
}
.contract__form-section--detail {
  margin-top: 60px;
}
.contract__form-section--detail .inner-container {
  margin: 0 auto 30px;
  max-width: 1200px;
}
@media screen and (min-width: 1024px) {
  .contract__form-section--detail .inner-container {
    padding: 25px 20px;
    display: flex;
    align-items: center;
  }
}
.contract__form-section--detail .contract__gravity-form {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .contract__form-section--detail .contract__gravity-form {
    width: 55%;
  }
}
.contract__form-section--detail .contract__gravity-form form {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contract__form-section--detail .contract__gravity-form .gform_fields {
    columns: 2;
  }
}
.contract__form-section--detail .contract__gravity-form .gform_fields input[type="text"] {
  height: 44px;
}
.contract__form-section--detail .contract__gravity-form .gform_fields input[type="text"],
.contract__form-section--detail .contract__gravity-form .gform_fields input[type="email"],
.contract__form-section--detail .contract__gravity-form .gform_fields input[type="tel"] {
  padding-bottom: 5px;
}
.contract__form-section--detail .contract__gravity-form .gform_fields li {
  width: 100%;
}
.contract__form-section--detail .contract__gravity-form .gform_fields textarea {
  resize: none;
}
.contract__form-section--detail .gform_footer {
  width: calc(50% - 10px);
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 0;
}
.contract__form-section--detail .contract__gravity-form .gform_footer input[type="submit"] {
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .contract__form-section--detail .contract__text-block {
    width: 35%;
    margin: 0;
  }
}
.contract__form-section--detail .contract__text-block h3 {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .contract__form-section--detail .contract__text-block h3 {
    text-align: left;
  }
}
.contract__form-section--detail .contract__text-block p {
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contract__form-section--detail .contract__text-block p {
    text-align: left;
  }
}
.infoImage {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .infoImage .infoImage__icon {
    background-image: none;
    display: none;
  }
  .infoImage:hover .infoImage__info {
    transform: translateY(0);
  }
  .infoImage:hover .infoImage__info .infoImage__text {
    opacity: 1;
  }
}
.infoImage__image {
  width: 100%;
}
.infoImage__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(100%) translateY(-56px);
  transition: 0.2s all ease;
  max-height: 100%;
}
.infoImage__info.active {
  transform: translateY(0);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.infoImage__info.active::-webkit-scrollbar {
  display: none;
}
.infoImage__info.active .infoImage__text {
  opacity: 1;
}
.infoImage__info.active .infoImage__icon {
  background-image: url('/wp-content/themes/thosmoser2/images/icon-close.svg');
}
.infoImage__icon {
  cursor: pointer;
  float: right;
  margin: 10px;
  width: 36px;
  height: 36px;
  background-image: url('/wp-content/themes/thosmoser2/images/icon-info.svg');
}
.infoImage__text {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.8);
  width: 100%;
  padding: 20px;
  max-height: 100%;
  overflow-y: scroll;
  opacity: 0;
  transition: 0.2s opacity ease;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.infoImage__text::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1025px) {
  .infoImage__text {
    padding-top: 35px;
  }
}
.infoImage__text.active {
  opacity: 1;
}
.infoImage__text ul {
  margin: 20px 0px 30px;
}
.infoImage__text li {
  list-style-type: initial;
  font-size: 18px;
  margin: 15px 0px;
  color: black;
}
.page-template-craftsman-landing .craftsman-container .masthead {
  margin-bottom: 5rem;
}
.page-template-craftsman-landing .craftsman-container #content #main_content {
  padding: 0 !important;
}
.page-template-craftsman-landing .craftsman-container #breadcrumbs {
  display: none;
}
.page-template-craftsman-landing .craftsman-container h1 {
  text-align: center;
  font-family: 'Noe Display', serif;
  text-transform: unset;
  font-weight: normal;
  margin-bottom: 2rem;
}
.page-template-craftsman-landing .craftsman-container p {
  padding: 0 0 5rem;
  font-size: 1.85rem;
  line-height: 3rem;
  color: #666;
}
@media (min-width: 992px) {
  .page-template-craftsman-landing .craftsman-container p {
    padding: 0 12rem 5rem;
  }
}
@media (min-width: 768px) {
  .page-template-craftsman-landing .craftsman-container .photo-grid .row {
    margin-bottom: 30px;
  }
}
.page-template-craftsman-landing .craftsman-container .photo-grid .row a {
  overflow: hidden;
}
.page-template-craftsman-landing .craftsman-container .photo-grid .row a .photo-container {
  background: black;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .page-template-craftsman-landing .craftsman-container .photo-grid .row a .photo-container {
    margin-bottom: 0;
  }
}
.page-template-craftsman-landing .craftsman-container .photo-grid .row a img {
  object-fit: cover;
  opacity: 1;
  transition: all .2s ease;
}
.page-template-craftsman-landing .craftsman-container .photo-grid .row a .photo-title {
  position: absolute;
  bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  display: none;
  transition: all .2s ease;
}
@media (max-width: 1024px) {
  .page-template-craftsman-landing .craftsman-container .photo-grid .row a .photo-title {
    display: block;
    background: rgba(0,0,0,0.5);
    width: 100%;
    padding: 10px;
  }
  .page-template-craftsman-landing .craftsman-container .photo-grid .row a .photo-title h2 {
    text-decoration: underline;
    color: #ffffff;
  }
}
.page-template-craftsman-landing .craftsman-container .photo-grid .row a .photo-title h2 {
  font-size: 2rem;
  text-transform: unset;
  width: 80%;
  margin: 0 auto;
  color: #fff;
}
.page-template-craftsman-landing .craftsman-container .photo-grid .row a:hover img {
  opacity: 0.4;
}
.page-template-craftsman-landing .craftsman-container .photo-grid .row a:hover .photo-title {
  display: block;
}
.page-template-craftsman-bio h1 {
  font-family: 'Noe Display', serif;
  text-transform: unset;
  font-weight: 700;
  margin-bottom: 0;
}
.page-template-craftsman-bio h3 {
  margin-top: 5px;
  margin-bottom: 35px;
  text-transform: unset;
  font-size: 22px;
  color: #3b3734;
}
.page-template-craftsman-bio p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 20px;
  text-align: left;
}
.page-template-craftsman-bio img.bio-image {
  max-height: 250px;
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .page-template-craftsman-bio img.bio-image {
    margin: 0;
    max-height: unset;
    padding-right: 2rem;
  }
}
footer a {
  color: #000;
}
@media (max-width: 768px) {
  #chat-widget-container {
    animation: chat-widget-container-animation 15s ease-in-out;
  }
}
@keyframes chat-widget-container-animation {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gform_required_legend {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
#ad-pop-up {
  display: none;
}
#ad-pop-up.visible {
  display: block;
  position: fixed;
  background: rgba(0,0,0,0.6);
  width: 100vw;
  height: 100vh;
  left: 0;
  right: auto;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 0px 3vw #000;
  backdrop-filter: opacity(20%);
}
.pop-up-container {
  overflow: visible;
  height: fit-content;
  margin: auto;
  width: fit-content;
  max-width: 470px;
  right: 0;
  left: 0;
  top: calc(50% - 300px);
  bottom: 90px;
  position: fixed;
  background: #E9E6E7;
  background-position: center;
  background-size: cover;
  border-radius: 3px;
  z-index: 1000;
  box-shadow: 0px 0px 3vw #000;
}
.pop-up-container .close-x {
  position: fixed;
  width: 25px;
  height: 25px;
  right: 4%;
  margin-top: -32px;
  color: #fff;
  font-style: normal;
  background: url('/wp-content/themes/thosmoser2/images/close-x.svg');
  background-repeat: no-repeat;
  cursor: pointer;
  filter: drop-shadow(1px 2px 2px #66666650);
}
@media only screen and (min-width: 800px) {
  .pop-up-container .close-x {
    left: calc(50% + 255px);
    bottom: auto;
    margin-top: -15px;
  }
}
@media only screen and (min-width: 800px) {
  .pop-up-container {
    width: fit-content;
    height: fit-content;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
.pop-up--right {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: fit-content;
  width: 100%;
  border-radius: 3px;
  position: relative;
  border: 10px solid #fff;
}
.pop-up--right img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.pop-up--right .gform_wrapper {
  margin: 0;
}
@media only screen and (min-width: 800px) {
  .pop-up--right {
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    border-radius: 0 3px 3px 0;
  }
}
.pop-up--right .pop-up-copy-container {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.pop-up--right .pop-up-copy {
  padding: 0;
  text-align: center;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pop-up--right .pop-up-copy h2,
.pop-up--right .pop-up-copy p {
  width: 100%;
  margin: 0 0 20px;
  color: #000;
  display: block;
}
@media only screen and (min-width: 800px) {
  .pop-up--right .pop-up-copy h2,
  .pop-up--right .pop-up-copy p {
    width: auto;
  }
}
.pop-up--right .pop-up-copy h2 {
  font-family: Noe Display;
  font-weight: normal;
  text-transform: none;
  font-size: 2.5rem;
  padding: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 400px) {
  .pop-up--right .pop-up-copy h2 {
    font-size: 3rem;
    padding: 0 25px;
  }
}
.pop-up--right .pop-up-copy p {
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: none;
  padding: 0;
  margin: 0;
}
.pop-up--right #pop-up--close {
  margin-top: -25px;
  font-size: 1.5rem;
  font-weight: 100;
  cursor: pointer;
  padding-top: 35px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  margin-left: 2px;
}
.pop-up--right #pop-up--close:hover {
  text-decoration: underline;
}
.pop-up--right .pop-up-contact {
  width: 100%;
  text-align: center;
}
.pop-up--right .pop-up-contact .button {
  background-color: #fff;
  color: #000;
  width: 100%;
  display: inline-block;
  font-size: 1.5rem;
  padding: 1rem 2rem !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .75px;
}
.pop-up--right .pop-up-contact .button:hover {
  text-decoration: underline;
}
.pop-up--right .pop-up-contact .newsletter-close {
  width: 30%;
}
@media only screen and (min-width: 800px) {
  .pop-up--right .pop-up-contact .newsletter-close {
    width: 20%;
  }
}
.pop-up--right .pop-up-contact input {
  background: #fff;
  border: solid 1px #eee;
  padding: 20px 15px;
}
.pop-up--right .pop-up-contact .newsletter-form input[type="email"] {
  padding-right: 0;
  width: 70%;
  position: absolute;
  left: 0px;
  border: solid 1px #CDCDCD;
  font-size: 1.5rem;
  border-radius: 4px;
}
.pop-up--right .pop-up-contact .newsletter-form input::placeholder {
  font-family: "DIN W01 Regular";
}
.pop-up--right .pop-up-contact .newsletter-form .gform_footer input[type="submit"] {
  font-size: 18px;
  font-family: noe display;
  text-transform: none;
  font-weight: 900;
  color: #fff;
  border: 1px solid #333;
  background: #3b3734;
  padding: 0 16px;
  height: 41px;
  vertical-align: middle;
  margin: 0;
  min-width: auto;
  max-width: none;
  border-radius: 4px;
  line-height: 4.5rem;
  transition: all 0.5s ease;
}
.pop-up--right .pop-up-contact .newsletter-form .gform_footer input[type="submit"]:hover {
  border: 1px solid #333;
  background-color: #e9e5de;
  color: #333;
}
.pop-up--left {
  display: none;
}
@media only screen and (min-width: 800px) {
  .pop-up--left {
    display: block;
    width: 40%;
    height: 100%;
    background: url(/wp-content/uploads/cumberland-chair-sketch.png);
    background-position: center;
    background-size: contain;
    border-radius: 3px 0 0 3px;
  }
}
#footer-top,
#footer-bottom {
  padding: 2em 0;
}
#footer-top {
  background: #7b6955;
}
#footer-top a {
  color: white;
}
#footer-top .footer-col-title,
#footer-top .footer-title {
  color: white;
  margin-bottom: 35px;
  margin-top: 30px;
  font-family: 'DIN W01 Medium';
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  font-weight: medium;
  text-transform: uppercase;
}
#footer-top .footer-col-title,
#footer-top .footer-title {
  margin-top: 0px;
  margin-bottom: 25px;
  display: block;
}
#footer-top ul {
  padding-left: 0px;
  font-size: 0.85em;
  line-height: 1.64;
}
#footer-top .copyright {
  font-size: 12px;
  margin-top: 20px;
}
#footer-top p {
  color: white;
  font-size: 15px;
}
#footer-top span.contact-name {
  margin-top: 20px;
  font-family: "DIN W01 Medium";
  -webkit-font-smoothing: antialiased;
}
#footer-top .flex-footer {
  display: flex;
  justify-content: space-around;
}
#footer-top .list-style--social {
  margin-top: 20px;
  margin-left: -8px;
}
#footer-top .list-style--social li {
  margin-right: 10px;
}
#footer-top .newsletter-form input[type="email"] {
  color: white;
  background: transparent;
  border: 1px solid white;
  height: 32px;
  font-size: 15px;
}
#footer-top .newsletter-form input::placeholder {
  color: white !important;
  opacity: 0.9;
}
#footer-top .newsletter-form .gform_footer {
  max-width: 40%;
  width: auto;
}
#footer-top .newsletter-form .gform_footer input[type="submit"] {
  background: white;
  color: #000;
  text-transform: none !important;
  padding-left: 10px;
  padding-right: 10px;
  max-width: none;
  height: 32px;
  font-size: 16px;
  font-weight: bold;
}
#footer-top .gform_footer.top_label {
  line-height: 1.2em;
  width: 20%;
}
#footer-top .flex-item {
  padding-left: 20px;
  padding-right: 20px;
}
#footer-top .flex-item:last-child address {
  margin-bottom: 0;
}
#footer-top .sc-btn-txt {
  font-size: 1.125em;
}
#footer-top address {
  font-size: 0.85em;
  line-height: 1.64;
}
#footer-top address span,
#footer-top address a {
  color: #fff;
  display: block;
}
#footer-top address .contact-email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (min-width: 600px) {
  #footer-top .row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  #footer-top .footer-col-cta {
    width: 100%;
    float: left;
  }
  #footer-top .footer-col-contact {
    width: 33.333%;
    float: left;
  }
  #footer-top address {
    margin-top: 1.5em;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-top .row-flex {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  #footer-top .footer-col-cta {
    text-align: center;
    min-width: 25%;
    width: auto;
  }
  #footer-top .footer-col-contact {
    min-width: 20%;
    width: auto;
  }
  #footer-top address {
    margin: 0;
  }
  .no-flexbox #footer-top .footer-col-cta,
  .no-flexbox #footer-top .footer-col-contact {
    width: 25%;
  }
}
#footer-bottom {
  text-align: center;
  font-size: 0.85em;
  line-height: 1.64;
}
#footer-bottom .bold-footer-statement {
  display: block;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.85em;
}
.footer-col-social {
  margin-bottom: 2em;
}
.footer-col-social .list-style--social {
  text-align: center;
}
.footer-col-social nav {
  margin-top: 0.675em;
}
.footer-col-newsletter {
  margin-bottom: 2em;
}
.footer-col-meta .copyright {
  margin: 0;
  text-align: center;
}
.footer-col-meta nav {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
ul.footer-menu ul.sub-menu {
  display: none;
}
.no-flexbox ul.footer-menu li {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
}
.no-flexbox ul.footer-menu li a {
  padding: 0 10px;
}
.no-flexbox ul.footer-menu li+li {
  border-left: 1px solid #000;
}
.no-flexbox ul.footer-menu li+li:before {
  display: none;
}
.footer-col-newsletter .newsletter-form_wrapper {
  margin: 0;
}
.footer-col-newsletter .newsletter-form {
  max-width: 275px;
  margin: 0 auto;
}
.footer-col-newsletter .newsletter-form input[type="email"] {
  background: none;
}
@media only screen and (min-width: 768px) {
  .footer-col-newsletter {
    text-align: left;
  }
  .footer-col-newsletter .newsletter-form {
    margin-left: 0;
  }
  .footer-col-meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .footer-col-meta .copyright {
    margin-right: 1em;
  }
  .footer-col-social .list-style--social {
    text-align: right;
  }
  .footer-col-social ul.footer-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 992px) {
  .footer-col-meta,
  .footer-col-newsletter,
  .footer-col-social {
    margin-bottom: 2.5em;
  }
  .footer-col-meta {
    display: block;
  }
  .footer-col-meta .copyright {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 0;
    text-align: left;
  }
  .footer-col-meta nav {
    margin-bottom: 0;
  }
  .footer-col-meta ul.footer-menu {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .footer-col-newsletter {
    text-align: center;
  }
  .footer-col-newsletter .newsletter-form {
    margin-left: auto;
  }
}
.newsletter-form .gform_footer {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  width: 20%;
}
.newsletter-form .gform_footer input[type="submit"] {
  font-size: 1em;
  color: #666;
  height: 42px;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  min-width: auto;
  max-width: 40px;
  background: none;
  float: right;
}
@media screen and (max-width: 480px) {
  #footer-top .flex-footer {
    display: Block;
    padding-top: 0px;
  }
  #footer-top h4:first-child {
    margin-top: 35px;
  }
}
.newsletter-form *::placeholder {
  color: #2e2a26 !important;
  font-style: italic;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
::-webkit-input-placeholder {
  color: #666;
  font-family: "DIN W01 Italic";
  opacity: .5;
}
:-moz-placeholder {
  color: #666;
  font-family: "DIN W01 Italic";
  opacity: .5;
}
::-moz-placeholder {
  color: #666;
  font-family: "DIN W01 Italic";
  opacity: .5;
}
:-ms-input-placeholder {
  color: #666;
  font-family: "DIN W01 Italic";
  opacity: .5;
}
::-ms-input-placeholder {
  color: #666;
  font-family: "DIN W01 Italic";
  opacity: .5;
}
[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
[placeholder]:focus:-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
[placeholder]:focus::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
[placeholder]:focus:-ms-placeholder {
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
[placeholder]:focus::-ms-placeholder {
  -ms-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}
label {
  display: inline-block;
  margin-bottom: 6px;
  font-family: "DIN W01 Medium";
  font-size: 0.889em;
  text-transform: uppercase;
  cursor: pointer;
  text-indent: 0;
  padding-left: 0;
}
textarea,
select,
input[type="text"],
input[type="url"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"] {
  background: #F9F9F9;
  border: 0;
  border: 1px solid #CBCBCB;
  border-radius: 0;
  color: #333;
  font-size: 1em;
  letter-spacing: normal;
  outline: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
textarea [placeholder]:focus::-webkit-input-placeholder,
select [placeholder]:focus::-webkit-input-placeholder,
input[type="text"] [placeholder]:focus::-webkit-input-placeholder,
input[type="url"] [placeholder]:focus::-webkit-input-placeholder,
input[type="email"] [placeholder]:focus::-webkit-input-placeholder,
input[type="tel"] [placeholder]:focus::-webkit-input-placeholder,
input[type="number"] [placeholder]:focus::-webkit-input-placeholder,
input[type="password"] [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
textarea [placeholder]:focus:-moz-placeholder,
select [placeholder]:focus:-moz-placeholder,
input[type="text"] [placeholder]:focus:-moz-placeholder,
input[type="url"] [placeholder]:focus:-moz-placeholder,
input[type="email"] [placeholder]:focus:-moz-placeholder,
input[type="tel"] [placeholder]:focus:-moz-placeholder,
input[type="number"] [placeholder]:focus:-moz-placeholder,
input[type="password"] [placeholder]:focus:-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
textarea [placeholder]:focus::-moz-placeholder,
select [placeholder]:focus::-moz-placeholder,
input[type="text"] [placeholder]:focus::-moz-placeholder,
input[type="url"] [placeholder]:focus::-moz-placeholder,
input[type="email"] [placeholder]:focus::-moz-placeholder,
input[type="tel"] [placeholder]:focus::-moz-placeholder,
input[type="number"] [placeholder]:focus::-moz-placeholder,
input[type="password"] [placeholder]:focus::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
textarea [placeholder]:focus:-ms-placeholder,
select [placeholder]:focus:-ms-placeholder,
input[type="text"] [placeholder]:focus:-ms-placeholder,
input[type="url"] [placeholder]:focus:-ms-placeholder,
input[type="email"] [placeholder]:focus:-ms-placeholder,
input[type="tel"] [placeholder]:focus:-ms-placeholder,
input[type="number"] [placeholder]:focus:-ms-placeholder,
input[type="password"] [placeholder]:focus:-ms-placeholder {
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
textarea [placeholder]:focus::-ms-placeholder,
select [placeholder]:focus::-ms-placeholder,
input[type="text"] [placeholder]:focus::-ms-placeholder,
input[type="url"] [placeholder]:focus::-ms-placeholder,
input[type="email"] [placeholder]:focus::-ms-placeholder,
input[type="tel"] [placeholder]:focus::-ms-placeholder,
input[type="number"] [placeholder]:focus::-ms-placeholder,
input[type="password"] [placeholder]:focus::-ms-placeholder {
  -ms-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}
textarea:focus,
textarea:active,
select:focus,
select:active,
input[type="text"]:focus,
input[type="text"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="password"]:focus,
input[type="password"]:active {
  background: #FFF;
  border-bottom-color: #CCC;
}
select,
input[type="text"],
input[type="url"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"] {
  height: 42px;
  vertical-align: middle;
  padding: 0 5px;
}
input[type="image"] {
  border: none;
  padding: 0;
  width: auto;
}
textarea {
  resize: vertical;
  padding: 5px;
}
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  height: 17px;
  width: 17px;
}
select {
  font-size: 1em;
  font-family: inherit;
  padding: 5px !important;
  overflow: hidden;
  letter-spacing: normal;
  border: 0;
  outline: 1px ridge #CCC;
  -webkit-border-radius: 0;
  -webkit-appearance: menulist-button;
}
select option {
  padding: 2px 10px !important;
  display: block;
}
select:focus {
  border: 0;
  outline: 1px ridge #CCC;
  -webkit-border-radius: 0;
  -webkit-appearance: menulist-button;
}
button[type="button"] {
  border-radius: 0;
}
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"].active,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"].active,
button[type="submit"]:hover,
button[type="submit"]:focus,
button[type="submit"]:active,
button[type="submit"].active {
  text-decoration: none;
}
input[type="submit"]:disabled,
input[type="submit"].disabled,
input[type="submit"]:disabled[disabled],
input[type="button"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled[disabled],
button[type="submit"]:disabled,
button[type="submit"].disabled,
button[type="submit"]:disabled[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
input[type="submit"]:disabled:hover,
input[type="submit"]:disabled:focus,
input[type="submit"]:disabled:active,
input[type="submit"].disabled:hover,
input[type="submit"].disabled:focus,
input[type="submit"].disabled:active,
input[type="submit"]:disabled[disabled]:hover,
input[type="submit"]:disabled[disabled]:focus,
input[type="submit"]:disabled[disabled]:active,
input[type="button"]:disabled:hover,
input[type="button"]:disabled:focus,
input[type="button"]:disabled:active,
input[type="button"].disabled:hover,
input[type="button"].disabled:focus,
input[type="button"].disabled:active,
input[type="button"]:disabled[disabled]:hover,
input[type="button"]:disabled[disabled]:focus,
input[type="button"]:disabled[disabled]:active,
button[type="submit"]:disabled:hover,
button[type="submit"]:disabled:focus,
button[type="submit"]:disabled:active,
button[type="submit"].disabled:hover,
button[type="submit"].disabled:focus,
button[type="submit"].disabled:active,
button[type="submit"]:disabled[disabled]:hover,
button[type="submit"]:disabled[disabled]:focus,
button[type="submit"]:disabled[disabled]:active {
  background-color: #666;
}
input[type="submit"]:focus,
input[type="button"]:focus,
button[type="submit"]:focus {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.error-404 #searchform {
  margin: 1em 0;
}
.post-password-form label {
  display: block;
}
.post-password-form input[type="password"] {
  margin-top: 4px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1023px) {
  #searchform {
    display: none;
    background: #FFFFFF;
  }
  #searchform .form-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  #searchform.visible {
    display: block;
    position: absolute;
    width: 100%;
    padding: 20px;
    left: 0px;
    top: 100px;
    z-index: 1000;
    border-bottom: 1px solid #ccc;
  }
  #searchform #searchsubmit {
    width: 15%;
    margin: 0 0 0 0;
    top: 0px;
    height: 42px;
    position: relative;
    background: #b34f2d;
    font-family: 'DIN W01 Regular';
    text-transform: uppercase;
    font-size: 18px;
    padding: 0;
  }
  #searchform #s {
    width: 80%;
    background: none;
  }
}
input#s::placeholder {
  font-family: "DIN W01 regular";
  opacity: 1;
  font-size: 20px;
}
@media only screen and (min-width: 1024px) {
  #searchform {
    display: none;
    position: absolute;
    top: 106px;
    border-radius: 0 0 0 2px;
    border: 1px solid #ccc;
    border-top: 0;
    border-right: 0;
    padding: 25px 15px 25px 25px;
    font-size: 16px;
    left: auto;
    right: 0;
    background: #fff;
    width: 345px;
    z-index: 1000;
    height: 90px;
  }
  #searchform.visible {
    display: block;
  }
  #searchform #s {
    height: 40px;
    background: #FFF;
    padding-right: 13%;
    padding-left: 0;
    margin-right: 10px;
    width: calc(100% - 70px);
    max-width: 100%;
  }
  input#s {
    font-size: 20px !important;
  }
  #searchform #searchsubmit {
    height: 40px;
    width: 55px;
    top: 25px;
    right: 15px;
    font-family: 'DIN W01 Regular';
    text-transform: uppercase;
    padding: 0 8px;
    font-size: 18px;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    margin: 0;
    position: absolute;
    cursor: pointer;
    border: 0;
    outline: 0;
    background: #b34f2d;
  }
}
li.gf_inline div.ginput_container {
  white-space: nowrap !important;
}
.top_label input.small,
.top_label select.small,
.top_label select.small + .select2-container,
.top_label textarea.small,
.top_label input.medium,
.top_label select.medium,
.top_label select.medium + .select2-container,
.top_label textarea.medium,
.top_label input.large,
.top_label select.large,
.top_label select.large + .select2-container,
.top_label textarea.large,
.left_label input.small,
.left_label select.small,
.left_label select.small + .select2-container,
.left_label textarea.small,
.left_label input.medium,
.left_label select.medium,
.left_label select.medium + .select2-container,
.left_label textarea.medium,
.left_label input.large,
.left_label select.large,
.left_label select.large + .select2-container,
.left_label textarea.large,
.right_label input.small,
.right_label select.small,
.right_label select.small + .select2-container,
.right_label textarea.small,
.right_label input.medium,
.right_label select.medium,
.right_label select.medium + .select2-container,
.right_label textarea.medium,
.right_label input.large,
.right_label select.large,
.right_label select.large + .select2-container,
.right_label textarea.large {
  width: 100%;
}
.top_label li.gfield.gf_inline {
  vertical-align: top;
  width: auto !important;
  margin-right: 14px;
  float: none !important;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.top_label li.gfield.gf_inline input[type=text].large,
.top_label li.gfield.gf_inline input[type=url].large,
.top_label li.gfield.gf_inline input[type=email].large,
.top_label li.gfield.gf_inline input[type=tel].large,
.top_label li.gfield.gf_inline input[type=number].large,
.top_label li.gfield.gf_inline input[type=password].large {
  width: 25.4em !important;
}
.top_label li.gfield.gf_inline input[type=text].medium,
.top_label li.gfield.gf_inline input[type=url].medium,
.top_label li.gfield.gf_inline input[type=email].medium,
.top_label li.gfield.gf_inline input[type=tel].medium,
.top_label li.gfield.gf_inline input[type=number].medium,
.top_label li.gfield.gf_inline input[type=password].medium {
  width: 18.7em !important;
}
.top_label li.gfield.gf_inline input[type=text].datepicker.medium {
  width: 6em !important;
}
.top_label li.gfield.gf_inline input[type=text].small,
.top_label li.gfield.gf_inline input[type=url].small,
.top_label li.gfield.gf_inline input[type=email].small,
.top_label li.gfield.gf_inline input[type=tel].small,
.top_label li.gfield.gf_inline input[type=number].small,
.top_label li.gfield.gf_inline input[type=password].small {
  width: 5em !important;
}
.top_label li.gfield.gf_inline select {
  width: auto !important;
}
.top_label li.gfield.gf_inline textarea {
  width: 95% !important;
}
.top_label li.gfield.gf_inline div.gfield_time_hour input[type=text],
.top_label li.gfield.gf_inline div.gfield_time_minute input[type=text] {
  width: 70% !important;
}
.top_label li.gfield.gf_inline div.gfield_time_hour,
.top_label li.gfield.gf_inline div.gfield_time_minute,
.top_label li.gfield.gf_inline div.gfield_date_month,
.top_label li.gfield.gf_inline div.gfield_date_day,
.top_label li.gfield.gf_inline div.gfield_date_year {
  width: 50px;
}
.top_label li.gfield.gf_inline div.gfield_time_ampm {
  width: auto;
}
.top_label li.gfield.gf_left_half,
.top_label li.gfield.gf_right_half {
  width: 100%;
}
.top_label li.gfield.gf_left_half input.medium,
.top_label li.gfield.gf_left_half input.large,
.top_label li.gfield.gf_left_half select.medium,
.top_label li.gfield.gf_left_half select.large,
.top_label li.gfield.gf_left_half select.medium + .select2-container,
.top_label li.gfield.gf_left_half select.large + .select2-container,
.top_label li.gfield.gf_right_half input.medium,
.top_label li.gfield.gf_right_half input.large,
.top_label li.gfield.gf_right_half select.medium,
.top_label li.gfield.gf_right_half select.large,
.top_label li.gfield.gf_right_half select.medium + .select2-container,
.top_label li.gfield.gf_right_half select.large + .select2-container {
  width: 100%;
}
.top_label li.gfield.gf_left_half textarea,
.top_label li.gfield.gf_right_half textarea {
  width: 100%;
}
.top_label li.gfield.gf_left_half input.small,
.top_label li.gfield.gf_right_half input.small {
  width: 100%;
}
.top_label li.gfield.gf_left_half + li.gsection,
.top_label li.gfield.gf_right_half + li.gsection {
  padding: 16px 0 8px 0;
}
.top_label li.gfield.gf_left_half + li.gfield.gsection.gf_left_half,
.top_label li.gfield.gf_right_half + li.gfield.gsection.gf_left_half,
.top_label li.gfield.gf_left_half + li.gfield.gsection.gf_right_half,
.top_label li.gfield.gf_right_half + li.gfield.gsection.gf_right_half,
.top_label li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_left_half,
.top_label li.gfield.gsection.gf_right_half + li.gfield.gsection.gf_left_half,
.top_label li.gfield.gsection.gf_right_half + li.gfield.gsection.gf_right_half {
  padding: 16px 0 8px 0;
}
.top_label li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_right_half {
  padding: 0 0 8px 0;
}
.top_label li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_right_half + li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_right_half {
  padding: 16px 0 8px 0;
}
.top_label li.gfield.gf_left_half + li.gfield,
.top_label li.gfield.gf_right_half + li.gfield,
.top_label li.gfield.gf_left_half + .gform_footer,
.top_label li.gfield.gf_right_half + .gform_footer {
  clear: both;
}
.top_label li.gfield.gf_left_third,
.top_label li.gfield.gf_middle_third,
.top_label li.gfield.gf_right_third {
  width: 100%;
}
.top_label li.gfield.gfield_error.gf_left_third,
.top_label li.gfield.gfield_error.gf_middle_third,
.top_label li.gfield.gfield_error.gf_right_third {
  width: 100%;
}
.top_label li.gfield.gf_left_third + li.gsection,
.top_label li.gfield.gf_right_third + li.gsection {
  padding: 16px 0 8px 0;
}
.top_label li.gfield.gf_left_third + li.gfield,
.top_label li.gfield.gf_middle_third + li.gfield,
.top_label li.gfield.gf_right_third + li.gfield,
.top_label li.gfield.gf_left_third + .gform_footer,
.top_label li.gfield.gf_middle_third + .gform_footer,
.top_label li.gfield.gf_right_third + .gform_footer {
  clear: both;
}
li.gfield.gf_list_2col ul.gfield_checkbox li,
li.gfield.gf_list_2col ul.gfield_radio li,
li.gfield.gf_2col ul.gfield_checkbox li,
li.gfield.gf_2col ul.gfield_radio li {
  width: 100%;
  margin: 0 0 8px 0;
  min-height: 1.8em;
}
li.gfield.gf_list_3col ul.gfield_checkbox li,
li.gfield.gf_list_3col ul.gfield_radio li,
li.gfield.gf_3col ul.gfield_checkbox li,
li.gfield.gf_3col ul.gfield_radio li {
  width: 100%;
  margin: 0 0 8px 0;
  min-height: 1.8em;
}
li.gfield.gf_list_4col ul.gfield_checkbox li,
li.gfield.gf_list_4col ul.gfield_radio li {
  width: 100%;
  margin: 0 0 8px 0;
  min-height: 1.8em;
}
li.gfield.gf_list_5col ul.gfield_checkbox li,
li.gfield.gf_list_5col ul.gfield_radio li {
  width: 100%;
  float: left;
  margin: 0 0 8px 0;
  min-height: 1.8em;
}
li.gfield.gf_list_2col ul.gfield_checkbox,
li.gfield.gf_list_2col ul.gfield_radio,
li.gfield.gf_list_3col ul.gfield_checkbox,
li.gfield.gf_list_3col ul.gfield_radio,
li.gfield.gf_list_4col ul.gfield_checkbox,
li.gfield.gf_list_4col ul.gfield_radio,
li.gfield.gf_list_5col ul.gfield_checkbox,
li.gfield.gf_list_5col ul.gfield_radio,
li.gfield.gf_2col ul.gfield_checkbox,
li.gfield.gf_2col ul.gfield_radio,
li.gfield.gf_3col ul.gfield_checkbox,
li.gfield.gf_3col ul.gfield_radio {
  overflow: hidden;
}
li.gfield.gf_list_2col label.gfield_label,
li.gfield.gf_list_3col label.gfield_label,
li.gfield.gf_list_4col label.gfield_label,
li.gfield.gf_list_5col label.gfield_label,
li.gfield.gf_list_inline label.gfield_label {
  margin: 10px 0 10px 0;
}
li.gfield.gf_list_height_25 ul.gfield_checkbox li,
li.gfield.gf_list_height_25 ul.gfield_radio li {
  height: 25px;
}
li.gfield.gf_list_height_50 ul.gfield_checkbox li,
li.gfield.gf_list_height_50 ul.gfield_radio li {
  height: 50px;
}
li.gfield.gf_list_height_75 ul.gfield_checkbox li,
li.gfield.gf_list_height_75 ul.gfield_radio li {
  height: 75px;
}
li.gfield.gf_list_height_100 ul.gfield_checkbox li,
li.gfield.gf_list_height_100 ul.gfield_radio li {
  height: 100px;
}
li.gfield.gf_list_height_125 ul.gfield_checkbox li,
li.gfield.gf_list_height_125 ul.gfield_radio li {
  height: 125px;
}
li.gfield.gf_list_height_150 ul.gfield_checkbox li,
li.gfield.gf_list_height_150 ul.gfield_radio li {
  height: 150px;
}
li.gfield.gf_list_inline ul.gfield_checkbox li ul.gfield_radio li {
  width: auto !important;
  float: none !important;
  margin: 0 10px 10px 0;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
li.gf_hide_ampm div.gfield_time_ampm {
  display: none !important;
}
li.gsection.gf_scroll_text {
  height: 180px;
  width: 96%;
  overflow: auto;
  border: 1px solid #CCC;
  border-bottom: 1px solid #CCC !important;
}
li.gsection.gf_scroll_text h2.gsection_title {
  margin: 10px 10px 0 10px !important;
}
li.gsection.gf_scroll_text .gsection_description {
  margin: 10px;
  font-size: 0.8em;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ul,
form div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ul {
  list-style-type: disc !important;
  margin: 1em 0 1em 1.5em;
  padding-left: 0;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ul li,
form div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ul li {
  margin: 0 0 0.5em;
  overflow: visible;
  padding-left: 0;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol,
form div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol {
  list-style-type: decimal !important;
  margin: 1em 0 1.5em 2.0em;
  padding-left: 0;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol li,
form div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol li {
  overflow: visible;
  margin: 0 0 0.5em;
  padding-left: 0;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul,
form div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul {
  margin: 1em 0 1em 1.5em;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul li,
form div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul li {
  padding-left: 0;
  margin: 0 0 0.5em;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description dl {
  margin: 0 0 1.5em 0;
  padding-left: 0;
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description dl dt {
  font-family: "DIN W01 Medium";
}
div.gform_ul.gform_fields li.gfield.gsection.gf_scroll_text div.gsection_description dl dd {
  margin: 0 0 1em 1.5em;
}
li.gfield.gfield_html.gf_alert_green,
li.gfield.gfield_html.gf_alert_red,
li.gfield.gfield_html.gf_alert_yellow,
li.gfield.gfield_html.gf_alert_gray,
li.gfield.gfield_html.gf_alert_blue {
  margin: 20px 0 !important;
  padding: 20px !important;
}
li.gfield.gfield_html.gf_alert_green {
  border: 1px solid #97B48A;
  background-color: #CBECA0;
  text-shadow: #DFB 1px 1px;
  color: #030;
}
li.gfield.gfield_html.gf_alert_red {
  border: 1px solid #CFADB3;
  background-color: #FAF2F5;
  text-shadow: #FFF 1px 1px;
  color: #832525;
}
li.gfield.gfield_html.gf_alert_yellow {
  border: 1px solid #E6DB55;
  background-color: #FFFBCC;
  text-shadow: #FCFAEA 1px 1px;
  color: #222;
}
li.gfield.gfield_html.gf_alert_gray {
  border: 1px solid #CCC;
  background-color: #EEE;
  text-shadow: #FFF 1px 1px;
  color: #424242;
}
li.gfield.gfield_html.gf_alert_blue {
  border: 1px solid #a7c2e7;
  background-color: #D1E4F3;
  text-shadow: #E0F1FF 1px 1px;
  color: #314475;
}
div.gform_confirmation_wrapper.gf_confirmation_simple_yellow {
  margin: 30px 0;
  max-width: 99%;
  border-top: 1px solid #E6DB55;
  border-bottom: 1px solid #E6DB55;
  padding: 2em;
  background-color: #FFFBCC;
  color: #424242;
  font-size: 1.6em;
}
div.gform_confirmation_wrapper.gf_confirmation_simple_gray {
  margin: 30px 0;
  max-width: 99%;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 2em;
  background-color: #EAEAEA;
  color: #424242;
  font-size: 1.6em;
}
div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient {
  position: relative;
  background-color: #FFFBD2;
  margin: 30px 0;
  border: 1px solid #E6DB55;
  -moz-box-shadow: 0 0 5px rgba(221,215,131,0.75);
  -webkit-box-shadow: 0 0 5px rgba(221,215,131,0.75);
  box-shadow: 0 0 5px rgba(221,215,131,0.75);
}
div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient div#gforms_confirmation_message {
  margin: 0;
  padding: 40px;
  max-width: 99%;
  font-size: 1.8em;
  border-top: 2px solid #FFF;
  border-bottom: 1px solid #E6DB55;
  background-color: #FFFBCC;
  color: #424242;
  background: #fffce5;
  background: -moz-linear-gradient(top,#fffce5 0%,#fff9bf 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fffce5),color-stop(100%,#fff9bf));
  background: -webkit-linear-gradient(top,#fffce5 0%,#fff9bf 100%);
  background: -o-linear-gradient(top,#fffce5 0%,#fff9bf 100%);
  background: -ms-linear-gradient(top,#fffce5 0%,#fff9bf 100%);
  background: linear-gradient(to bottom,#fffce5 0%,#fff9bf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffce5',endColorstr='#fff9bf',GradientType=0);
}
div.gform_confirmation_wrapper.gf_confirmation_green_gradient {
  position: relative;
  background-color: #f1fcdf;
  margin: 30px 0;
  border: 1px solid #a7c37c;
  -moz-box-shadow: 0 0 5px rgba(86,122,86,0.4);
  -webkit-box-shadow: 0 0 5px rgba(86,122,86,0.4);
  box-shadow: 0 0 5px rgba(86,122,86,0.4);
}
div.gform_confirmation_wrapper.gf_confirmation_green_gradient div#gforms_confirmation_message {
  margin: 0;
  padding: 40px;
  max-width: 99%;
  font-size: 1.8em;
  border-top: 2px solid #effade;
  border-bottom: 1px solid #a7c37c;
  background-color: #FFFBCC;
  text-shadow: #DFB 1px 1px;
  color: #030;
  background: #dbf2b7;
  background: -moz-linear-gradient(top,#dbf2b7 0%,#b4d088 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#dbf2b7),color-stop(100%,#b4d088));
  background: -webkit-linear-gradient(top,#dbf2b7 0%,#b4d088 100%);
  background: -o-linear-gradient(top,#dbf2b7 0%,#b4d088 100%);
  background: -ms-linear-gradient(top,#dbf2b7 0%,#b4d088 100%);
  background: linear-gradient(to bottom,#dbf2b7 0%,#b4d088 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dbf2b7',endColorstr='#b4d088',GradientType=0);
}
div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient div.gform_confirmation_wrapper.gf_confirmation_green_gradient:before,
div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient div.gform_confirmation_wrapper.gf_confirmation_green_gradient:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 40%;
  background: rgba(0,0,0,0.2);
  -moz-box-shadow: 0 15px 10px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 15px 10px rgba(0,0,0,0.2);
  box-shadow: 0 15px 10px rgba(0,0,0,0.2);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient div.gform_confirmation_wrapper.gf_confirmation_green_gradient:after {
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
@media only screen and (min-width: 768px) {
  .right_label input.small,
  .right_label select.small,
  .right_label select.small + .select2-container,
  .right_label textarea.small,
  .left_label input.small,
  .left_label select.small,
  .left_label select.small + .select2-container,
  .left_label textarea.small {
    width: 15%;
  }
  .right_label input.medium,
  .right_label select.medium,
  .right_label select.medium + .select2-container,
  .right_label textarea.medium,
  .left_label input.medium,
  .left_label select.medium,
  .left_label select.medium + .select2-container,
  .left_label textarea.medium {
    width: 35%;
  }
  .right_label input.large,
  .right_label select.large,
  .right_label select.large + .select2-container,
  .right_label textarea.large,
  .left_label input.large,
  .left_label select.large,
  .left_label select.large + .select2-container,
  .left_label textarea.large {
    width: 69%;
  }
  .right_label .ginput_complex,
  .left_label .ginput_complex {
    width: 69%;
  }
  .top_label input.large,
  .top_label select.large,
  .top_label select.large + .select2-container,
  .top_label textarea.large,
  .top_label textarea.medium,
  .top_label textarea.small {
    width: 100%;
  }
  .top_label input.small,
  .top_label select.small,
  .top_label select.small + .select2-container {
    width: 25%;
  }
  .top_label input.medium,
  .top_label select.medium,
  .top_label select.medium + .select2-container {
    width: 49%;
  }
  .top_label li.gf_list_inline ul.gfield_radio li,
  .top_label li.gf_list_inline ul.gfield_checkbox li {
    display: inline-block;
  }
  .top_label li.gf_list_inline ul.gfield_radio li label,
  .top_label li.gf_list_inline ul.gfield_checkbox li label {
    margin-right: 2em;
  }
  .top_label li.gfield.gf_left_half,
  .top_label li.gfield.gf_right_half,
  .top_label li.gfield_medium {
    width: 49%;
  }
  .top_label li.gfield.gf_left_half input.small,
  .top_label li.gfield.gf_right_half input.small,
  .top_label li.gfield_medium input.small {
    width: 35%;
  }
  .top_label li.gfield.gf_left_half {
    float: left;
    clear: left !important;
  }
  .top_label li.gfield.gf_right_half {
    float: right;
    clear: right !important;
  }
  .top_label li.gfield.gf_left_half input.large,
  .top_label li.gfield.gf_left_half select.large,
  .top_label li.gfield.gf_left_half select.large + .select2-container,
  .top_label li.gfield.gf_left_half textarea.large,
  .top_label li.gfield.gf_left_half input.medium,
  .top_label li.gfield.gf_left_half select.medium,
  .top_label li.gfield.gf_left_half select.medium + .select2-container,
  .top_label li.gfield.gf_left_half textarea.medium,
  .top_label li.gfield.gf_right_half input.large,
  .top_label li.gfield.gf_right_half select.large,
  .top_label li.gfield.gf_right_half select.large + .select2-container,
  .top_label li.gfield.gf_right_half textarea.large,
  .top_label li.gfield.gf_right_half input.medium,
  .top_label li.gfield.gf_right_half select.medium,
  .top_label li.gfield.gf_right_half select.medium + .select2-container,
  .top_label li.gfield.gf_right_half textarea.medium {
    width: 100% !important;
  }
  .top_label li.gfield.gf_left_third,
  .top_label li.gfield.gf_middle_third,
  .top_label li.gfield.gf_right_third {
    width: 32%;
  }
  .top_label li.gfield.gf_left_third input.medium,
  .top_label li.gfield.gf_left_third input.large,
  .top_label li.gfield.gf_left_third select.medium,
  .top_label li.gfield.gf_left_third select.large,
  .top_label li.gfield.gf_left_third select.medium + .select2-container,
  .top_label li.gfield.gf_left_third select.large + .select2-container,
  .top_label li.gfield.gf_middle_third input.medium,
  .top_label li.gfield.gf_middle_third input.large,
  .top_label li.gfield.gf_middle_third select.medium,
  .top_label li.gfield.gf_middle_third select.large,
  .top_label li.gfield.gf_middle_third select.medium + .select2-container,
  .top_label li.gfield.gf_middle_third select.large + .select2-container,
  .top_label li.gfield.gf_right_third input.medium,
  .top_label li.gfield.gf_right_third input.large,
  .top_label li.gfield.gf_right_third select.medium,
  .top_label li.gfield.gf_right_third select.large,
  .top_label li.gfield.gf_right_third select.medium + .select2-container,
  .top_label li.gfield.gf_right_third select.large + .select2-container {
    width: 100%;
  }
  .top_label li.gfield.gfield_error.gf_left_third,
  .top_label li.gfield.gfield_error.gf_middle_third,
  .top_label li.gfield.gfield_error.gf_right_third {
    width: 29%;
  }
  .top_label li.gfield.gf_left_third {
    float: left;
    clear: left !important;
  }
  .top_label li.gfield.gf_middle_third {
    float: left;
    margin-left: 2% !important;
    clear: none !important;
  }
  .top_label li.gfield.gfield_error.gf_middle_third {
    margin-left: 3%;
  }
  .top_label li.gfield.gf_right_third {
    float: right;
    clear: right !important;
  }
  li.gfield.gf_list_2col label,
  li.gfield.gf_list_3col label,
  li.gfield.gf_list_4col label,
  li.gfield.gf_list_5col label {
    margin-bottom: 10px;
  }
  li.gfield.gf_list_2col ul.gfield_checkbox li,
  li.gfield.gf_list_2col ul.gfield_radio li,
  li.gfield.gf_2col ul.gfield_checkbox li,
  li.gfield.gf_2col ul.gfield_radio li {
    width: 50%;
    float: left;
    padding-right: 1em;
  }
  li.gfield.gf_list_2col ul.gfield_checkbox li:nth-child(2n),
  li.gfield.gf_list_2col ul.gfield_radio li:nth-child(2n),
  li.gfield.gf_2col ul.gfield_checkbox li:nth-child(2n),
  li.gfield.gf_2col ul.gfield_radio li:nth-child(2n) {
    clear: right;
  }
  li.gfield.gf_list_2col ul.gfield_checkbox li:nth-child(2n+1),
  li.gfield.gf_list_2col ul.gfield_radio li:nth-child(2n+1),
  li.gfield.gf_2col ul.gfield_checkbox li:nth-child(2n+1),
  li.gfield.gf_2col ul.gfield_radio li:nth-child(2n+1) {
    clear: left;
  }
  li.gfield.gf_list_3col ul.gfield_checkbox li,
  li.gfield.gf_list_3col ul.gfield_radio li,
  li.gfield.gf_3col ul.gfield_checkbox li,
  li.gfield.gf_3col ul.gfield_radio li {
    width: 33%;
    float: left;
    padding-right: 1em;
  }
  li.gfield.gf_list_3col ul.gfield_checkbox li:nth-child(3n),
  li.gfield.gf_list_3col ul.gfield_radio li:nth-child(3n),
  li.gfield.gf_3col ul.gfield_checkbox li:nth-child(3n),
  li.gfield.gf_3col ul.gfield_radio li:nth-child(3n) {
    clear: right;
  }
  li.gfield.gf_list_3col ul.gfield_checkbox li:nth-child(3n+1),
  li.gfield.gf_list_3col ul.gfield_radio li:nth-child(3n+1),
  li.gfield.gf_3col ul.gfield_checkbox li:nth-child(3n+1),
  li.gfield.gf_3col ul.gfield_radio li:nth-child(3n+1) {
    clear: left;
  }
  li.gfield.gf_list_4col ul.gfield_checkbox li,
  li.gfield.gf_list_4col ul.gfield_radio li {
    width: 25%;
    float: left;
    padding-right: 1em;
  }
  li.gfield.gf_list_4col ul.gfield_checkbox li:nth-child(4n),
  li.gfield.gf_list_4col ul.gfield_radio li:nth-child(4n) {
    clear: right;
  }
  li.gfield.gf_list_4col ul.gfield_checkbox li:nth-child(4n+1),
  li.gfield.gf_list_4col ul.gfield_radio li:nth-child(4n+1) {
    clear: left;
  }
  li.gfield.gf_list_5col ul.gfield_checkbox li,
  li.gfield.gf_list_5col ul.gfield_radio li {
    width: 20%;
    float: left;
    padding-right: 1em;
  }
  li.gfield.gf_list_5col ul.gfield_checkbox li:nth-child(5n),
  li.gfield.gf_list_5col ul.gfield_radio li:nth-child(5n) {
    clear: right;
  }
  li.gfield.gf_list_5col ul.gfield_checkbox li:nth-child(5n+1),
  li.gfield.gf_list_5col ul.gfield_radio li:nth-child(5n+1) {
    clear: left;
  }
}
li.gfield.gfield_creditcard_warning {
  margin-bottom: 6px !important;
  padding: 6px 6px 4px 6px !important;
  border: 1px dashed #a00;
}
li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message {
  font-size: 1em;
  padding: 10px 20px 10px 45px;
  min-height: 25px;
  background-image: url("/wp-content/plugins/gravityforms/images/stopbanner.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #a00;
  border-bottom: 1px solid #620101;
  color: #FFF;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  line-height: 1.3em;
  letter-spacing: 0.2pt;
}
li.gfield + li.gfield.gfield_creditcard_warning {
  margin-top: 14px !important;
}
.gfield_error input[type=text],
.gfield_error input[type=url],
.gfield_error input[type=email],
.gfield_error input[type=tel],
.gfield_error input[type=number],
.gfield_error input[type=password],
.gfield_error textarea,
.gfield_error input,
.gfield_error .select2-container .select2-selection {
  border-bottom: 1px solid #c0392b;
}
.gfield_error input[type=text]:focus,
.gfield_error input[type=url]:focus,
.gfield_error input[type=email]:focus,
.gfield_error input[type=tel]:focus,
.gfield_error input[type=number]:focus,
.gfield_error input[type=password]:focus,
.gfield_error textarea:focus,
.gfield_error input:focus,
.gfield_error .select2-container .select2-selection:focus {
  border-bottom: 1px solid #c0392b;
}
.gfield_error .gform_fileupload_multifile .gform_drop_area {
  border: 2px dotted #c0392b;
}
div.validation_error {
  margin-top: 0;
  margin-bottom: 2em;
  width: auto;
  font-family: "DIN W01 Medium";
  margin-bottom: 1.6em;
  border-top-color: #c0392b;
}
div.validation_error:before {
  font-family: "FontAwesome";
  float: left;
  margin-right: 10px;
  font-size: 1.25em;
  position: relative;
  top: -0.1em;
}
div.validation_error:before {
  content: "\f071";
  color: #c0392b;
}
div.gf_page_steps + div.validation_error {
  margin-top: 16px;
}
div.gfield_description.validation_message {
  color: #c0392b;
}
.ginput_container.ginput_list + .gfield_description.validation_message {
  margin-top: 0;
}
.gform_ajax_spinner {
  padding-left: 10px;
}
.gfield_captcha_input_container {
  padding-top: 3px;
}
.simple_captcha_small input {
  width: 100px;
}
.simple_captcha_medium input {
  width: 150px;
}
.simple_captcha_large input {
  width: 200px;
}
.gform_wrapper .left_label .simple_captcha_small,
.right_label .simple_captcha_small,
.left_label .simple_captcha_medium,
.right_label .simple_captcha_medium,
.left_label .simple_captcha_large,
.right_label .simple_captcha_large {
  margin-left: 32%;
}
.gfield_captcha_container img.gfield_captcha {
  border: none !important;
  background: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.math_small input {
  width: 69px;
}
.math_medium input {
  width: 90px;
}
.math_large input {
  width: 108px;
}
.left_label .math_small,
.right_label .math_small,
.left_label .math_medium,
.right_label .math_medium,
.left_label .math_large,
.right_label .math_large {
  margin-left: 32%;
}
input[type=hidden],
input.gform_hidden,
.gform_hidden,
.gf_hidden {
  display: none !important;
  max-height: 1px !important;
  overflow: hidden;
}
.ginput_full br,
.ginput_left br,
.ginput_right br {
  display: none !important;
}
.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}
.gfield_time_hour,
.gfield_time_minute,
.gfield_date_month,
.gfield_date_day,
.gfield_date_year {
  width: 70px;
  vertical-align: top;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.gfield_date_month,
.gfield_date_day,
.gfield_date_year {
  margin-right: 12px;
  width: 50px;
  float: left;
}
.gfield_date_month input,
.gfield_date_day input,
.gfield_date_year input {
  width: 85% !important;
}
.gfield_date_dropdown_month,
.gfield_date_dropdown_day,
.gfield_date_dropdown_year {
  vertical-align: top;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  margin-right: 6px;
}
.gfield_time_ampm {
  vertical-align: top;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.gfield_time_ampm select {
  width: 60px !important;
}
.gfield_time_hour input,
.gfield_time_minute input,
.gfield_date_month input,
.gfield_date_day input,
.gfield_date_year input {
  width: 70% !important;
}
.datepicker {
  width: 100px;
}
input.datepicker.datepicker_with_icon {
  margin-right: 4px !important;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.ui-datepicker {
  width: 216px;
  height: auto;
  margin: 5px auto 0;
  font-family: "DIN W01 Regular";
  font-size: 0.875em;
  -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}
.ui-datepicker a {
  text-decoration: none;
}
.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}
.ui-datepicker-header {
  background-color: #666;
  color: #e0e0e0;
  font-family: "DIN W01 Medium";
  -moz-box-shadow: inset 0 1px 1px 0 rgba(250,250,250,0.2);
  -webkit-box-shadow: inset 0 1px 1px 0 rgba(250,250,250,0.2);
  box-shadow: inset 0 1px 1px 0 rgba(250,250,250,0.2);
  filter: dropshadow(color=#000,offx=1,offy=-1);
  line-height: 40px;
  min-height: 30px !important;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #666;
}
.ui-datepicker-title {
  text-align: center;
}
.ui-datepicker-title .ui-datepicker-month {
  margin-right: 5px;
}
.ui-datepicker-title select {
  margin-top: 2.5%;
}
.ui-datepicker-prev:before {
  font-family: "FontAwesome";
  font-size: 1em;
  color: #FFF;
  content: "\f104";
  margin-right: 5px;
  margin-left: 5px;
}
.ui-datepicker-next:after {
  font-family: "FontAwesome";
  font-size: 1em;
  color: #FFF;
  content: "\f105";
  margin-right: 5px;
  margin-left: 5px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  color: #FFF !important;
  height: 30px;
}
.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}
.ui-datepicker-next {
  float: right;
  background-position: center 0px;
}
.ui-datepicker thead {
  background: #f7f7f7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWYxZjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,#f7f7f7 0%,#f1f1f1 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f7f7f7),color-stop(100%,#f1f1f1));
  background: -webkit-linear-gradient(top,#f7f7f7 0%,#f1f1f1 100%);
  background: -o-linear-gradient(top,#f7f7f7 0%,#f1f1f1 100%);
  background: -ms-linear-gradient(top,#f7f7f7 0%,#f1f1f1 100%);
  background: linear-gradient(to bottom,#f7f7f7 0%,#f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7',endColorstr='#f1f1f1',GradientType=0);
  border-bottom: 1px solid #bbb;
}
.ui-datepicker th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  filter: dropshadow(color=#fff,offx=1,offy=0);
}
.ui-datepicker tbody td {
  padding: 0;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
}
.ui-datepicker tbody td:last-child {
  border-right: 0px;
}
.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
  border-bottom: 0px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: inline-block;
  font-family: "DIN W01 Medium";
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0px #fff;
  filter: dropshadow(color=#fff,offx=1,offy=1);
}
.ui-datepicker-calendar .ui-state-default {
  background: #ededed;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWRlZGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,#ededed 0%,#dedede 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#dedede));
  background: -webkit-linear-gradient(top,#ededed 0%,#dedede 100%);
  background: -o-linear-gradient(top,#ededed 0%,#dedede 100%);
  background: -ms-linear-gradient(top,#ededed 0%,#dedede 100%);
  background: linear-gradient(to bottom,#ededed 0%,#dedede 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#dedede',GradientType=0);
  -webkit-box-shadow: inset 1px 1px 0px 0px rgba(250,250,250,0.5);
  -moz-box-shadow: inset 1px 1px 0px 0px rgba(250,250,250,0.5);
  box-shadow: inset 1px 1px 0px 0px rgba(250,250,250,0.5);
}
.ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
  background: #FFF2AA;
  border: 1px solid #c19163;
  color: #666;
  -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.1);
  box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.1);
  text-shadow: 0px 1px 0px #FFF;
  filter: dropshadow(color=#FFF,offx=0,offy=1);
  position: relative;
  margin: -1px;
}
.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0;
}
td.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7;
}
table.ui-datepicker-calendar {
  margin: 0 0 0 0 !important;
}
body div#ui-datepicker-div[style] {
  z-index: 9999 !important;
}
div.charleft {
  font-size: 11px;
  margin-top: 4px;
  color: #B7B7B7;
  width: 92% !important;
  white-space: nowrap !important;
}
div.charleft[style] {
  width: 92% !important;
}
div.charleft.warningTextareaInfo {
  color: #A1A1A1;
}
li.gf_hide_charleft div.charleft {
  display: none !important;
}
.gf_submission_limit_message {
  color: #790000;
  font-size: 1.4em;
}
.ginput_price {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
span.ginput_total {
  color: #060;
  font-size: 1.2em;
}
.top_label span.ginput_total {
  margin: 8px 0;
}
span.ginput_product_price_label {
  margin-right: 2px;
}
span.ginput_product_price {
  color: #900;
}
span.ginput_quantity_label {
  margin-left: 10px;
  margin-right: 2px;
}
input.ginput_quantity {
  width: 40px;
}
.gform_page_footer {
  margin: 20px 0;
  width: 99%;
  border-top: 1px dotted #CCC;
  padding: 16px 0 0 0;
}
.gform_page_footer input.gform_previous_button {
  float: left;
  width: auto !important;
  padding-left: 1em;
  padding-right: 1em;
}
.gform_page_footer input.gform_next_button,
.gform_page_footer .button.gform_button {
  float: right;
  width: auto !important;
  padding-left: 1em;
  padding-right: 1em;
}
.gf_progressbar_wrapper {
  clear: both;
  width: 99%;
  margin: 0 0 8px 0;
  padding: 0 0 16px 0;
  border-bottom: 1px dotted #CCC;
}
.gf_progressbar_wrapper h3.gf_progressbar_title {
  font-size: 13px;
  line-height: 1em !important;
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  clear: both;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.gf_progressbar {
  width: 100%;
  height: 20px;
  overflow: hidden;
  line-height: 20px !important;
  border: 1px solid #CCC;
  background-image: url("/wp-content/plugins/gravityforms/images/gf-percentbar-bg.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-color: #FFF;
}
.gf_progressbar_percentage {
  height: 20px;
  text-align: right;
  font-family: "DIN W01 Regular";
  font-size: 1em;
}
.gf_progressbar_percentage span {
  display: block;
  width: auto;
  float: right;
  margin-right: 5px;
  margin-left: 5px;
  line-height: 18px;
}
.gf_progressbar_percentage.percentbar_0 span {
  color: #959595;
  text-shadow: none;
}
.percentbar_blue {
  background-image: url("/wp-content/plugins/gravityforms/images/gf-percentbar-blue.png");
  background-repeat: repeat-x;
  background-color: #0072BC;
  color: #FFF;
}
.percentbar_gray {
  background-image: url("/wp-content/plugins/gravityforms/images/gf-percentbar-gray.png");
  background-repeat: repeat-x;
  background-color: #666;
  color: #FFF;
}
.percentbar_green {
  background-image: url("/wp-content/plugins/gravityforms/images/gf-percentbar-green.png");
  background-repeat: repeat-x;
  background-color: #94DC21;
  color: #FFF;
}
.percentbar_orange {
  background-image: url("/wp-content/plugins/gravityforms/images/gf-percentbar-orange.png");
  background-repeat: repeat-x;
  background-color: #DC7021;
  color: #FFF;
}
.percentbar_red {
  background-image: url("/wp-content/plugins/gravityforms/images/gf-percentbar-red.png");
  background-repeat: repeat-x;
  background-color: #DC2521;
  color: #FFF;
}
.percentbar_custom {
  background-image: url("/wp-content/plugins/gravityforms/images/gf-percentbar-custom.png");
  background-repeat: repeat-x;
}
.gf_page_steps {
  width: 99%;
  margin: 0 0 8px 0;
  padding: 0 0 4px 0;
  border-bottom: 1px dotted #CCC;
}
.gf_step {
  width: auto !important;
  margin: 0 10px 10px 0;
  font-size: 14px;
  height: 20px;
  line-height: 20px !important;
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
  font-family: arial, sans-serif;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.gf_step span.gf_step_number {
  font-size: 20px;
  float: left;
  font-family: arial, sans-serif;
}
.gf_step.gf_step_active {
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  -khtml-opacity: 1.0;
  opacity: 1.0;
}
.gf_step_clear {
  display: block;
  clear: both;
  height: 1px;
  overflow: hidden;
}
.gfield_password_strength {
  border: 1px solid #DDD;
  margin: 0;
  padding: 3px 5px;
  text-align: center;
  width: 200px;
  background-color: #EEE;
}
.gfield_password_strength.bad {
  background-color: #FFB78C;
  border-color: #FF853C;
}
.gfield_password_strength.good {
  background-color: #FFEC8b;
  border-color: #FC0;
}
.gfield_password_strength.short,
.gfield_password_strength.mismatch {
  background-color: #FFA0A0;
  border-color: #f04040;
}
.gfield_password_strength.strong {
  background-color: #C3FF88;
  border-color: #8DFF1C;
}
table.gfield_list,
table.gfield_list caption,
table.gfield_list tbody,
table.gfield_list tfoot,
table.gfield_list thead,
table.gfield_list tr,
table.gfield_list th,
table.gfield_list td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: none;
}
table.gfield_list {
  border-spacing: 0;
  border-collapse: collapse;
}
table.gfield_list thead th {
  font-family: "DIN W01 Medium";
  text-align: left;
}
li.gfield.gfield_error table.gfield_list thead th {
  color: #790000;
}
table.gfield_list thead,
table.gfield_list tr {
  padding: 0;
  margin: 0;
}
table.gfield_list th,
table.gfield_list td {
  padding: 0 0 0.5em 0;
}
table.gfield_list th + th,
table.gfield_list td + td {
  padding: 0 0 0.5em 0.7em;
}
.left_label .gfield_list,
.right_label .gfield_list {
  width: 64%;
}
.top_label .gfield_list {
  width: 100%;
}
.left_label .gf_list_one_column,
.right_label .gf_list_one_column {
  width: 45%;
}
.top_label .gf_list_one_column {
  width: 46%;
}
.gfield_list input {
  width: 98%;
}
.gfield_icon_disabled {
  cursor: default !important;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
table.gfield_list td.gfield_list_icons {
  min-width: 45px !important;
}
.gform_fileupload_multifile .gform_drop_area {
  padding: 25px;
  border: 2px dotted #DDD;
  text-align: center;
  color: #888;
}
.gform_fileupload_multifile .gform_drop_area input[type=button] {
  padding: 5px 1em;
  font-size: 0.875em;
  margin-left: 10px;
  line-height: 1.3;
  width: auto !important;
  background: #DDD;
  color: #666;
}
.gform_fileupload_multifile .gform_drop_area input[type=button]:hover,
.gform_fileupload_multifile .gform_drop_area input[type=button]:focus {
  background: #CCC;
}
.gform_delete {
  vertical-align: middle;
  cursor: pointer;
}
.gform_save_link {
  display: block;
  margin-top: 1em;
  text-decoration: underline;
}
.gform_save_link:hover {
  text-decoration: none;
}
div.gform_body ul.gform_fields li.gfield.gfield_html ul li,
form div.gform_body ul.gform_fields li.gfield.gfield_html ul li {
  list-style-type: disc !important;
  margin: 0 0 0.5em;
  overflow: visible;
  padding-left: 0;
}
div.gform_body ul.gform_fields li.gfield.gfield_html ul,
form div.gform_body ul.gform_fields li.gfield.gfield_html ul {
  list-style-type: disc !important;
  margin: 1em 0 1em 1.5em;
  padding-left: 0;
}
div.gform_body ul.gform_fields li.gfield.gfield_html ol li,
form div.gform_body ul.gform_fields li.gfield.gfield_html ol li {
  list-style-type: decimal !important;
  overflow: visible;
  margin: 0 0 0.5em;
  padding-left: 0;
}
div.gform_body ul.gform_fields li.gfield.gfield_html ol,
form div.gform_body ul.gform_fields li.gfield.gfield_html ol {
  list-style-type: decimal !important;
  margin: 1em 0 1.5em 2.0em;
  padding-left: 0;
}
div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul,
form div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul li {
  list-style-type: disc !important;
  padding-left: 0;
}
div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul {
  margin: 1em 0 1em 1.5em;
}
form div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul li {
  margin: 0 0 0.5em;
}
div.gform_body ul.gform_fields li.gfield.gfield_html dl {
  margin: 0 0 1.5em 0;
  padding-left: 0;
}
div.gform_body ul.gform_fields li.gfield.gfield_html dl dt {
  font-family: "DIN W01 Medium";
}
div.gform_body ul.gform_fields li.gfield.gfield_html dl dd {
  margin: 0 0 1em 1.5em;
}
.gfield_html.gfield_no_follows_desc {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .gform_save_link {
    display: inline-block;
    margin-left: 1em;
    margin-top: 0;
  }
  .left_label div.charleft,
  .right_label div.charleft {
    margin-left: 32%;
  }
  .right_label .gform_fileupload_multifile,
  .left_label .gform_fileupload_multifile {
    margin-left: 31%;
  }
  .left_label li.gfield_html_formatted,
  .right_label li.gfield_html_formatted {
    margin-left: 32%;
  }
}
.gform_card_icon_container {
  margin: 8px 0 6px 0;
  height: 32px;
}
div.gform_card_icon {
  margin-right: 4px;
  text-indent: -9000px;
  background-image: url("/wp-content/plugins/gravityforms/images/gf-creditcard-icons.png");
  background-repeat: no-repeat;
  width: 36px;
  height: 32px;
  float: left;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_visa {
  background-position: 0 0;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
  background-position: 0 -32px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -64px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_mastercard {
  background-position: -36px 0;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -32px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -64px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_amex {
  background-position: -72px 0;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -32px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -64px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_discover {
  background-position: -108px 0;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -32px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -64px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_maestro {
  background-position: -144px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -32px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -64px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_jcb {
  background-position: -180px 0;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -32px;
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -64px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_visa {
  background-position: 0 -192px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
  background-position: 0 -224px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -256px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_mastercard {
  background-position: -36px -192px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -224px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -256px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_amex {
  background-position: -72px -192px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -224px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -256px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_discover {
  background-position: -108px -192px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -224px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -256px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_maestro {
  background-position: -144px -192px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -224px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -256px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_jcb {
  background-position: -180px -192px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -224px;
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -256px;
}
.gform_card_icon_container input[type=radio]#gform_payment_method_creditcard {
  float: left;
  position: relative;
  top: 4px !important;
}
.ginput_complex .ginput_cardinfo_right {
  min-width: 85px !important;
}
.ginput_complex .ginput_cardinfo_left {
  display: block;
  margin-bottom: 0.5em;
}
.ginput_complex .ginput_cardinfo_left label,
.ginput_complex .ginput_cardinfo_right label {
  white-space: nowrap !important;
}
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month + .select2-container,
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year,
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year + .select2-container {
  width: 49% !important;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year,
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year + .select2-container {
  float: right;
}
.ginput_complex span.ginput_cardextras {
  display: block;
  overflow: hidden;
}
.ginput_complex .ginput_cardinfo_left span.ginput_card_expiration_container {
  position: relative;
  display: block;
  min-width: 160px !important;
}
.ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month,
.ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month + select2-container {
  margin-right: 4px;
}
.ginput_complex .ginput_cardinfo_right input.ginput_card_security_code {
  max-width: 49% !important;
}
.ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {
  width: 32px;
  height: 23px;
  background-image: url("/wp-content/plugins/gravityforms/images/gf-creditcard-icons.png");
  background-repeat: no-repeat;
  background-position: 0 -128px;
  position: relative;
  top: -1px;
  left: 6px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
@media only screen and (min-width: 768px) {
  .ginput_complex .ginput_cardinfo_left,
  .ginput_complex .ginput_cardinfo_right {
    min-height: 43px;
    position: relative;
    float: left;
  }
  .ginput_complex .ginput_cardinfo_left {
    width: 50%;
    margin-right: 1%;
    margin-bottom: 0;
    max-width: 400px;
  }
}
.gform_wrapper {
  overflow: inherit;
  margin: 1em auto;
  width: 100%;
}
.gform_wrapper:focus {
  outline: 0;
}
.gfield_required {
  color: #666;
  margin-left: 4px;
}
textarea.small {
  height: 80px;
}
textarea.medium {
  height: 150px;
}
textarea.large {
  height: 250px;
}
.hidden_label .ginput_container_checkbox,
.hidden_label .ginput_container_radio {
  margin-top: 10px;
}
ul.gfield_checkbox,
ul.gfield_radio {
  margin: 0.5em 0 0;
}
ul.gfield_checkbox li,
ul.gfield_radio li {
  position: relative;
}
ul.gfield_checkbox li label,
ul.gfield_checkbox li input,
ul.gfield_radio li label,
ul.gfield_radio li input {
  margin-left: 6px;
}
ul.gfield_checkbox li input[type="radio"],
ul.gfield_checkbox li input[type="checkbox"],
ul.gfield_radio li input[type="radio"],
ul.gfield_radio li input[type="checkbox"] {
  position: absolute;
  top: 0.3em;
}
ul.gfield_checkbox li input[type="radio"][value="gf_other_choice"],
ul.gfield_checkbox li input[type="checkbox"][value="gf_other_choice"],
ul.gfield_radio li input[type="radio"][value="gf_other_choice"],
ul.gfield_radio li input[type="checkbox"][value="gf_other_choice"] {
  height: 42px;
  top: 0;
  left: 0;
}
ul.gfield_checkbox li label,
ul.gfield_radio li label {
  display: inline-block;
  padding-left: 23px;
}
ul.gfield_checkbox li input[type="text"],
ul.gfield_radio li input[type="text"] {
  margin-left: 28px;
  width: auto;
}
.field_hover {
  border: 1px dashed #2175A9;
  cursor: pointer;
}
.field_selected {
  background-color: #DFEFFF;
  border: 1px solid #C2D7EF;
}
.ginput_complex {
  overflow: hidden;
}
.ginput_complex .field_name_first,
.ginput_complex .field_name_last {
  width: 100%;
}
.ginput_complex .ginput_left,
.ginput_complex .ginput_right,
.ginput_complex .ginput_full {
  min-height: 43px;
  display: block;
  overflow: hidden;
  margin-bottom: 0.5em;
}
.ginput_complex .ginput_left,
.ginput_complex .ginput_right {
  width: 100%;
}
.ginput_complex input[type=text],
.ginput_complex input[type=url],
.ginput_complex input[type=email],
.ginput_complex input[type=tel],
.ginput_complex input[type=number],
.ginput_complex input[type=password] {
  width: 100%;
}
.ginput_complex select {
  width: 100%;
}
.gform_heading {
  width: 100%;
  margin-bottom: 2em;
}
.gform_footer {
  margin: 1em 0;
  clear: both;
}
.gform_footer input[type="submit"],
.gform_footer input[type="button"],
.gform_footer button[type="submit"] {
  min-width: 170px;
}
h2.gsection_title {
  margin: 0;
  padding: 0;
  letter-spacing: normal;
}
h2.gsection_title,
h3.gform_title {
  font-size: 1.3em;
}
h3.gform_title {
  letter-spacing: normal;
  margin: 10px 0 6px 0;
}
span.gform_description {
  font-weight: normal;
}
h2.gsection_title,
.gsection_description,
h3.gform_title {
  width: 100%;
}
.description,
.gfield_description,
.gsection_description,
.gform_wrapper .instruction {
  font-size: 0.875em;
  color: #666;
  line-height: 1.3;
  clear: both;
  letter-spacing: normal;
}
.field_description_above .description,
.field_description_above .gfield_description,
.field_description_above .gsection_description {
  padding: 0 0 6px 0;
}
.field_description_above .gfield_description.validation_message {
  padding: 6px 0 0 0;
}
.field_description_below .description,
.field_description_below .gfield_description,
.field_description_below .gsection_description {
  padding: 6px 0 0 0;
}
.gfield_date_year + .gfield_description {
  padding: 0;
}
.left_label .gsection .gsection_description,
.right_label .gsection .gsection_description {
  margin-left: 0;
  padding-top: 6px;
  padding-left: 0;
}
form ul {
  margin: 0;
  list-style-type: none;
}
form ul li {
  margin-left: 0;
  list-style-type: none;
  list-style-image: none;
  list-style: none;
  overflow: visible;
}
form ul li.gfield {
  clear: both;
  margin-bottom: 1.5em;
}
ul.gfield_radio li,
ul.gfield_checkbox li {
  overflow: hidden;
}
form ul.right_label li,
form ul.left_label li {
  margin-bottom: 14px;
}
form ul.right_label li ul.gfield_radio li,
form ul.left_label li ul.gfield_radio li,
form ul.right_label li ul.gfield_checkbox li,
form ul.left_label li ul.gfield_checkbox li {
  margin-bottom: 10px;
}
form ul li:before,
form ul li:after,
form ul.gform_fields {
  padding: 0;
  margin: 0;
  overflow: visible;
}
form ul.gform_fields {
  zoom: 1;
}
form ul.gform_fields:after,
form ul.gform_fields:before {
  content: " ";
  display: table;
}
form ul.gform_fields:after {
  clear: both;
}
form .inline {
  display: inline !important;
}
ul.gfield_radio label,
ul.gfield_checkbox label {
  font-weight: normal;
}
.ginput_complex span label {
  color: #666;
}
.ginput_complex span input:focus + label,
.ginput_complex span select:focus + label,
.ginput_complex span textarea:focus + label,
.ginput_complex span .select2-container--focus ~ label {
  color: #333;
}
.form_sublabel_below .ginput_complex label,
.form_sublabel_below .gfield_time_hour label,
.form_sublabel_below .gfield_time_minute label,
.form_sublabel_below .gfield_date_month label,
.form_sublabel_below .gfield_date_day label,
.form_sublabel_below .gfield_date_year label,
.form_sublabel_below .instruction {
  margin: 4px 0 0;
}
.form_sublabel_below .ginput_complex + .description,
.form_sublabel_below .ginput_complex + .gfield_description,
.form_sublabel_below .ginput_complex + .gsection_description {
  margin-top: 0.3em;
}
.form_sublabel_above .ginput_complex label,
.form_sublabel_above .gfield_time_hour label,
.form_sublabel_above .gfield_time_minute label,
.form_sublabel_above .gfield_date_month label,
.form_sublabel_above .gfield_date_day label,
.form_sublabel_above .gfield_date_year label,
.form_sublabel_above .instruction {
  margin: 0 0 4px;
}
.ginput_complex label,
.gfield_time_hour label,
.gfield_time_minute label,
.gfield_date_month label,
.gfield_date_day label,
.gfield_date_year label,
.gform_wrapper .instruction {
  display: block;
  font-size: 0.75em;
  font-weight: normal;
  text-transform: uppercase;
}
.top_label .gfield_label,
.left_label .gfield_label,
.right_label .gfield_label {
  margin: 10px 0 6px 0;
  display: -moz-inline-stack;
  display: inline-block;
  clear: both;
}
.gsection .gfield_label {
  font-family: "DIN W01 Medium";
  font-size: 1.3em;
}
.hidden_label .gfield_label {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.hidden_label .gfield_label:focus {
  background-color: #F9F9F9;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
  clip: auto !important;
  color: #000;
  display: block;
  font-size: 0.875em;
  font-family: "DIN W01 Medium";
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.gsection {
  border-bottom: 4px double #CCC;
  padding: 2em 0 0.5em 0;
  margin: 0 0 1em;
  clear: both;
}
.gsection:first-of-type {
  padding: 0 0 0.5em 0;
}
@media only screen and (min-width: 768px) {
  .gform_footer.right_label,
  .gform_footer.left_label {
    padding: 16px 0 10px 31%;
  }
  .gform_heading {
    width: auto;
  }
  .field_name_first,
  .field_name_last {
    width: 49%;
  }
  .left_label .gfield_label {
    float: left;
    margin: 0 2% 0 0;
    width: 29%;
  }
  .right_label .gfield_label {
    float: left;
    margin: 0 2% 0 0;
    width: 29%;
    text-align: right;
  }
  .left_label .gfield_description,
  .right_label .gfield_description {
    width: 69%;
  }
  .left_label ul.gfield_checkbox,
  .right_label ul.gfield_checkbox,
  .left_label ul.gfield_radio,
  .right_label ul.gfield_radio {
    margin-left: 32%;
    overflow: hidden;
  }
  .right_label .gfield_description,
  .left_label .gfield_description,
  .left_label .instruction,
  .right_label .instruction {
    margin-left: 31%;
  }
  .field_name_first {
    float: left;
  }
  .field_name_last {
    float: right;
  }
  .ginput_complex .name_last {
    clear: none;
  }
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_prefix,
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_first,
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_middle,
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_last {
    float: left;
  }
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_suffix {
    float: right;
  }
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_prefix,
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_suffix {
    width: 10%;
  }
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_prefix {
    margin-right: 2%;
  }
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_first,
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_middle,
  .ginput_complex.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix .name_last {
    margin-right: 2%;
    width: 24%;
  }
  .ginput_complex.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix .name_first,
  .ginput_complex.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix .name_middle,
  .ginput_complex.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix .name_last {
    width: 32%;
  }
  .ginput_complex.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix .name_first,
  .ginput_complex.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix .name_middle {
    float: left;
    margin-right: 2%;
  }
  .ginput_complex.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix .name_last {
    float: right;
  }
  .ginput_complex.no_prefix.has_first_name.no_middle_name.has_last_name.no_suffix .name_first {
    float: left;
    width: 49%;
  }
  .ginput_complex.no_prefix.has_first_name.no_middle_name.has_last_name.no_suffix .name_last {
    float: right;
    width: 49%;
  }
  .ginput_complex.has_prefix.has_first_name.no_middle_name.has_last_name.no_suffix .name_prefix {
    float: left;
    margin-right: 2%;
    width: 20%;
  }
  .ginput_complex.has_prefix.has_first_name.no_middle_name.has_last_name.no_suffix .name_first {
    float: left;
    margin-right: 2%;
    width: 38%;
  }
  .ginput_complex.has_prefix.has_first_name.no_middle_name.has_last_name.no_suffix .name_last {
    float: right;
    width: 38%;
  }
  .ginput_complex.no_prefix.has_first_name.no_middle_name.has_last_name.has_suffix .name_first,
  .ginput_complex.no_prefix.has_first_name.no_middle_name.has_last_name.has_suffix .name_last {
    float: left;
    margin-right: 2%;
    width: 38%;
  }
  .ginput_complex.no_prefix.has_first_name.no_middle_name.has_last_name.has_suffix .name_suffix {
    float: right;
    width: 20%;
  }
  .ginput_complex .ginput_full {
    clear: both;
  }
  .ginput_complex .ginput_left {
    float: left;
    width: 49%;
  }
  .ginput_complex .ginput_right {
    float: right;
    width: 49%;
  }
}
.select2-container {
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
.select2-container,
.select2-selection--single,
.select2-selection--multiple,
.select2-search__field,
.select2-dropdown,
.select2-selection--multiple .select2-selection__rendered {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select2-container .select2-selection--single {
  cursor: pointer;
  display: block;
  height: 42px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 2.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 2.5em;
}
.select2-container .select2-selection--multiple {
  cursor: pointer;
  display: block;
  min-height: 42px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-container--focus .select2-selection {
  background-color: #FFF;
  outline: 0;
  border: 1px solid #CCC;
}
.select2-dropdown {
  background-color: #FFF;
  border: 1px solid #CCC;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[data-selected] {
  cursor: pointer;
  outline: none;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
  position: relative;
}
.select2-search--dropdown:after {
  font-family: "FontAwesome";
  content: "\f002";
  position: absolute;
  line-height: 32px;
  text-align: center;
  right: 5px;
  font-size: 0.899em;
  display: inline-block;
  width: 2em;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.select2-selection--single {
  background-color: #F9F9F9;
  border: 0;
  border-bottom: 1px solid #CCC;
}
.select2-selection--single .select2-selection__rendered {
  color: #333;
  line-height: 42px;
}
.select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-family: "DIN W01 Medium";
}
.select2-selection--single .select2-selection__placeholder {
  color: #666;
  font-family: "DIN W01 Italic";
  font-style: italic;
}
.select2-selection--single .select2-selection__arrow {
  display: inline-block;
  width: 2em;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.select2-selection--single .select2-selection__arrow b {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.select2-selection--single .select2-selection__arrow b:before {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 160%;
  line-height: 0;
  top: 50%;
  width: 100%;
  position: absolute;
  right: 0%;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
  content: "\f106";
}
.select2-selection--multiple {
  background-color: #F9F9F9;
  border: 0;
  border: 1px solid #CBCBCB;
  cursor: text;
}
.select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-family: "DIN W01 Medium";
  margin-top: 5px;
  margin-right: 10px;
}
.select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-family: "DIN W01 Medium";
  margin-right: 2px;
}
.select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-search--dropdown .select2-search__field {
  border: 1px solid #CCC;
  height: 32px;
  padding-right: 2em;
}
.select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-results__option:empty {
  display: none;
}
.select2-results__option[role=group] {
  padding: 0;
}
.select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-results__option[data-selected=true] {
  background-color: #CCC;
}
.select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-results__option--highlighted[data-selected] {
  background-color: #000;
  color: #FFF;
}
.select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.mfp-bg {
  background: #0b0b0b;
  filter: alpha(opacity=80);
  height: 100%;
  left: 0;
  opacity: 0.8;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2147483640;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color 0.5s ease-in-out;
  -ms-transition: background-color 0.5s ease-in-out;
  -o-transition: background-color 0.5s ease-in-out;
  -transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}
.mfp-wrap {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2147483641;
}
.mfp-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  padding: 0 8px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  display: inline-block;
  margin: 0 auto;
  position: relative;
  text-align: left;
  vertical-align: middle;
  z-index: 1045;
}
.mfp-content figure {
  margin: 0;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  cursor: auto;
  width: 100%;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #cccccc;
  left: 8px;
  margin-top: -0.8em;
  position: absolute;
  right: 8px;
  text-align: center;
  top: 50%;
  width: auto;
  z-index: 1044;
}
.mfp-preloader a {
  color: #cccccc;
}
.mfp-preloader a:hover {
  color: white;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: block;
  outline: none;
  overflow: visible;
  padding: 0;
  z-index: 1046;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  color: white;
  font-family: Arial, Baskerville, monospace;
  font-size: 40px;
  font-style: normal;
  height: 44px;
  line-height: 44px;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  width: 44px;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  padding-right: 6px;
  right: 0;
  text-align: right;
  width: 100%;
}
@media (min-width: 800px) {
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    right: -33px;
  }
}
.mfp-counter {
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  position: absolute;
  right: 0;
  top: 0;
}
.mfp-arrow {
  height: 110px;
  margin: 0;
  margin-top: -55px;
  opacity: 0.65;
  padding: 0;
  position: absolute;
  -webkit-tap-highlight-color: transparent;
  top: 50%;
  width: 90px;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow :after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  border: medium inset transparent;
  content: '';
  display: block;
  height: 0;
  left: 0;
  margin-left: 35px;
  margin-top: 35px;
  position: absolute;
  top: 0;
  width: 0;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-bottom-width: 13px;
  border-top-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-bottom-width: 21px;
  border-top-width: 21px;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  border-right: 27px solid #555;
  margin-left: 25px;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #555;
}
.mfp-iframe-holder {
  padding-bottom: 40px;
  padding-top: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  max-width: 900px;
  width: 100%;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
}
.mfp-iframe-scaler iframe {
  background: black;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
img.mfp-img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: auto;
  line-height: 0;
  margin: 0 auto;
  max-width: 100%;
  padding: 40px 0 40px;
  width: auto;
}
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  background: #444;
  bottom: 40px;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  content: '';
  display: block;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 40px;
  width: auto;
  z-index: -1;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-bottom-bar {
  cursor: auto;
  left: 0;
  margin-top: -36px;
  position: absolute;
  top: 100%;
  width: 100%;
}
.mfp-title {
  color: #f3f3f3;
  line-height: 18px;
  padding-right: 36px;
  text-align: left;
  word-wrap: break-word;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media only screen and (min-width: 1200px) {
  .mfp-fullscreen .mfp-iframe-holder .mfp-content {
    position: relative;
    max-width: none;
    width: 100%;
    height: 100%;
  }
  .mfp-fullscreen .mfp-iframe-holder .mfp-content .mfp-iframe-scaler {
    position: absolute;
    padding-top: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: visible;
  }
}
@media screen and (max-width: 800px) and (orientation: landscape),screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    bottom: 0;
    top: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-figure .mfp-bottom-bar {
    background: rgba(0,0,0,0.6);
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 3px 5px;
    position: fixed;
    top: auto;
  }
  .mfp-img-mobile .mfp-figure .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    background: rgba(0,0,0,0.6);
    height: 35px;
    line-height: 35px;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 35px;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .mfp-ie7 .mfp-img {
    padding: 0;
  }
  .mfp-ie7 .mfp-bottom-bar {
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
    width: 600px;
  }
  .mfp-ie7 .mfp-container {
    padding: 0;
  }
  .mfp-ie7 .mfp-content {
    padding-top: 44px;
  }
  .mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
  }
}
button[data-balloon] {
  overflow: visible;
}
[data-balloon] {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  background: none;
}
[data-balloon]:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  -moz-transition: all 0.18s ease-out 0.18s;
  -ms-transition: all 0.18s ease-out 0.18s;
  -o-transition: all 0.18s ease-out 0.18s;
  -transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  font-size: 14px;
  line-height: 1.35;
  text-transform: none;
  text-align: left;
  background: rgba(19,19,20,0.9);
  color: #fff;
  content: attr(data-balloon);
  padding: 0.675em 1em;
  position: absolute;
  white-space: nowrap;
  z-index: 10;
}
[data-balloon]:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(19,19,20,0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  -moz-transition: all 0.18s ease-out 0.18s;
  -ms-transition: all 0.18s ease-out 0.18s;
  -o-transition: all 0.18s ease-out 0.18s;
  -transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  content: '';
  position: absolute;
  z-index: 10;
}
[data-balloon]:hover:before,
[data-balloon]:hover:after,
[data-balloon][data-balloon-visible]:before,
[data-balloon][data-balloon-visible]:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  pointer-events: auto;
}
[data-balloon].font-awesome:after {
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[data-balloon][data-balloon-break="pre"]:after {
  white-space: pre;
}
[data-balloon][data-balloon-blunt="simple"]:before,
[data-balloon][data-balloon-blunt="simple"]:after {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  -transition: none;
  transition: none;
}
[data-balloon][data-balloon-pos="up"]:after {
  bottom: 100%;
  left: 50%;
  margin-bottom: 11px;
  -moz-transform: translate(-50%,10px);
  -ms-transform: translate(-50%,10px);
  -webkit-transform: translate(-50%,10px);
  transform: translate(-50%,10px);
  -moz-transform-origin: top 50%;
  -ms-transform-origin: top 50%;
  -webkit-transform-origin: top 50%;
  transform-origin: top 50%;
}
[data-balloon][data-balloon-pos="up"]:before {
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  -moz-transform: translate(-50%,10px);
  -ms-transform: translate(-50%,10px);
  -webkit-transform: translate(-50%,10px);
  transform: translate(-50%,10px);
  -moz-transform-origin: top 50%;
  -ms-transform-origin: top 50%;
  -webkit-transform-origin: top 50%;
  transform-origin: top 50%;
}
[data-balloon][data-balloon-pos="up"]:hover:after,
[data-balloon][data-balloon-pos="up"][data-balloon-visible]:after {
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}
[data-balloon][data-balloon-pos="up"]:hover:before,
[data-balloon][data-balloon-pos="up"][data-balloon-visible]:before {
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}
[data-balloon][data-balloon-pos="up-left"]:after {
  bottom: 100%;
  left: 0;
  margin-bottom: 11px;
  -moz-transform: translate(0,10px);
  -ms-transform: translate(0,10px);
  -webkit-transform: translate(0,10px);
  transform: translate(0,10px);
  -moz-transform-origin: top 50%;
  -ms-transform-origin: top 50%;
  -webkit-transform-origin: top 50%;
  transform-origin: top 50%;
}
[data-balloon][data-balloon-pos="up-left"]:before {
  bottom: 100%;
  left: 5px;
  margin-bottom: 5px;
  -moz-transform: translate(0,10px);
  -ms-transform: translate(0,10px);
  -webkit-transform: translate(0,10px);
  transform: translate(0,10px);
  -moz-transform-origin: top 50%;
  -ms-transform-origin: top 50%;
  -webkit-transform-origin: top 50%;
  transform-origin: top 50%;
}
[data-balloon][data-balloon-pos="up-left"]:hover:after,
[data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:after {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos="up-left"]:hover:before,
[data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:before {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos="up-right"]:after {
  bottom: 100%;
  right: 0;
  margin-bottom: 11px;
  -moz-transform: translate(0,10px);
  -ms-transform: translate(0,10px);
  -webkit-transform: translate(0,10px);
  transform: translate(0,10px);
  -moz-transform-origin: top 50%;
  -ms-transform-origin: top 50%;
  -webkit-transform-origin: top 50%;
  transform-origin: top 50%;
}
[data-balloon][data-balloon-pos="up-right"]:before {
  bottom: 100%;
  right: 5px;
  margin-bottom: 5px;
  -moz-transform: translate(0,10px);
  -ms-transform: translate(0,10px);
  -webkit-transform: translate(0,10px);
  transform: translate(0,10px);
  -moz-transform-origin: top 50%;
  -ms-transform-origin: top 50%;
  -webkit-transform-origin: top 50%;
  transform-origin: top 50%;
}
[data-balloon][data-balloon-pos="up-right"]:hover:after,
[data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:after {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos="up-right"]:hover:before,
[data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:before {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos='down']:after {
  left: 50%;
  margin-top: 11px;
  top: 100%;
  -moz-transform: translate(-50%,-10px);
  -ms-transform: translate(-50%,-10px);
  -webkit-transform: translate(-50%,-10px);
  transform: translate(-50%,-10px);
}
[data-balloon][data-balloon-pos='down']:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(19,19,20,0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  left: 50%;
  margin-top: 5px;
  top: 100%;
  -moz-transform: translate(-50%,-10px);
  -ms-transform: translate(-50%,-10px);
  -webkit-transform: translate(-50%,-10px);
  transform: translate(-50%,-10px);
}
[data-balloon][data-balloon-pos='down']:hover:after,
[data-balloon][data-balloon-pos='down'][data-balloon-visible]:after {
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}
[data-balloon][data-balloon-pos='down']:hover:before,
[data-balloon][data-balloon-pos='down'][data-balloon-visible]:before {
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
}
[data-balloon][data-balloon-pos='down-left']:after {
  left: 0;
  margin-top: 11px;
  top: 100%;
  -moz-transform: translate(0,-10px);
  -ms-transform: translate(0,-10px);
  -webkit-transform: translate(0,-10px);
  transform: translate(0,-10px);
}
[data-balloon][data-balloon-pos='down-left']:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(19,19,20,0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  left: 5px;
  margin-top: 5px;
  top: 100%;
  -moz-transform: translate(0,-10px);
  -ms-transform: translate(0,-10px);
  -webkit-transform: translate(0,-10px);
  transform: translate(0,-10px);
}
[data-balloon][data-balloon-pos='down-left']:hover:after,
[data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:after {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos='down-left']:hover:before,
[data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:before {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos='down-right']:after {
  right: 0;
  margin-top: 11px;
  top: 100%;
  -moz-transform: translate(0,-10px);
  -ms-transform: translate(0,-10px);
  -webkit-transform: translate(0,-10px);
  transform: translate(0,-10px);
}
[data-balloon][data-balloon-pos='down-right']:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(19,19,20,0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  right: 5px;
  margin-top: 5px;
  top: 100%;
  -moz-transform: translate(0,-10px);
  -ms-transform: translate(0,-10px);
  -webkit-transform: translate(0,-10px);
  transform: translate(0,-10px);
}
[data-balloon][data-balloon-pos='down-right']:hover:after,
[data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:after {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos='down-right']:hover:before,
[data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:before {
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
}
[data-balloon][data-balloon-pos='left']:after {
  margin-right: 11px;
  right: 100%;
  top: 50%;
  -moz-transform: translate(10px,-50%);
  -ms-transform: translate(10px,-50%);
  -webkit-transform: translate(10px,-50%);
  transform: translate(10px,-50%);
}
[data-balloon][data-balloon-pos='left']:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(19,19,20,0.9)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 6px;
  height: 18px;
  margin-right: 5px;
  right: 100%;
  top: 50%;
  -moz-transform: translate(10px,-50%);
  -ms-transform: translate(10px,-50%);
  -webkit-transform: translate(10px,-50%);
  transform: translate(10px,-50%);
}
[data-balloon][data-balloon-pos='left']:hover:after,
[data-balloon][data-balloon-pos='left'][data-balloon-visible]:after {
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
[data-balloon][data-balloon-pos='left']:hover:before,
[data-balloon][data-balloon-pos='left'][data-balloon-visible]:before {
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
[data-balloon][data-balloon-pos='right']:after {
  left: 100%;
  margin-left: 11px;
  top: 50%;
  -moz-transform: translate(-10px,-50%);
  -ms-transform: translate(-10px,-50%);
  -webkit-transform: translate(-10px,-50%);
  transform: translate(-10px,-50%);
}
[data-balloon][data-balloon-pos='right']:before {
  background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(19,19,20,0.9)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  background-size: 100% auto;
  width: 6px;
  height: 18px;
  left: 100%;
  margin-left: 5px;
  top: 50%;
  -moz-transform: translate(-10px,-50%);
  -ms-transform: translate(-10px,-50%);
  -webkit-transform: translate(-10px,-50%);
  transform: translate(-10px,-50%);
}
[data-balloon][data-balloon-pos='right']:hover:after,
[data-balloon][data-balloon-pos='right'][data-balloon-visible]:after {
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
[data-balloon][data-balloon-pos='right']:hover:before,
[data-balloon][data-balloon-pos='right'][data-balloon-visible]:before {
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
[data-balloon][data-balloon-length='small']:after {
  white-space: normal;
  width: 80px;
}
[data-balloon][data-balloon-length='medium']:after {
  white-space: normal;
  width: 150px;
}
[data-balloon][data-balloon-length='large']:after {
  white-space: normal;
  width: 260px;
}
[data-balloon][data-balloon-length='xlarge']:after {
  white-space: normal;
  width: 380px;
}
@media screen and (max-width: 768px) {
  [data-balloon][data-balloon-length='xlarge']:after {
    white-space: normal;
    width: 90vw;
  }
}
[data-balloon][data-balloon-length='fit']:after {
  white-space: normal;
  width: 100%;
}
.newsletter-form {
  position: relative;
}
.newsletter-form li.gfield {
  margin-bottom: 0;
}
.newsletter-form div.validation_error,
.newsletter-form .gform_ajax_spinner {
  display: none;
}
.newsletter-form .gform_body,
.newsletter-form .gform_footer {
  height: 42px;
}
.newsletter-form input[type="email"] {
  padding-right: 15%;
}
.checkout .checkbox {
  margin-left: 20px;
}
#gform_confirmation_message_27,
#gform_confirmation_message_34 {
  font-size: xx-large;
  padding: 35px 0;
}
.page-template-summer-landing span.select2.select2-container.select2-container--default {
  margin: 0px;
}
.home .homepage-newsletter-form .gf_name_has_2 p {
  margin: 0;
}
.home .homepage-newsletter-form .gf_name_has_2 br {
  display: none;
}
.home .homepage-newsletter-form label {
  font-size: 20px;
  font-family: "DIN W01 Regular";
  color: #000;
  padding: 15px 0px 10px;
  font-weight: 200;
  margin: 0;
}
.home .homepage-newsletter-form input[type="text"],
.home .homepage-newsletter-form input[type="email"] {
  background: #fff;
  border: 1px solid #ccc;
}
@media (min-width: 1140px) {
  .home .homepage-newsletter-form input[type="email"] {
    padding-right: 55px;
  }
}
.home .homepage-newsletter-form .gform_footer.top_label {
  text-align: center;
}
.category-outlines .wp-block-image img {
  max-height: 50px !important;
  width: auto;
}
@media screen and (min-width: 768px) {
  .category-outlines .wp-block-image img {
    max-height: 65px !important;
  }
}
.category-outlines .wp-block-image figcaption {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .category-outlines .kt-row-column-wrap {
    margin-left: 0px !important;
  }
}
.kt-blocks-info-box-link-wrap {
  cursor: pointer;
}
.holiday-newsletter-form ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: flex-end;
}
@media screen and (min-width: 768px) {
  .holiday-newsletter-form ul {
    justify-content: space-between;
  }
}
.holiday-newsletter-form br {
  display: none;
}
.holiday-newsletter-form .gform_footer {
  margin: 0px;
}
.holiday-newsletter-form .gform_button[value="Sign Up"] {
  margin: 20px auto;
  display: block;
  width: calc((33% - 15px));
  padding: 8px;
  font-family: 'Noe Display';
  text-transform: none;
  font-weight: 400;
  background: #3a3835;
  border: solid 1px #3a3835;
}
.holiday-newsletter-form .gform_button[value="Sign Up"]:hover {
  background: #fff;
  color: #000;
  border: solid 1px #eee;
  outline: 0;
}
.holiday-newsletter-form label {
  font-size: 16px;
  font-family: "DIN W01 Regular";
  color: #000 !important;
  padding: 15px 0px 10px;
  font-weight: 200;
  margin: 0;
  text-transform: none;
}
.holiday-newsletter-form .name-fields span {
  width: 100% !important;
}
.holiday-newsletter-form .name-fields,
.holiday-newsletter-form .name-fields .ginput_complex {
  display: contents !important;
}
.holiday-newsletter-form .name-fields p,
.holiday-newsletter-form .email-field {
  width: calc((100% - 30px));
  margin-bottom: 0px !important;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .holiday-newsletter-form .name-fields p,
  .holiday-newsletter-form .email-field {
    width: calc((33% - 15px));
    margin: auto;
  }
}
.page-template-page-holiday-home #breadcrumbs {
  display: none;
}
.page-template-page-holiday-home .holiday-home a:hover,
.page-template-page-holiday-home .holiday-home a:focus {
  text-decoration: none;
}
.page-template-page-holiday-home .holiday-home .holiday-home-container {
  margin: 0 auto;
}
@media only screen and (min-width: 1245px) {
  .page-template-page-holiday-home .holiday-home .holiday-home-container {
    width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-template-page-holiday-home .holiday-home .holiday-home-container {
    width: 1450px;
  }
}
@media only screen and (min-width: 1920px) {
  .page-template-page-holiday-home .holiday-home .holiday-home-container {
    width: 1750px;
  }
}
.page-template-page-holiday-home .holiday-home .promo {
  background-color: #3e2b2f;
  text-align: center;
  padding: 2rem 3rem;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .holiday-home .promo {
    padding: 5rem 0;
  }
}
.page-template-page-holiday-home .holiday-home .promo h1 {
  text-transform: unset;
  color: #fff;
  font-family: "AireBoldStd";
  margin: 1rem 1rem 0 !important;
  font-size: 2.2rem;
}
@media screen and (min-width: 780px) {
  .page-template-page-holiday-home .holiday-home .promo h1 {
    font-size: 5.5rem;
  }
}
.page-template-page-holiday-home .holiday-home p {
  color: #fff;
  font-size: 1.5rem;
}
.page-template-page-holiday-home .holiday-home .owl-dots {
  display: none;
}
.page-template-page-holiday-home .holiday-home .text {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
}
.page-template-page-holiday-home .holiday-home .text h1 {
  font-family: "AireBoldStd";
  text-transform: none;
  color: #fff;
  font-size: 44px;
  padding: 0;
  text-align: center;
  margin: 20px auto;
  max-width: 800px;
}
.page-template-page-holiday-home .holiday-home .text h1 span {
  font-family: "DIN W01 Regular";
  font-size: 14px;
}
.page-template-page-holiday-home .holiday-home .tagline {
  background-color: #3e2b2f;
}
.page-template-page-holiday-home .holiday-home .tagline a:hover,
.page-template-page-holiday-home .holiday-home .tagline a:focus {
  text-decoration: none;
}
.page-template-page-holiday-home .holiday-home .tagline h1 {
  margin-top: 0 !important;
  font-family: "AireBoldStd";
  color: #fff;
  text-align: center;
  line-height: 4rem;
  padding: 25px 25px 0;
  font-size: 2rem;
  line-height: 2.5rem;
  text-transform: unset;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .holiday-home .tagline h1 {
    padding-bottom: 5px;
    padding-top: 50px;
    font-size: 3.5rem;
  }
}
.page-template-page-holiday-home .holiday-home .tagline p {
  text-align: center;
  padding-bottom: 30px;
  font-size: 1.25rem;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .holiday-home .tagline p {
    padding-bottom: 50px;
    font-size: 1.5rem;
  }
}
.page-template-page-holiday-home .holiday-home .holiday-log {
  margin-bottom: 50px;
  text-align: center;
  margin-top: -15px;
}
.page-template-page-holiday-home .holiday-home .holiday-log img {
  margin: 0 auto;
  width: 175px;
}
.page-template-page-holiday-home .holiday-home .holiday-log p {
  color: #3c3835;
  font-size: 2rem;
  text-align: center;
}
.page-template-page-holiday-home .holiday-home .holiday-items h4 {
  text-align: center;
  font-family: "AireBoldStd";
  font-size: 2.1rem;
  padding-top: 2.5rem;
}
.page-template-page-holiday-home .holiday-home .holiday-items .row {
  margin-bottom: 10px;
}
.page-template-page-holiday-home .holiday-home .holiday-items .row > div {
  padding-right: 5px;
  padding-left: 5px;
}
@media screen and (max-width: 1050px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .col-sm-5,
  .page-template-page-holiday-home .holiday-home .holiday-items .col-sm-7 {
    width: 100% !important;
  }
  .page-template-page-holiday-home .holiday-home .holiday-items .col-sm-5:nth-child(1),
  .page-template-page-holiday-home .holiday-home .holiday-items .col-sm-7:nth-child(1) {
    margin-bottom: 10px;
  }
}
.page-template-page-holiday-home .holiday-home .holiday-items .item {
  min-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: .5s;
}
@media screen and (max-width: 1049px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .item.house,
  .page-template-page-holiday-home .holiday-home .holiday-items .item.table {
    background-position: right;
  }
}
@media screen and (min-width: 540px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .item {
    min-height: 460px;
  }
}
@media screen and (min-width: 720px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .item {
    min-height: 600px;
  }
}
@media screen and (min-width: 780px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .item {
    min-height: 700px;
  }
}
@media screen and (min-width: 1050px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .item {
    min-height: 350px;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .item {
    min-height: 425px;
  }
}
@media only screen and (min-width: 1920px) {
  .page-template-page-holiday-home .holiday-home .holiday-items .item {
    min-height: 520px;
  }
}
.page-template-page-holiday-home .holiday-home .holiday-items .item:hover {
  opacity: .75;
}
.page-template-page-holiday-home .holiday-home .holiday-items .pinkhouse-logo {
  position: absolute;
  z-index: 999;
  top: 30px;
  left: 30px;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation {
  margin-top: 45px;
  text-align: center;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation h1 {
  font-family: 'DIN W01 Regular';
  font-weight: bold;
  text-transform: none;
  color: #000;
  font-size: 20px;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation ul {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin: 0px;
  height: fit-content;
  min-height: 75px;
  padding: 15px 0;
  margin: 0 0 0 auto;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation ul li {
  height: fit-content;
  min-height: 35px;
  padding: 10px 50px;
  border-right: solid 1px #eee;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation ul li:last-child {
  border-right: none !important;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation ul li a {
  text-decoration: underline;
  font-weight: bold;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .holiday-home .bottom-navigation.desktop {
    display: block;
  }
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .holiday-home .bottom-navigation.mobile {
    display: none;
  }
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .bottom-category-toggle {
  border-top: solid 1px #eee;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .bottom-category-toggle h1 {
  padding: 20px;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .bottom-category-toggle img {
  width: 20px;
  height: 13px;
  padding: 0;
  margin: 35px 10px;
  transition: .5s;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .bottom-category-toggle img.active {
  transform: rotate(180deg);
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .nav-list {
  display: none;
  overflow: hidden;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .nav-list li {
  padding: 0px;
  border-right: none;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .nav-list.active {
  display: block;
  height: auto;
  padding: 0px;
  transition: .5s;
  background: #fff;
  z-index: 112;
  width: 100%;
  overflow: hidden;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .nav-list.active li {
  padding: 15px 30px;
  background: #F7F7F7;
  text-align: left;
  font-size: 16px;
}
.page-template-page-holiday-home .holiday-home .bottom-navigation.mobile .nav-list.active li a {
  font-weight: bold;
}
.page-template-page-holiday-home .holiday-home .gift-ideas {
  text-align: center;
  font-family: "Noe Display";
  padding: 4rem 0 0;
}
.page-template-page-holiday-home .holiday-home .gift-ideas h4 {
  color: #a5505b;
  font-size: 2.4rem;
}
.page-template-page-holiday-home .holiday-home .gift-ideas .snowflake {
  display: inline-block;
  text-indent: -9999px;
  width: 12px;
  height: 12px;
  background: url(https://www.thosmoser.com/wp-content/uploads/flake.svg);
  background-size: 12px 12px;
  margin-left: 7px;
  margin-right: 4px;
}
.page-template-page-holiday-home .holiday-home .gift-ideas .snowflake.top {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}
.page-template-page-holiday-home .holiday-home .gift-ideas ul {
  padding: 0;
  line-height: 4rem;
  font-size: 2.35rem;
  line-height: 4.5rem;
}
.page-template-page-holiday-home .holiday-home .gift-ideas ul li {
  display: inline;
  color: #b4a25f;
}
.page-template-page-holiday-home .holiday-home .gift-ideas ul li a {
  color: #b4a25f;
  transition: .25s;
}
.page-template-page-holiday-home .holiday-home .gift-ideas ul li a:hover {
  color: #3e2b2f;
  text-decoration: none;
}
.page-template-page-holiday-home .desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .desktop {
    display: block;
  }
}
.page-template-page-holiday-home .mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-home .mobile {
    display: none;
  }
}
.page-template-page-holiday-gifts #breadcrumbs {
  display: none;
}
.page-template-page-holiday-gifts .woocommerce ul.products li.product .woocommerce-loop-category__title:after {
  display: none !important;
}
.page-template-page-holiday-gifts .woocommerce ul.products li.product .woocommerce-loop-category__title {
  font-weight: 700;
  color: #3c3835;
}
.page-template-page-holiday-gifts .woocommerce ul.products {
  margin-left: 15px;
  margin-right: 15px;
}
@media screen and (min-width: 780px) {
  .page-template-page-holiday-gifts .woocommerce ul.products {
    margin-left: -6px;
    margin-right: 23px;
  }
}
@media only screen and (min-width: 1245px) {
  .page-template-page-holiday-gifts .woocommerce ul.products {
    margin-left: -6px;
    margin-right: -18px;
  }
}
.page-template-page-holiday-gifts .holiday-gifts .promo-banner {
  text-align: center;
  padding: 1rem 1rem 0;
}
.page-template-page-holiday-gifts .holiday-gifts .promo-banner h1 {
  text-transform: unset;
  color: #fff;
  font-family: "AireBoldStd";
  margin: 1rem;
  color: #3c3835;
}
.page-template-page-holiday-gifts .holiday-gifts .promo-banner h1 span {
  display: block;
  font-size: 6rem;
  color: #a5505b;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-gifts .holiday-gifts .promo-banner {
    background-color: #3e2b2f;
    padding: 1rem 0;
  }
  .page-template-page-holiday-gifts .holiday-gifts .promo-banner h1 {
    color: #fff;
  }
  .page-template-page-holiday-gifts .holiday-gifts .promo-banner h1 span {
    display: inline-block;
    font-size: unset;
    color: unset;
  }
}
.page-template-page-holiday-gifts .holiday-gifts-container {
  margin: 0 auto;
}
@media only screen and (min-width: 1245px) {
  .page-template-page-holiday-gifts .holiday-gifts-container {
    width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-template-page-holiday-gifts .holiday-gifts-container {
    width: 1450px;
  }
}
@media only screen and (min-width: 1920px) {
  .page-template-page-holiday-gifts .holiday-gifts-container {
    width: 1750px;
  }
}
.page-template-page-holiday-gifts .woocommerce ul.products li.product-category.product {
  position: relative;
  padding-top: 0;
  text-align: center;
  width: 100% !important;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
}
@media screen and (min-width: 768px) {
  .page-template-page-holiday-gifts .woocommerce ul.products li.product-category.product {
    width: 50% !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-gifts .woocommerce ul.products li.product-category.product {
    width: calc((33% - 10px)) !important;
  }
}
.page-template-page-holiday-gifts .woocommerce ul.products li.product-category.product a {
  display: flex;
}
.page-template-page-holiday-gifts .woocommerce ul.products li.product-category.product h2 {
  font-family: "DIN W01 Regular";
  font-weight: 100;
  position: absolute;
  bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  text-transform: unset;
}
.page-template-page-holiday-gifts .woocommerce ul.products li.product-category.product h2.white {
  color: #fff !important;
}
.page-template-page-holiday-gifts .product-squares {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  margin: 20px 20px 7px;
  flex-direction: column-reverse;
}
@media screen and (min-width: 780px) {
  .page-template-page-holiday-gifts .product-squares {
    flex-direction: unset;
    flex-wrap: nowrap;
    margin: 20px auto 5px;
    height: 100%;
  }
}
.page-template-page-holiday-gifts .misc {
  width: 100%;
  background-color: #fbfbfb;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-template-page-holiday-gifts .misc.message {
  padding: 6rem;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-gifts .misc.message {
    width: calc((40% - 5px));
  }
}
.page-template-page-holiday-gifts .misc.message p {
  margin-bottom: 2rem;
}
.page-template-page-holiday-gifts .misc.image {
  background-position: center;
  background-size: cover;
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-gifts .misc.image {
    display: flex;
    width: calc((60% - 5px));
  }
}
.page-template-page-holiday-gifts .misc img.logo {
  width: 160px;
  margin: 0 auto 4rem;
}
.page-template-page-holiday-gifts .gift-card-message {
  text-align: center;
}
.page-template-page-holiday-gifts .gift-card-message h2 {
  text-transform: unset;
}
.page-template-page-holiday-gifts .gift-card-message p {
  padding: 2rem 3rem;
}
.page-template-page-holiday-gifts .gift-card-message img {
  margin-top: 2rem;
}
.page-template-page-holiday-gifts .desktop {
  display: none !important;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-gifts .desktop {
    display: block !important;
  }
}
.page-template-page-holiday-gifts .mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-gifts .mobile {
    display: none;
  }
}
.page-template-page-holiday-gifts .fa-gift {
  font-size: 2.5rem;
}
.page-template-page-holiday-promo .holiday-sale-container {
  margin: 0 auto;
}
@media only screen and (min-width: 1245px) {
  .page-template-page-holiday-promo .holiday-sale-container {
    width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-template-page-holiday-promo .holiday-sale-container {
    width: 1450px;
  }
}
@media only screen and (min-width: 1920px) {
  .page-template-page-holiday-promo .holiday-sale-container {
    width: 1750px;
  }
}
.page-template-page-holiday-promo #breadcrumbs {
  display: none;
}
.page-template-page-holiday-promo .holiday-sale .promo-banner {
  background-color: #3e2b2f;
  text-align: center;
  padding: 1rem 1rem;
}
.page-template-page-holiday-promo .holiday-sale .promo-banner h1,
.page-template-page-holiday-promo .holiday-sale .promo-banner h6 {
  color: #fff;
}
.page-template-page-holiday-promo .holiday-sale .promo-banner h1 {
  text-transform: unset;
  font-family: "AireBoldStd";
  font-size: 3rem;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .promo-banner h1 {
    font-size: 6rem;
  }
}
.page-template-page-holiday-promo .holiday-sale .promo-banner h6 {
  font-size: 2.2rem;
  margin-top: 5rem;
  text-transform: uppercase;
}
.page-template-page-holiday-promo .holiday-sale .intro {
  padding: 1.8rem 0;
  text-align: center;
}
.page-template-page-holiday-promo .holiday-sale .intro h1 {
  font-size: 9rem;
  color: #a5505b;
  font-family: "AireBoldStd";
  margin-top: 2rem !important;
  margin-bottom: 0;
}
.page-template-page-holiday-promo .holiday-sale .intro h2 {
  font-size: 4rem;
  text-transform: unset;
  font-family: "AireBoldStd";
}
.page-template-page-holiday-promo .holiday-sale .intro h3 {
  color: #a5505b;
  font-family: "AireBoldStd";
  text-transform: unset;
  font-size: 3.5rem;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .intro {
    padding: 5rem 0;
  }
}
.page-template-page-holiday-promo .holiday-sale .desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .desktop {
    display: block;
  }
}
.page-template-page-holiday-promo .holiday-sale .mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .mobile {
    display: none;
  }
}
.page-template-page-holiday-promo .holiday-sale__button {
  width: 100%;
  max-width: calc((100vw - 40px));
  display: block;
  text-align: center;
  margin: 20px auto 30px auto;
  text-decoration: underline;
  padding: 10px 0;
  color: #000;
  font-weight: 100;
  cursor: pointer;
  font-size: 20px;
}
.page-template-page-holiday-promo .holiday-sale__button.end {
  background-color: #3e2b2f;
  color: #fff !important;
  text-decoration: none;
  font-size: 2.5rem !important;
}
@media screen and (min-width: 1290px) {
  .page-template-page-holiday-promo .holiday-sale__button {
    font-size: 32px;
  }
}
.page-template-page-holiday-promo .holiday-sale__button:hover {
  color: #334154;
  text-decoration: underline;
}
.page-template-page-holiday-promo .holiday-sale__button.catalog {
  margin-top: 75px;
  width: 20%;
}
.page-template-page-holiday-promo .holiday-sale__top-navigation {
  display: block;
}
@media screen and (min-width: 1290px) {
  .page-template-page-holiday-promo .holiday-sale__top-navigation {
    display: flex;
    flex-direction: row;
    padding: 15px 0px;
    max-width: 90%;
    margin: auto;
  }
}
.page-template-page-holiday-promo .holiday-sale__top-navigation .discount-img {
  display: block;
  margin: 15px auto;
  width: 70%;
}
@media screen and (min-width: 780px) {
  .page-template-page-holiday-promo .holiday-sale__top-navigation .discount-img {
    width: 50%;
  }
}
@media screen and (min-width: 1390px) {
  .page-template-page-holiday-promo .holiday-sale__top-navigation .discount-img {
    width: 25%;
  }
}
.page-template-page-holiday-promo .holiday-sale__top-navigation .discount-img img {
  margin: 0 auto;
}
.page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list {
  display: block;
  padding: 0px;
  height: 0px;
  transition: .5s;
  position: absolute;
  background: #fff;
  z-index: 112;
  width: 100%;
  overflow: hidden;
}
.page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list li {
  padding: 15px 30px;
  border-bottom: solid 1px #eee;
}
.page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list li a {
  font-weight: bold;
}
@media screen and (min-width: 1290px) {
  .page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list {
    display: flex;
    justify-content: flex-end;
    height: fit-content;
    min-height: 50px;
    padding: 15px 0;
    margin: 25px 0 0 auto;
    position: static;
    background: none;
  }
  .page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list li {
    height: fit-content;
    min-height: 45px;
    padding: 15px 50px;
    border-right: solid 1px #eee;
    border-bottom: none;
  }
  .page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list li:last-child {
    border-right: none !important;
  }
  .page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list li a {
    text-decoration: none;
    font-weight: bold;
  }
}
.page-template-page-holiday-promo .holiday-sale__top-navigation .holiday-sale__nav-list.active {
  height: auto;
}
.page-template-page-holiday-promo .holiday-sale__masthead-container {
  position: relative;
}
.page-template-page-holiday-promo .holiday-sale__top-image {
  width: 100vw;
}
.page-template-page-holiday-promo .holiday-sale__top-image--2 {
  position: absolute;
  top: 0px;
  -webkit-animation: fade-image 10s infinite;
  animation: fade-image 10s infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: linear;
}
.page-template-page-holiday-promo .holiday-sale__intro {
  padding: 30px 0;
  display: block;
  margin: auto;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__intro {
    margin: 75px auto;
    display: flex;
    justify-content: space-between;
    max-width: 87%;
    padding: 0;
  }
}
.page-template-page-holiday-promo .holiday-sale__text {
  width: 100%;
  padding: 0 20px;
  text-align: left;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__text {
    padding: 0 0;
    width: 65%;
    margin: auto;
    text-align: center;
  }
}
.page-template-page-holiday-promo .holiday-sale__text h1 {
  font-family: Noe Display;
  font-weight: bold;
  text-transform: none;
  color: #000;
  font-size: 36px;
  padding: 0;
  text-align: left;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__text h1 {
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
  }
}
.page-template-page-holiday-promo .holiday-sale__text p {
  font-family: 'DIN W01 Medium';
  font-size: 18px;
  color: #666;
  line-height: 1.556;
  max-width: 630px;
  margin: 0 auto;
}
.page-template-page-holiday-promo .holiday-sale__text .button {
  display: block;
  text-align: center;
  margin: 20px auto 0 0;
  padding: 10px 0;
  font-family: 'Noe Display';
  background: #334154;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 24px;
  width: 68%;
}
@media screen and (min-width: 480px) {
  .page-template-page-holiday-promo .holiday-sale__text .button {
    width: 40%;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__text .button {
    margin: 40px auto 0 auto;
  }
}
.page-template-page-holiday-promo .holiday-sale .section-toggle {
  display: flex !important;
  flex-direction: row;
  padding: 26px 15px;
  justify-content: space-between;
  border-top: solid 1px #ccc;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .section-toggle {
    display: none !important;
  }
}
.page-template-page-holiday-promo .holiday-sale .section-toggle img {
  height: 15px;
  width: 25px;
  margin: 13px 0;
  transition: .5s;
}
.page-template-page-holiday-promo .holiday-sale .section-toggle p {
  font-size: 25px;
  font-family: 'DIN W01 Medium';
  text-decoration: underline;
}
.page-template-page-holiday-promo .holiday-sale .section-toggle.active img {
  transform: rotate(180deg);
}
.page-template-page-holiday-promo .holiday-sale .holiday-sale__wrapper {
  max-height: 0px;
  overflow: hidden;
  transition: 1.5s cubic-bezier(1,0,0.11,0.99);
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .holiday-sale__wrapper {
    max-height: none;
    overflow: visible;
  }
}
.page-template-page-holiday-promo .holiday-sale .holiday-sale__wrapper.active {
  max-height: 10000px;
  transition: 1.5s cubic-bezier(1,0,0.11,0.99);
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .holiday-sale__wrapper.active {
    margin-bottom: 25px !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__sale-section {
  display: block;
  margin: 0 auto !important;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__sale-section {
    margin: 0 auto 30px auto !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__sale-section .section-link {
  font-family: 'DIN W01 Medium';
  font-size: 34px;
  margin: 20px 0;
}
.page-template-page-holiday-promo .holiday-sale__image-title {
  width: 100%;
  position: relative;
}
.page-template-page-holiday-promo .holiday-sale__image-title img {
  width: 100%;
  transition: .5s;
}
.page-template-page-holiday-promo .holiday-sale__image-title img:hover {
  opacity: .75;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text {
  position: absolute;
  bottom: 50%;
  width: 100%;
  text-align: center;
  font-family: 'Noe Display';
  font-weight: bold;
  text-transform: none;
  color: #000;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text .quote-title {
  text-transform: none;
  font-weight: bold;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text .quote-symbol {
  font-family: 'Noe Display';
  font-size: 91px;
  transform: rotate(180deg);
  margin: 0;
  line-height: 34px;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text .quote-text {
  font-family: 'DIN W01 Medium';
  color: #666;
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text .quote-name {
  color: #717171;
  font-size: 25px;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text--perch {
  width: 312px;
  right: 21%;
  top: 70px;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text--perch h1 {
  font-size: 48px;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text--minimus {
  top: 100px;
  left: 100px;
  width: 65% !important;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text--minimus h1 {
  text-align: left;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text--living {
  bottom: -10px !important;
}
.page-template-page-holiday-promo .holiday-sale__image-title .overlay-text--living h1 {
  font-size: 48px;
}
.page-template-page-holiday-promo .holiday-sale__product-squares {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares {
    flex-wrap: nowrap;
    height: 100%;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares .quote {
  text-align: center;
  margin: 0 0 20px 0;
  position: relative;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares .quote {
    width: calc((33% - 10px)) !important;
    background: url(/wp-content/uploads/quote-bg.png);
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1600px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares .quote {
    padding: 5%;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares .quote .quote-symbol {
  font-family: 'Noe Display';
  font-size: 100px;
  margin: 30px 0 0 0 !important;
  transform: rotate(180deg);
  height: 40px;
  line-height: 40px;
}
.page-template-page-holiday-promo .holiday-sale__product-squares .quote .quote-text {
  font-size: 18px;
  line-height: 28px;
  font-family: 'DIN W01 Medium';
  color: #666;
}
.page-template-page-holiday-promo .holiday-sale__product-squares .quote .quote-name {
  color: #717171;
  font-size: 25px;
  font-family: 'Noe Display';
  font-weight: bold;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares .quote .holiday-sale__button {
    position: absolute;
    bottom: 55px;
    width: 50%;
    left: 25%;
    right: 25%;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares .product {
  width: calc((33% - 5px)) !important;
}
.page-template-page-holiday-promo .holiday-sale__product-squares .misc {
  width: 100%;
  background-color: #fbfbfb;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares .misc {
    width: 50%;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares .misc.message {
  padding: 6rem;
  text-align: center;
  font-size: 1.8rem;
  vertical-align: middle;
  display: flex;
}
.page-template-page-holiday-promo .holiday-sale__product-squares .misc.message p {
  margin-bottom: 2rem;
}
.page-template-page-holiday-promo .holiday-sale__product-squares .misc img.logo {
  display: flex;
  width: 160px;
  margin: 0 auto 4rem;
}
.page-template-page-holiday-promo .holiday-sale__product-squares.lounge-mobile {
  display: flex;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares.lounge-mobile {
    display: none;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares.lounge-desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares.lounge-desktop {
    display: flex;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares--four .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares--four .product {
    width: calc((50% - 20px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares--four .product {
    width: calc((25% - 12px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares--four .product ul {
  width: 100%;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--four #lounge-double-product {
  width: calc((50% - 20px)) !important;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--four #lounge-double-product .double-product-contianer {
  display: flex;
  justify-content: space-between;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--four #lounge-double-product .double-product-contianer .half {
  width: calc((50% - 10px)) !important;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five .product {
  width: calc((50% - 10px)) !important;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares--five .product {
    width: calc((20% - 17px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five .product ul {
  width: 100%;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five.bed {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares--five.bed {
    display: flex;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five.bed .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares--five.bed .product {
    width: calc((50% - 10px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares--five.bed .product {
    width: calc((20% - 4px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five.bed .product ul {
  width: 100%;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five.bed .product p {
  font-size: 15px;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five #bed-double-product {
  width: 40% !important;
  padding-right: 20px;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five #bed-double-product .double-product-contianer {
  display: flex;
  justify-content: space-between;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five #bed-double-product .double-product-contianer .half {
  width: calc((50% - 10px)) !important;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five.bedroom-mobile {
  display: flex;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-squares--five.bedroom-mobile {
    display: none;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five.bedroom-mobile .product.no-image {
  width: 100% !important;
}
.page-template-page-holiday-promo .holiday-sale__product-squares--five.bedroom-mobile .product.no-image .strikethrough {
  display: block;
}
.page-template-page-holiday-promo .holiday-sale__product-row {
  display: flex;
  justify-content: space-between;
  width: calc((100% - 40px));
  margin: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-row {
    flex-wrap: nowrap;
    margin: 20px auto;
    width: 100%;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-row .holiday-sale__button {
  width: 100%;
  height: 53px;
  margin: 50px auto;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-row .holiday-sale__button {
    width: 60%;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-row--two .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--two .product {
    width: calc((50% - 30px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--two .product {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-row--two .button-container {
  width: 100% !important;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--two .button-container {
    width: calc((50% - 30px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-row--four .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--four .product {
    width: calc((50% - 30px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--four .product {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-row--four .button-container {
  width: 100% !important;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--four .button-container {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-row--five .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--five .product {
    width: calc((50% - 30px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__product-row--five .product {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-page-holiday-promo .holiday-sale__product-row--five .product ul {
  width: 100%;
}
.page-template-page-holiday-promo .holiday-sale__product-row .product ul {
  width: 100%;
}
.page-template-page-holiday-promo .holiday-sale .product {
  text-align: center;
}
.page-template-page-holiday-promo .holiday-sale .product img {
  width: 100%;
  transition: .5s;
}
.page-template-page-holiday-promo .holiday-sale .product img:hover {
  opacity: .75;
}
.page-template-page-holiday-promo .holiday-sale .product .title {
  font-weight: bold;
  text-align: left !important;
  width: 100%;
  display: block;
  padding: 10px 0;
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  .page-template-page-holiday-promo .holiday-sale .product .title {
    font-size: 18px;
  }
}
.page-template-page-holiday-promo .holiday-sale .product p {
  padding: 0px;
  text-align: left;
  font-size: 14px;
  min-width: 54px;
}
.page-template-page-holiday-promo .holiday-sale .product p.strikethrough {
  text-decoration: line-through;
  margin: 0 22px 0 0;
  line-height: 30px;
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .product p.strikethrough {
    display: block;
  }
}
.page-template-page-holiday-promo .holiday-sale .product p.sale-price {
  line-height: 30px;
}
.page-template-page-holiday-promo .holiday-sale .product ul {
  width: 100%;
  padding: 0px;
  text-align: left;
  margin: 10px 0;
}
.page-template-page-holiday-promo .holiday-sale .product ul li {
  display: flex;
}
.page-template-page-holiday-promo .holiday-sale .product ul li img {
  width: 15px;
  height: 15px;
  margin: 8px 0;
  display: inline;
}
.page-template-page-holiday-promo .holiday-sale .product ul li span {
  margin: 0 0 0 10px;
}
.page-template-page-holiday-promo .holiday-sale .product ul li.pictured {
  font-weight: bold;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation {
  text-align: center;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation h1 {
  font-family: 'DIN W01 Regular';
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  font-size: 20px;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation ul {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin: 0px;
  height: fit-content;
  min-height: 75px;
  padding: 15px 0;
  margin: 0 0 0 auto;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation ul li {
  height: fit-content;
  min-height: 35px;
  padding: 10px 50px;
  border-right: solid 1px #eee;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation ul li:last-child {
  border-right: none !important;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation ul li a {
  font-weight: bold;
  text-decoration: underline;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__bottom-navigation.desktop {
    display: block;
  }
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile {
    display: none;
  }
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .bottom-category-toggle {
  border-top: solid 1px #eee;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .bottom-category-toggle h1 {
  padding: 20px;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .bottom-category-toggle img {
  width: 20px;
  height: 13px;
  padding: 0;
  margin: 35px 10px;
  transition: .5s;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .bottom-category-toggle img.active {
  transform: rotate(180deg);
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .nav-list {
  display: none;
  overflow: hidden;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .nav-list li {
  padding: 0px;
  border-right: none;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .nav-list.active {
  display: block;
  height: auto;
  padding: 0px;
  transition: .5s;
  background: #fff;
  z-index: 112;
  width: 100%;
  overflow: hidden;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .nav-list.active li {
  padding: 15px 30px;
  background: #F7F7F7;
  text-align: left;
  font-size: 16px;
}
.page-template-page-holiday-promo .holiday-sale__bottom-navigation.mobile .nav-list.active li a {
  font-weight: bold;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product {
  position: absolute;
  bottom: 32px;
  left: 65px;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product h1 {
  font-family: 'Noe Display';
  text-transform: none;
  font-weight: bold;
  color: #000;
  font-size: 48px;
  line-height: 25px;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product {
  text-align: center;
  width: 100% !important;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product img {
  width: 100%;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product .title {
  font-weight: bold;
  text-align: left !important;
  width: 100%;
  display: block;
  padding: 10px 0;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product p {
  padding: 0px;
  text-align: left;
  font-size: 14px;
  min-width: 43px;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__overlay-product .product p {
    font-size: 15px;
  }
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product p.strikethrough {
  text-decoration: line-through;
  margin: 0 20px 0 0;
  line-height: 30px;
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale__overlay-product .product p.strikethrough {
    display: block;
  }
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product p.sale-price {
  line-height: 30px;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product ul {
  width: 100%;
  padding: 0px;
  text-align: left;
  margin: 10px 0;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product ul li img {
  width: 15px;
  height: 15px;
  margin: 8px 0;
  display: inline;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product ul li span {
  margin: 0 0 0 10px;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product .product ul li.pictured {
  font-weight: bold;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product--lounge {
  top: 100px;
  left: 100px;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product--bedroom {
  color: #fff;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product--bedroom h1 {
  color: #fff;
  margin-bottom: .67em;
}
.page-template-page-holiday-promo .holiday-sale__overlay-product--bedroom .product a {
  color: #fff;
}
.page-template-page-holiday-promo .holiday-sale .cherry,
.page-template-page-holiday-promo .holiday-sale .walnut {
  position: relative;
  margin: 0px 20px 0 0;
  min-width: 78px !important;
}
.page-template-page-holiday-promo .holiday-sale .cherry:before,
.page-template-page-holiday-promo .holiday-sale .walnut:before {
  content: '';
  opacity: 0;
  transition: .5s;
  z-index: 110;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .walnut:hover:before {
    opacity: 1;
    height: 100px;
    width: 100px;
    background: url(/wp-content/uploads/moser_wood_walnut_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -110px;
    top: -22px;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .holiday-sale .cherry:hover:before {
    opacity: 1;
    height: 100px;
    width: 100px;
    background: url(/wp-content/uploads/moser_wood_cherry_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -110px;
    top: -22px;
  }
}
.page-template-page-holiday-promo .holiday-sale__container {
  margin: 0 auto;
}
@media only screen and (min-width: 1245px) {
  .page-template-page-holiday-promo .holiday-sale__container {
    width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-template-page-holiday-promo .holiday-sale__container {
    width: 1450px;
  }
}
@media only screen and (min-width: 1920px) {
  .page-template-page-holiday-promo .holiday-sale__container {
    width: 1750px;
  }
}
.page-template-page-holiday-promo #content #main_content,
.page-template-page-holiday-promo #content #main_content.has-sidebar {
  padding: 0 !important;
}
.page-template-page-holiday-promo .desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .desktop {
    display: block;
  }
}
.page-template-page-holiday-promo .mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-page-holiday-promo .mobile {
    display: none;
  }
}
@-webkit-keyframes fade-image {
  0%,
  100% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
}
@keyframes fade-image {
  0%,
  100% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
}
.bottom-navigation h1 {
  font-family: 'DIN W01 Regular';
}
.home article.status-publish.hentry,
.home .content-one-column-wide .wp-block-kadence-rowlayout.alignnone:first-child {
  margin-top: 0;
}
body {
  -webkit-font-smoothing: antialiased;
}
.hs-image-widget {
  max-width: 100%;
}
@media only screen and (max-width: 479px) {
  .home #content #main_content {
    padding: 0 0 0 0 !important;
  }
}
.home .product_slider_container .owl-nav {
  margin-top: 50px;
}
@media (min-width: 1000px) {
  .home .product_slider_container .owl-nav .owl-prev {
    margin-left: 30px;
  }
}
@media (min-width: 1000px) {
  .home .product_slider_container .owl-nav .owl-next {
    margin-right: 30px;
  }
}
.custom-quote {
  background: #9ba4ae;
  padding: 30px;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
}
.custom-quote h4 {
  font-family: 'Noe Display';
  font-size: 28px;
}
.custom-quote .quote-name {
  color: #000;
  font-size: 20px;
  margin-bottom: 34px;
}
.custom-quote p {
  margin: 0px;
  font-size: 18px;
}
@media screen and (min-width: 700px) {
  .custom-quote {
    min-height: none;
    justify-content: flex-start;
  }
}
.block-grid--align-left .kt-row-layout-inner .kt-row-column-wrap {
  margin-left: 0px !important;
  margin-right: auto !important;
}
.block-grid--align-right .kt-row-layout-inner .kt-row-column-wrap {
  margin-left: auto !important;
  margin-right: 0px !important;
}
.product_slider_container .owl-dots {
  top: 5px;
}
.block-grid--mobile-slider {
  display: block;
  margin: 0;
}
.block-grid--mobile-slider .kt-inside-inner-col {
  width: 100%;
  padding: 30px;
}
.block-grid--mobile-slider .kt-inside-inner-col .owl-dots {
  display: flex;
  justify-content: center;
  position: relative;
  top: 35px;
  width: fit-content;
  justify-self: center;
  width: 100%;
}
.block-grid--mobile-slider .kt-inside-inner-col .owl-dots .owl-dot {
  margin: 0 5px;
  width: 20px;
  height: 20px;
  position: relative;
}
.block-grid--mobile-slider .kt-inside-inner-col .owl-dots .owl-dot:before {
  content: "";
  height: 20px;
  width: 20px;
  border: solid 2px #666;
  border-radius: 100px;
  position: absolute;
  transition: .1s;
  top: 0;
  left: 0;
}
.block-grid--mobile-slider .kt-inside-inner-col .owl-dots .owl-dot.active:before {
  background: #666;
}
.block-grid--mobile-slider .kt-inside-inner-col .owl-prev,
.block-grid--mobile-slider .kt-inside-inner-col .owl-next {
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: -60px;
  transform: translateY(-50%);
  display: block !important;
  border-radius: 0px !important;
}
.block-grid--mobile-slider .kt-inside-inner-col .owl-prev img,
.block-grid--mobile-slider .kt-inside-inner-col .owl-next img {
  width: 15px;
  display: inline;
}
.owl-prev {
  left: 0px;
}
.owl-next {
  right: 0px;
}
@media screen and (min-width: 700px) {
  .block-grid--mobile-slider {
    margin: 0 30px 0 30px;
    width: calc(100% - 60px) !important;
    display: grid;
    grid-template-columns: calc(50% - 15px) calc(50% - 15px);
    grid-gap: 30px;
  }
  .block-grid--mobile-slider .kt-inside-inner-col {
    display: contents;
    padding: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .block-grid--mobile-slider {
    width: 100%;
  }
}
.single_product_container h3 a {
  font-size: 20px;
  font-weight: 500;
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
}
.single_product_container .product_image {
  position: relative;
  width: 100%;
}
.single_product_container .product_image img {
  object-fit: cover;
  max-height: 475px;
  aspect-ratio: 1;
}
.single_product_container .product_image img.image-hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .2s;
}
.single_product_container .product_image:hover img.image-hover {
  opacity: 1;
}
.variant_price {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
}
.variant_price:before {
  content: '';
  height: 15px;
  width: 15px;
  top: calc(50% - 7.5px);
  background-size: cover;
  position: absolute;
}
.variant_price.cherry:before {
  background: url(/wp-content/themes/thosmoser2/images/materials/wood/cherry--aged.jpg);
}
.variant_price.walnut:before {
  background: url(/wp-content/themes/thosmoser2/images/materials/wood/walnut.jpg);
}
.variant_price .variant_title {
  margin: 0 20px 0 30px;
  min-width: 65px;
}
.variant_price.on-sale .reg-price.strikethrough {
  padding: 0 14px 0 0;
  text-decoration: line-through;
}
.variant_price.pictured {
  font-weight: bold;
}
.variant_price .savings {
  font-family: 'DIN W01 Light';
  text-transform: none;
  font-size: 15px;
  line-height: 15px;
  padding: 0;
}
.variant_price .savings--cherry {
  color: #8a451d;
}
.variant_price .savings--walnut {
  color: #666666;
}
.variant_price .savings-amount {
  font-family: 'Noe Display';
  font-weight: bold;
  padding: 0px 4px 0 10px;
  font-size: 18px;
  line-height: 15px;
}
.variant_price .savings-amount--cherry {
  color: #8a451d;
}
.variant_price .savings-amount--walnut {
  color: #666666;
}
.product_slider_container {
  max-width: none;
  padding: 0 30px;
}
.product_slider_container.owl-carousel {
  max-width: 1400px;
}
.product_slider_container h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
}
.product_slider_container .variant_price {
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .product_slider_container .owl-item img {
    height: 350px;
    object-fit: cover;
  }
}
.product_slider_container .owl-prev {
  left: 0px;
}
.product_slider_container .owl-next {
  right: 0px;
}
.product_slider_container .owl-prev,
.product_slider_container .owl-next {
  width: 15px;
  height: 65px;
  position: absolute;
  bottom: -65px;
  transform: translateY(-50%);
  display: block !important;
  border-radius: 0px !important;
}
.product_slider_container .owl-prev:hover,
.product_slider_container .owl-next:hover {
  background: transparent;
}
.product_slider_container .owl-prev img,
.product_slider_container .owl-next img {
  width: 15px;
  display: inline;
}
.product_slider_container .owl-dots {
  display: flex;
  justify-content: center;
  position: relative;
}
.product_slider_container .owl-dots .owl-dot {
  margin: 0 5px;
  width: 20px;
  height: 20px;
  position: relative;
}
.product_slider_container .owl-dots .owl-dot:before {
  content: "";
  height: 20px;
  width: 20px;
  border: solid 2px #666;
  border-radius: 100px;
  position: absolute;
  transition: .1s;
  top: 0;
  left: 0;
}
.product_slider_container .owl-dots .owl-dot.active:before {
  background: #666;
}
.product_slider_container .owl-dots .owl-dot span {
  display: none !important;
}
@media screen and (min-width: 1000px) {
  .product_slider_container .owl-theme .owl-nav {
    margin-top: 10px;
    top: 50%;
    position: absolute;
    width: calc(70%);
  }
  .product_slider_container .owl-dots {
    display: none;
  }
  .product_slider_container .owl-prev,
  .product_slider_container .owl-next {
    width: 65px;
    height: 65px;
    position: absolute;
    top: calc( 50% - 65px);
    transform: translateY(-50%);
    display: block !important;
    border: 1px solid #fff !important;
    border-radius: 0px !important;
    backdrop-filter: blur(1px);
    background: #ffffff7d !important;
  }
  .product_slider_container .owl-prev:hover,
  .product_slider_container .owl-next:hover {
    background: #ffffff7d !important;
  }
  .product_slider_container .owl-prev img,
  .product_slider_container .owl-next img {
    width: 15px;
    display: inline;
  }
}
.product_slider_container a[href='https://www.thosmoser.com/product/edo-platform-bed/'] {
  display: block;
  overflow: hidden;
}
.product_slider_container a[href='https://www.thosmoser.com/product/edo-platform-bed/'] img {
  transform: scale(1.2);
}
.single-row--mobile-slider {
  margin-bottom: 70px !important;
}
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-nav {
  width: 100%;
  position: relative;
  top: 38px;
  z-index: 1;
}
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-dots {
  display: flex;
  justify-content: center;
  position: relative;
  top: 22px;
}
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-dots .owl-dot {
  margin: 0 5px;
  width: 20px;
  height: 20px;
  position: relative;
}
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-dots .owl-dot:before {
  content: "";
  height: 20px;
  width: 20px;
  border: solid 2px #666;
  border-radius: 100px;
  position: absolute;
  transition: .1s;
  top: 0;
  left: 0;
}
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-dots .owl-dot.active:before {
  background: #666;
}
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-prev,
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-next {
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: -60px;
  transform: translateY(-50%);
  display: block !important;
  border-radius: 0px !important;
}
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-prev img,
.single-row--mobile-slider .kt-row-layout-inner .kt-row-column-wrap .owl-next img {
  width: 15px;
  display: inline;
}
@media screen and (min-width: 600px) {
  .single-row--mobile-slider {
    margin-bottom: 0px !important;
  }
}
.wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title,
.wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-price {
  text-align: left !important;
  margin: 5px 0;
}
@media (max-width: 480px) {
  .wc-block-grid.has-3-columns .wc-block-grid__product {
    margin-left: 0;
    margin-right: 0;
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
  }
  .wc-block-grid.has-3-columns .wc-block-grid__products {
    display: flex;
    flex-flow: row wrap;
  }
}
.pins_image.ihotspot_hastooltop {
  cursor: pointer;
}
#powerTip {
  color: #000;
  background: #ffffffc9;
  backdrop-filter: blur(10px);
  padding: 0px;
  border-radius: 8px;
}
#powerTip h1 {
  font-family: "noe display";
  color: #000;
  text-transform: none;
  font-size: 22px;
  margin: 0;
}
@media (min-width: 1380px) {
  #powerTip h1 {
    font-size: 28px;
  }
}
#powerTip p {
  color: #000;
  font-size: 16px;
}
#powerTip a.wp-block-button__link {
  font-family:  !important;
  text-transform: uppercase !important;
  text-transform: none;
  font-size: 18px;
  text-align: center;
  width: 100%;
  border-radius: 0;
  color: #000;
  background-color: #7a8691;
  margin: 0;
  padding: 5px 0;
}
@media (min-width: 1380px) {
  #powerTip a.wp-block-button__link {
    font-size: 22px;
    padding: 10px 0;
    margin: 10px 0;
  }
}
#powerTip a.wp-block-button__link:hover,
#powerTip a.wp-block-button__link:active,
#powerTip a.wp-block-button__link:focus {
  color: #FFF;
  background-color: #415162;
  text-decoration: none;
}
#powerTip .box_view_html {
  color: #000;
  font-weight: 300;
  max-width: 300px;
  white-space: normal;
  overflow: hidden;
  position: relative;
  padding: 15px 15px 10px 15px;
  min-width: 285px;
}
@media (min-width: 1380px) {
  #powerTip .box_view_html {
    padding: 20px 20px 10px 20px;
  }
}
#powerTip.n:before,
#powerTip.ne:before,
#powerTip.nw:before {
  width: 83px;
  height: 34px;
  top: auto;
  bottom: -33px;
  border-top: none;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
#powerTip.n:before {
  background: url(/wp-content/themes/thosmoser2/images/path-ne.svg);
  left: calc(50% + 20px);
}
#powerTip.ne:before {
  background: url(/wp-content/themes/thosmoser2/images/path-ne.svg);
  left: 25px;
}
#powerTip.nw:before {
  background: url(/wp-content/themes/thosmoser2/images/path-nw.svg);
  right: 25px;
}
#powerTip.e:before {
  width: 33px;
  height: 84px;
  background: url(/wp-content/themes/thosmoser2/images/path-e.svg);
  top: auto;
  left: -29px;
  bottom: calc(50% + 20px);
  border-right: none;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
#powerTip.s:before,
#powerTip.se:before,
#powerTip.sw:before {
  width: 80px;
  height: 30px;
  top: -29px;
  border-bottom: none;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
#powerTip.s:before {
  background: url(/wp-content/themes/thosmoser2/images/path-se.svg);
  left: calc(50% + 20px);
}
#powerTip.se:before {
  background: url(/wp-content/themes/thosmoser2/images/path-se.svg);
  left: 25px;
}
#powerTip.sw:before {
  background: url(/wp-content/themes/thosmoser2/images/path-sw.svg);
  right: 25px;
}
#powerTip.w:before {
  width: 31px;
  height: 84px;
  background: url(/wp-content/themes/thosmoser2/images/path-w.svg);
  right: -30px;
  top: 50px;
  border-left: none;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
@media screen and (min-width: 780px) {
  .wrap_svl_center_box {
    width: 100%;
    max-width: none;
  }
  .wrap_svl_center,
  .wrap_svl {
    width: 100%;
  }
}
@media screen and (max-width: 780px) {
  .wrap_svl_center {
    overflow-x: scroll;
  }
  .images_wrap img {
    height: 75vh;
    width: auto;
    max-width: none;
    object-fit: contain;
  }
  #powerTip h1 {
    font-size: 24px;
  }
  #powerTip p {
    font-size: 14px;
  }
  #powerTip a.wp-block-button__link {
    font-size: 18px;
  }
  .box_view_html {
    padding: 15px 15px 15px 15px;
  }
  .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title,
  .wc-block-grid__products .wc-block-grid__product .wc-block-grid__products {
    text-align: center;
  }
  .variant_title {
    margin: 0 40px 0 30px;
    min-width: 65px;
  }
}
@media (max-width: 780px) {
  .box_view_html,
  #powerTip:before {
    display: none !important;
  }
  .box_view_html--mobile {
    display: block !important;
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
  }
  .box_view_html--mobile .box_view_html {
    display: block !important;
    background: rgba(255,255,255,0.9);
    color: #000;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 300px;
  }
  .box_view_html--mobile .box_view_html p {
    margin-bottom: 10px;
  }
  .box_view_html--mobile .box_view_html h1.product_title {
    padding: 0px 30px;
  }
  .box_view_html--mobile .box_view_html .wp-block-button__link {
    font-family:  !important;
    text-transform: uppercase !important;
    text-transform: none;
    font-size: 22px;
    margin: 10px 0 0;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    border-radius: 0;
    color: #000;
    background-color: #7a8691;
  }
  .box_view_html--mobile .box_view_html .wp-block-button__link:hover,
  .box_view_html--mobile .box_view_html .wp-block-button__link:active,
  .box_view_html--mobile .box_view_html .wp-block-button__link:focus {
    color: #FFF;
    background-color: #415162;
    text-decoration: none;
  }
  .box_view_html--mobile .box_view_html .close_ihp {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
  }
}
.page-template-page-holiday-home .owl-carousel {
  width: 100%;
  max-width: none;
}
.page-template-page-winter-home-2022 p a {
  text-decoration: none;
}
.page-template-page-winter-home-2022 #content {
  padding-bottom: 0 !important;
}
.page-template-page-winter-home-2022 .container,
.page-template-page-winter-home-2022 .col {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.page-template-page-winter-home-2022 .row {
  margin-left: -15px;
  margin-right: -15px;
}
.page-template-page-winter-home-2022 .masthead {
  margin-top: 50px;
}
.page-template-page-winter-home-2022 .masthead .text-block {
  background-color: #e9e5de;
  vertical-align: middle;
  display: flex;
  align-items: center;
  height: 344px;
  padding: 3rem;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) {
  .page-template-page-winter-home-2022 .masthead .text-block {
    height: 413px;
  }
}
@media only screen and (min-width: 1480px) {
  .page-template-page-winter-home-2022 .masthead .text-block {
    height: 505px;
  }
}
.page-template-page-winter-home-2022 .masthead .text-block h2 {
  font-family: 'Noe Display', serif;
  font-weight: 700;
  text-transform: unset;
  border-bottom: 1px solid #7f7e79;
  margin-bottom: 2.5rem;
  padding: 1rem 1rem 2.75rem;
}
@media (min-width: 1480px) {
  .page-template-page-winter-home-2022 .container {
    width: 1424px !important;
  }
}
.page-template-page-winter-home-2022 .owl-carousel {
  max-width: 720px;
}
.page-template-page-winter-home-2022 .owl-dots {
  display: none;
}
.page-template-page-winter-home-2022 .main-heading {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5%;
}
.page-template-page-winter-home-2022 .main-heading br {
  display: none;
}
@media only screen and (min-width: 992px) {
  .page-template-page-winter-home-2022 .main-heading br {
    display: block;
  }
}
.page-template-page-winter-home-2022 .main-heading h1 {
  font-family: 'Noe Display', serif;
  text-transform: unset;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 4rem;
}
.page-template-page-winter-home-2022 .main-heading h1 span {
  font-family: 'DIN W01 Light';
  font-size: 1.5rem;
  margin-left: .5rem;
}
.page-template-page-winter-home-2022 .shop-heading {
  padding: 1rem 0 6.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-template-page-winter-home-2022 .shop-heading {
    padding: 6.3rem 0;
  }
}
.page-template-page-winter-home-2022 .shop-heading h2 {
  text-transform: uppercase;
  margin-bottom: 40px;
}
.page-template-page-winter-home-2022 .shop-heading .fa-stack {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.page-template-page-winter-home-2022 .shop-heading .fa-stack .fa-inverse {
  color: #333;
}
.page-template-page-winter-home-2022 .shop-heading .fa-stack .fa-square {
  color: #e9e5de;
}
.page-template-page-winter-home-2022 .shop-heading ul {
  display: inline-flex;
  font-size: 1.5rem;
  padding-left: 0;
}
.page-template-page-winter-home-2022 .shop-heading ul li {
  padding: 0 32px;
}
.page-template-page-winter-home-2022 .shop-heading ul li a {
  font-weight: 700;
}
.page-template-page-winter-home-2022 .fpo-blog {
  margin-bottom: 30px;
  position: relative;
}
.page-template-page-winter-home-2022 .fpo-blog .desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .page-template-page-winter-home-2022 .fpo-blog .desktop {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .page-template-page-winter-home-2022 .fpo-blog .mobile {
    display: none;
  }
}
.page-template-page-winter-home-2022 .fpo-blog h4 {
  position: absolute;
  top: 45%;
  margin: 0;
  font-size: 2rem;
  color: #fff;
  width: 94%;
  text-align: center;
}
.page-template-page-winter-home-2022 .bottom-navigation {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.page-template-page-winter-home-2022 .bottom-navigation h1 {
  font-family: "DIN W01 Light";
  font-size: 2.4rem !important;
  text-transform: none;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0 !important;
  padding-top: 15px;
}
.page-template-page-winter-home-2022 .bottom-navigation ul {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin: 0px;
  height: fit-content;
  min-height: 75px;
  padding: 15px 0;
  margin: 0;
}
.page-template-page-winter-home-2022 .bottom-navigation ul li {
  height: fit-content;
  min-height: 35px;
  padding: 10px 50px;
  border-right: solid 1px #eee;
}
.page-template-page-winter-home-2022 .bottom-navigation ul li:last-child {
  border-right: none !important;
}
.page-template-page-winter-home-2022 .bottom-navigation ul li a {
  text-decoration: underline;
  font-weight: bold;
}
.page-template-page-winter-home-2022 .bottom-navigation.desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-page-winter-home-2022 .bottom-navigation.desktop {
    display: flex;
  }
}
.page-template-page-winter-home-2022 .mobile-spacer {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-page-winter-home-2022 .mobile-spacer {
    display: none;
  }
}
.page-template-page-winter-home-2022 .col-padding.col {
  margin-bottom: 30px;
}
.page-template-page-winter-home-2022 .col-links img {
  margin: 0 auto 20px;
}
.page-template-page-winter-home-2022 .col-links h4 {
  text-align: center;
}
@media (min-width: 768px) {
  .page-template-page-winter-home-2022 .bottom-col-links .aspect-ratio-box {
    aspect-ratio: 1.798;
  }
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper {
  margin-top: .75rem;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper .gform_heading {
  display: none;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper input[type="text"],
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper input[type="email"] {
  background-color: #fff;
  border: 1px solid #a6a7a9;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper input[type="submit"] {
  padding: 8px;
  width: 100%;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper label {
  font-weight: 400;
  font-size: 1.5rem;
  color: #333;
  font-family: 'DIN W01 Light';
  margin-bottom: 6px;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper li.gfield {
  margin-bottom: 10px;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper .newsletter-form .gform_body,
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper .newsletter-form .gform_footer {
  height: auto;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper .newsletter-form .gform_footer {
  bottom: 12px;
  top: unset;
}
.page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper .first-and-last-name {
  display: none;
}
@media only screen and (min-width: 1480px) {
  .page-template-page-winter-home-2022 .bottom-col-links .gform_wrapper .first-and-last-name {
    display: block;
  }
}
.page-template-page-winter-home-2022 .bottom-col-links .newsletter-signup {
  border: 1px solid #e0e1e2;
  height: 100%;
  padding: 5%;
}
.page-template-page-winter-home-2022 .bottom-col-links .newsletter-signup img {
  margin: 0 auto;
}
.page-template-page-winter-home-2022 .bottom-col-links .newsletter-signup h2 {
  text-transform: unset;
  font-family: 'Noe Display', serif;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
}
.page-template-page-winter-home-2022 .no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.page-template-page-winter-home-2022 .no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
#gform_49 input[type="submit"] {
  font-family: 'DIN W01 Regular';
  text-transform: uppercase;
  padding: 11px 37px;
  font-size: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  background: #7a8691;
  color: black;
}
#gform_49 input[type="submit"]:hover {
  background: #415162;
  color: white;
}
.home-office .desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .home-office .desktop {
    display: block;
  }
}
.home-office .mobile {
  display: block;
  width: 100vw;
}
@media screen and (min-width: 1024px) {
  .home-office .mobile {
    display: none;
  }
}
.home-office__button {
  grid-column: 1 / span 2;
  -ms-grid-column: 1;
  -ms-grid-row: 3;
  -ms-grid-column-span: 2;
  width: 80%;
  display: block;
  text-align: center;
  margin: 20px auto 0 auto;
  padding: 10px 0;
  font-family: 'Noe Display';
  background: #334154;
  box-shadow: rgba(0,0,0,0.25) 0 9px 34px -10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 24px;
}
.home-office__button.mobile {
  width: 90%;
  margin: 20px auto 40px auto;
  color: #fff;
}
.home-office__button:hover {
  color: #fff;
}
.home-office__top-navigation {
  display: block;
}
@media screen and (min-width: 1290px) {
  .home-office__top-navigation {
    display: flex;
    flex-direction: row;
    padding: 15px 0px;
    max-width: 90%;
    margin: auto;
  }
}
.home-office__top-navigation img {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .home-office__top-navigation img {
    padding: 0px;
    height: auto;
    margin: 0 auto 0 0;
  }
}
.home-office__top-navigation .category-toggle {
  padding: 20px;
  font-size: 25px;
  font-weight: bold;
  border-top: solid 1px #eee;
  display: flex;
  justify-content: space-between;
}
.home-office__top-navigation .category-toggle img {
  width: 20px;
  height: 13px;
  padding: 0;
  margin: 10px;
  transition: .5s;
}
.home-office__top-navigation .category-toggle img.active {
  transform: rotate(180deg);
}
@media screen and (min-width: 1290px) {
  .home-office__top-navigation .category-toggle {
    display: none;
  }
}
.home-office__top-navigation .home-office__nav-list {
  display: block;
  padding: 0px;
  height: 0px;
  transition: .5s;
  position: absolute;
  background: #fff;
  z-index: 112;
  width: 100%;
  overflow: hidden;
}
.home-office__top-navigation .home-office__nav-list li {
  padding: 15px 30px;
  border-bottom: solid 1px #eee;
}
.home-office__top-navigation .home-office__nav-list li a {
  font-weight: bold;
}
@media screen and (min-width: 1290px) {
  .home-office__top-navigation .home-office__nav-list {
    display: flex;
    justify-content: flex-end;
    height: fit-content;
    min-height: 75px;
    padding: 15px 0;
    margin: 25px 0 0 auto;
    position: static;
    background: none;
  }
  .home-office__top-navigation .home-office__nav-list li {
    height: fit-content;
    min-height: 75px;
    padding: 15px 50px;
    border-right: solid 1px #eee;
    border-bottom: none;
  }
  .home-office__top-navigation .home-office__nav-list li:last-child {
    border-right: none !important;
  }
  .home-office__top-navigation .home-office__nav-list li a {
    text-decoration: none;
    font-weight: bold;
  }
}
.home-office__top-navigation .home-office__nav-list.active {
  height: auto;
}
.home-office__top-image {
  width: 100vw;
}
.home-office__intro-products {
  padding: 30px 0;
  display: block;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .home-office__intro-products {
    margin: 75px auto;
    display: flex;
    justify-content: space-between;
    max-width: 87%;
    padding: 0;
  }
}
.home-office__intro-products .home-office__products {
  display: block;
  width: 100%;
  padding: 20px;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .home-office__intro-products .home-office__products {
    width: 50%;
  }
}
.home-office__text {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .home-office__text {
    padding: 0 0;
    width: 60%;
  }
}
.home-office__text h1 {
  font-family: Noe Display;
  font-weight: bold;
  text-transform: none;
  color: #000;
}
.home-office__products {
  width: 100%;
  padding: 20px;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .home-office__products {
    display: flex;
    width: 50%;
    justify-content: space-between;
    margin-top: 95px;
    overflow: visible;
    padding: 0 20px;
  }
}
.home-office__products .product {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .home-office__products .product {
    padding: 0;
    width: 64%;
    text-align: center;
    margin: 0 0 0 auto;
  }
}
.home-office__products .product p {
  padding: 0px;
  text-align: left;
}
.home-office__products .product p.title {
  font-size: 20px;
  font-weight: bold;
}
.home-office__products .product ul {
  width: 65%;
  padding: 0px;
  text-align: left;
  margin: 10px 0;
}
.home-office__products .product ul li {
  display: flex;
  justify-content: space-between;
}
.home-office__products .product ul li img {
  width: 15px;
  height: 15px;
  margin: 8px 0;
  display: inline;
}
.home-office__products .product ul li span {
  margin: 0 0 0 10px;
}
.home-office__products .product ul li.pictured {
  font-weight: bold;
}
.home-office__products .product a.button {
  text-align: center;
  width: 100%;
  display: block;
  font-family: 'Noe Display';
  background: #334154;
  box-shadow: rgba(0,0,0,0.25) 0 9px 34px -10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 11px 37px;
  margin: 15px 0;
  cursor: pointer;
  font-size: 24px;
}
.home-office__sale-section {
  display: block;
}
@media screen and (min-width: 1024px) {
  .home-office__sale-section {
    display: flex;
    margin: 0 0 130px 0;
  }
}
.home-office__image-title {
  width: 100vw;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .home-office__image-title {
    width: 35%;
  }
}
.home-office__image-title h1 {
  position: absolute;
  bottom: 50%;
  width: 100%;
  text-align: center;
  font-family: 'Noe Display';
  font-weight: bold;
  text-transform: none;
  color: #fff;
  text-shadow: 0 0 20px black;
}
.home-office #excerpt-toggle-seating,
.home-office #excerpt-toggle-desk,
.home-office #excerpt-toggle-storage {
  background: #eee;
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
  justify-content: space-between;
  padding: 15px 30px 15px 15px;
}
.home-office #excerpt-toggle-seating h1,
.home-office #excerpt-toggle-desk h1,
.home-office #excerpt-toggle-storage h1 {
  width: 100%;
  font-family: 'Noe Display';
  text-transform: none;
  font-weight: bold;
  color: #000;
  font-size: 30px;
}
.home-office #excerpt-toggle-seating span,
.home-office #excerpt-toggle-desk span,
.home-office #excerpt-toggle-storage span {
  font-family: 'DIN W01 Medium';
  font-size: 20px;
  color: #717171;
}
.home-office #excerpt-toggle-seating img,
.home-office #excerpt-toggle-desk img,
.home-office #excerpt-toggle-storage img {
  width: 20px;
  height: 13px;
  padding: 0;
  transition: .5s;
}
.home-office #excerpt-toggle-seating img.active,
.home-office #excerpt-toggle-desk img.active,
.home-office #excerpt-toggle-storage img.active {
  transform: rotate(180deg);
}
.home-office #excerpt-toggle-seating__content,
.home-office #excerpt-toggle-desk__content,
.home-office #excerpt-toggle-storage__content {
  width: 100%;
  padding: 0px;
  background: #eeeeee;
  font-size: 16px;
  transition: .5s;
  height: 0px;
  overflow: hidden;
}
.home-office #excerpt-toggle-seating__content.active,
.home-office #excerpt-toggle-desk__content.active,
.home-office #excerpt-toggle-storage__content.active {
  height: auto;
  padding: 20px;
}
.home-office #excerpt-toggle-seating__content a,
.home-office #excerpt-toggle-desk__content a,
.home-office #excerpt-toggle-storage__content a {
  width: 100%;
}
.home-office #excerpt-toggle-seating__content a img,
.home-office #excerpt-toggle-desk__content a img,
.home-office #excerpt-toggle-storage__content a img {
  margin: 10px 10px 10px auto;
}
.home-office__product-scroll {
  width: 100%;
  padding: 20px 35px 0px 35px;
}
@media screen and (min-width: 1024px) {
  .home-office__product-scroll {
    display: none;
  }
}
.home-office__product-scroll .product {
  width: 100%;
  text-align: center;
  padding: 0 20px 0 0;
}
.home-office__product-scroll .product img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
}
.home-office__product-scroll .product .title {
  min-height: 5em;
  font-weight: bold;
  text-align: left !important;
  width: 100%;
  display: block;
  padding: 10px 0;
  cursor: pointer;
}
@media screen and (min-width: 460px) {
  .home-office__product-scroll .product .title {
    min-height: 0;
  }
}
.home-office__product-scroll .product p {
  padding: 0px;
  text-align: left;
}
.home-office__product-scroll .product ul {
  width: 100%;
  padding: 0px;
  text-align: left;
  margin: 10px 0;
}
@media screen and (min-width: 450px) {
  .home-office__product-scroll .product ul {
    width: 50%;
  }
}
.home-office__product-scroll .product ul li {
  display: flex;
  justify-content: space-between;
}
.home-office__product-scroll .product ul li img {
  width: 15px;
  height: 15px;
  margin: 8px 0;
  display: inline;
}
.home-office__product-scroll .product ul li span {
  margin: 0 0 0 10px;
}
.home-office__product-scroll .product ul li.pictured {
  font-weight: bold;
}
.home-office__product-scroll .owl-nav {
  justify-content: space-between;
  width: 100%;
  position: absolute;
  margin: 0;
  display: flex;
  top: 45%;
  pointer-events: none;
  left: 0px;
}
.home-office__product-scroll .owl-nav button {
  background: url(/wp-content/themes/thosmoser2/images/icon-arrow--blue.svg) !important;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: 15px !important;
  height: 25px;
  width: 15px;
  pointer-events: all;
}
.home-office__product-scroll .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.home-office__product-scroll .owl-nav button:focus {
  outline: none;
}
.home-office__product-scroll .owl-nav button span {
  display: none;
}
.home-office__product-squares {
  display: none;
}
@media screen and (min-width: 1024px) {
  .home-office__product-squares {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 46% 46% 9%;
    display: -ms-grid;
    -ms-grid-columns: 50% 50%;
    -ms-grid-rows: 46% 46% 9%;
    width: 50%;
    margin: 0 auto;
    height: 100%;
  }
}
.home-office__product-squares .excerpt {
  height: calc((100% - 15px)) !important;
  width: calc((100% - 15px)) !important;
  background: #f7f7f7;
}
.home-office__product-squares .excerpt.product--2 {
  align-self: start;
  justify-self: end;
}
.home-office__product-squares .excerpt.product--2 .inner-container {
  padding: 30px 30px 15px 15px;
}
.home-office__product-squares .excerpt.product--3 {
  align-self: end;
  justify-self: start;
}
.home-office__product-squares .excerpt.product--3 .inner-container {
  padding: 15px 15px 30px 30px;
}
.home-office__product-squares .excerpt .inner-container {
  background: #F7F7F7;
  position: relative;
  height: 100%;
  width: 100%;
}
.home-office__product-squares .excerpt .inner-container h2 {
  margin: 0px;
  font-family: 'Noe Display';
  font-weight: bold;
  text-transform: none;
  font-size: 25px;
}
.home-office__product-squares .excerpt .inner-container span {
  color: #717171;
  font-family: 'DIN W01 Medium';
}
.home-office__product-squares .excerpt .inner-container a {
  width: 100%;
  position: absolute;
  bottom: 15px;
  right: 30px;
}
.home-office__product-squares .excerpt .inner-container img {
  margin: 0 0 0 auto;
  z-index: 100;
  position: relative;
}
.home-office__product-squares .excerpt .inner-container p {
  max-height: 11.5em;
  overflow: hidden;
  margin: 10px 0;
}
.home-office__product-squares .excerpt .inner-container .overflow {
  width: calc((100% - 60px));
  background: linear-gradient(transparent,#f7f7f7);
  background: -webkit-linear-gradient(top,#f7f7f700,#f7f7f7);
  height: 60px;
  position: absolute;
  bottom: 11px;
}
.home-office__product-squares .product {
  width: 100%;
  text-align: center;
}
.home-office__product-squares .product img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
}
.home-office__product-squares .product .title {
  font-weight: bold;
  text-align: left !important;
  width: 100%;
  display: block;
  padding: 10px 0;
}
.home-office__product-squares .product p {
  padding: 0px;
  text-align: left;
}
.home-office__product-squares .product ul {
  width: 50%;
  padding: 0px;
  text-align: left;
  margin: 10px 0;
}
.home-office__product-squares .product ul li {
  display: flex;
  justify-content: space-between;
}
.home-office__product-squares .product ul li img {
  width: 15px;
  height: 15px;
  margin: 8px 0;
  display: inline;
}
.home-office__product-squares .product ul li span {
  margin: 0 0 0 10px;
}
.home-office__product-squares .product ul li.pictured {
  font-weight: bold;
}
.home-office__product-squares .product--1 {
  padding: 0 15px 15px 0;
  grid-column: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}
.home-office__product-squares .product--2 {
  padding: 0 0 15px 15px;
  grid-column: 2;
  grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  width: 100%;
}
.home-office__product-squares .product--3 {
  padding: 15px 15px 0 0;
  grid-column: 1;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-row: 2;
}
.home-office__product-squares .product--4 {
  padding: 15px 0 0 15px;
  grid-column: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  -ms-grid-row: 2;
}
.home-office__product-squares .home-office__button {
  grid-column: 1 / span 2;
  -ms-grid-column: 1;
  -ms-grid-row: 3;
  -ms-grid-column-span: 2;
  width: 80%;
  display: block;
  text-align: center;
  margin: 20px auto 0 auto;
  padding: 10px 0;
  font-family: 'Noe Display';
  background: #334154;
  box-shadow: rgba(0,0,0,0.25) 0 9px 34px -10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 24px;
}
.home-office__bottom-navigation {
  text-align: center;
}
.home-office__bottom-navigation h1 {
  font-family: Noe Display;
  font-weight: bold;
  text-transform: none;
  color: #000;
}
.home-office__bottom-navigation ul {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin: 0px;
  height: fit-content;
  min-height: 75px;
  padding: 15px 0;
  margin: 0 0 0 auto;
}
.home-office__bottom-navigation ul li {
  height: fit-content;
  min-height: 75px;
  padding: 15px 50px;
  border-right: solid 1px #eee;
}
.home-office__bottom-navigation ul li:last-child {
  border-right: none !important;
}
.home-office__bottom-navigation ul li a {
  font-weight: bold;
}
.home-office__bottom-navigation.desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .home-office__bottom-navigation.desktop {
    display: block;
  }
}
.home-office__bottom-navigation.mobile {
  display: block;
}
@media screen and (min-width: 1024px) {
  .home-office__bottom-navigation.mobile {
    display: none;
  }
}
.home-office__bottom-navigation.mobile .bottom-category-toggle {
  border-top: solid 1px #eee;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
.home-office__bottom-navigation.mobile .bottom-category-toggle h1 {
  padding: 20px;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
}
.home-office__bottom-navigation.mobile .bottom-category-toggle img {
  width: 20px;
  height: 13px;
  padding: 0;
  margin: 35px 10px;
  transition: .5s;
}
.home-office__bottom-navigation.mobile .bottom-category-toggle img.active {
  transform: rotate(180deg);
}
.home-office__bottom-navigation.mobile .nav-list {
  display: none;
  overflow: hidden;
}
.home-office__bottom-navigation.mobile .nav-list li {
  padding: 0px;
  border-right: none;
}
.home-office__bottom-navigation.mobile .nav-list.active {
  display: block;
  height: auto;
  padding: 0px;
  transition: .5s;
  background: #fff;
  z-index: 112;
  width: 100%;
  overflow: hidden;
}
.home-office__bottom-navigation.mobile .nav-list.active li {
  padding: 15px 30px;
  background: #F7F7F7;
  text-align: left;
  font-size: 16px;
}
.home-office__bottom-navigation.mobile .nav-list.active li a {
  font-weight: bold;
}
.home-office .cherry,
.home-office .walnut {
  position: relative;
}
.home-office .cherry:before,
.home-office .walnut:before {
  content: '';
  opacity: 0;
  transition: .5s;
  z-index: 110;
}
@media screen and (min-width: 1024px) {
  .home-office .walnut:hover:before {
    opacity: 1;
    height: 100px;
    width: 100px;
    background: url(/wp-content/uploads/moser_wood_walnut_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -110px;
    top: -22px;
  }
}
@media screen and (min-width: 1024px) {
  .home-office .cherry:hover:before {
    opacity: 1;
    height: 100px;
    width: 100px;
    background: url(/wp-content/uploads/moser_wood_cherry_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -110px;
    top: -22px;
  }
}
.page-template-kadence_tpl article {
  margin-top: 0px !important;
}
.page-template-kadence_tpl #breadcrumbs {
  display: none;
}
.page-template-kadence_tpl #content #main_content {
  padding: 0 0 !important;
}
.page-template-kadence_tpl_breadcrumbs {
  margin-top: 0px;
}
.page-template-kadence_tpl_breadcrumbs .page-content {
  margin-top: 0px;
}
.page-template-kadence_tpl_breadcrumbs article {
  margin-top: 0px !important;
}
.page-template-kadence_tpl_breadcrumbs #content #main_content {
  padding: 0 0 !important;
}
.page-template-kadence_tpl_breadcrumbs img.alignleft,
.page-template-kadence_tpl_breadcrumbs .alignleft,
.page-template-kadence_tpl_breadcrumbs img.alignright,
.page-template-kadence_tpl_breadcrumbs .alignright,
.page-template-kadence_tpl_breadcrumbs img.aligncenter,
.page-template-kadence_tpl_breadcrumbs .aligncenter,
.page-template-kadence_tpl_breadcrumbs img.alignnone,
.page-template-kadence_tpl_breadcrumbs .alignnone {
  margin: unset;
}
.materials__outer-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  align-items: flex-start;
  gap: 20px 60px;
}
.materials__title {
  width: 100%;
}
.materials__outer-container--leather .materials__group {
  width: 100%;
}
.materials__outer-container--leather .materials__container {
  width: calc(25% - 15px);
}
@media only screen and (min-width: 900px) {
  .materials__outer-container--leather .materials__container {
    width: calc(12.5% - 15px);
  }
}
.materials__group {
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  width: 100%;
  row-gap: 15px;
}
@media only screen and (min-width: 900px) {
  .materials__group {
    width: calc(50% - 30px);
  }
}
.materials__container {
  display: flex;
  flex-direction: column;
  width: calc(25% - 15px);
  margin-right: 15px;
}
.materials__image {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}
.materials__name {
  width: 100%;
}
.materials__modal {
  display: none;
}
.materials__modal--active {
  position: fixed;
  display: block;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10000;
  max-width: calc(100% - 60px);
  min-width: 70%;
}
@media only screen and (min-width: 825px) {
  .materials__modal--active {
    width: auto;
    max-width: none;
    min-width: 0;
  }
}
.materials__modal:before {
  content: '';
  top: -100vh;
  left: -100vw;
  width: 1000vw;
  height: 1000vh;
  background-color: #000;
  opacity: 0.4;
  position: absolute;
  z-index: -1;
}
.materials__modal p {
  margin: 0;
}
.materials__modal-close {
  position: absolute;
  left: auto;
  right: -30px;
  top: -30px;
}
.materials__modal-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media only screen and (min-width: 825px) {
  .materials__modal-img {
    width: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  .materials__modal-img {
    width: 500px;
  }
}
@media only screen and (min-width: 2000px) {
  .materials__modal-img {
    width: 600px;
  }
}
.materials__modal-group,
.materials__modal-info {
  background: #fff;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
.materials__modal-group {
  padding: 0;
  margin: 0;
}
.materials__modal-title {
  padding: 20px;
  background: #EAE6E1;
  padding: 5px 15px;
  width: fit-content;
  border-radius: 7px;
  font-size: 16px;
  font-family: 'DIN W01 REGULAR';
  margin: 0;
}
.page-template-mfl_landing_page h2.columns-title {
  font-size: 30px;
}
.page-template-mfl_landing_page .mfl-intro {
  max-width: 650px;
  padding-top: 80px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.page-template-mfl_landing_page .mfl#section-1 {
  margin-bottom: 60px;
}
.page-template-mfl_landing_page .mfl .section-content {
  padding-top: 80px;
  padding-bottom: 80px;
}
.page-template-mfl_landing_page .mfl h1 {
  font-family: "Noe Display";
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  text-transform: none;
  text-align: center;
  font-size: 25px;
}
.page-template-mfl_landing_page .mfl p {
  font-size: 15px;
}
.page-template-mfl_landing_page .mfl h2 {
  font-weight: bold;
  font-size: 30px;
}
.page-template-mfl_landing_page .simple .stories h2 {
  color: white;
  text-align: center;
}
.page-template-mfl_landing_page .simple .wide {
  padding: 0px;
}
.page-template-mfl_landing_page p {
  color: #000;
}
.page-template-mfl_landing_page p .mfl-intro {
  max-width: 750px;
  padding-top: 80px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.see-all-center.flex-item {
  margin: 0 auto;
}
.see-all-mfl {
  border: 13px solid #f1f2f2;
  width: 550px;
  max-width: 80%;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
.see-all-mfl p {
  color: #000;
  font-family: 'Noe';
  text-align: center;
  margin: 0px !important;
}
@media only screen and (min-width: 768px) {
  .page-template-mfl_landing_page .single-story-column .flex-item.stories {
    width: 100%;
  }
  .page-template-mfl_landing_page .double-story-column {
    padding: 0px;
    margin-bottom: 10px;
  }
  .page-template-mfl_landing_page .double-story-column .flex-item.stories {
    width: 49.4%;
  }
  .page-template-mfl_landing_page .double-story-column .flex-item.stories:first-child {
    margin-right: 0.5%;
  }
  .page-template-mfl_landing_page .double-story-column .flex-item.stories:last-child {
    margin-left: 0.5%;
  }
  .page-template-mfl_landing_page .flex-item.stories {
    width: 32.7%;
  }
  .page-template-mfl_landing_page .flex-item.stories:first-child {
    margin-left: 0px;
  }
  .page-template-mfl_landing_page .flex-item.stories::last-child {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .module-columns .no-mobile {
    display: none;
  }
  .flex-item.col-feature-title {
    padding: 0;
  }
  .flex-item.col-feature-title .columns-col-inner-content {
    margin-left: 0;
    margin-right: 0;
  }
  .simple.module-columns .col-feature-title .columns-col-inner-content .columns-col-content .columns-title-wrapper,
  .simple.module-columns .col-feature .columns-col-inner-content .columns-col-content .columns-title-wrapper {
    text-align: left;
    padding: 0;
    height: 25px;
    padding-top: 20px;
  }
  .simple.module-columns .flex-item.col-feature.three,
  .simple.module-columns .flex-item.col-feature.new-products {
    margin-bottom: 75px;
  }
  .NY-chair figure {
    margin: 0;
  }
  .module-columns .NY-chair .columns-col-inner-content {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .flex-item.NY-chair {
    padding: 0;
  }
  .flex-item.NY-chair h2 {
    font-size: 26px;
  }
  .simple.module-columns .NY-chair .columns-col-inner-content .columns-col-content .columns-title-wrapper {
    text-align: left;
    padding-left: 0;
  }
  .page-template-mfl_landing_page #content #main_content {
    padding: 0 !important;
  }
  .page-template-mfl_landing_page #content #main_content section {
    padding: 0 15px;
  }
  .page-template-mfl_landing_page #content #main_content .simple.module-columns .col-feature-title .columns-col-inner-content .columns-col-content .columns-title-wrapper {
    padding: 0 15px;
    text-align: center;
  }
  .page-template-mfl_landing_page #content #main_content .mfl-intro {
    padding-top: 0px;
  }
  section.section80 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .page-template-mfl_landing_page .row {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.module-section.bottom-spacing {
  margin-bottom: 80px;
}
section.module-columns.custom-spacing {
  padding-top: 10px;
  margin-bottom: 70px;
}
section.module-columns.custom-spacingthree {
  padding-top: 10px;
  margin-bottom: 30px;
}
section.module-columns.custom-spacingfour {
  padding-top: 10px;
  margin-bottom: 100px;
}
section.module-columns.custom-spacingfive {
  padding-top: 60px;
}
section.custom-spacingsix {
  margin-bottom: 100px;
}
section.custom-spacingseven,
.custom-spacingseven.module-section.product-container {
  margin-bottom: 130px;
}
section.module-columns.custom-spacingeight {
  padding-top: 90px;
  padding-bottom: 110px;
}
section.module-columns.custom-spacingnine {
  padding-top: 70px;
}
.module-columns.custom-spacingtwo .columns-col-content {
  margin-top: 20px;
  margin-bottom: 0px;
}
module-section.top-spacing {
  margin-top: 80px;
}
.module-columns.custom-spacingtwo {
  margin-bottom: 50px;
}
.module-section.top-padding {
  padding-top: 80px;
}
.module-section.product-container {
  max-width: 1100px;
  margin: 0 auto;
}
.mfl-product .Right div.text,
.mfl-product .Right p,
.mfl-product .Right .text-container div.options-container {
  text-align: left;
  margin-left: 0px;
}
.mfl-product .Right div.text .type,
.mfl-product .Right p .type,
.mfl-product .Right .text-container div.options-container .type {
  margin-left: 0px;
}
.mfl-product .text-container div.options-container {
  text-align: left;
  margin-left: 0px;
}
.simple.module-columns .full-width-figure figure {
  margin: 0;
}
.simple.module-columns .penny-intro {
  max-width: 750px;
  margin: 0 auto;
}
.simple.module-columns.wide {
  padding: 0px;
  margin-bottom: 10px;
}
.simple.module-columns.module-columns .no-topspace.columns-col:first-child .columns-col-inner-content {
  margin: 0 auto;
}
.simple.module-columns.single-story-column {
  margin-bottom: 10px;
  position: relative;
  padding: 0px;
}
.simple.module-columns.single-story-column .columns-col-inner-content {
  margin-bottom: 0px;
}
.simple.module-columns.single-story-column .flex-item.stories {
  width: 90%;
}
.simple.module-columns.single-story-column .flex-item.stories.penny {
  max-width: 750px;
}
.simple.module-columns.single-story-column .flex-item.stories .columns-col-content h2 {
  font-size: 84px;
}
.simple.module-columns .no-topspace.columns-col:first-child .columns-col-inner-content {
  margin: 0px;
}
.simple.module-columns .no-topspace .columns-col-content {
  margin-top: 0px;
}
.simple.module-columns .no-topspace .section-content p {
  margin-top: 0px;
  -webkit-font-smoothing: antialiased;
}
.simple.module-columns .mfl-home-centered {
  margin: 50px auto -40px auto;
}
.simple.module-columns .mfl-home-centered p {
  font-family: "DIN W01 Medium";
  -webkit-font-smoothing: antialiased;
}
.simple.module-columns .mfl-home-centered h2 {
  font-family: "Noe Display";
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  text-transform: none;
  text-align: center;
  color: #334254;
  margin-bottom: 0px;
}
.simple.module-columns .mfl-home-centered .columns-col-inner-content .columns-col-content .columns-title-link,
.simple.module-columns .mfl-home-centered .columns-col-inner-content .columns-col-content .columns-title-wrapper {
  height: auto;
}
.simple.module-columns .flex-item.stories {
  margin: 0 auto;
  max-width: 90%;
  padding: 0px;
}
.simple.module-columns .flex-item.stories figure {
  margin: 0px;
}
.simple.module-columns .flex-item.stories a figure:hover {
  opacity: 0.9;
}
.simple.module-columns .flex-item.stories .columns-col-img {
  float: none;
  margin: 0px;
  display: block;
  position: relative;
}
.simple.module-columns .flex-item.stories .columns-col-inner-content {
  max-width: 100%;
}
.simple.module-columns .flex-item.stories .columns-col-content {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%,-50%);
  margin: 0px;
  color: white;
  text-align: center;
  width: 90%;
}
.simple.module-columns .flex-item.stories .columns-col-content h2 {
  font-family: "Noe Display";
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  text-transform: none;
  font-size: 40px;
}
.simple.module-columns .flex-item.stories .columns-col-content .section-content p {
  margin: 0px 0px 60px 0px;
  font-size: 15px;
  font-family: "DIN W01 Medium";
}
.simple.module-columns .tenants .columns-col-inner-content .columns-col-content .columns-title-wrapper {
  height: auto;
}
.simple.module-columns .col-feature-title {
  margin-bottom: -40px;
  padding-top: 0px;
}
.simple.module-columns .col-feature-title h2 {
  font-family: "Noe Display";
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  text-transform: none;
}
.simple.module-columns .flex-item.blue-bg-column {
  background-color: #334254;
  color: white;
  width: 100%;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 10px;
}
.simple.module-columns .flex-item.blue-bg-column p {
  font-family: "Noe Display Medium Italic";
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  line-height: 34px;
}
.simple.module-columns .flex-item.col-feature {
  margin: 0 auto;
  max-width: 100%;
  padding: 0px;
  align-self: start;
}
.simple.module-columns .flex-item.col-feature figure {
  margin: 0px;
}
.simple.module-columns .flex-item.col-feature h2 {
  font-family: "DIN W01 Medium";
  -webkit-font-smoothing: antialiased;
  text-transform: none;
  font-size: 25px;
  margin-top: 10px;
}
.simple.module-columns .flex-item.col-feature p {
  font-size: 18px;
  text-align: center;
  margin-top: 0px;
}
.simple.module-columns .flex-item.col-feature .columns-col-img {
  float: none;
  margin: 0px;
  display: block;
}
.simple.module-columns .flex-item.col-feature .columns-col-inner-content {
  max-width: 100%;
}
.simple.module-columns h2.penny-title {
  text-align: center;
  font-family: 'Noe Display';
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  text-transform: none;
  font-size: 45px;
}
.simple.module-columns .mfl-product h2 {
  font-family: "Noe Display";
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  text-transform: none;
  text-align: left;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .simple.module-columns .mfl-home-centered {
    margin: auto;
  }
  .simple.module-columns .mfl-home-centered .columns-col-content {
    margin-top: 4em;
    margin-bottom: 4em;
  }
  .simple.module-columns .mfl-home-centered .columns-col-inner-content .columns-col-content .columns-title-link,
  .simple.module-columns .mfl-home-centered .columns-col-inner-content .columns-col-content .columns-title-wrapper {
    display: block;
  }
  .simple.module-columns .mfl-home-centered h2 {
    margin-bottom: 1.5em;
  }
  .simple.module-columns .col-feature-title {
    padding-top: 40px;
  }
  .simple.module-columns .col-feature-title.no-top-padding {
    padding-top: 0px;
  }
  .simple.module-columns .flex-item.col-feature p {
    text-align: left;
  }
  .simple.module-columns.single-story-column {
    margin-bottom: 10px;
  }
  .simple.module-columns.single-story-column .flex-item.stories {
    max-width: 100%;
  }
  .flex-item.stories {
    margin-left: 0.5%;
    margin-right: 0.5%;
    width: 32%;
    padding: 0px;
  }
  .flex-item.stories.columns-col:first-child .columns-col-inner-content {
    margin: 0px;
  }
  .flex-item.stories .columns-col-inner-content {
    margin: 0px;
  }
  .flex-item.stories .columns-col-inner-content .columns-col-img {
    margin: 0px;
  }
  .flex-item.col-feature.three {
    width: 32%;
  }
  .flex-item.col-feature.two {
    width: 49%;
  }
  .flex-item.col-feature {
    margin-left: 0.5%;
    margin-right: 0.5%;
    padding: 0px;
  }
  .flex-item.col-feature.columns-col:first-child .columns-col-inner-content {
    margin: 0px;
  }
  .flex-item.col-feature .columns-col-inner-content {
    margin: 0px;
  }
  .flex-item.col-feature .columns-col-inner-content .columns-col-img {
    margin: 0px;
  }
}
@media screen and (max-width: 980px) {
  .simple.module-columns .flex-item.stories .columns-col-content h2 {
    font-size: 30px !important;
  }
  .simple.module-columns.single-story-column .flex-item.stories .columns-col-content h2 {
    font-size: 84px !important;
  }
}
@media screen and (max-width: 767px) {
  .simple.module-columns .flex-item.stories .columns-col-content h2 {
    font-size: 40px !important;
  }
  .simple.module-columns.single-story-column .flex-item.stories .columns-col-content h2 {
    font-size: 64px !important;
  }
  .full-width-sm {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
  }
  .full-width-sm figure {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .full-width-sm .flex-item {
    padding: 0;
  }
  .full-width-sm.module-columns .columns-col-inner-content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .module-columns .flex-item.stories .columns-col-content {
    top: 60%;
  }
  .owl-dots {
    display: none;
  }
  .simple.module-columns .flex-item.stories .columns-col-content h2 {
    font-size: 28px !important;
  }
  .simple.module-columns.single-story-column .flex-item.stories .columns-col-content h2 {
    font-size: 44px !important;
  }
  .simple.module-columns h2.penny-title {
    font-size: 30px;
  }
}
.entry-images {
  border-bottom: 1px solid #ccc;
  margin: 0px 0px 25px;
  position: relative;
  max-width: 1000px;
  text-align: right;
}
@media screen and (max-width: 850px) {
  .entry-images {
    padding-right: 0;
  }
}
.entry-images .img-primary img {
  height: auto;
  width: 100%;
}
.entry-images .thumbs {
  text-align: left;
  padding-top: 8px;
}
.entry-images .thumbs a.thumb {
  display: inline-block;
  margin-right: 8px;
  width: 80px;
}
@media screen and (max-width: 850px) {
  .entry-images .thumbs a.thumb {
    display: none;
  }
}
.entry-images .thumbs a.view_gallery {
  border: 1px solid #aaa;
  color: #3a3a3a;
  cursor: pointer;
  display: none;
  font-size: 9px;
  font-weight: 300;
  height: 80px;
  letter-spacing: .5px;
  line-height: 120%;
  padding: 40px 6px 6px;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .25s ease;
  width: 80px;
}
@media screen and (max-width: 850px) {
  .entry-images .thumbs a.view_gallery {
    display: inline-block;
    height: auto;
    margin: 0 0 10px;
    padding: 6px 12px;
    width: auto;
  }
}
.entry-images .thumbs a.view_gallery span {
  display: block;
}
@media screen and (max-width: 850px) {
  .entry-images .thumbs a.view_gallery span {
    display: inline;
  }
}
.entry-images .thumbs a.view_gallery:hover,
.entry-images .thumbs a.view_gallery:active {
  border-color: #000;
  color: #000;
}
.single-moser-products .inner-content,
.single-moser-projects .inner-content {
  display: flex;
  padding-top: 30px;
}
.sidebar_nav {
  font-family: 'FFDIN', Helvetica, Arial, sans-serif;
  font-weight: 300;
  min-width: 166px;
  margin: 0 35px;
}
@media screen and (max-width: 1023px) {
  .sidebar_nav {
    display: none;
  }
}
.sidebar_nav ul {
  list-style: none;
  margin: 5px 0px;
  padding: 0px;
}
.sidebar_nav ul li {
  list-style: none;
  margin: 0px 0px 25px;
  padding: 0;
}
.sidebar_nav ul li a {
  color: #3a3a3a;
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 15px;
  margin: 0 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}
.sidebar_nav ul li a:hover,
.sidebar_nav ul li a:active {
  font-weight: 500;
}
.sidebar_nav ul li .sub-menu {
  margin: 5px 0px;
  padding: 0px;
}
.sidebar_nav ul li .sub-menu li {
  margin: 5px 0px;
  padding: 0px;
}
.sidebar_nav ul li .sub-menu li a {
  color: #3a3a3a;
  display: block;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 17px;
  margin: 0px;
  text-decoration: none;
  text-transform: none;
}
.sidebar_nav ul li .sub-menu li a:hover,
.sidebar_nav ul li .sub-menu li a:active {
  font-weight: 600;
}
.sidebar_nav ul li .sub-menu li .child-menu {
  background-color: #ececec;
  display: none;
  padding: 10px;
  margin: 4px 0px 10px;
}
.sidebar_nav ul li .sub-menu li .child-menu li {
  line-height: 13px;
  margin: 0px;
  padding: 3px 0px;
}
.sidebar_nav ul li .sub-menu li .child-menu li a {
  color: #212121;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 13px;
  margin-left: 0px;
  text-decoration: none;
}
.sidebar_nav ul li .sub-menu li .child-menu li a:hover,
.sidebar_nav ul li .sub-menu li .child-menu li a:active {
  font-weight: 500;
}
.sidebar_nav ul li .sub-menu li.active .child-menu {
  display: block;
}
.sidebar_nav ul li .sub-menu li .sub-menu {
  background-color: #ececec;
  padding: 10px;
  margin: 4px 0px 10px;
}
.sidebar_nav ul li .sub-menu li .sub-menu li {
  line-height: 13px;
  margin: 0px;
  padding: 3px 0px;
}
.sidebar_nav ul li .sub-menu li .sub-menu li a {
  color: #212121;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 13px;
  margin-left: 0px;
  text-decoration: none;
}
.sidebar_nav ul li .sub-menu li.current-menu-item > a {
  font-weight: 500;
}
.sidebar_nav ul li .sub-menu li.current-menu-ancestor a {
  font-weight: 500;
}
.sidebar_nav ul li .sub-menu li.special {
  margin-top: 25px;
}
.sidebar_nav ul li .sub-menu li.special a {
  font-size: 13px;
  text-transform: uppercase;
}
.menu-secondary-navigation-container {
  margin: 0 10px 10px 0;
}
.projectContent {
  width: 100%;
}
.siteHeader {
  position: sticky;
  top: 0px;
  z-index: 2147483640;
}
@media (min-width: 720px) {
  .siteHeader {
    z-index: 2147483639;
  }
}
#wpadminbar {
  z-index: 2147483640;
}
.headerTop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #c6baac;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .headerTop {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.headerTop > div {
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
}
.headerTop__phone {
  order: 2;
  width: 50%;
  border-right: 1px solid #fff;
}
@media (min-width: 1024px) {
  .headerTop__phone {
    border: 0;
    order: 1;
    width: 25%;
    max-width: 230px;
  }
}
.headerTop__phone a {
  font-size: 16px;
  font-family: 'DIN W01 Medium' !important;
}
.headerTop__message {
  order: 1;
  width: 100%;
  border-bottom: 1px solid #fff;
}
@media (min-width: 1024px) {
  .headerTop__message {
    min-width: 75%;
    border: 0;
    order: 2;
  }
}
.headerTop__message p,
.headerTop__message a {
  font-family: 'DIN W01 Medium' !important;
  font-size: 17px !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  max-width: none !important;
}
.headerTop__showrooms {
  order: 3;
  width: 50%;
}
@media (min-width: 1024px) {
  .headerTop__showrooms {
    order: 3;
    width: 25%;
    max-width: 230px;
  }
}
.headerTop__showrooms a {
  font-size: 16px;
  font-family: 'DIN W01 Medium' !important;
}
#main-navigation.stuck {
  position: fixed;
  top: 0;
  z-index: 20000;
}
#breadcrumbs {
  padding: 5px 20px;
  border-bottom: 1px solid #CCC;
  margin: 6px 0 0 0;
  display: block;
}
#breadcrumbs a,
#breadcrumbs .breadcrumb_last {
  color: #767676;
  font-size: 14px;
  font-weight: normal;
}
#breadcrumbs .breadcrumb-separator {
  background: url(/wp-content/uploads/breadcrumb-separator.png);
  padding: 0px 3px;
  background-size: 11px;
  background-position: 0px 5px;
  background-repeat: no-repeat;
  height: 30px;
  display: inline-block;
  color: transparent;
}
@media only screen and (min-width: 1024px) {
  #breadcrumbs .breadcrumb-separator {
    background-position: 0px 10px;
  }
}
.home #breadcrumbs {
  display: none;
}
li.cart-link a,
a.cart-link {
  text-decoration: none !important;
}
li.cart-link a:hover .cart-text,
li.cart-link a:focus .cart-text,
a.cart-link:hover .cart-text,
a.cart-link:focus .cart-text {
  text-decoration: underline;
}
#mobile-menu-button {
  display: block;
  font-size: 2em;
  color: #666;
  text-align: right;
  line-height: 1;
  margin: 0 0 0 auto;
}
#mobile-menu-button:before {
  font-family: "FontAwesome";
  content: "\f0c9";
}
.logo-holder {
  z-index: 3;
  padding: 10px;
}
.logo-holder img {
  max-width: 200px;
  width: 100%;
  height: auto;
}
.logo-holder img.logo-rev {
  display: none;
}
@media only screen and (min-width: 992px) {
  .logo-holder {
    min-width: 200px !important;
  }
}
header#masthead {
  z-index: 900;
  background-color: #fff;
}
header#masthead {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  header#masthead {
    padding: 20px 15px;
  }
}
li .menu-image {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  background-position: center;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
li .menu-image__dining-1 {
  background-image: url("/wp-content/uploads/a-menu-dining-1.jpg");
}
li .menu-image__dining-2 {
  background-image: url("/wp-content/uploads/a-menu-dining-2.jpg");
}
li .menu-image__living-1 {
  background-image: url("/wp-content/uploads/a-menu-living-1.jpg");
}
li .menu-image__living-2 {
  background-image: url("/wp-content/uploads/a-menu-living-2.jpg");
}
li .menu-image__bedroom-1 {
  background-image: url("/wp-content/uploads/a-menu-bedroom-1.jpg");
}
li .menu-image__bedroom-2 {
  background-image: url("/wp-content/uploads/a-menu-bedroom-2.jpg");
}
li .menu-image__office-1 {
  background-image: url("/wp-content/uploads/a-menu-office-1.jpg");
}
li .menu-image__office-2 {
  background-image: url("/wp-content/uploads/a-menu-office-2.jpg");
}
li .menu-image__shop {
  background-image: url("/wp-content/uploads/shop.jpg");
}
li .menu-image__about-1 {
  background-image: url("/wp-content/uploads/about-1.jpg");
}
li .menu-image__about-2 {
  background-image: url("/wp-content/uploads/about-2.jpg");
}
li .menu-image__inspiration-1 {
  background-image: url("/wp-content/uploads/inspiration-1.jpg");
}
li .menu-image__inspiration-2 {
  background-image: url("/wp-content/uploads/a-inspiration-2.jpg");
}
li .menu-image__custom-1 {
  background-image: url("/wp-content/uploads/custom-1.jpg");
}
li .menu-image__custom-2 {
  background-image: url("/wp-content/uploads/custom-2.jpg");
}
li .menu-image__contact-1 {
  background-image: url("/wp-content/uploads/contact-1.jpg");
}
li .menu-image__contact-2 {
  background-image: url("/wp-content/uploads/contact-2.jpg");
}
.menu-overflow {
  display: none !important;
}
#main-navigation #menu-new-nav {
  overflow: hidden;
}
@media (max-width: 960px) {
  ul:not(#overflow-menu) .menu-item--room-category .sub-menu {
    column-count: 2 !important;
  }
  ul:not(#overflow-menu) .menu-item--room-category .sub-menu .menu-image:last-of-type {
    display: none !important;
  }
}
.overflow-menu-container {
  display: none;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 0px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-height: calc(100vh - 106px);
  overflow-y: auto;
}
.overflow-menu-container.visible {
  display: block;
}
.overflow-menu-container .overflow-menu-header {
  margin-bottom: 15px;
}
.overflow-menu-container .overflow-menu-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
.overflow-menu-container .overflow-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
}
.overflow-menu-container .overflow-menu .menu-image {
  display: none !important;
}
.overflow-menu-container .overflow-menu .menu-item.column-break {
  margin-bottom: 0px !important;
}
.overflow-menu-container .overflow-menu .menu-item-has-children::before {
  content: url(/wp-content/themes/thosmoser2/images/arrow.svg);
  transition: .3s;
  display: block;
  position: absolute;
  right: 0;
  cursor: pointer;
  margin: 10px 30px;
}
.overflow-menu-container .overflow-menu .menu-item-has-children.active::before {
  transform: rotate(180deg);
}
.overflow-menu-container .overflow-menu .menu-icon2 {
  order: 0;
  width: 100%;
  text-align: center;
  padding: 0;
  height: 45px;
}
.overflow-menu-container .overflow-menu .menu-icon2:not(.hamburger-icon) > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.overflow-menu-container .overflow-menu .menu-icon2:not(.hamburger-icon) > a img {
  margin: 0;
}
.overflow-menu-container .overflow-menu .menu-icon2:last-of-type {
  grid-column: 2;
  grid-row: 1;
}
.overflow-menu-container .overflow-menu .menu-icon2:hover {
  text-decoration: none !important;
}
.overflow-menu-container .overflow-menu .menu-icon2 span {
  display: inline-block;
}
.overflow-menu-container .overflow-menu .menu-icon2 ul.sub-menu {
  position: relative !important;
  top: 0px !important;
}
.overflow-menu-container .overflow-menu .menu-icon2 .top-level.active a:before,
.overflow-menu-container .overflow-menu .menu-icon2 .top-level.active a:after {
  display: none !important;
}
.overflow-menu-container .overflow-menu .top-level {
  order: 1;
  grid-column: 1 / span 2;
}
.overflow-menu-container .overflow-menu .top-level a:hover:before {
  content: none;
}
.overflow-menu-container .overflow-menu-item {
  display: block;
  position: relative;
}
.overflow-menu-container .overflow-menu-item a {
  color: #666;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  display: block;
  width: 70%;
}
.overflow-menu-container .overflow-menu-item a:hover {
  text-decoration: none;
}
.overflow-menu-container .overflow-menu-item.menu-item-no-children a {
  width: 100%;
}
.overflow-menu-container .overflow-menu-item ul.sub-menu {
  position: relative;
  background: #F6F6F6 !important;
  box-shadow: none !important;
}
#main-navigation {
  z-index: 1000;
  position: relative;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}
#main-navigation .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100vw;
}
#main-navigation .logo-holder {
  flex-shrink: 0;
}
#main-navigation .menu-holder {
  min-width: 0;
  flex: 1;
  display: flex;
  justify-content: center;
}
#main-navigation .icon-links-container {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 220px;
}
@media screen and (min-width: 1220px) {
  #main-navigation .icon-links-container {
    width: 220px;
  }
}
#main-navigation .icon-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  overflow: hidden;
}
#main-navigation .hamburger-icon {
  display: none;
  flex-shrink: 0;
}
#main-navigation .nolink {
  pointer-events: none;
}
#main-navigation .menuimage {
  display: none;
}
@media (min-width: 130px) {
  #main-navigation .menuimage {
    display: block;
  }
}
@media (min-width: 130px) {
  #main-navigation .menu-item.column-break {
    margin-bottom: 200px;
  }
}
#main-navigation.announcement {
  top: 25px;
}
.call-number {
  display: none;
}
@media screen and (min-width: 130px) {
  .call-number {
    display: inline;
  }
}
#main-navigation ul.menu {
  transition: .3s;
  pointer-events: none;
  background: #fff;
  margin: 0;
  padding: 50px 0 0 0;
  top: 95px !important;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0;
}
@media (max-width: 1379px) {
  #main-navigation ul.menu.visible {
    position: relative;
    top: 5px !important;
    border-bottom: 0 !important;
    max-height: calc(100vh - 125px);
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(204,204,204,0.5) transparent;
  }
  #main-navigation ul.menu.visible::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
  }
  #main-navigation ul.menu.visible::-webkit-scrollbar-thumb {
    background-color: rgba(204,204,204,0.5);
    border-radius: 4px;
  }
  #main-navigation ul.menu.visible::-webkit-scrollbar-track {
    background-color: transparent;
  }
}
@media (max-width: 1379px) {
  .home #main-navigation ul.menu.visible {
    max-height: calc(100vh - 95px);
  }
}
#main-navigation ul.menu.announcement {
  top: 118px !important;
}
@media screen and (min-width: 130px) {
  #main-navigation ul.menu.announcement {
    top: 0 !important;
  }
}
#main-navigation ul.menu li {
  margin: 0;
  padding: 0;
}
#main-navigation ul.menu li a {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 5%;
  padding-right: 5%;
  text-decoration: none;
  width: 70%;
}
#main-navigation ul.menu li.menu-item-no-children a {
  width: 100%;
}
#main-navigation ul.menu button.menu-back-button {
  background: #666;
  display: inline-block;
  vertical-align: middle;
  color: #F2F2F2;
  font-size: 1.125em;
  text-transform: uppercase;
  text-align: left;
  padding: 15px 5%;
  width: 100%;
}
#main-navigation .row {
  margin: 0;
}
ul#menu-new-nav:after,
ul.menu.main-menu:after,
li .menu-image,
.top-level.active a:before,
.top-level.active a:after {
  display: none;
}
.top-level .sub-menu a {
  font-weight: 100;
}
.top-level a {
  font-weight: 600;
  text-transform: uppercase;
}
#main-navigation ul.menu.visible {
  z-index: 1000;
  pointer-events: all;
  opacity: 1;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
#menu-toggle {
  height: 50px;
  width: 50px;
  padding: 10px;
  display: block;
  z-index: 1000;
  border: none;
  background: none;
}
#menu-toggle.is-active {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.1s;
  transform: rotate(45deg);
}
.hamburger {
  width: 27px;
  transition: 1s ease;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger .line {
  height: 3px;
  background-color: #666;
  border-radius: 1px;
  display: block;
  margin: 5px auto 5px 0;
  transition: all 0.3s ease-in-out;
  width: 27px;
  transform-origin: 50% 50%;
}
.hamburger.is-active {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.1s;
}
.hamburger.is-active .line {
  background-color: #666;
}
.hamburger.is-active .line.line:nth-child(2) {
  width: 0px;
}
.hamburger.is-active .line.line:nth-child(1),
.hamburger.is-active .line.line:nth-child(3) {
  transition-delay: 0.3s;
  width: 27px;
}
.hamburger.is-active .line.line:nth-child(1) {
  transform: translateY(9px);
}
.hamburger.is-active .line.line:nth-child(3) {
  transform: translateY(-7px) rotate(90deg);
}
.logo-holder.active:before {
  content: '';
  display: block;
  transition: .3s;
  width: 30px;
  border-top: solid 1px #ccc;
  position: absolute;
  right: 25px;
  top: 62px;
}
.logo-holder.active:after {
  content: '';
  transition: .3s;
  display: block;
  height: 40px;
  border-right: solid 1px #ccc;
  position: absolute;
  right: 39px;
  margin: -14px 0 0 0;
}
.menu-item-has-children::before {
  content: url(/wp-content/themes/thosmoser2/images/arrow.svg);
  transition: .3s;
  display: block;
  position: absolute;
  right: 0;
  cursor: pointer;
  margin: 20px 30px;
}
.menu-item-has-children.active::before {
  transform: rotate(180deg);
}
#main-navigation .menu-item.menu-item-has-children ul.sub-menu {
  height: 0px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1379px) {
  #main-navigation .menu-item.menu-item-has-children ul.sub-menu {
    display: none;
    height: auto;
    pointer-events: all;
  }
}
#main-navigation .menu-item.menu-item-has-children.active ul.sub-menu,
#menu-new-nav .menu-item.menu-item-has-children:hover ul.sub-menu {
  height: auto;
  display: block;
  opacity: 1;
  background: #F6F6F6;
  border-bottom: solid 1px #ccc;
  box-shadow: none;
  pointer-events: all;
}
#menu-new-nav.shop-by-room-active {
  margin: 0 5px 0px auto !important;
}
@media (max-width: 480px) {
  .shop-by-room-dropdown.visible {
    display: none !important;
  }
}
#main-navigation ul.menu li.top-level .sub-menu a {
  padding-left: 0px !important;
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
#main-navigation ul.menu li.top-level a {
  padding-left: 20px !important;
}
.icons {
  display: flex;
  flex-direction: row;
  margin: auto;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0px;
  padding: 0 10px;
}
#main-navigation ul.icons li a {
  font-size: 16px;
}
@media (min-width: 130px) {
  #main-navigation ul.icons li a {
    font-size: 18px;
  }
}
.menu-icon,
.menu-icon2 {
  width: 33%;
  cursor: pointer;
}
.menu-icon:not(.hamburger-icon) span,
.menu-icon2:not(.hamburger-icon) span {
  display: none;
  font-weight: 100;
  text-transform: uppercase;
  font-family: 'DIN W01 Medium';
  padding: 0 0 0 10px;
  margin-bottom: 6px;
  font-size: 0.889em;
}
@media only screen and (min-width: 365px) {
  .menu-icon:not(.hamburger-icon) span,
  .menu-icon2:not(.hamburger-icon) span {
    display: inline;
  }
}
.menu-icon img,
.menu-icon2 img {
  margin: auto;
  display: inline;
}
ul#menu-new-nav.active-search,
ul.menu.main-menu.active-search {
  padding-top: 100px;
}
.menu-holder + .icons {
  display: none;
}
@media only screen and (min-width: 130px) {
  .menu-holder {
    margin-left: auto;
  }
  .menu-holder + .icons {
    display: flex;
    margin: 0;
    margin-left: auto;
    justify-content: end;
    width: 217px;
  }
  .menu.main-menu .icons {
    display: none;
  }
  #header-navigation ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right;
    padding-top: .5em;
  }
  #main-navigation ul.menu li.top-level .sub-menu a {
    padding-left: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .menu-icon:not(.hamburger-icon) span,
  .menu-icon2:not(.hamburger-icon) span {
    display: none;
  }
  .icons {
    position: static;
  }
  .menu-icon,
  .menu-icon2 {
    width: 55px;
    height: 107px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sub-menu li.menu-item a {
    padding-left: 5% !important;
  }
  #main-navigation ul.menu,
  #main-navigation ul.menu.visible {
    top: 0 !important;
    height: 106px;
    background: 0;
  }
  #main-navigation ul.menu li.top-level a {
    padding: 15px 20px 12px !important;
  }
  ul#menu-new-nav.active-search,
  ul.menu.main-menu.active-search {
    padding-top: 0px;
  }
  a#search2-icon.active:before {
    content: '';
    border-left: solid 1px #ccc;
    height: 109px;
    background: #fff;
    z-index: -1;
    width: 82px;
    position: absolute;
    top: 0;
    right: 0;
  }
  #main-navigation ul.menu {
    pointer-events: all;
  }
  #main-navigation ul.menu.visible {
    border: none;
  }
  .top-level.active a {
    position: relative;
  }
  .top-level a:hover {
    text-decoration: underline;
  }
  .top-level a:hover:before {
    content: '';
    display: block;
    border-bottom: solid 1px #ccc;
    position: relative;
    width: 100%;
    left: 0;
    right: 25px;
    top: 30px;
  }
  .top-level .sub-menu a:hover:before {
    display: none !important;
  }
  .top-level.active a:hover:before {
    display: none;
  }
  .top-level.active a:before,
  .top-level.active a:hover:before {
    content: '';
    display: block;
    border-bottom: solid 1px #ccc;
    position: absolute;
    width: calc(100% - 50px) !important;
    left: 25px;
    right: 25px;
    top: 45px;
  }
  .top-level.active .sub-menu a:after,
  .top-level.active .sub-menu a:before,
  .top-level.active  .sub-menu a:hover:before {
    display: none;
  }
  .top-level .sub-menu a {
    font-weight: 100;
  }
  .top-level.active a:after {
    left: 50%;
    content: '';
    display: block;
    height: 40px;
    border-left: solid 1px #ccc;
    position: absolute;
    top: 46px;
  }
  .xxxhamburger,
  .hamburger-icon,
  .menu-item-has-children::before,
  .logo-holder.active:after,
  .logo-holder.active:before {
    display: none;
  }
  .hamburger-icon {
    flex-direction: column;
    justify-content: center;
  }
  .hamburger-icon:focus a {
    outline: 4px dashed #b44c42 !important;
  }
  #header-navigation ul:before,
  #header-navigation ul:after {
    content: normal !important;
  }
  #header-navigation .menu-item,
  #header-navigation .header-phone {
    display: inline-block;
    margin-bottom: 0;
  }
  #header-navigation .header-phone span,
  #header-navigation .header-phone a,
  #header-navigation .menu-item a {
    display: block;
    color: #666;
    padding: 5px 0;
  }
  #mobile-menu-button,
  button.menu-button {
    display: none !important;
  }
  body.admin-bar #main-navigation.stuck {
    top: 32px;
  }
  #main-navigation {
    display: block;
    border-bottom: 1px solid #CCC;
    width: 100%;
    position: sticky;
    right: 0;
    top: 43px;
  }
  #main-navigation ul.menu {
    width: auto;
    overflow: visible;
  }
  #main-navigation ul.menu li {
    border-bottom: 0;
  }
  #main-navigation ul.menu li a {
    display: block;
    width: auto;
  }
  #main-navigation ul.menu li.touch-only {
    display: none !important;
  }
  #main-navigation ul.menu li.menu-back-link {
    display: none !important;
  }
  #main-navigation ul.menu li.menu-item-no-children a {
    width: auto;
  }
  #main-navigation ul.main-menu {
    opacity: 1;
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    top: 25px;
    bottom: auto;
    left: auto;
    right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    max-width: 90%;
    flex-wrap: wrap;
    margin-left: auto;
  }
  #main-navigation ul.main-menu > li {
    display: inline-block;
    z-index: 1000;
    height: 107px;
    padding: 25px 0 0 0;
    flex-shrink: 0;
  }
  #main-navigation ul.main-menu > li > a,
  #main-navigation ul.main-menu > li > i {
    font-size: 16px;
    padding: 15px 12px 12px;
    cursor: pointer;
  }
  #main-navigation ul.main-menu > li:hover > a,
  #main-navigation ul.main-menu > li:focus > a {
    border-bottom-color: solid 1px #CCC;
  }
  #main-navigation ul.main-menu > li:last-child ul.sub-menu {
    left: auto;
    right: 0;
  }
  #main-navigation ul.main-menu > li:last-child ul.sub-menu li ul.sub-menu {
    left: auto;
    right: 99.9%;
  }
  #main-navigation ul.main-menu > li.mega-menu-two-col ul.sub-menu,
  #main-navigation ul.main-menu > li.mega-menu-three-col ul.sub-menu {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    width: 240%;
    min-width: 350px;
  }
  #main-navigation ul.main-menu > li.mega-menu-two-col ul.sub-menu li,
  #main-navigation ul.main-menu > li.mega-menu-three-col ul.sub-menu li {
    white-space: normal;
    display: block;
    -moz-column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    column-break-inside: avoid;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop > ul.menu-depth-1 {
    -webkit-column-rule: 1px solid #CCC;
    -moz-column-rule: 1px solid #CCC;
    column-rule: 1px solid #CCC;
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    width: 650%;
    min-width: 500px;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop > ul.menu-depth-1 > li {
    white-space: normal;
    display: block;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop > ul.menu-depth-1 > li > a {
    font-family: "DIN W01 Medium";
    text-transform: uppercase;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop > ul.menu-depth-1 li.menu-item-no-children a {
    padding: 5px 20px;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop > ul.menu-depth-1 li.menu-item-has-children {
    padding-bottom: 1em;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop > ul.menu-depth-1 li.menu-item-has-children ul.menu-depth-2 {
    display: block;
    position: relative;
    left: 0;
    border: 0;
    padding: 0;
    -webkit-columns: auto;
    -moz-columns: auto;
    columns: auto;
    width: auto !important;
    min-width: auto !important;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop > ul.menu-depth-1 li.menu-item-has-children ul.menu-depth-2 a {
    color: #666;
    padding: 3px 20px;
  }
  #main-navigation ul.sub-menu,
  #main-navigation .menu-item ul.sub-menu,
  #main-navigation .menu-item.active ul.sub-menu {
    opacity: 0;
    display: none;
    transition: .3s;
    padding: 15px;
    column-count: 3;
    background: #FFF !important;
    text-align: left;
    position: absolute;
    top: 106.5px !important;
    bottom: auto;
    left: 0;
    right: auto;
    min-width: 100%;
    height: 350px !important;
    z-index: 1000;
    border-top: solid 1px #ccc;
  }
  #main-navigation .menu-item.menu-item-has-children.active ul.sub-menu {
    opacity: 1;
    display: block;
    box-shadow: 0px 10px 16px rgba(0,0,0,0.15);
    border-bottom: none;
  }
  #main-navigation #overflow-menu .menu-item.menu-item-has-children.active ul.sub-menu {
    position: relative !important;
    top: 0px !important;
    column-count: 1;
    height: auto !important;
    background: #F6F6F6 !important;
  }
  #main-navigation #overflow-menu .menu-item.menu-item-has-children.active ul.sub-menu li a {
    font-size: 16px;
  }
  #main-navigation .row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    height: 106px;
    margin: 0 0 0 0;
  }
  #main-navigation ul.sub-menu li {
    display: block;
  }
  #main-navigation ul.sub-menu li a {
    font-size: 0.875em;
    padding: 14px 20px;
  }
  #main-navigation ul.sub-menu li a:hover,
  #main-navigation ul.sub-menu li a:focus {
    text-decoration: underline;
  }
  #main-navigation ul.sub-menu li ul.sub-menu {
    left: 99.9%;
    top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #main-navigation ul.main-menu > li.mega-menu-two-col ul.sub-menu {
    width: 180%;
    min-width: 300px;
  }
  #main-navigation ul.main-menu > li.mega-menu-three-col ul.sub-menu {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    width: 350%;
    min-width: 450px;
  }
  #main-navigation ul.main-menu > li.mega-menu-shop ul.sub-menu {
    width: 500%;
    min-width: 450px;
  }
  #main-navigation ul.main-menu > li:last-child ul.sub-menu {
    left: 0;
    right: auto;
  }
  #main-navigation ul.main-menu > li:last-child ul.sub-menu li ul.sub-menu {
    left: 99.9%;
    right: auto;
  }
}
.menu-item--room-category {
  transition: all 0.3s ease;
}
.menu-item--room-category.consolidated {
  display: none !important;
}
.shop-by-room-dropdown {
  display: none;
}
.shop-by-room-dropdown.visible {
  display: block;
}
.shop-by-room-dropdown .shop-by-room-link {
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding: 15px 25px 12px 15px !important;
}
.shop-by-room-dropdown .shop-by-room-link::before {
  content: url(/wp-content/themes/thosmoser2/images/arrow.svg);
  transition: .3s;
  display: block;
  position: absolute;
  right: 0;
  cursor: pointer;
  margin: 0;
}
.shop-by-room-dropdown .shop-by-room-link.active::before {
  transform: rotate(180deg);
}
.shop-by-room-dropdown .shop-by-room-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 200px;
  padding: 0;
}
.shop-by-room-dropdown .shop-by-room-submenu.visible {
  display: block;
}
.shop-by-room-dropdown .shop-by-room-submenu li {
  display: block;
}
.shop-by-room-dropdown .shop-by-room-submenu li a {
  display: block;
  padding: 10px 15px;
  color: #666;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}
.shop-by-room-dropdown .shop-by-room-submenu li a:hover {
  background: #f5f5f5;
}
.shop-by-room-dropdown .shop-by-room-submenu li:last-child a {
  border-bottom: none;
}
.dropdown-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  margin: 0 30px;
}
.dropdown-toggle .arrow-icon {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/thosmoser2/images/arrow.svg) no-repeat center;
  background-size: contain;
  transition: .3s;
}
.dropdown-toggle:focus {
  outline: 4px dashed #b44c42 !important;
  outline-offset: 2px;
}
.overflow-menu-container .dropdown-toggle {
  display: block;
}
.overflow-menu-container .menu-item-has-children.active .dropdown-toggle .arrow-icon {
  transform: rotate(180deg);
}
.overflow-menu-container .menu-item-has-children::before {
  display: none !important;
}
#main-navigation ul.main-menu {
  max-width: 100% !important;
}
.page-template-50-years #content {
  padding-bottom: 0;
}
.page-template-50-years .fifty-year-landing {
  margin-top: 5rem;
}
.page-template-50-years p#breadcrumbs {
  display: none;
}
.page-template-50-years h2 {
  font-size: 2.75rem;
  margin-top: .4rem;
  text-transform: unset;
}
.page-template-50-years p a {
  font-weight: bold;
  text-decoration: underline;
}
.page-template-50-years p a:hover {
  text-decoration: underline;
}
.page-template-50-years .masthead {
  flex-flow: row wrap;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .masthead {
    display: flex;
  }
}
.page-template-50-years .masthead::before {
  display: block;
}
.page-template-50-years .masthead .icon {
  background-color: #686058;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .masthead .icon {
    height: 195px;
    border-right: 10px solid #fff;
  }
}
.page-template-50-years .masthead .icon img {
  width: 120px;
  padding: 1rem;
}
.page-template-50-years .masthead .heading {
  background-color: #e6e4c9;
  height: 195px;
}
.page-template-50-years .masthead .heading h1 {
  margin-top: .9em !important;
  font-family: 'Noe Display', serif;
  color: #524c45;
  text-transform: unset;
  font-size: 4.5rem;
  font-weight: 700;
  padding: 2rem;
}
@media (min-width: 1200px) {
  .page-template-50-years .masthead .heading h1 {
    font-size: 6.5rem;
  }
}
.page-template-50-years .masthead .icon,
.page-template-50-years .masthead .heading {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .masthead .col-md-4 {
    padding-right: 0;
  }
  .page-template-50-years .masthead .col-md-8 {
    padding-left: 0;
  }
}
.page-template-50-years .intro {
  margin-bottom: 5rem;
}
.page-template-50-years .intro img {
  transition: all 0.5s ease;
}
.page-template-50-years .intro img:hover {
  opacity: .8;
}
.page-template-50-years .intro .heading {
  text-align: center;
}
@media (min-width: 1200px) {
  .page-template-50-years .intro .heading {
    text-align: right;
  }
}
.page-template-50-years .intro .text span.quote {
  font-family: 'Noe Display', serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 4rem;
  margin-top: 2rem;
  display: inline;
}
.page-template-50-years .intro .text span.credit {
  text-align: center;
  font-style: italic;
  color: #7c7c7c;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .intro .text {
    padding: 1rem 2rem 0;
  }
}
.page-template-50-years .timeline {
  margin-bottom: 8rem;
}
.page-template-50-years .timeline .macro-photo {
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .timeline .macro-photo {
    min-height: 1000px;
    margin-bottom: 0;
  }
}
.page-template-50-years .timeline h3 {
  background-color: #3b3834;
  color: #fff;
  text-align: center;
  font-size: 6rem;
  margin: 0;
  font-family: 'Noe Display', serif;
  padding: 1.2rem 0 0;
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .timeline .details {
    padding: 0.5rem 2rem 0 3.5rem;
  }
}
.page-template-50-years .timeline .details h2 {
  text-transform: unset;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .timeline .details h2 {
    text-align: left;
  }
}
.page-template-50-years .timeline .details img {
  margin-bottom: 2rem;
}
.page-template-50-years .timeline .details p {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .timeline .details p {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-template-50-years .gallery .slider-copy {
  display: none;
}
.page-template-50-years .gallery .slider-copy.active {
  transition: all 0.5s ease;
  display: block;
}
.page-template-50-years .gallery h2 {
  margin-bottom: 2rem;
  text-transform: unset;
}
.page-template-50-years .gallery .text {
  min-height: 200px;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .page-template-50-years .gallery .text {
    text-align: right;
  }
}
.page-template-50-years .gallery p {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .gallery p {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-template-50-years .gallery .owl-dots {
  display: none;
}
.page-template-50-years .gallery .owl-nav {
  position: absolute;
  top: 43%;
  width: 100%;
  margin-top: 0;
}
.page-template-50-years .gallery .owl-nav .owl-prev {
  float: left;
  margin-left: 7%;
  padding: .5rem .5rem 0 .25rem !important;
}
.page-template-50-years .gallery .owl-nav .owl-next {
  float: right;
  margin-right: 7%;
  padding: .5rem .25rem 0 .5rem !important;
}
.page-template-50-years .gallery .owl-nav .owl-prev:hover,
.page-template-50-years .gallery .owl-nav .owl-next:hover {
  background-color: #524c45;
  background-color: rgba(82,76,69,0.75);
}
.page-template-50-years .gallery .owl-nav .owl-prev i,
.page-template-50-years .gallery .owl-nav .owl-next i {
  color: #e6e4c9;
  font-size: 3rem;
}
.page-template-50-years .gallery .owl-item img {
  transition: all 0.5s ease;
  border-right: 1px solid #fff;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .gallery .owl-item img {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.page-template-50-years .gallery .owl-item img:hover {
  opacity: .8;
}
.page-template-50-years .gallery .owl-thumbs {
  text-align: center;
  padding: 1px 20px 20px;
}
.page-template-50-years .gallery .owl-thumbs .owl-thumb-item {
  width: 8%;
  display: inline-flex;
  border-right: 1px solid #fff;
  opacity: .7;
  transition: all 0.2s ease;
}
.page-template-50-years .gallery .owl-thumbs .owl-thumb-item:hover,
.page-template-50-years .gallery .owl-thumbs .owl-thumb-item.active {
  opacity: 1;
  cursor: pointer;
}
.page-template-50-years hr {
  border-top: 1px solid #bbb;
  margin: 5rem 0;
}
.page-template-50-years .more-stories {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .more-stories {
    padding: 0 4rem;
  }
}
.page-template-50-years .more-stories img {
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
}
.page-template-50-years .more-stories img:hover {
  opacity: .8;
}
.page-template-50-years .more-stories h2 {
  font-family: 'Noe Display', serif;
  font-weight: 700;
  text-transform: unset;
  font-size: 3.2rem;
  margin-bottom: 4rem;
}
.page-template-50-years .more-stories h5 {
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 4rem;
}
.page-template-50-years .more-stories h5 a {
  color: #686058;
}
.page-template-50-years .more-stories p {
  font-weight: 700;
  text-align: center;
}
.page-template-50-years .more-stories-paragraph {
  text-align: center;
  margin-bottom: 6rem;
}
.page-template-50-years .email-newsletter-container {
  background-color: #f5f5f5;
  text-align: center;
  padding: 7rem 0;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .email-newsletter-container {
    padding: 7rem 5rem;
  }
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .email-newsletter-container .email-newsletter {
    padding: 0 4rem;
  }
}
.page-template-50-years .email-newsletter-container img.stump {
  width: 100px;
  margin: 0 auto 4rem;
}
.page-template-50-years .email-newsletter-container h2 {
  font-family: 'Noe Display', serif;
  font-weight: 700;
  text-transform: unset;
  font-size: 4.75rem;
  margin-bottom: .5rem;
}
.page-template-50-years .email-newsletter-container p {
  font-size: 2.5rem;
  margin-bottom: 7rem;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years .email-newsletter-container p {
    font-size: 3.5rem;
  }
}
.page-template-50-years form.fifty-year-newsletter-form input[type="text"],
.page-template-50-years form.fifty-year-newsletter-form input[type="email"] {
  background-color: #d9d9d9;
  font-size: 1.5rem;
  padding: 0 1.5rem;
}
.page-template-50-years form.fifty-year-newsletter-form input[type="email"] {
  margin-bottom: 1rem;
}
.page-template-50-years form.fifty-year-newsletter-form input[type="submit"] {
  background-color: #3b3734;
  font-family: 'Noe Display', serif;
  color: #fff;
  text-transform: unset;
  border-radius: 5px;
  font-size: 2.75rem;
  padding: 1rem 1rem .5rem;
  font-weight: 700;
}
.page-template-50-years form.fifty-year-newsletter-form input[type="submit"]:hover {
  background-color: #e9e5de;
  color: #333;
}
.page-template-50-years form.fifty-year-newsletter-form .first-last-name input[type="text"] {
  margin-bottom: 1em;
}
.page-template-50-years form.fifty-year-newsletter-form li.gfield {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .page-template-50-years form.fifty-year-newsletter-form li.gfield {
    margin-bottom: .75rem;
  }
}
.page-template-50-years .gform_wrapper {
  padding: 0 15px;
}
.page-template-50-years .sc-btn--forward:after {
  content: '';
  display: none;
}
.swatch-modal-open {
  cursor: pointer;
}
body.page-template-page-materials-landing #breadcrumbs,
body.page-template-page-materials-detail #breadcrumbs {
  font-size: 18px;
}
body.page-template-page-materials-landing.zoomed #content,
body.page-template-page-materials-detail.zoomed #content {
  padding: 0 !important;
}
body.page-template-page-materials-landing #wood:before,
body.page-template-page-materials-landing #fabric:before,
body.page-template-page-materials-landing #leather:before,
body.page-template-page-materials-detail #wood:before,
body.page-template-page-materials-detail #fabric:before,
body.page-template-page-materials-detail #leather:before {
  display: block;
  content: " ";
  margin-top: -106px;
  height: 106px;
  visibility: hidden;
  pointer-events: none;
}
body.page-template-page-materials-landing h1,
body.page-template-page-materials-landing h2,
body.page-template-page-materials-landing h3,
body.page-template-page-materials-detail h1,
body.page-template-page-materials-detail h2,
body.page-template-page-materials-detail h3 {
  font-family: "Noe Display";
  -webkit-font-smoothing: antialiased;
  text-transform: none;
}
body.page-template-page-materials-landing h1,
body.page-template-page-materials-detail h1 {
  font-size: 54px;
}
body.page-template-page-materials-landing h2,
body.page-template-page-materials-landing h3,
body.page-template-page-materials-detail h2,
body.page-template-page-materials-detail h3 {
  margin-top: 5px;
}
body.page-template-page-materials-landing .section-content p,
body.page-template-page-materials-detail .section-content p {
  font-size: 20px;
  max-width: 940px;
  margin: 0px auto 20px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-landing .section-content p,
  body.page-template-page-materials-detail .section-content p {
    font-size: 24px;
  }
}
body.page-template-page-materials-landing .masthead,
body.page-template-page-materials-detail .masthead {
  position: relative;
}
body.page-template-page-materials-landing .masthead h1,
body.page-template-page-materials-detail .masthead h1 {
  position: absolute;
  text-align: center;
  font-size: 38px;
  color: #FFF;
  bottom: 25px;
  right: 0;
  left: 0;
}
@media (min-width: 600px) {
  body.page-template-page-materials-landing .masthead h1,
  body.page-template-page-materials-detail .masthead h1 {
    font-size: 48px;
  }
}
body.page-template-page-materials-landing .masthead img,
body.page-template-page-materials-detail .masthead img {
  font-family: 'object-fit: cover; object-position: center;';
  object-position: center;
  object-fit: cover;
  max-height: 650px;
}
body.page-template-page-materials-landing .custom-module-wrapper {
  margin: 20px 0 0;
  padding: 0 15px;
}
body.page-template-page-materials-landing .custom-module-wrapper .container {
  width: auto !important;
}
body.page-template-page-materials-landing .material-categories {
  justify-content: space-between;
  flex-direction: column;
  display: flex;
}
@media (min-width: 600px) {
  body.page-template-page-materials-landing .material-categories {
    flex-direction: row;
  }
}
body.page-template-page-materials-landing .material-category {
  margin: 0 0 30px;
  width: 100%;
}
@media (min-width: 600px) {
  body.page-template-page-materials-landing .material-category {
    width: calc((100% / 3) - 15px);
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-landing .material-category {
    width: calc((100% / 3) - 30px);
  }
}
body.page-template-page-materials-landing .material-category .button-container {
  text-align: center;
  margin: 0 0 20px;
}
@media (min-width: 600px) {
  body.page-template-page-materials-landing .material-category .button-container {
    margin: 0 0 45px;
  }
}
body.page-template-page-materials-landing .material-category .button-container .button {
  line-height: normal;
  padding: 10px 55px;
  min-width: 174px;
}
body.page-template-page-materials-landing .material-category__image {
  display: block;
}
body.page-template-page-materials-landing .material-category__image img {
  object-fit: cover;
  width: 100%;
  height: 350px;
  transition: 0.25s ease all;
}
body.page-template-page-materials-landing .material-category__image img:hover {
  opacity: 0.9;
}
@media (min-width: 900px) {
  body.page-template-page-materials-landing .material-category__image img {
    min-height: 600px;
    height: auto;
  }
}
body.page-template-page-materials-detail #leather + .swatch-grid .swatch-grid-item {
  width: 100px;
  height: 100px;
}
@media (min-width: 1200px) {
  body.page-template-page-materials-detail #leather + .swatch-grid .swatch-grid-item {
    width: 115px;
    height: 115px;
  }
}
body.page-template-page-materials-detail ul.material-swatches {
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 15px 0 0;
  display: flex;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail ul.material-swatches {
    padding: 30px 0 15px;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail ul.material-swatches--gapped .material-swatch__image img {
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail ul.material-swatches--full-width {
    width: 100%;
    padding: 30px 30px 15px;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail ul.material-swatches--full-width {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail ul.material-swatches--full-width .material-swatch {
    max-width: 196px;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail ul.material-swatches--full-width .material-swatch__image {
    width: 196px;
    height: 196px;
  }
}
body.page-template-page-materials-detail .material-swatch {
  flex: 1 1 50%;
  position: relative;
  margin-right: 10px;
  max-width: 290px;
}
@media (min-width: 414px) {
  body.page-template-page-materials-detail .material-swatch {
    max-width: calc(40%);
  }
}
body.page-template-page-materials-detail .material-swatch--no-dot .material-swatch__title:before {
  content: none !important;
}
body.page-template-page-materials-detail .material-swatch:first-child .material-swatch__image {
  position: relative;
}
body.page-template-page-materials-detail .material-swatch:last-child .material-swatch__image {
  position: relative;
}
body.page-template-page-materials-detail .material-swatch__image img {
  font-family: 'object-fit: cover; object-position: center;';
  object-position: center;
  object-fit: cover;
  height: 125px;
  width: 100%;
}
@media (min-width: 600px) {
  body.page-template-page-materials-detail .material-swatch__image img {
    height: 196px;
  }
}
body.page-template-page-materials-detail .material-swatch__title {
  position: relative;
  padding: 15px 5px 25px;
  text-align: center;
  display: block;
  top: 2px;
}
body.page-template-page-materials-detail .material-swatch__title--align-left {
  text-align: left;
}
body.page-template-page-materials-detail .material-swatch__title--align-right {
  text-align: right;
}
body.page-template-page-materials-detail .material-fabric {
  padding-bottom: 40px;
}
body.page-template-page-materials-detail .material-wood h1 {
  text-align: center;
  margin: 70px 0px 80px !important;
  font-size: 54px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .material-wood h1 {
    margin: 70px 0px 20px !important;
  }
}
body.page-template-page-materials-detail .material-wood h2 {
  font-size: 36px;
}
body.page-template-page-materials-detail .material-upholstery {
  margin: 25px 0 20px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .material-upholstery {
    margin: 35px 0 25px;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .material-fabric .swatch-grids {
    margin-top: 55px;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .wood-descriptions {
    padding-top: 30px;
    column-count: 2;
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .wood-descriptions .material-description {
    padding: 0 15px 0;
  }
}
body.page-template-page-materials-detail .material-description {
  display: inline-block;
  width: 100%;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .material-description {
    padding: 45px 0px 0;
  }
}
body.page-template-page-materials-detail .material-description--no-padding {
  padding: 0;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .material-description--inline-title {
    flex-direction: row;
    display: flex;
  }
}
body.page-template-page-materials-detail .material-description--inline-title .material-description__title {
  padding-right: 25px;
  min-width: 33%;
  flex: 1;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .material-description--inline-title .material-description__title {
    padding-right: 65px;
  }
}
body.page-template-page-materials-detail .material-description--inline-title .material-description__title h2,
body.page-template-page-materials-detail .material-description--inline-title .material-description__title h3 {
  font-family: "DIN W01 Light";
  text-transform: uppercase;
}
body.page-template-page-materials-detail .material-description--inline-title .material-description__title h2 {
  font-size: 36px;
}
body.page-template-page-materials-detail .material-description h2 {
  margin-top: 0;
}
body.page-template-page-materials-detail .contact-block {
  border: solid 15px #CCC;
  display: inline-block;
  margin: 15px 0 0;
  padding: 35px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .contact-block {
    margin: 30px 15px 0px;
  }
}
body.page-template-page-materials-detail .contact-block hr {
  border-top: 1px solid #CCC;
  margin: 22px 0;
}
body.page-template-page-materials-detail .contact-block p {
  text-align: center;
}
body.page-template-page-materials-detail .contact-block .button-container {
  text-align: center;
  display: block;
  width: 100%;
}
body.page-template-page-materials-detail .contact-block .button-container + .button-container {
  margin-top: 10px;
}
body.page-template-page-materials-detail .contact-block .button {
  display: inline-block;
  min-width: 180px;
  margin: 0 auto;
}
body.page-template-page-materials-detail .swatch-grids {
  justify-content: space-between;
  position: relative;
  flex-flow: row wrap;
  display: flex;
  margin: 0;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-grids {
    margin: 25px 0 0;
  }
}
body.page-template-page-materials-detail .swatch-grid {
  align-content: flex-start;
  margin: 0 -5px 10px;
  flex-flow: row wrap;
  display: flex;
  width: 100%;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-grid {
    width: calc((100% / 2) - 20px);
  }
}
body.page-template-page-materials-detail .swatch-grid h3 {
  padding: 0 5px;
  width: 100%;
  font-family: "DIN W01 Regular";
}
body.page-template-page-materials-detail .swatch-grid .swatch-grid-item {
  width: calc((100% / 4) - 10px);
  margin: 5px;
  height: 75px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-grid .swatch-grid-item {
    height: 100px;
  }
}
@media (min-width: 1200px) {
  body.page-template-page-materials-detail .swatch-grid .swatch-grid-item {
    height: 125px;
  }
}
body.page-template-page-materials-detail .swatch-grid .swatch-grid-item img {
  height: 100%;
  width: 100%;
}
body.page-template-page-materials-detail .swatch-grid .swatch-grid-item__content {
  display: none;
}
body.page-template-page-materials-detail .swatch-grid--full {
  margin: 25px -5px 50px;
  width: calc(100% + 10px);
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-grid--full {
    margin: 50px 0 100px;
  }
}
body.page-template-page-materials-detail .swatch-grid--full img {
  width: calc((100% / 4) - 10px);
  margin: 5px;
}
@media (min-width: 600px) {
  body.page-template-page-materials-detail .swatch-grid--full img {
    width: calc((100% / 6) - 10px);
  }
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-grid--full img {
    width: calc((100% / 9) - 10px);
  }
}
body.page-template-page-materials-detail .swatch-modal {
  background: rgba(63,76,94,0.95);
  padding: 15px 20px;
  max-width: 540px;
  display: none;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-modal {
    padding: 30px 40px;
  }
}
@media (min-width: 1200px) {
  body.page-template-page-materials-detail .swatch-modal {
    max-width: 580px;
  }
}
body.page-template-page-materials-detail .swatch-modal--is-active {
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  z-index: 999;
}
body.page-template-page-materials-detail .swatch-modal--is-active:before {
  content: '';
  top: -100vh;
  left: -100vw;
  width: 1000vw;
  height: 1000vh;
  background-color: #000;
  opacity: 0.4;
  position: absolute;
  z-index: -1;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-modal--is-active {
    width: auto;
    transform: translateX(-50%) translateY(-48%);
  }
}
body.page-template-page-materials-detail .swatch-modal--is-active .swatch-grid-item img {
  max-height: 500px;
  max-width: 500px;
}
body.page-template-page-materials-detail .swatch-modal .swatch-grid-item {
  color: #FFF;
  cursor: pointer;
  pointer-events: none;
}
body.page-template-page-materials-detail .swatch-modal .swatch-grid-item img {
  width: 100%;
}
body.page-template-page-materials-detail .swatch-modal .swatch-grid-item__content {
  flex-direction: column;
  padding: 15px 0 0;
  display: flex;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-modal .swatch-grid-item__content {
    flex-direction: row;
    padding: 30px 20px;
  }
}
body.page-template-page-materials-detail .swatch-modal .swatch-grid-item__content h3 {
  margin: 0;
  color: #fff;
}
body.page-template-page-materials-detail .swatch-modal .swatch-grid-item__content p {
  padding: 0 50px 0 0;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .swatch-modal .swatch-grid-item__content p {
    padding: 0 50px 0 30px;
    margin: 0;
  }
}
body.page-template-page-materials-detail .close-swatch-modal {
  position: absolute;
  cursor: pointer;
  width: 30px;
  right: 5px;
  top: 3px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .close-swatch-modal {
    width: 36px;
    right: 20px;
    top: 15px;
  }
}
body.page-template-page-materials-detail .customCTA {
  border: 25px solid #D1D3D4;
  padding: 20px;
  margin: 80px 0px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .customCTA {
    display: flex;
    justify-content: space-between;
  }
}
body.page-template-page-materials-detail .customCTA__content {
  padding: 20px 40px;
}
body.page-template-page-materials-detail .customCTA__content p {
  text-align: center;
  font-size: 18px;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .customCTA__content p {
    font-size: 28px;
  }
}
body.page-template-page-materials-detail .customCTA__buttons {
  padding: 40px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 3px solid #D1D3D4;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .customCTA__buttons {
    border-top: 0;
    border-left: 3px solid #D1D3D4;
    padding: 20px 40px 20px 40px;
  }
}
body.page-template-page-materials-detail .customCTA__buttons .button {
  white-space: nowrap;
  padding: 15px 30px;
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  body.page-template-page-materials-detail .customCTA__buttons .button {
    font-size: 2rem;
  }
}
.ourPrinciplesMain p {
  font-size: 18px;
}
@media screen and (min-width: 1400px) {
  .ourPrinciplesMain p {
    font-size: 26px;
  }
}
.ourPrinciplesMain a button {
  font-family: "DIN W01 Regular";
}
@media screen and (min-width: 1400px) {
  .ourPrinciplesMain a button {
    font-size: 22px;
  }
}
.ourPrinciplesMain .fixedWidthContent p,
.ourPrinciplesMain .fixedWidthContent a {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .ourPrinciplesMain .fixedWidthContent p,
  .ourPrinciplesMain .fixedWidthContent a {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .ourPrinciplesMain .fixedWidthContent p,
  .ourPrinciplesMain .fixedWidthContent a {
    font-size: 32px;
  }
}
.ourPrinciplesMain .owl-carousel.owl-theme .owl-nav {
  justify-content: space-between;
  width: 100%;
  position: absolute;
  margin: 0;
  display: flex;
  top: 50%;
  pointer-events: none;
  max-width: 100vw;
}
@media (min-width: 900px) {
  .ourPrinciplesMain .owl-carousel.owl-theme .owl-nav {
    display: flex;
    margin: 0;
    width: 100%;
  }
}
.ourPrinciplesMain .owl-carousel.owl-theme .owl-nav button {
  background: url('/wp-content/themes/thosmoser2/images/icon-arrow--blue.svg'), rgba(255,255,255,0.65);
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  border: 2px solid #FFF;
  background-size: 15px;
  padding: 28px 29px !important;
  height: 15px;
  width: 15px;
  pointer-events: all;
}
@media (min-width: 900px) {
  .ourPrinciplesMain .owl-carousel.owl-theme .owl-nav button {
    padding: 33px 34px;
    margin: 0;
  }
}
.ourPrinciplesMain .owl-carousel.owl-theme .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.ourPrinciplesMain .owl-carousel.owl-theme .owl-nav button:focus {
  outline: none;
}
.ourPrinciplesMain .owl-carousel.owl-theme .owl-nav button span {
  display: none;
}
@media screen and (min-width: 768px) {
  .ourPrinciplesMain .accordion--craftsmanship .owl-carousel {
    display: flex;
  }
}
.product-masthead--video {
  position: relative;
}
.fixedWidthContent {
  margin: 0 auto;
  max-width: 1440px;
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .fixedWidthContent {
    padding: 40px 20px;
  }
}
.accordionNav {
  padding: 30px 0px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.accordionNav li {
  width: 100%;
  margin: 10px 0px;
}
@media screen and (min-width: 600px) {
  .accordionNav li {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .accordionNav li {
    width: 25%;
    max-width: 300px;
  }
}
.accordionNav li a {
  display: block;
  padding: 10px 20px 15px;
  text-align: center;
  border: 1px solid #D1D2D4;
}
@media screen and (min-width: 600px) {
  .accordionNav li a {
    margin: 0px 10px;
  }
}
.videoHeading {
  color: #ffffff;
  position: absolute;
  text-transform: none;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 24px;
  margin-bottom: 1.2em;
  text-align: center;
  font-family: Noe Display;
  font-weight: bold;
  text-shadow: 7px 7px 5px rgba(0,0,0,0.5);
  padding: 0px 20px;
}
@media screen and (min-width: 480px) {
  .videoHeading {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .videoHeading {
    font-size: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .videoHeading {
    font-size: 58px;
  }
}
@media screen and (min-width: 1500px) {
  .videoHeading {
    top: 65vh;
    bottom: initial;
  }
}
.blueBlockquote {
  background: #334254;
  color: #ffffff;
  padding: 55px 0px 40px;
}
.blueBlockquote__inner {
  max-width: 1440px;
  padding: 0px 20px;
  margin: 0 auto;
}
.blueBlockquote p {
  text-align: center;
  font-size: 24px;
  font-family: Noe Display;
  font-weight: bold;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .blueBlockquote p {
    font-size: 40px;
  }
}
.blueBlockquote .signature {
  display: block;
  margin: 25px auto 0px;
}
.accordion__title {
  font-family: Noe Display;
  font-weight: bold;
  text-align: center;
  text-transform: none;
  padding: 35px 15px 35px;
  margin: 0;
  border-top: 1px solid #dedede;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .accordion__title {
    font-size: 44px;
  }
}
.accordion__content {
  display: none;
  position: relative;
  max-width: 1400px;
  margin: 0 auto 40px;
  opacity: 0;
  transition: 0.5s opacity ease;
}
.accordion__text {
  padding: 20px;
}
.accordion__text p {
  margin-bottom: 25px;
}
@media screen and (min-width: 480px) {
  .accordion--design .hoverImages {
    justify-content: space-between;
    align-items: initial;
  }
  .accordion--design .hoverImage {
    min-width: 0;
    width: calc(33% - 5px);
  }
}
@media screen and (min-width: 768px) {
  .accordion--design .accordion__content {
    grid-template-columns: 66% 33%;
  }
  .accordion--design .hoverImages {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .accordion--design .hoverImage {
    width: calc(50% - 10px);
  }
  .accordion--design .hoverImage:last-child {
    position: absolute;
    width: calc(33% - 5px);
    height: 100%;
    right: 0;
    top: 0;
  }
  .accordion--design .hoverImage:last-child .hoverImage__caption {
    bottom: 20px;
  }
  .accordion--design .hoverImage:last-child img {
    height: calc(100% - 20px);
    width: 100%;
    max-width: none;
    object-fit: cover;
  }
  .accordion--design .accordion__text {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: none) and (-ms-high-contrast: active) {
  .accordion--design .hoverImages,
  .accordion--design .accordion__text {
    max-width: 66%;
  }
}
.accordion--craftsmanship .hoverImages {
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .accordion--craftsmanship .hoverImages {
    flex-wrap: wrap;
    align-items: initial;
  }
  .accordion--craftsmanship .hoverImages img {
    max-width: 100%;
  }
  .accordion--craftsmanship .hoverImages img:nth-child(1) {
    width: calc(33% - 5px);
  }
  .accordion--craftsmanship .hoverImages img:nth-child(2) {
    width: calc(66% - 5px);
  }
  .accordion--craftsmanship .hoverImages img:nth-child(3) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 900px) {
  .accordion--craftsmanship .hoverImages img:nth-child(3) {
    width: 50%;
    margin-top: 20px;
  }
  .accordion--craftsmanship .accordion__text {
    width: 50%;
    position: absolute;
    padding-bottom: 0;
    bottom: 0;
    right: 0;
  }
  .accordion--craftsmanship .accordion__text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .accordion--craftsmanship .accordion__text p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .accordion--craftsmanship .accordion__text p {
    font-size: 26px;
  }
}
.accordion--materials .accordion__content {
  flex-wrap: wrap;
}
.accordion--materials .columnOne {
  height: 350px;
  width: 100%;
  background-image: url('../images/woods.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.accordion--materials .columnOne img {
  display: none;
}
@media screen and (min-width: 768px) {
  .accordion--materials .accordion__content {
    justify-content: space-between;
  }
  .accordion--materials .columnOne {
    background: none;
    height: auto;
    width: calc(40% - 10px);
  }
  .accordion--materials .columnOne img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .accordion--materials .columnTwo {
    width: calc(60% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.accordion--relationships .hoverImages {
  width: 100%;
}
.accordion--relationships .hoverImages img:nth-child(2) {
  display: none;
}
.accordion--relationships .accordion__text {
  max-width: 900px;
}
@media screen and (min-width: 900px) {
  .accordion--relationships .hoverImages {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    overflow: scroll;
  }
  .accordion--relationships .hoverImages img {
    height: 100%;
    width: auto;
  }
  .accordion--relationships .hoverImages img:nth-child(1) {
    margin-right: 10px;
  }
  .accordion--relationships .hoverImages img:nth-child(2) {
    margin-left: 10px;
    display: block;
  }
}
@media screen and (min-width: 1360px) {
  .accordion--relationships .hoverImages {
    overflow: hidden;
  }
}
@media screen and (min-width: 1400px) {
  .accordion--relationships .accordion__text {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    max-width: none;
  }
  .accordion--relationships .accordion__text p:nth-child(1) {
    max-width: 870px;
    margin-right: 50px;
  }
}
.hoverImages {
  display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
  justify-content: space-between;
  align-items: center;
}
.hoverImage {
  position: relative;
  min-width: 100%;
  max-width: 100vw;
}
.hoverImage__alt {
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 1s opacity ease;
  max-width: 100%;
}
.hoverImage__caption {
  position: absolute;
  bottom: 0;
  color: #ffffff;
  margin: 15px auto;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.75);
}
.hoverImage:hover .hoverImage__alt {
  opacity: 1;
}
.columns {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .columns {
    display: flex;
    flex-wrap: nowrap;
    padding: 100px 20px;
  }
}
@media screen and (min-width: 768px) {
  .columns--two .column {
    width: 50%;
  }
}
.columns--fullWidth {
  max-width: none;
  padding-left: 0;
  align-items: center;
}
.columns--fullWidth .column:first-child {
  padding-left: 0;
}
.columns--fullWidth .column:last-child {
  max-width: 600px;
}
.columns .column {
  padding: 20px;
}
.columns .column p {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .columns .column p {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 480px) {
  .columns .column h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .columns .column h3 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .columns .column h3 {
    font-size: 38px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .columns .column h3 {
    font-size: 40px;
  }
}
.woocommerce-shop .page-title {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.archive #content #main_content {
  padding: 0 !important;
}
.sale-category-masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #E7EBED;
  padding: 40px 0;
}
@media screen and (min-width: 1225px) {
  .sale-category-masthead {
    margin-bottom: 20px;
  }
}
.sale-category-masthead__copy {
  color: #000;
  text-align: center;
  padding: 0 20px;
}
@media screen and (min-width: 725px) {
  .sale-category-masthead__copy {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1225px) {
  .sale-category-masthead__copy {
    padding: 0 80px;
  }
}
.sale-category-masthead__copy p {
  font-family: "DIN OT";
  font-size: 22px;
  font-style: normal;
  text-transform: capitalize;
}
@media screen and (min-width: 725px) {
  .sale-category-masthead__copy p {
    font-size: 26px;
  }
}
@media screen and (min-width: 1225px) {
  .sale-category-masthead__copy p {
    font-size: 33px;
  }
}
.sale-category-masthead__copy h1 {
  font-family: "Noe Display";
  font-size: 48px;
  font-style: italic;
  margin: 0 0 0 0 !important;
}
@media screen and (min-width: 725px) {
  .sale-category-masthead__copy h1 {
    font-size: 62px;
  }
}
@media screen and (min-width: 1225px) {
  .sale-category-masthead__copy h1 {
    font-size: 78px;
  }
}
.sale-category-masthead__categories-container {
  display: block;
  gap: 30px;
  flex-direction: row;
  justify-content: space-around;
  max-width: none !important;
  padding: 0 60px;
}
@media screen and (min-width: 725px) {
  .sale-category-masthead__categories-container {
    display: flex !important;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1225px) {
  .sale-category-masthead__categories-container {
    padding: 0 80px;
  }
}
.sale-category-masthead__categories-container .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.sale-category-masthead__categories-container .owl-prev,
.sale-category-masthead__categories-container .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sale-category-masthead__categories-container .owl-prev img,
.sale-category-masthead__categories-container .owl-next img {
  height: 20px;
  width: auto;
}
.sale-category-masthead__categories-container .owl-prev {
  left: 10px;
}
.sale-category-masthead__categories-container .owl-next {
  right: 10px;
}
.sale-category-masthead__category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.sale-category-masthead__category-container a:hover + a {
  background: #4f4f4f;
}
.sale-category-masthead__category-button {
  color: #fff !important;
  text-align: center;
  font-family: "DIN OT";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  background: #8B8C8B;
  border-radius: 17px;
  padding: 12px 20px 10px 20px;
}
@media screen and (min-width: 625px) {
  .sale-category-masthead__category-button {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .sale-category-masthead__category-button {
    font-size: 16px;
  }
}
.sale-category-masthead__category-button:hover {
  background: #4f4f4f;
  text-decoration: none;
}
.sale-category-masthead__bottom-copy {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
@media screen and (min-width: 725px) {
  .sale-category-masthead__bottom-copy {
    gap: 20px;
  }
}
@media screen and (min-width: 1225px) {
  .sale-category-masthead__bottom-copy {
    gap: 40px;
    padding: 0 80px;
  }
}
.sale-category-masthead__bottom-copy p {
  color: #000;
  text-align: center;
  font-family: "DIN OT";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  width: fit-content;
  white-space: nowrap;
  margin: 0;
}
@media screen and (min-width: 725px) {
  .sale-category-masthead__bottom-copy p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1225px) {
  .sale-category-masthead__bottom-copy p {
    font-size: 25px;
  }
}
.sale-category-masthead__bottom-copy .divider {
  width: 100%;
  height: 1px;
  background: #000;
}
.category-masthead {
  min-height: 40vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (min-width: 536px) {
  .category-masthead {
    min-height: 65vh;
  }
}
.category-masthead__copy {
  width: 100%;
  padding: 20px 30px;
  background: #DBCA9D;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 536px) {
  .category-masthead__copy {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .category-masthead__copy {
    padding: 40px 30px;
    width: 40%;
  }
}
@media screen and (min-width: 1150px) {
  .category-masthead__copy {
    width: 30%;
  }
}
.category-masthead__img {
  background-position: 0% 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 536px) {
  .category-masthead__img {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .category-masthead__img {
    width: 60%;
  }
}
@media screen and (min-width: 1150px) {
  .category-masthead__img {
    width: 70%;
  }
}
.category-featured {
  display: flex;
  flex-direction: column;
}
.category-featured.left {
  grid-column: 1 / span 2;
}
.category-featured.right {
  grid-column: 1 / span 2;
}
@media screen and (min-width: 768px) {
  .category-featured.right {
    grid-column: 3 / span 2;
  }
}
.category-featured.row-1 {
  grid-row: 1 / span 3;
}
.category-featured.row-2 {
  grid-row: 2 / span 3;
}
.category-featured.row-3 {
  grid-row: 3 / span 3;
}
.category-featured__img img {
  aspect-ratio: 0.71253822629969;
  object-fit: cover;
}
.category-featured__copy {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-top: 20px;
}
.category-featured__copy * {
  margin: 0;
}
.category-details {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .category-details {
    gap: 0px;
  }
}
.category-details__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.category-details__copy h2 {
  font-size: 30px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .category-details__copy h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .category-details__copy {
    width: 50%;
    padding-right: 15px;
  }
  .category-details__copy h2 {
    font-size: 30px;
  }
}
.category-details__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .category-details__img {
    width: 50%;
    padding-left: 15px;
  }
}
.page-content {
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .page-content {
    margin: 60px auto;
  }
}
.page-content .row {
  margin: 0;
}
.woocommerce .product-container ul.products,
.product-container .woocommerce ul.products,
.product-list-wrapper .woocommerce ul.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 20px 20px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .woocommerce .product-container ul.products,
  .product-container .woocommerce ul.products,
  .product-list-wrapper .woocommerce ul.products {
    grid-template-columns: repeat(4,1fr);
    grid-gap: 50px 30px;
  }
}
.woocommerce .product-container ul.products li.product,
.product-container .woocommerce ul.products li.product,
.product-list-wrapper .woocommerce ul.products li.product {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product a img {
  padding: 0;
  margin: 0 auto;
  display: none;
  aspect-ratio: 1;
  object-fit: cover;
  transition: .2s;
}
.woocommerce ul.products li.product a img {
  display: block;
}
.woocommerce ul.products li.product img.hover-image {
  opacity: 0;
  position: absolute;
  top: 0;
}
.woocommerce ul.products li.product a:hover img.hover-image {
  opacity: 1;
}
.woocommerce ul.products li.product a img.highlight-product {
  aspect-ratio: unset;
  display: inline;
  object-fit: contain;
  height: auto;
  width: auto;
  max-width: 25%;
  position: absolute;
  top: 0;
  right: 0;
}
.woocommerce ul.products li.product a img.highlight-product--override {
  max-width: 23%;
}
.term-sale .category-masthead__copy {
  background: #b34f2d;
  color: #FFF;
}
.term-sale .category-masthead__copy h1 {
  color: #FFF;
  font-weight: bold;
  font-size: 64px;
}
.term-sale .category-masthead__copy p {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 40px;
}
.term-sale .product_cat-hardwood-chairs {
  order: 1;
}
.term-sale .product_cat-stools {
  order: 2;
}
.term-sale .product_cat-tables {
  order: 3;
}
.term-sale .product_cat-occasional-tables {
  order: 4;
}
.term-sale .product_cat-dining-cases {
  order: 5;
}
.term-sale .product_cat-lounge-chairs-ottomans {
  order: 6;
}
.term-sale .product_cat-rockers {
  order: 7;
}
.term-sale .product_cat-sofas {
  order: 8;
}
.term-sale .product_cat-benches {
  order: 9;
}
.term-sale .product_cat-beds {
  order: 10;
}
.term-sale .product_cat-cases-dressers-bedroom {
  order: 11;
}
.term-sale .product_cat-cases-dressers {
  order: 12;
}
.term-sale .product_cat-home-office {
  order: 13;
}
.postid-869667 form.cart {
  display: none !important;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme br {
  display: none;
}
.woocommerce-message {
  width: fit-content;
  margin: 0 auto;
}
.postid-869667 form.cart {
  display: none !important;
}
.page-giftregistry article,
.page-giftregistry .page-content {
  margin: 0 0 0 0;
}
.page-giftregistry br {
  display: none;
}
.page-giftregistry label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme br {
  display: none;
}
.page-giftregistry .woocommerce-message:before,
.page-giftregistry .woocommerce-error:before,
.page-giftregistry .woocommerce-info:before {
  color: #fff;
  padding: 0 7px;
  background: #7ad03a;
  content: "\f058" !important;
  top: 0;
}
.page-giftregistry .woocommerce-message {
  outline: solid 1px #7ad03a;
  padding: 0 0 0 0 !important;
  text-align: left;
  width: 100% !important;
  margin: 0 0 15px 0;
}
.page-giftregistry #accordion-giftregisty-content .giftregistry-form .form-field {
  overflow: hidden;
  margin: 5px 0;
}
.page-giftregistry #accordion-giftregisty-content .giftregistry-form .form-field label {
  width: 25%;
  float: none;
  display: inline;
  padding: 10px;
  position: relative;
  bottom: 0;
  top: 8px;
}
.page-giftregistry #accordion-giftregisty-content .giftregistry-form .form-field input {
  width: 100% !important;
  float: right;
  display: inline-block;
  margin-top: 10px;
}
.page-giftregistry .select2-selection--single .select2-selection__arrow b {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;
}
.page-giftregistry #dropdownlist {
  display: none !important;
}
.page-giftregistry .giftregistry-form input.button.button-primary {
  width: 40% !important;
  margin: 0 0 0 60% !important;
  background: #334254;
  font-family: Noe Display;
  font-weight: 900;
  text-transform: none;
}
.page-giftregistry #accordion-giftregisty-content .giftregistry-form .form-field textarea {
  width: 350px !important;
  float: right;
  display: inline-block;
  margin: 10px 0;
}
.page-giftregistry .overview-statistics {
  width: 100%;
  margin: 0 auto;
  background: #eee e;
}
.page-giftregistry .overview-statistics tr th {
  text-align: center;
  text-transform: none;
  border-right: 2px solid #fff;
}
.page-giftregistry .overview-statistics tr td {
  text-align: center;
  font-family: Noe Display;
  font-weight: 900;
  color: #333;
  font-size: 48px;
  border-right: 2px solid #fff;
}
.page-giftregistry hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid transparent;
}
.page-giftregistry .view-search {
  padding-top: 50px;
  background-image: url();
  background-size: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/wp-content/uploads/WEDDING_BANNER-no-text.jpg);
  background-position: bottom;
  background-position-x: -900px;
  padding-bottom: 300px;
}
.page-giftregistry .view-search .container h1 {
  font-family: Noe Display;
  font-weight: normal;
  color: #000;
  text-transform: none;
}
.page-giftregistry .view-search .container p {
  font-family: "DIN W01 Regular";
  width: 50%;
}
.page-giftregistry .view a {
  font-size: 22px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: noe display;
  font-weight: normal;
  text-transform: none;
}
.page-giftregistry .container.search-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
}
.page-giftregistry b.toggle {
  top: 75px;
  left: 70%;
  display: inline;
  cursor: pointer;
  margin: 0 12px;
}
.page-giftregistry .search b:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 32px;
  color: #000;
}
.page-giftregistry .search b.visible:after {
  content: "\f106";
}
.page-giftregistry #searchgiftregistry {
  transition: .2s;
  opacity: 0;
}
.page-giftregistry #searchgiftregistry input::-webkit-input-placeholder {
  font-family: "DIN W01 Medium";
  font-size: 20px;
  color: #7E7E7E;
}
.page-giftregistry #searchgiftregistry.visible {
  opacity: 1;
}
.page-giftregistry .a-row.wr-search-input-row {
  display: flex;
}
.page-giftregistry .a-row.wr-search-input-row span {
  padding: 7px 0 0 0;
  font-family: "DIN W01 Medium";
}
.page-giftregistry .a-row.wr-search-input-row br {
  display: none;
}
.page-giftregistry .search {
  background: transparent;
  text-align: left;
  padding-top: 5px;
  width: 100%;
}
.page-giftregistry .search input {
  width: 45%;
  height: 35px;
  font-size: 13px !important;
}
.page-giftregistry .search input[name="grname"] {
  margin: 5px auto 5px 0;
}
.page-giftregistry .search input[name="email"] {
  margin: 5px 0 5px auto;
}
.page-giftregistry .search h2 {
  font-size: 20px;
  color: #000;
  font-family: "DIN W01 Medium";
  text-align: left;
  margin-bottom: 5px;
  text-transform: none;
  display: inline;
}
.page-giftregistry .search p {
  display: inline;
}
.page-giftregistry .view-search-form {
  max-width: 80%;
  margin: 0px auto;
  position: relative;
}
.page-giftregistry .header-view-search {
  margin-top: 40px !important;
  line-height: 2.5em;
}
.page-giftregistry .header-view-search label {
  width: 25% !important;
  display: inline-block;
}
.page-giftregistry .header-view-search span {
  width: 60% !important;
}
.page-giftregistry .search #search_giftregistry {
  width: 100%;
  margin: 0px;
  font-size: 20px !important;
  padding: 10px;
  height: 48px;
  font-family: Noe Display;
  font-weight: normal;
  text-transform: none;
  background: #b34f2d;
  border: solid 1px white;
}
.page-giftregistry #primary .search-result {
  width: 100%;
  margin-top: 10px;
}
.page-giftregistry .search-result {
  max-width: 80%;
  margin: 50px auto;
}
.page-giftregistry .search-result h2 {
  text-transform: unset;
  font-weight: normal;
  color: #000;
  font-family: noe display;
}
.page-giftregistry .search-result table tr {
  border-bottom: solid 1px #eee;
  color: #333333;
  font-family: "DIN W01 Medium";
}
.page-giftregistry .search-result table th {
  text-transform: unset;
  font-weight: normal;
  color: #333333;
}
.page-giftregistry .search-result table td {
  vertical-align: middle;
}
.page-giftregistry .search-result table td:nth-child(2) {
  font-weight: 100;
  font-family: "DIN W01 Regular";
}
.page-giftregistry .search-result table td input {
  font-family: noe display;
  font-weight: normal;
  text-transform: none;
  background: #364253;
  width: 120px;
}
.page-giftregistry .result-container {
  max-width: 800px;
  margin: auto !important;
}
.page-giftregistry .blur {
  filter: blur(8px);
}
.page-giftregistry .view {
  list-style-type: none;
  text-align: center;
  color: #fff;
  margin: 10px auto 10px 0;
  width: fit-content;
}
.page-giftregistry a.close-button {
  opacity: 0;
}
.page-giftregistry a.close-button.visible {
  opacity: 1;
  position: absolute;
  top: 281px;
  width: 100%;
  text-align: center;
  color: #858585;
  font-size: 18px;
  font-weight: normal;
}
.page-giftregistry .search-result-container {
  width: 90%;
  margin: 0px auto;
  border-radius: 20px 20px 0 0;
  filter: drop-shadow(2px 0px 9px #00000020);
  padding: 10px 20px;
  background: #fff;
  position: relative;
  z-index: 99;
  top: -536px;
}
.page-giftregistry #giftregistry-title {
  font-family: noe display;
  font-weight: normal;
  text-transform: none;
  text-align: left;
  color: #000;
  font-size: 36px;
}
.page-giftregistry table.shop_table.cart {
  max-width: 80%;
  margin: 20px auto;
}
.page-giftregistry table.shop_table.cart tr:nth-child(2n) {
  border-bottom: solid .5px #eee;
}
.page-giftregistry table.shop_table.cart td {
  vertical-align: middle;
  font-family: "DIN W01 Regular";
}
.page-giftregistry tr.title-header-row {
  height: 40px;
}
.page-giftregistry label.purchase-quantity {
  bottom: -10px;
  position: relative;
}
.page-giftregistry td.product-quantity span,
.page-giftregistry td.product-quantity input {
  width: 40px;
  background: none;
  margin: 0 !important;
}
.page-giftregistry td.product-quantity span .select2-selection__arrow,
.page-giftregistry td.product-quantity input .select2-selection__arrow {
  display: none;
}
.page-giftregistry th.product-name {
  text-transform: none;
  padding: 0;
  width: 100%;
  position: absolute;
}
.page-giftregistry th.product-thumbnail {
  width: 20%;
  padding: 0;
}
.page-giftregistry td.product-thumbnail {
  padding-bottom: 25px;
}
.page-giftregistry th.product-price,
.page-giftregistry th.product-quantity,
.page-giftregistry th.product-quantity {
  text-transform: none;
  width: 20%;
}
.page-giftregistry .filter-giftregistry {
  margin: 10px auto;
}
.page-giftregistry #select2-filter-giftregistry-container,
.page-giftregistry #select2-level_filter-container {
  color: #7E7E7E;
  font-family: "DIN W01 medium";
  background: #f2f2f2;
  border-bottom: solid 1px #cccccc;
}
.page-giftregistry .select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 2.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  white-space: nowrap;
}
.page-giftregistry .filter-giftregistry #filter-giftregistry,
.page-giftregistry #level_filter {
  height: 30px;
}
.page-giftregistry button#btn_filter {
  background: #b34f2d;
  font-family: noe display;
  font-weight: normal;
  color: #fff;
  border: solid 1px white !important;
  display: inline;
  position: relative;
  bottom: -7px;
  padding: 9px 22px;
  min-width: 100%;
  left: 0;
  font-size: 20px;
}
.page-giftregistry .result-container .select2-container {
  width: 49%;
  margin: auto !important;
}
.page-giftregistry .gift-contribution .half-width {
  float: left;
  padding: 30px;
}
.page-giftregistry .gift-contribution {
  max-width: 80%;
  margin: auto;
  font-family: noe display;
  text-transform: none;
  font-weight: normal;
}
.page-giftregistry .gift-contribution h1.product_title.entry-title {
  text-transform: none;
  font-weight: normal;
  color: #000;
}
.page-giftregistry .gift-contribution input::-webkit-input-placeholder,
.page-giftregistry .gift-contribution textarea::-webkit-input-placeholder {
  font-family: "DIN W01 regular";
  font-size: 20px;
  color: #7E7E7E;
  font-style: normal;
}
.page-giftregistry .gift-contribution button[type="submit"] {
  background: #334154;
  font-family: noe display;
  font-weight: normal;
  color: #fff;
  text-transform: none;
}
.page-giftregistry textarea#message_share {
  min-height: 150px;
}
.page-giftregistry form.cart.registry p,
.page-giftregistry form.cart.registry button,
.page-giftregistry .nyp {
  display: inline;
  margin: 0;
}
.page-giftregistry .search-result table input[type="submit"] {
  min-width: 75%;
}
.page-giftregistry .name {
  text-align: center;
  font-family: noe display;
  text-transform: none;
  font-weight: normal;
  font-size: 40px;
}
.page-giftregistry .form-field br {
  display: none;
}
.page-giftregistry span.select2.select2-container.select2-container--default {
  margin: 15px 0 0 0;
}
.page-giftregistry .detail td {
  border: none !important;
}
.page-giftregistry th.product-name {
  max-width: 80%;
}
.page-giftregistry tr.secondary-header-row th {
  font-family: "DIN W01 regular";
  text-transform: none;
  font-size: 16px;
}
.page-giftregistry td label {
  text-align: left;
  display: block;
  text-transform: none;
  font-family: "DIN W01 regular";
  font-size: 15px;
  margin-bottom: 15px;
}
.page-giftregistry button.trash:hover {
  background: transparent;
}
.page-giftregistry #tab3 ul {
  margin: 0px !important;
  display: inline;
  padding: 0;
}
.page-giftregistry #tab3 ul li {
  font-size: 44px;
  margin: 0 5px;
  display: inline;
  cursor: pointer;
}
.page-giftregistry #tab3 h1 {
  text-transform: none;
  font-family: noe display;
  font-weight: normal;
  color: #000;
  margin-top: 0px !important;
}
.page-giftregistry #tab3 h3 {
  text-transform: none;
  font-family: "DIN W01 medium";
  font-size: 18px;
  color: #333333;
}
.page-giftregistry #tab3 ul li br {
  display: none;
}
.page-giftregistry .product .nyp input.nyp-input {
  max-width: 100%;
}
.page-giftregistry .mobile-only {
  display: block;
}
@media only screen and (min-width: 550px) {
  .page-giftregistry .view-search {
    background-position-x: -765px;
  }
}
@media only screen and (min-width: 650px) {
  .page-giftregistry .view-search {
    background-position-x: -565px;
  }
}
@media only screen and (min-width: 800px) {
  .page-giftregistry .view-search {
    background-position-x: -365px;
  }
}
.page-giftregistry #tab3.tab-pane.half-width,
.page-giftregistry .gift-contribution.half-width {
  width: 100%;
  clear: both;
  border: none;
}
@media only screen and (min-width: 950px) {
  .page-giftregistry .search-result-container.tab3 {
    padding-bottom: 35%;
  }
  .page-giftregistry #tab3.tab-pane.half-width {
    padding: 0 30px;
    width: 50%;
    border-left: solid 1px #eeeeee;
    float: right;
    clear: none;
  }
  .page-giftregistry .gift-contribution.half-width {
    width: 50%;
    float: left;
    padding: 30px;
    clear: none;
  }
  .page-giftregistry .view-search {
    background-position-x: center;
    padding-bottom: 100px;
  }
  .page-giftregistry .view-search-form .search {
    width: 50%;
  }
  .page-giftregistry #accordion-giftregisty-content .giftregistry-form .form-field input {
    width: 350px !important;
  }
  .page-giftregistry .mobile-only {
    display: none;
  }
  .page-giftregistry .container.search-container,
  .page-giftregistry .view-search-form,
  .page-giftregistry .search-result,
  .page-giftregistry .result-container,
  .page-giftregistry .result-container.gift-contribution,
  .page-giftregistry th.product-name {
    max-width: 800px;
  }
  .page-giftregistry .search-result-container {
    width: 926px;
  }
  .page-giftregistry button#btn_filter {
    font-size: 14px;
    min-width: 125px;
    left: 5px;
    bottom: 0;
  }
  .page-giftregistry .filter-giftregistry .select2-container {
    width: 40% !important;
  }
  .page-giftregistry .header-view-search {
    margin-top: 100px !important;
  }
  .page-giftregistry #giftregistry-title {
    font-size: 40px;
  }
  .page-giftregistry .product .nyp input.nyp-input {
    max-width: 300px;
  }
  .page-giftregistry .search-result-container {
    margin: 80px auto;
  }
}
@media only screen and (max-width: 760px),(min-device-width: 768px) and (max-device-width: 1024px) {
  .page-id-868766 td label,
  .tab-content td label {
    margin-bottom: 8px;
    margin-right: 25px;
    min-width: 100px;
  }
  .page-id-868766 td.product-buy,
  .tab-content td.product-buy {
    margin: 0 0 0 auto;
    width: fit-content;
    padding: 10px 0;
  }
  .page-id-868766 td.product-thumbnail,
  .tab-content td.product-thumbnail {
    width: 25%;
    float: left;
  }
  .page-id-868766 td.product-thumbnail img,
  .tab-content td.product-thumbnail img {
    min-width: 75px;
  }
  .page-id-868766 .single_add_to_cart_button,
  .tab-content .single_add_to_cart_button {
    font-size: 17px;
    text-align: center;
  }
  .page-id-868766 td.product-price,
  .page-id-868766 td.product-quantity,
  .page-id-868766 td.product-quantity,
  .page-id-868766 td.received-quantity,
  .page-id-868766 td.product-delete,
  .tab-content td.product-price,
  .tab-content td.product-quantity,
  .tab-content td.product-quantity,
  .tab-content td.received-quantity,
  .tab-content td.product-delete {
    display: flex;
    width: 70% !important;
    margin: 0 0 0 auto;
  }
  .page-id-868766 th.product-name,
  .tab-content th.product-name {
    padding: 10px 0;
    max-width: 80%;
    font-size: 18px;
    font-family: "DIN W01 Medium";
    font-weight: bold;
  }
  .page-id-868766 table,
  .page-id-868766 thead,
  .page-id-868766 tbody,
  .page-id-868766 th,
  .page-id-868766 td,
  .page-id-868766 tr,
  .tab-content table,
  .tab-content thead,
  .tab-content tbody,
  .tab-content th,
  .tab-content td,
  .tab-content tr {
    display: block;
  }
}
div,
ul,
section,
img,
article,
aside,
footer,
header,
nav,
section {
  box-sizing: border-box;
  display: block;
}
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #F2F2F2;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
  clip: auto !important;
  color: #000;
  display: block;
  font-size: 0.875em;
  font-family: "DIN W01 Medium";
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
li {
  list-style-type: none;
}
form.woocommerce-ordering {
  display: none !important;
}
mark.count,
.woocommerce-result-count {
  display: none !important;
}
@media screen and (min-width: 800px) {
  #filterCat {
    top: 1em;
  }
}
label {
  color: #000;
}
a:focus,
.button-container button:focus,
.button-container button[type="submit"]:focus,
.add_focus:focus,
.select2-selection:focus {
  outline: 4px dashed #b44c42 !important;
  outline-offset: 0;
}
a:focus img,
.button-container button:focus img,
.button-container button[type="submit"]:focus img,
.add_focus:focus img,
.select2-selection:focus img {
  display: inherit;
}
:focus:not(:focus-visible) {
  outline: 0 !important;
  box-shadow: none;
}
.row-flex {
  margin-left: -15px;
  margin-right: -15px;
  zoom: 1;
}
.row-flex:after,
.row-flex:before {
  content: " ";
  display: table;
}
.row-flex:after {
  clear: both;
}
.flex-item {
  padding-left: 15px;
  padding-right: 15px;
}
.flex-xs.row-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-xs.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-xs.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.flex-xs.flex-row__reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-xs.flex-justify__start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-xs.flex-justify__end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-xs.flex-justify__center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.flex-xs.flex-justify__btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex-xs.flex-justify__around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.flex-xs.flex-align__center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flex-xs.flex-align__stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
}
.flex-xs.flex-align__start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.flex-xs.flex-align__end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.flexbox .flex-xs:before,
.flexbox .flex-xs:after {
  content: normal !important;
}
@media (min-width: 768px) {
  .flex-sm.row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-sm.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-sm.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .flex-sm.flex-row__reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-sm.flex-justify__start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .flex-sm.flex-justify__end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
  .flex-sm.flex-justify__center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .flex-sm.flex-justify__btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .flex-sm.flex-justify__around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .flex-sm.flex-align__center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .flex-sm.flex-align__stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
  }
  .flex-sm.flex-align__start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .flex-sm.flex-align__end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .flexbox .flex-sm:before,
  .flexbox .flex-sm:after {
    content: normal !important;
  }
}
@media (min-width: 992px) {
  .flex-md.row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-md.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-md.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .flex-md.flex-row__reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-md.flex-justify__start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .flex-md.flex-justify__end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
  .flex-md.flex-justify__center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .flex-md.flex-justify__btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .flex-md.flex-justify__around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .flex-md.flex-align__center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .flex-md.flex-align__stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
  }
  .flex-md.flex-align__start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .flex-md.flex-align__end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .flexbox .flex-md:before,
  .flexbox .flex-md:after {
    content: normal !important;
  }
}
@media (min-width: 1200px) {
  .flex-lg.row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-lg.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-lg.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .flex-lg.flex-row__reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-lg.flex-justify__start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .flex-lg.flex-justify__end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
  .flex-lg.flex-justify__center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .flex-lg.flex-justify__btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .flex-lg.flex-justify__around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .flex-lg.flex-align__center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .flex-lg.flex-align__stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
  }
  .flex-lg.flex-align__start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .flex-lg.flex-align__end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .flexbox .flex-lg:before,
  .flexbox .flex-lg:after {
    content: normal !important;
  }
}
@media (min-width: 1530px) {
  .flex-xl.row-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-xl.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-xl.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .flex-xl.flex-row__reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-xl.flex-justify__start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .flex-xl.flex-justify__end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
  .flex-xl.flex-justify__center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .flex-xl.flex-justify__btw {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .flex-xl.flex-justify__around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .flex-xl.flex-align__center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .flex-xl.flex-align__stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
  }
  .flex-xl.flex-align__start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .flex-xl.flex-align__end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .flexbox .flex-xl:before,
  .flexbox .flex-xl:after {
    content: normal !important;
  }
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  body.header-over-content h2.admin-only {
    position: absolute;
    z-index: 901;
  }
  body.header-over-content #header_container {
    position: absolute;
    width: 100%;
    z-index: 900;
    margin: 0 auto;
    text-align: center;
  }
  body.header-over-content #header_container header#masthead {
    background-color: transparent;
  }
  body.reverse-header .logo-holder img.logo {
    display: none;
  }
  body.reverse-header .logo-holder img.logo-rev {
    display: block;
  }
  body.reverse-header h2.admin-only {
    color: pink;
  }
  body.reverse-header #header-navigation a {
    color: #ffffff;
  }
  body.reverse-header #header-navigation .header-phone a.phone,
  body.reverse-header #header-navigation .menu-item a {
    color: #fff !important;
  }
}
@media only screen and (min-width: 768px) and only screen and (max-width: 767px) {
  body.reverse-header #masthead.stuck {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .ease-margin-xs {
    margin-left: -30px !important;
    margin-right: -30px !important;
  }
  .ease-margin-xs-half {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  body.hide-main-nav #inner-header .col-xs-7 {
    margin: 0 auto;
    width: 100% !important;
    text-align: center;
  }
  body.hide-main-nav #inner-header .col-xs-7 img {
    width: 50%;
    margin: 0 auto;
  }
  body.hide-main-nav #inner-header .col-xs-5 {
    display: none;
  }
  body.reverse-header h2.admin-only {
    color: pink;
  }
  body.reverse-header #header-navigation a {
    color: #ffffff;
  }
  body.reverse-header #header-navigation .header-phone a.phone,
  body.reverse-header #header-navigation .menu-item a {
    color: #fff !important;
  }
}
#masthead.stuck {
  box-shadow: 1px 1px 5px rgba(230,230,230,0.5);
}
#container {
  max-width: 100%;
}
@media only screen and (min-width: 1380px) {
  .home #content {
    padding-top: 0px;
  }
}
#content {
  padding-bottom: 50px;
  top: 0px;
  position: relative;
}
#content #main_content_holder.has-sidebar {
  padding: 0 !important;
}
#content #main_content.no-sidebar .row-no-sidebar {
  margin: 0 -15px !important;
}
#content .product-container.has-sidebar {
  width: auto !important;
}
#content #main_content.has-sidebar {
  padding: 0 !important;
}
#content #main_content.has-sidebar .container {
  width: auto !important;
}
@media only screen and (max-width: 479px) {
  #content #main_content,
  #content #main_content.has-sidebar {
    padding: 0 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  #content #sidebar {
    padding-top: 70px;
  }
}
#content h1:first-of-type {
  margin-top: .56em;
}
@media only screen and (min-width: 992px) {
  .container {
    width: 980px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1170px !important;
  }
}
@media only screen and (min-width: 1800px) {
  .container {
    width: 1200px !important;
  }
}
.owl-carousel {
  max-width: 1200px;
  margin: auto;
}
.thumb-holder img {
  max-width: 100%;
  height: auto;
}
ul.products {
  padding: 0 !important;
}
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
img {
  height: auto;
  max-width: 100%;
}
.hero-iframe {
  width: 100% !important;
  margin-bottom: 40px;
}
.clear {
  clear: both;
}
.g-recaptcha {
  margin-bottom: 1em;
}
.hide-until-init {
  opacity: 0;
  transition: opacity, 1s;
}
.hide-until-init.inited {
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-br {
    clear: left;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-br {
    clear: left;
  }
  #header-navigation li {
    font-size: 16px;
    margin-right: 40px;
  }
  #header-navigation li:last-child {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-br {
    clear: left;
  }
  #header-navigation li {
    font-size: 16px;
    margin-right: 40px;
  }
  #header-navigation li:last-child {
    margin-right: 0px;
  }
}
.sv-wc-payment-gateway-icon {
  display: inline !important;
  padding: 4px 8px;
}
body.zoomed #content {
  padding: 0 45px 0 30px !important;
}
.container {
  padding-left: 30px;
  padding-right: 30px;
}
#footer-top .container,
.woocommerce-cart .container {
  padding-left: 15px;
  padding-right: 15px;
}
.search-results .woocommerce ul.products li.product {
  width: 50%;
}
@media only screen and (min-width: 1024px) {
  .search-results .woocommerce ul.products li.product {
    width: 33.33333333333333%;
  }
}
@media only screen and (min-width: 1440px) {
  .search-results .woocommerce ul.products li.product {
    width: 25%;
  }
}
.woocommerce ul.products li.product .woocommerce-loop-category__title:after {
  display: inline !important;
  color: #666;
  font-size: 0.95em;
  line-height: 1.45;
  content: ' - Shop All ';
}
li.product-category.product {
  padding-top: 30px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title {
  color: #666;
  font-size: 0.95em;
  line-height: 1.45;
}
article.has-post-thumbnail {
  margin: 20px 0;
}
article {
  margin: 20px 0;
}
article .entry-header,
article .entry-content {
  margin: 5px 0;
}
.livechat_button.search a img {
  margin: 0 auto;
}
.woocommerce-shop .row {
  margin: 0 auto;
}
.woocommerce-shop .row-cta-content .row-cta-content-inner {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  .woocommerce-shop .row-cta-content .row-cta-content-inner {
    padding: 0 0;
  }
}
.woocommerce-shop .module-section.container {
  margin: 0 auto;
  padding: 0 0;
  overflow: hidden;
}
.woocommerce-shop section#section-1 {
  margin-top: 0;
}
.post-type-archive-showroom .showrooms__container,
.showroom-slider-block .showrooms__container {
  max-width: 1210px;
  margin: 50px auto;
  padding: 0 20px;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__container,
  .showroom-slider-block .showrooms__container {
    padding: 0 30px;
    margin: 100px auto;
  }
}
.post-type-archive-showroom .showrooms__full-width,
.showroom-slider-block .showrooms__full-width {
  width: 100%;
  max-width: none;
  margin: 50px auto;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__full-width,
  .showroom-slider-block .showrooms__full-width {
    margin: 100px auto;
  }
}
.post-type-archive-showroom .showrooms__full-width--block,
.showroom-slider-block .showrooms__full-width--block {
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__full-width--block,
  .showroom-slider-block .showrooms__full-width--block {
    margin: 0 auto;
  }
}
.post-type-archive-showroom .showrooms__header-content,
.showroom-slider-block .showrooms__header-content {
  max-width: 800px;
}
.post-type-archive-showroom .showrooms__header-content p,
.showroom-slider-block .showrooms__header-content p {
  font-size: 20px;
}
.post-type-archive-showroom .showrooms__list,
.showroom-slider-block .showrooms__list {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 60px 30px;
}
@media (min-width: 768px) {
  .post-type-archive-showroom .showrooms__list,
  .showroom-slider-block .showrooms__list {
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
  }
}
@media (min-width: 1248px) {
  .post-type-archive-showroom .showrooms__list,
  .showroom-slider-block .showrooms__list {
    grid-template-columns: repeat(3,1fr);
    gap: 90px;
  }
}
.post-type-archive-showroom .showrooms__item-inner,
.showroom-slider-block .showrooms__item-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  height: 100%;
}
.post-type-archive-showroom .showrooms__item-content,
.showroom-slider-block .showrooms__item-content {
  font-size: 20px;
  color: #000;
}
.post-type-archive-showroom .showrooms__item-content a,
.showroom-slider-block .showrooms__item-content a {
  text-decoration: none;
  color: #000;
}
.post-type-archive-showroom .showrooms__item-content a:hover,
.showroom-slider-block .showrooms__item-content a:hover {
  text-decoration: underline;
}
.post-type-archive-showroom .showrooms__item-title,
.showroom-slider-block .showrooms__item-title {
  font-size: 20px;
  margin: 0 0 25px 0;
  font-family: "DIN W01 Medium";
}
.post-type-archive-showroom .showrooms__item-content,
.showroom-slider-block .showrooms__item-content {
  font-family: "DIN W01 Regular";
}
.post-type-archive-showroom .showrooms__item-email,
.showroom-slider-block .showrooms__item-email {
  text-decoration: underline;
  color: #000;
}
.post-type-archive-showroom .showrooms__item-email:hover,
.showroom-slider-block .showrooms__item-email:hover {
  text-decoration-thickness: 2px;
}
.post-type-archive-showroom .showrooms__item-link,
.showroom-slider-block .showrooms__item-link {
  color: #000000;
  background: #dbb687;
  font-family: "DIN W01 Regular";
  text-transform: uppercase;
  padding: 14px 20px;
  text-decoration: none;
  width: fit-content;
  text-align: center;
}
.post-type-archive-showroom .showrooms__item-link:hover,
.showroom-slider-block .showrooms__item-link:hover {
  background: #cc9856;
}
.post-type-archive-showroom .showrooms__sales-header,
.showroom-slider-block .showrooms__sales-header {
  margin-bottom: 50px;
  font-size: 44px;
}
.post-type-archive-showroom .showrooms__slide-address br,
.showroom-slider-block .showrooms__slide-address br {
  display: none;
}
.post-type-archive-showroom .showrooms__slider,
.showroom-slider-block .showrooms__slider {
  width: 100%;
  max-width: none !important;
}
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-prev,
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-next,
.showroom-slider-block .showrooms__slider .owl-nav .owl-prev,
.showroom-slider-block .showrooms__slider .owl-nav .owl-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border: none !important;
  width: 30px;
  height: 30px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0 !important;
  z-index: 1000;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-prev:hover,
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-next:hover,
.showroom-slider-block .showrooms__slider .owl-nav .owl-prev:hover,
.showroom-slider-block .showrooms__slider .owl-nav .owl-next:hover {
  background: rgba(0,0,0,0.9) !important;
}
@media (min-width: 767px) {
  .post-type-archive-showroom .showrooms__slider .owl-nav .owl-prev,
  .post-type-archive-showroom .showrooms__slider .owl-nav .owl-next,
  .showroom-slider-block .showrooms__slider .owl-nav .owl-prev,
  .showroom-slider-block .showrooms__slider .owl-nav .owl-next {
    width: 50px;
    height: 50px;
  }
}
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-prev,
.showroom-slider-block .showrooms__slider .owl-nav .owl-prev {
  left: 0 !important;
}
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-prev::before,
.showroom-slider-block .showrooms__slider .owl-nav .owl-prev::before {
  content: '';
  width: 14px;
  height: 23px;
  background-image: url('data:image/svg+xml,<svg width="14" height="23" viewBox="0 0 14 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.13604 11.4998L13.6213 3.01456L11.5 0.893242L0.893398 11.4998L11.5 22.1064L13.6213 19.9851L5.13604 11.4998Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-next,
.showroom-slider-block .showrooms__slider .owl-nav .owl-next {
  right: 0 !important;
}
.post-type-archive-showroom .showrooms__slider .owl-nav .owl-next::before,
.showroom-slider-block .showrooms__slider .owl-nav .owl-next::before {
  content: '';
  width: 14px;
  height: 23px;
  background-image: url('data:image/svg+xml,<svg width="14" height="23" viewBox="0 0 14 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.86396 11.4998L0.378729 3.01456L2.5 0.893242L13.1066 11.4998L2.5 22.1064L0.378729 19.9851L8.86396 11.4998Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.post-type-archive-showroom .showrooms__slider--block .owl-dots,
.showroom-slider-block .showrooms__slider--block .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 1024px) {
  .post-type-archive-showroom .showrooms__slider--block .owl-dots,
  .showroom-slider-block .showrooms__slider--block .owl-dots {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot span,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot span {
  width: auto;
  height: 100%;
  background: none;
  font-size: 16px;
  color: #000;
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: flex-start;
  gap: 15px;
  background: transparent;
}
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot span:hover,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot span:focus,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot span:active,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot span:hover,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot span:focus,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot span:active {
  background: transparent;
}
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot span::after,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 30px;
  background: #b34f2d;
  opacity: 0;
  display: block;
  margin: 0 auto;
}
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot.active span,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot:hover span,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot:focus span,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot:active span,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot.active span,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot:hover span,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot:focus span,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot:active span {
  background: transparent;
  color: #b34f2d;
}
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot.active span::after,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot:hover span::after,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot:focus span::after,
.post-type-archive-showroom .showrooms__slider--block .owl-dots .owl-dot:active span::after,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot.active span::after,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot:hover span::after,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot:focus span::after,
.showroom-slider-block .showrooms__slider--block .owl-dots .owl-dot:active span::after {
  opacity: 1;
}
@media (max-width: 1024px) {
  .post-type-archive-showroom .showrooms__slider--block .owl-nav .owl-prev,
  .post-type-archive-showroom .showrooms__slider--block .owl-nav .owl-next,
  .showroom-slider-block .showrooms__slider--block .owl-nav .owl-prev,
  .showroom-slider-block .showrooms__slider--block .owl-nav .owl-next {
    top: 35% !important;
    transform: translateY(-50%) !important;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .post-type-archive-showroom .showrooms__slider--block .owl-nav .owl-prev,
  .post-type-archive-showroom .showrooms__slider--block .owl-nav .owl-next,
  .showroom-slider-block .showrooms__slider--block .owl-nav .owl-prev,
  .showroom-slider-block .showrooms__slider--block .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    top: 30% !important;
  }
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slider--block .owl-nav .owl-prev,
  .post-type-archive-showroom .showrooms__slider--block .owl-nav .owl-next,
  .showroom-slider-block .showrooms__slider--block .owl-nav .owl-prev,
  .showroom-slider-block .showrooms__slider--block .owl-nav .owl-next {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}
.post-type-archive-showroom .showrooms__slide,
.showroom-slider-block .showrooms__slide {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
}
@media (min-width: 768px) {
  .post-type-archive-showroom .showrooms__slide,
  .showroom-slider-block .showrooms__slide {
    min-height: 700px;
  }
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide,
  .showroom-slider-block .showrooms__slide {
    height: 800px;
  }
}
.post-type-archive-showroom .showrooms__slide--block,
.showroom-slider-block .showrooms__slide--block {
  min-height: auto;
}
@media (min-width: 768px) {
  .post-type-archive-showroom .showrooms__slide--block,
  .showroom-slider-block .showrooms__slide--block {
    min-height: auto;
  }
}
.post-type-archive-showroom .showrooms__slide-inner,
.showroom-slider-block .showrooms__slide-inner {
  max-width: 1210px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-inner,
  .showroom-slider-block .showrooms__slide-inner {
    padding: 30px;
    max-width: 1310px;
  }
}
.post-type-archive-showroom .showrooms__slide-inner--block,
.showroom-slider-block .showrooms__slide-inner--block {
  padding: 0px;
  align-items: flex-end;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-inner--block,
  .showroom-slider-block .showrooms__slide-inner--block {
    align-items: center;
    max-width: 1610px;
    padding: 30px;
  }
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-inner--left,
  .showroom-slider-block .showrooms__slide-inner--left {
    justify-content: flex-start;
  }
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-inner--right,
  .showroom-slider-block .showrooms__slide-inner--right {
    justify-content: flex-end;
  }
}
.post-type-archive-showroom .showrooms__slide-image,
.showroom-slider-block .showrooms__slide-image {
  position: relative;
}
.post-type-archive-showroom .showrooms__slide-image img,
.showroom-slider-block .showrooms__slide-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-image img,
  .showroom-slider-block .showrooms__slide-image img {
    aspect-ratio: auto;
  }
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-image,
  .showroom-slider-block .showrooms__slide-image {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
}
.post-type-archive-showroom .showrooms__slide-content,
.showroom-slider-block .showrooms__slide-content {
  z-index: 100;
  width: 100%;
  max-width: 100%;
  background: rgba(84,78,77,0.9);
  backdrop-filter: blur(7px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #FFF;
}
@media (min-width: 768px) {
  .post-type-archive-showroom .showrooms__slide-content,
  .showroom-slider-block .showrooms__slide-content {
    max-width: 400px;
  }
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-content,
  .showroom-slider-block .showrooms__slide-content {
    padding: 50px;
    max-width: 560px;
  }
}
.post-type-archive-showroom .showrooms__slide-content--block,
.showroom-slider-block .showrooms__slide-content--block {
  padding: 20px;
  background: #544E4D;
  max-width: 100%;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-content--block,
  .showroom-slider-block .showrooms__slide-content--block {
    background: rgba(84,78,77,0.9);
    padding: 100px;
    max-width: 712px;
    gap: 25px;
  }
}
.post-type-archive-showroom .showrooms__slide-content .read-more,
.showroom-slider-block .showrooms__slide-content .read-more {
  color: #FFF;
}
.post-type-archive-showroom .showrooms__slide-content p,
.showroom-slider-block .showrooms__slide-content p {
  font-size: 20px;
}
.post-type-archive-showroom .showrooms__slide-header,
.showroom-slider-block .showrooms__slide-header {
  position: relative;
}
.post-type-archive-showroom .showrooms__toggle-wrapper,
.showroom-slider-block .showrooms__toggle-wrapper {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0,-50%);
}
.post-type-archive-showroom .showrooms__toggle-excerpt,
.showroom-slider-block .showrooms__toggle-excerpt {
  background: url(../images/icon-arrow-down--white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  width: 23px;
  height: 23px;
  display: block;
  transition: transform 0.3s ease;
}
.post-type-archive-showroom .showrooms__toggle-excerpt--active,
.showroom-slider-block .showrooms__toggle-excerpt--active {
  transform: rotate(180deg);
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__toggle-excerpt,
  .showroom-slider-block .showrooms__toggle-excerpt {
    display: none;
  }
}
.post-type-archive-showroom .showrooms__slide-excerpt,
.showroom-slider-block .showrooms__slide-excerpt {
  max-height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.post-type-archive-showroom .showrooms__slide-excerpt--active,
.showroom-slider-block .showrooms__slide-excerpt--active {
  max-height: 500px;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-excerpt,
  .showroom-slider-block .showrooms__slide-excerpt {
    max-height: none;
    height: auto !important;
  }
}
.post-type-archive-showroom .showrooms__slide-title,
.showroom-slider-block .showrooms__slide-title {
  color: #FFF;
  font-family: "Noe Display";
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 0 0;
}
@media (min-width: 778px) {
  .post-type-archive-showroom .showrooms__slide-title,
  .showroom-slider-block .showrooms__slide-title {
    font-size: 44px;
  }
}
.post-type-archive-showroom .showrooms__slide-link,
.showroom-slider-block .showrooms__slide-link {
  color: #000000;
  background: #dbb687;
  font-family: "DIN W01 Regular";
  text-transform: uppercase;
  padding: 14px 20px;
  text-decoration: none;
  width: fit-content;
  text-align: center;
  margin-top: 30px;
}
.post-type-archive-showroom .showrooms__slide-link:hover,
.showroom-slider-block .showrooms__slide-link:hover {
  background: #cc9856;
}
.post-type-archive-showroom .showrooms__slide-link--block,
.showroom-slider-block .showrooms__slide-link--block {
  display: block;
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .post-type-archive-showroom .showrooms__slide-link--block,
  .showroom-slider-block .showrooms__slide-link--block {
    margin-top: 50px;
    width: auto;
  }
}
.single-showroom #content {
  padding-bottom: 0;
}
.single-showroom .row {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1025px) {
  .single-showroom .showroom__parking-container {
    position: absolute;
    top: 0;
    z-index: 10;
    max-width: 1270px;
    width: 100%;
    left: 50%;
    transform: translate(-50%,0);
    pointer-events: none;
  }
}
.single-showroom .showroom__parking {
  pointer-events: all;
}
.single-showroom .showroom__holiday-hours {
  margin: 0 0 0 0;
}
.single-showroom .showroom__holiday-hours .kt-accordion-header-wrap,
.single-showroom .showroom__holiday-hours .kt-blocks-accordion-header {
  display: flex;
  flex-direction: row;
  width: auto;
}
.js .widget_nav_menu.menu-open ul:first-of-type,
.js .widget_product_categories.menu-open ul:first-of-type {
  display: block;
}
.js .widget_nav_menu ul,
.js .widget_product_categories ul {
  display: none;
}
.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_nav_menu ul li {
  padding: 0;
  margin-bottom: 1em;
  margin-left: 0;
}
.widget_nav_menu ul li a {
  font-size: 0.9em;
  font-family: "DIN W01 Medium";
}
.widget_nav_menu ul li ul.sub-menu {
  display: none;
  margin-left: 0;
  margin-top: 0.35em;
  margin-bottom: 0;
}
.widget_nav_menu ul li ul.sub-menu li {
  margin-bottom: 0.5em;
}
.widget_nav_menu ul li ul.sub-menu li:last-of-type {
  margin-bottom: 0;
}
.widget_nav_menu ul li ul.sub-menu li a {
  font-family: "DIN W01 Regular";
}
.widget_nav_menu ul li.current-menu-item ul.sub-menu,
.widget_nav_menu ul li.current-menu-ancestor ul.sub-menu,
.widget_nav_menu ul li.current-page-ancestor ul.sub-menu {
  display: block;
}
.widget_nav_menu ul li.current-menu-item > a,
.widget_nav_menu ul li.is-active > a {
  text-decoration: underline;
}
.mobile-menu-toggle {
  display: block;
  color: #000;
  background: none;
  text-transform: uppercase;
  border: 1px solid #CCC;
  padding: 10px;
  text-align: center;
  width: 100%;
  margin: 0 0 1em;
  outline: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  text-decoration: none;
}
.mobile-menu-toggle:before {
  font-family: "FontAwesome";
  content: "\f067";
  display: inline;
  margin-right: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mobile-menu-toggle.menu-close:before {
  content: "\f068";
}
.widget_recent_entries ul li .post-date {
  display: block;
  color: #999;
  font-family: "DIN W01 Italic";
  font-size: 0.875em;
}
.widget_rss ul li {
  margin-bottom: 1em;
}
.widget_rss ul li .rss-date {
  display: block;
  color: #999;
  font-size: 0.875em;
  font-style: italic;
}
.widget_rss ul li .rssSummary {
  margin: 0.5em 0;
  font-size: 0.875em;
}
.widget_rss ul li cite {
  color: #999;
}
@media only screen and (min-width: 768px) {
  .js .widget_nav_menu ul,
  .js .widget_product_categories ul {
    display: block;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
.js .woocommerce-page .widget_product_categories .cat-toggle {
  padding: 1px 6px 2px;
  margin: 0 0 0 10px;
  cursor: pointer;
  outline: 0;
  border: 0;
  background: none;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.125em;
  border: 1px solid #CCC;
  width: 30px;
  height: 25px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.js .woocommerce-page .widget_product_categories .cat-toggle:hover {
  background: #F2F2F2;
}
.js .woocommerce-page .widget_product_categories .cat-toggle:after {
  content: "+";
  position: absolute;
  top: -0.15em;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
.js .woocommerce-page .widget_product_categories .cat-toggle.cat-open:after {
  content: "-";
}
.js .woocommerce-page .widget_product_categories li.cat-parent ul.children {
  display: none;
}
.js .woocommerce-page .widget_product_categories li.cat-parent ul.children.cat-show {
  display: block;
}
.woocommerce-page .widget_product_categories ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}
.woocommerce-page .widget_product_categories ul.children {
  margin-left: 0;
  margin-top: 0.35em;
  margin-bottom: 0;
}
.woocommerce-page .widget_product_categories ul.children li {
  margin-bottom: 0.5em;
}
.woocommerce-page .widget_product_categories ul.children li:last-of-type {
  margin-bottom: 0;
}
.woocommerce-page .widget_product_categories ul.children li a {
  font-family: "DIN W01 Regular";
}
.woocommerce-page .widget_product_categories ul li {
  zoom: 1;
  padding: 0;
  list-style: none;
  margin-bottom: 1em;
  margin-left: 0;
}
.woocommerce-page .widget_product_categories ul li:after,
.woocommerce-page .widget_product_categories ul li:before {
  content: " ";
  display: table;
}
.woocommerce-page .widget_product_categories ul li:after {
  clear: both;
}
.woocommerce-page .widget_product_categories ul li a {
  font-size: 0.9em;
  font-family: "DIN W01 Medium";
}
.woocommerce-page .widget_product_categories ul li.current-cat > a {
  text-decoration: underline;
}
.woocommerce-page .widget_layered_nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}
.woocommerce-page .widget_layered_nav ul li {
  zoom: 1;
  padding: 0;
  list-style: none;
  margin-left: 0;
}
.woocommerce-page .widget_layered_nav ul li:after,
.woocommerce-page .widget_layered_nav ul li:before {
  content: " ";
  display: table;
}
.woocommerce-page .widget_layered_nav ul li:after {
  clear: both;
}
.woocommerce-page .widget_layered_nav ul li.chosen a {
  color: #000;
}
.woocommerce-page .widget_layered_nav_filters ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}
.woocommerce-page .widget_layered_nav_filters ul li {
  float: left;
  padding: 0;
  list-style: none;
  margin-left: 0;
  margin-right: 0.5em;
}
.woocommerce-page .widget_layered_nav_filters ul li a {
  padding: 5px 0;
  text-decoration: none;
}
.woocommerce-page .widget_layered_nav_filters ul li a:before {
  font-family: 'FontAwesome';
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "";
  text-decoration: none;
  color: #c0392b;
}
.dataSheet,
.readytoship-key,
.woocommerce .product-details span.readytoship,
.product-type-simple .additional_product_actions .learn-more,
.product-type-simple .made-to-order {
  display: none;
}
.product-type-simple .cart-form-container {
  margin: 0 auto;
  max-width: 460px;
}
.product-type-simple .cart-form-container form.cart .button-container .options-list li {
  width: 100%;
  border: none;
}
.product-type-simple .cart-form-container form.cart .button-container .options-list li:last-child {
  border-left: none;
}
.product-type-simple #addProductToCart form.cart {
  width: 100% !important;
}
@media (min-width: 1440px) {
  .product-type-simple .cartForm__top {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cartForm {
  width: 100%;
}
.cartForm__top {
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .cartForm__top {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1440px) {
  .cartForm__top {
    padding-top: 150px;
    padding-bottom: 125px;
  }
}
select#pa_upholstery {
  padding-right: 25px;
}
#picker_pa_wood .swatch__color-name {
  display: none;
}
.swatch-control {
  display: flex;
  flex-flow: row wrap;
  overflow: visible;
  gap: 5px;
}
.swatch-control#picker_pa_wood {
  gap: 0;
}
.swatch__collection-wrapper {
  display: flex;
  flex-flow: row;
  gap: 0;
  justify-content: flex-start;
  border: solid 1px #CCCCCC;
  align-items: center;
}
.swatch__outer-wrapper {
  position: relative;
}
.swatch__outer-wrapper:hover .swatch__details {
  opacity: 1;
  pointer-events: all;
  height: auto;
  width: 300px;
}
.swatch__outer-wrapper .swatch-wrapper {
  clear: both;
  margin: 0;
}
.swatch__outer-wrapper.No .swatch__details {
  display: none;
}
.swatch__details {
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  position: absolute;
  top: 30px;
  z-index: 100000;
  left: 50%;
  transform: translate(-50%,0);
  box-shadow: 0px 12px 30px -20px rgba(0,0,0,0.25);
  border-top: solid 6px transparent;
  font-size: 16px;
  font-family: 'DIN W01 REGULAR';
}
.swatch__details,
.swatch__inner-container {
  justify-content: center;
  flex-direction: column;
  display: none;
}
@media (min-width: 1025px) {
  .swatch__details,
  .swatch__inner-container {
    display: flex;
  }
}
.swatch__inner-container {
  padding: 15px;
  gap: 10px;
  background-color: #fff;
}
.swatch__image {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.swatch__fabric-code {
  font-size: 22px;
}
.swatch__color-name {
  background: #EAE6E1;
  padding: 1px 15px;
  width: fit-content;
  border-radius: 7px;
}
.swatch__fabric-care-title {
  margin: 0 0 0 0;
  font-family: 'DIN W01 Medium';
}
#wood-sample-link {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
#wood-sample-link a {
  font-size: 16px;
  font-family: 'DIN W01 REGULAR';
  text-decoration: underline;
}
#wood-sample-link a:hover {
  text-decoration-thickness: 2px;
}
#addProductToCart:before {
  display: block;
  content: " ";
  margin-top: -285px;
  height: 285px;
  visibility: hidden;
  pointer-events: none;
}
button.play-pause {
  height: 25px;
  width: 25px;
  background: transparent;
  border: none;
  position: relative;
  top: -35px;
  left: 10px;
}
.video-product .learn-more {
  display: none !important;
}
@media (min-width: 1440px) {
  .video-product .product-top {
    display: flex;
    flex-flow: row wrap;
    height: auto !important;
  }
  .video-product .product-masthead.product-masthead--video {
    width: 60%;
  }
  .video-product .videoHero__video {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
  }
  .video-product .product-details {
    background: #fff;
    top: 0PX !important;
    right: 0PX;
    left: auto !important;
    height: 100%;
    width: 40%;
    position: static;
    padding: 30px !important;
  }
  .video-product .product-details .woocommerce-product-details__short-description {
    display: flex !important;
  }
  .video-product .product-details .entry-summary.active {
    padding: 30px 20px 1px;
  }
  .video-product .product-details .entry-summary.active .woocommerce-product-details__short-description {
    display: flex;
    padding: 0;
    margin: -10px -20px -20px;
    padding: 15px 20px 1px;
    background: #ffffff;
    background: linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 22%,rgba(255,255,255,0.01) 22%,rgba(255,255,255,0.76) 100%);
    backdrop-filter: blur(10px);
  }
  .video-product .product-details .entry-summary.active .additional_product_actions_wrap {
    margin: -20px -20px 0px;
    padding: 0px 20px 1px;
    background: #ffffff;
    background: linear-gradient(180deg,rgba(255,255,255,0.76) 22%,rgba(255,255,255,0.86) 100%);
    backdrop-filter: blur(10px);
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
  }
  .video-product .product-top {
    height: calc(100vh - 107px);
    overflow: hidden;
  }
  .video-product .product-masthead,
  .video-product .videoHero,
  .video-product .videoHero__wrapper {
    height: 100%;
  }
}
.page-template-contract_product .product-top {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .product:not(.video-product) .entry-summary,
  .page-template-contract_product .entry-summary {
    max-width: 850px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .product:not(.video-product) .entry-summary,
  .page-template-contract_product .entry-summary {
    padding: 20px 40px;
  }
}
@media (min-width: 1024px) {
  .product:not(.video-product) .product-top,
  .page-template-contract_product .product-top {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .product:not(.video-product) .product-masthead,
  .page-template-contract_product .product-masthead {
    width: 50%;
    max-height: 100%;
  }
}
@media (min-width: 1024px) {
  .product:not(.video-product) .product-details,
  .page-template-contract_product .product-details {
    width: 50%;
    position: relative;
    align-self: center;
  }
}
@media (min-width: 1024px) {
  .product:not(.video-product) .product-masthead img {
    width: auto;
    max-height: 100%;
  }
}
.single-product,
.page-template-contract_product {
  font-size: 18px;
}
.single-product .print-only,
.page-template-contract_product .print-only {
  display: none;
}
.single-product h1,
.page-template-contract_product h1 {
  max-width: 520px;
  font-size: 36px;
}
@media screen and (min-width: 320px) {
  .single-product h1,
  .page-template-contract_product h1 {
    font-size: calc(36px + 8 * ((100vw - 320px) / 580));
  }
}
@media screen and (min-width: 900px) {
  .single-product h1,
  .page-template-contract_product h1 {
    font-size: 44px;
  }
}
.single-product h2,
.page-template-contract_product h2 {
  font-size: 30px;
}
@media screen and (min-width: 320px) {
  .single-product h2,
  .page-template-contract_product h2 {
    font-size: calc(30px + 4 * ((100vw - 320px) / 580));
  }
}
@media screen and (min-width: 900px) {
  .single-product h2,
  .page-template-contract_product h2 {
    font-size: 34px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .single-product #content,
  .page-template-contract_product #content {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .single-product .container,
  .page-template-contract_product .container {
    width: 1350px !important;
  }
}
.single-product .button-add-giftregistry,
.page-template-contract_product .button-add-giftregistry {
  padding: 0;
}
.single-product .button-container,
.page-template-contract_product .button-container {
  text-align: center;
  width: 100%;
}
.single-product .product.type-product,
.page-template-contract_product .product.type-product {
  padding: 0;
}
@media (min-width: 768px) {
  .single-product .product.type-product,
  .page-template-contract_product .product.type-product {
    flex-flow: row wrap;
    display: flex;
  }
}
.single-product .product-top,
.page-template-contract_product .product-top {
  width: 100vw;
  position: relative;
}
.single-product .product-details,
.page-template-contract_product .product-details {
  padding: 10px 0px;
}
.single-product .cartForm,
.page-template-contract_product .cartForm {
  background: #f7f7f7;
  padding-top: 5px;
}
.single-product .entry-title,
.page-template-contract_product .entry-title {
  margin: 0 !important;
  position: relative;
  color: #000000;
}
.single-product .entry-summary,
.page-template-contract_product .entry-summary {
  margin: 0px;
  position: relative;
  padding: 30px 20px 0px;
}
.single-product .entry-summary p.price,
.page-template-contract_product .entry-summary p.price {
  font-family: 'DIN W01 Regular';
  padding: 5px 0 10px;
  color: #000;
  margin: 0;
}
@media (min-width: 768px) {
  .single-product .entry-summary p.price,
  .page-template-contract_product .entry-summary p.price {
    padding: 15px 0 25px;
  }
}
@media (min-width: 768px) {
  .single-product .woocommerce-product-details__short-description,
  .page-template-contract_product .woocommerce-product-details__short-description {
    flex-flow: row nowrap;
    display: flex;
  }
}
@media (min-width: 768px) {
  .single-product .woocommerce-product-details__short-description > p,
  .page-template-contract_product .woocommerce-product-details__short-description > p {
    padding-right: 20px;
    max-width: 50%;
  }
}
@media (min-width: 1440px) {
  .single-product .woocommerce-product-details__short-description > p,
  .page-template-contract_product .woocommerce-product-details__short-description > p {
    max-width: 330px;
  }
}
@media (min-width: 768px) {
  .single-product .woocommerce-product-details__short-description > p + p,
  .page-template-contract_product .woocommerce-product-details__short-description > p + p {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .single-product .woocommerce-product-details__short-description .dropdown-content,
  .page-template-contract_product .woocommerce-product-details__short-description .dropdown-content {
    display: block;
    margin: 0;
    border-left: 1px solid #CCCCCC;
    padding: 0 0 0 20px;
    min-width: 235px;
    max-width: 235px;
    width: 50%;
  }
}
@media (min-width: 1100px) {
  .single-product .woocommerce-product-details__short-description .dropdown-content,
  .page-template-contract_product .woocommerce-product-details__short-description .dropdown-content {
    width: 45%;
  }
}
.single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes,
.page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes {
  align-items: center;
  display: flex;
  height: 100%;
}
@media (min-width: 768px) {
  .single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes,
  .page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes {
    display: block;
    height: auto;
  }
}
.single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes .data-sheet-link,
.page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes .data-sheet-link {
  display: list-item;
  padding: 0 0 40px 5px;
  margin: 0 0 0 24px;
  color: #000;
  box-sizing: border-box;
}
.single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes .data-sheet-link a,
.page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes .data-sheet-link a {
  color: #000;
}
@media (min-width: 768px) {
  .single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes ul,
  .page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes ul {
    font-family: 'DIN W01 Regular';
    padding-bottom: 10px;
  }
}
.single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes ul ul li,
.page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes ul ul li {
  list-style-type: circle;
}
.single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes li,
.page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes li {
  font-family: 'DIN W01 Regular';
}
.single-product .woocommerce-product-details__short-description .dropdown-content .shop_attributes li p,
.page-template-contract_product .woocommerce-product-details__short-description .dropdown-content .shop_attributes li p {
  font-family: 'DIN W01 Regular';
}
.single-product .price,
.single-product .woocommerce-product-details__short-description,
.page-template-contract_product .price,
.page-template-contract_product .woocommerce-product-details__short-description {
  position: relative;
}
.single-product p.price,
.single-product .price,
.page-template-contract_product p.price,
.page-template-contract_product .price {
  font-family: 'DIN W01 Regular';
  color: #000;
  font-weight: normal;
  font-size: 24px;
  display: block;
}
@media (min-width: 1000px) {
  .single-product p.price,
  .single-product .price,
  .page-template-contract_product p.price,
  .page-template-contract_product .price {
    background: none;
  }
}
.single-product p.price del,
.single-product .price del,
.page-template-contract_product p.price del,
.page-template-contract_product .price del {
  font-weight: normal;
  color: #000;
  font-size: 18px;
  display: block;
}
.single-product p.price ins,
.single-product .price ins,
.page-template-contract_product p.price ins,
.page-template-contract_product .price ins {
  text-decoration: none;
}
.single-product .additional_product_actions,
.page-template-contract_product .additional_product_actions {
  flex-direction: column;
  margin: 10px 0 20px;
  display: flex;
}
@media (min-width: 405px) {
  .single-product .additional_product_actions,
  .page-template-contract_product .additional_product_actions {
    flex-flow: row wrap;
    align-items: center;
    margin: 20px 0 20px;
  }
}
@media (min-width: 900px) {
  .single-product .additional_product_actions,
  .page-template-contract_product .additional_product_actions {
    margin: 30px 0 20px;
  }
}
@media (min-width: 1440px) {
  .single-product .additional_product_actions,
  .page-template-contract_product .additional_product_actions {
    margin: 20px 0 20px;
  }
}
.single-product .additional_product_actions a,
.page-template-contract_product .additional_product_actions a {
  display: inline-block;
}
.single-product .additional_product_actions a#customize-link-1,
.page-template-contract_product .additional_product_actions a#customize-link-1 {
  font-family: 'DIN W01 Regular';
  -webkit-font-smoothing: antialiased;
  background: #b34f2d;
  text-transform: uppercase;
  width: fit-content;
  padding: 11px 37px;
  font-size: 24px;
  color: white;
  border: none;
}
.single-product .additional_product_actions a#customize-link-1:hover,
.page-template-contract_product .additional_product_actions a#customize-link-1:hover {
  text-decoration: none;
  background: #8a451d;
}
.single-product .additional_product_actions a#customize-link-1 + a.learn-more,
.page-template-contract_product .additional_product_actions a#customize-link-1 + a.learn-more {
  margin: 0 auto 0 30px;
}
@media (min-width: 405px) {
  .single-product .additional_product_actions a#customize-link-1 + a.learn-more,
  .page-template-contract_product .additional_product_actions a#customize-link-1 + a.learn-more {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 404px) {
  .single-product .additional_product_actions a#customize-link-1 + a.learn-more,
  .page-template-contract_product .additional_product_actions a#customize-link-1 + a.learn-more {
    margin: 0 0 20px;
    order: -1;
  }
}
@media (min-width: 900px) {
  .single-product .additional_product_actions a#customize-link-1 + a.learn-more,
  .page-template-contract_product .additional_product_actions a#customize-link-1 + a.learn-more {
    margin: 0 0 0 40px;
  }
}
.single-product .additional_product_actions a.learn-more,
.page-template-contract_product .additional_product_actions a.learn-more {
  font-family: 'DIN W01 Bold';
  text-decoration: underline;
  color: black;
  font-size: 20px;
  width: auto;
}
.single-product .section-product-data,
.page-template-contract_product .section-product-data {
  margin: 0 0 40px;
}
@media (min-width: 768px) {
  .single-product .section-product-data,
  .page-template-contract_product .section-product-data {
    padding: 0 20px 0 0;
    display: none;
  }
}
@media (min-width: 900px) {
  .single-product .section-product-data,
  .page-template-contract_product .section-product-data {
    padding: 0;
    margin: 0;
  }
}
.single-product .dropdown-title,
.page-template-contract_product .dropdown-title {
  justify-content: space-between;
  text-transform: capitalize;
  flex-direction: row;
  font-weight: normal;
  cursor: pointer;
  display: flex;
}
@media (min-width: 900px) {
  .single-product .dropdown-title.section-product-data--title,
  .page-template-contract_product .dropdown-title.section-product-data--title {
    display: none;
  }
}
.single-product .dropdown-title--is-active + .dropdown-content,
.page-template-contract_product .dropdown-title--is-active + .dropdown-content {
  display: block;
}
.single-product .dropdown-title--is-active img,
.page-template-contract_product .dropdown-title--is-active img {
  transform: rotate(180deg);
}
.single-product .dropdown-title img,
.page-template-contract_product .dropdown-title img {
  transition: .3s;
  cursor: pointer;
}
@media (min-width: 900px) {
  .single-product .dropdown-title img,
  .page-template-contract_product .dropdown-title img {
    display: none;
  }
}
.single-product .dropdown-content,
.page-template-contract_product .dropdown-content {
  display: none;
  margin: 20px 0 0;
}
.single-product .dropdown-content ul,
.page-template-contract_product .dropdown-content ul {
  padding: 0 0 40px 5px;
  margin: 0 0 0 20px;
  width: 100%;
}
.single-product .dropdown-content ul li,
.page-template-contract_product .dropdown-content ul li {
  list-style-type: disc;
  color: #000;
}
.single-product .dropdown-content ul li p,
.page-template-contract_product .dropdown-content ul li p {
  padding: 0;
}
.single-product .dropdown-content ul li a,
.page-template-contract_product .dropdown-content ul li a {
  text-decoration: underline;
  color: #000;
}
@media (min-width: 900px) {
  .single-product .dropdown-content,
  .page-template-contract_product .dropdown-content {
    display: block;
  }
}
.single-product .made-to-order,
.page-template-contract_product .made-to-order {
  margin: 40px 20px 20px;
}
@media (min-width: 1024px) {
  .single-product .made-to-order,
  .page-template-contract_product .made-to-order {
    width: 33%;
    margin: 0;
    padding: 20px;
  }
}
@media (min-width: 900px) {
  .single-product .made-to-order .dropdown-content,
  .page-template-contract_product .made-to-order .dropdown-content {
    margin: 0;
  }
}
.single-product .made-to-order h3,
.page-template-contract_product .made-to-order h3 {
  font-size: 36px;
}
@media screen and (min-width: 320px) {
  .single-product .made-to-order h3,
  .page-template-contract_product .made-to-order h3 {
    font-size: calc(30px + 8 * ((100vw - 320px) / 580));
  }
}
@media screen and (min-width: 900px) {
  .single-product .made-to-order h3,
  .page-template-contract_product .made-to-order h3 {
    font-size: 44px;
    cursor: initial;
  }
}
.single-product .made-to-order p,
.page-template-contract_product .made-to-order p {
  line-height: 28px;
  margin: 0 0 20px;
}
.single-product .made-to-order a,
.page-template-contract_product .made-to-order a {
  text-decoration: underline;
  font-weight: inherit;
  color: #000;
}
.single-product .made-to-order a:hover,
.page-template-contract_product .made-to-order a:hover {
  color: black;
}
.single-product .made-to-order a.hide-decor,
.page-template-contract_product .made-to-order a.hide-decor {
  text-decoration: none;
}
.single-product .made-to-order a.hide-decor:hover,
.page-template-contract_product .made-to-order a.hide-decor:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .single-product .cart-form-container,
  .page-template-contract_product .cart-form-container {
    flex-direction: row;
    padding: 65px 0;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .single-product .cart-form-container,
  .page-template-contract_product .cart-form-container {
    width: 66%;
    padding: 20px;
  }
}
.single-product .cart-form-container label.selection-label,
.page-template-contract_product .cart-form-container label.selection-label {
  text-transform: none;
  font-weight: normal;
  margin: 0 0 20px;
  color: #000;
  font-size: 18px;
}
.single-product form.cart,
.page-template-contract_product form.cart {
  width: 100%;
  background: #F7F7F7;
  position: relative;
  margin: 0;
  display: block;
  padding: 20px;
  right: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .single-product form.cart,
  .page-template-contract_product form.cart {
    margin: 0;
    width: 50% !important;
  }
}
.single-product form.cart table.variations,
.page-template-contract_product form.cart table.variations {
  table-layout: initial;
  margin: 0;
}
.single-product form.cart table.variations td.label,
.page-template-contract_product form.cart table.variations td.label {
  font-family: 'DIN W01 regular';
  text-transform: none;
  color: #000;
  font-size: 20px !important;
  font-weight: 400 !important;
  cursor: initial;
  white-space: normal;
  text-align: left;
}
.single-product form.cart table.variations tr#Array,
.page-template-contract_product form.cart table.variations tr#Array {
  margin: 20px 0 0;
}
.single-product form.cart table.variations tr#Array:first-child,
.page-template-contract_product form.cart table.variations tr#Array:first-child {
  margin: 0;
}
.single-product form.cart table.variations tr,
.page-template-contract_product form.cart table.variations tr {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.single-product form.cart table.variations td,
.page-template-contract_product form.cart table.variations td {
  padding: 0;
}
.single-product form.cart table.variations td.label,
.page-template-contract_product form.cart table.variations td.label {
  margin-right: 5px;
  width: 100%;
}
.single-product form.cart table.variations td.value,
.page-template-contract_product form.cart table.variations td.value {
  flex: 2;
}
.single-product form.cart .reset_variations,
.page-template-contract_product form.cart .reset_variations {
  display: none !important;
}
.single-product form.cart .variations label,
.single-product form.cart .quantity label,
.page-template-contract_product form.cart .variations label,
.page-template-contract_product form.cart .quantity label {
  font-family: 'DIN W01 Regular';
  text-transform: none;
  color: #000;
  font-size: 20px !important;
  font-weight: 400 !important;
  cursor: initial;
  white-space: normal;
}
.single-product form.cart select::-ms-expand,
.single-product form.cart .select2-selection::-ms-expand,
.page-template-contract_product form.cart select::-ms-expand,
.page-template-contract_product form.cart .select2-selection::-ms-expand {
  display: none;
}
.single-product form.cart select,
.single-product form.cart .select2-selection,
.page-template-contract_product form.cart select,
.page-template-contract_product form.cart .select2-selection {
  border: 1px solid #CCCCCC;
  background: url('/wp-content/themes/thosmoser2/images/icon-arrow-down--black.svg'), #ffffff;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  margin-bottom: 0 !important;
  outline: none;
  height: 42px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.single-product form.cart .select2,
.page-template-contract_product form.cart .select2 {
  margin: 0 !important;
}
.single-product form.cart .select2-selection__arrow,
.page-template-contract_product form.cart .select2-selection__arrow {
  display: none;
}
.single-product form.cart .single_add_to_cart_button.disabled,
.page-template-contract_product form.cart .single_add_to_cart_button.disabled {
  background: #c88c64;
}
.single-product form.cart .single_add_to_cart_button:not(.disabled),
.page-template-contract_product form.cart .single_add_to_cart_button:not(.disabled) {
  background: #b34f2d;
  opacity: 1;
}
.single-product form.cart div.swatch-label,
.page-template-contract_product form.cart div.swatch-label {
  display: none;
}
.single-product form.cart table td.value,
.page-template-contract_product form.cart table td.value {
  margin-bottom: 0.875em;
}
.single-product form.cart .quantity,
.page-template-contract_product form.cart .quantity {
  flex-direction: row;
  margin: 0 0 20px;
  display: flex;
  width: 100%;
}
.single-product form.cart .quantity label,
.page-template-contract_product form.cart .quantity label {
  margin-right: 5px;
  width: auto;
}
.single-product form.cart .quantity-adjustments,
.page-template-contract_product form.cart .quantity-adjustments {
  background: #FFF;
  height: 42px;
}
.single-product form.cart .screen-reader-text,
.page-template-contract_product form.cart .screen-reader-text {
  margin: 0;
  border: 0;
}
.single-product form.cart .qty,
.page-template-contract_product form.cart .qty {
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  background: #FFF;
  padding: 0 5px 0 0;
  text-align: center;
  box-shadow: none;
  outline: none;
  height: 100%;
  width: 50px;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.single-product form.cart .qty::-webkit-outer-spin-button,
.single-product form.cart .qty::-webkit-inner-spin-button,
.page-template-contract_product form.cart .qty::-webkit-outer-spin-button,
.page-template-contract_product form.cart .qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.single-product form.cart .qty-minus,
.single-product form.cart .qty-plus,
.page-template-contract_product form.cart .qty-minus,
.page-template-contract_product form.cart .qty-plus {
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFF;
  border: 1px solid #CCCCCC;
  display: inline-block;
  height: 42px;
  width: 42px;
  padding: 0;
}
.single-product form.cart .qty-minus,
.page-template-contract_product form.cart .qty-minus {
  background-image: url('/wp-content/themes/thosmoser2/images/icon-minus.svg');
  float: left;
}
.single-product form.cart .qty-plus,
.page-template-contract_product form.cart .qty-plus {
  background-image: url('/wp-content/themes/thosmoser2/images/icon-plus.svg');
  float: right;
}
.single-product form.cart .price,
.page-template-contract_product form.cart .price {
  font-family: 'DIN W01 Bold';
  align-items: center;
  background: none;
  display: flex;
  margin: 0;
}
.single-product form.cart .price del,
.page-template-contract_product form.cart .price del {
  font-family: 'DIN W01 Regular';
}
.single-product form.cart .price ins,
.page-template-contract_product form.cart .price ins {
  margin-right: 20px;
  order: -1;
}
.single-product form.cart .button-container,
.page-template-contract_product form.cart .button-container {
  flex-direction: row;
  position: relative;
  margin: 20px 0 0;
  display: flex;
}
.single-product form.cart .button-container .single_add_to_cart_button,
.page-template-contract_product form.cart .button-container .single_add_to_cart_button {
  text-transform: none;
  height: 56px;
  width: 100%;
  margin: 0;
  font-family: 'DIN W01 Regular';
  text-transform: uppercase;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #b34f2d;
  border-radius: 0;
}
.single-product form.cart .button-container .options-button,
.page-template-contract_product form.cart .button-container .options-button {
  background: #b34f2d;
  opacity: .75;
  padding: 15.5px 16.5px;
  cursor: pointer;
  max-height: 56px;
  min-width: 56px;
  width: 56px;
  border: 0;
}
.single-product form.cart .button-container .options-button svg,
.page-template-contract_product form.cart .button-container .options-button svg {
  transition: .3s;
}
.single-product form.cart .button-container .options-button:focus,
.page-template-contract_product form.cart .button-container .options-button:focus {
  outline: none;
}
.single-product form.cart .button-container .options-button--is-active,
.page-template-contract_product form.cart .button-container .options-button--is-active {
  background: #c88c64;
}
.single-product form.cart .button-container .options-button--is-active svg,
.page-template-contract_product form.cart .button-container .options-button--is-active svg {
  transform: rotate(180deg);
}
.single-product form.cart .button-container .options-button--is-active svg g,
.page-template-contract_product form.cart .button-container .options-button--is-active svg g {
  fill: #000;
}
.single-product form.cart .button-container .options-list,
.page-template-contract_product form.cart .button-container .options-list {
  box-shadow: rgba(0,0,0,0.25) 0 9px 34px -10px;
  border-radius: 0 0 3px 3px;
  flex-flow: row wrap;
  align-items: center;
  background: #FFF;
  position: absolute;
  display: none;
  padding: 0;
  top: 100%;
  right: 0;
  left: 0;
}
.single-product form.cart .button-container .options-list li,
.page-template-contract_product form.cart .button-container .options-list li {
  width: calc(100% / 2);
  display: block;
  padding: 14px 0;
  max-height: 56px;
}
.single-product form.cart .button-container .options-list li.registry-container,
.page-template-contract_product form.cart .button-container .options-list li.registry-container {
  padding: 0 0 0 0;
}
.single-product form.cart .button-container .options-list li a,
.single-product form.cart .button-container .options-list li #add-to-giftregistry-list,
.page-template-contract_product form.cart .button-container .options-list li a,
.page-template-contract_product form.cart .button-container .options-list li #add-to-giftregistry-list {
  font-family: 'DIN W01 Regular';
  text-transform: none;
  padding: 16px 15px;
  font-weight: normal;
  background: none;
  color: #000;
  font-size: 18px;
  width: 100%;
  opacity: 1;
}
@media (min-width: 500px) {
  .single-product form.cart .button-container .options-list li a,
  .single-product form.cart .button-container .options-list li #add-to-giftregistry-list,
  .page-template-contract_product form.cart .button-container .options-list li a,
  .page-template-contract_product form.cart .button-container .options-list li #add-to-giftregistry-list {
    font-size: 20px;
  }
}
.single-product form.cart .button-container .options-list li a:hover,
.single-product form.cart .button-container .options-list li #add-to-giftregistry-list:hover,
.page-template-contract_product form.cart .button-container .options-list li a:hover,
.page-template-contract_product form.cart .button-container .options-list li #add-to-giftregistry-list:hover {
  text-decoration: underline;
}
.single-product form.cart .button-container .options-list li.registry-container,
.page-template-contract_product form.cart .button-container .options-list li.registry-container {
  border-bottom: solid 1px #CCCCCC;
  display: block;
  width: 100%;
}
.single-product form.cart .button-container .options-list li:last-child,
.page-template-contract_product form.cart .button-container .options-list li:last-child {
  border-left: solid 1px #CCCCCC;
}
.single-product form.cart .button-container .options-list--is-active,
.page-template-contract_product form.cart .button-container .options-list--is-active {
  display: flex;
  z-index: 1;
}
.single-product .product-preview-details,
.page-template-contract_product .product-preview-details {
  width: 100%;
  height: auto;
  display: block;
}
.single-product .product-preview-details .swatch__details,
.page-template-contract_product .product-preview-details .swatch__details {
  display: flex;
  opacity: 1;
  height: fit-content;
  position: static;
  width: 100%;
  transform: none;
  box-shadow: none;
  flex-direction: column;
}
.single-product .product-preview-details .swatch__inner-container,
.page-template-contract_product .product-preview-details .swatch__inner-container {
  display: none;
}
.single-product .product-preview-details .swatch__inner-container--is-active,
.page-template-contract_product .product-preview-details .swatch__inner-container--is-active {
  display: flex;
}
@media (min-width: 1025px) {
  .single-product .product-preview-details .swatch__inner-container--is-active,
  .page-template-contract_product .product-preview-details .swatch__inner-container--is-active {
    display: none;
  }
}
.single-product .swatch-selection-name,
.page-template-contract_product .swatch-selection-name {
  border: 1px solid #CCCCCC;
  background: url(/wp-content/themes/thosmoser2/images/icon-arrow-down--black.svg), #ffffff;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
}
.single-product .woocommerce table.variations .swatch-toggle .swatch-toggle-icon,
.page-template-contract_product .woocommerce table.variations .swatch-toggle .swatch-toggle-icon {
  display: none;
}
.single-product .preview-swatch.swatch-wrapper,
.page-template-contract_product .preview-swatch.swatch-wrapper {
  position: relative;
  background: none;
  display: none;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.single-product .preview-swatch.swatch-wrapper.preview-swatch .swatch-anchor,
.page-template-contract_product .preview-swatch.swatch-wrapper.preview-swatch .swatch-anchor {
  height: 100% !important;
  width: 100% !important;
}
.single-product .preview-swatch.swatch-wrapper.preview-swatch .swatch-anchor img,
.page-template-contract_product .preview-swatch.swatch-wrapper.preview-swatch .swatch-anchor img {
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.single-product .preview-swatch.swatch-wrapper--is-visible,
.page-template-contract_product .preview-swatch.swatch-wrapper--is-visible {
  display: block;
}
.single-product .product-preview,
.page-template-contract_product .product-preview {
  padding: 0 20px 20px 20px;
  align-content: flex-start;
  background: #F7F7F7;
  flex-flow: row wrap;
  margin: 0;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .single-product .product-preview,
  .page-template-contract_product .product-preview {
    margin-top: 0;
    width: 100%;
    padding: 0;
  }
}
.single-product .product-preview label,
.page-template-contract_product .product-preview label {
  width: 100%;
}
.single-product .product-preview-images,
.page-template-contract_product .product-preview-images {
  max-width: 75%;
  min-width: 50%;
}
.single-product .preview-image,
.page-template-contract_product .preview-image {
  object-fit: contain;
  font-family: 'object-fit: contain; object-position: center;';
  display: none;
  width: 100%;
}
.single-product .preview-image--is-visible,
.page-template-contract_product .preview-image--is-visible {
  display: block !important;
}
.single-product .product-preview-swatches,
.page-template-contract_product .product-preview-swatches {
  flex-direction: column;
  display: flex;
  flex: 1;
}
.single-product .product-preview-swatches img.magnify-swatch,
.page-template-contract_product .product-preview-swatches img.magnify-swatch {
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
  position: absolute;
  cursor: pointer;
  left: 50%;
  top: 50%;
}
.single-product .wc-deposits-wrapper,
.page-template-contract_product .wc-deposits-wrapper {
  display: none;
}
.single-product .product-gallery-wrapper,
.page-template-contract_product .product-gallery-wrapper {
  display: flex;
  justify-content: flex-end;
  background: #ffffff;
}
.single-product .product-gallery-container,
.page-template-contract_product .product-gallery-container {
  background: #ffffff;
  width: 100%;
  max-width: calc(1440px + ((100vw - 1440px) / 2));
}
@media (min-width: 900px) {
  .single-product .product-gallery-container,
  .page-template-contract_product .product-gallery-container {
    flex-direction: row;
    align-items: center;
    display: flex;
  }
}
.single-product .product-gallery-description,
.page-template-contract_product .product-gallery-description {
  margin: 30px 0 0 0;
  padding-left: 20px;
}
@media (min-width: 900px) {
  .single-product .product-gallery-description,
  .page-template-contract_product .product-gallery-description {
    text-align: right;
    margin: 0 90px 0 0;
    max-width: 395px;
    min-width: 395px;
    flex: 1;
  }
}
@media (min-width: 1400px) {
  .single-product .product-gallery-description,
  .page-template-contract_product .product-gallery-description {
    margin: 0 125px 0 0;
  }
}
.single-product .product-gallery-description h1,
.page-template-contract_product .product-gallery-description h1 {
  font-size: 34px;
  text-transform: none;
}
.single-product .product-gallery-description h2,
.single-product .product-gallery-description h3,
.single-product .product-gallery-description h4,
.page-template-contract_product .product-gallery-description h2,
.page-template-contract_product .product-gallery-description h3,
.page-template-contract_product .product-gallery-description h4 {
  text-transform: none;
}
.single-product .product-gallery-description a,
.page-template-contract_product .product-gallery-description a {
  text-decoration: underline;
  color: black;
  font-weight: bold;
  margin: 20px 0 0;
  display: block;
}
.single-product .product-gallery-description a:hover,
.page-template-contract_product .product-gallery-description a:hover {
  opacity: .9;
}
.single-product .product-gallery-description a img,
.page-template-contract_product .product-gallery-description a img {
  display: inline-block;
  margin: 0 0 0 10px;
}
.single-product .productGalleries,
.page-template-contract_product .productGalleries {
  overflow: hidden;
  flex: 2;
}
.single-product .productGalleries .gallery-image-zoom + a,
.page-template-contract_product .productGalleries .gallery-image-zoom + a {
  display: block;
}
@media screen and (max-width: 899px) {
  .single-product .productGalleries,
  .page-template-contract_product .productGalleries {
    position: relative;
  }
}
.single-product .product-thumbnails.gallery--2,
.page-template-contract_product .product-thumbnails.gallery--2 {
  margin-top: -25px;
  padding-top: 45px;
}
.single-product .product-thumbnails.gallery--2 .owl-nav,
.page-template-contract_product .product-thumbnails.gallery--2 .owl-nav {
  display: flex !important;
}
.single-product .owl-nav.disabled,
.page-template-contract_product .owl-nav.disabled {
  display: none;
}
.single-product .product-thumbnails,
.page-template-contract_product .product-thumbnails {
  position: relative;
  margin: 60px 0 0;
}
@media (min-width: 900px) {
  .single-product .product-thumbnails,
  .page-template-contract_product .product-thumbnails {
    overflow: hidden;
    flex: 2;
  }
}
.single-product .product-thumbnails .woocommerce-product-gallery__image,
.page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image {
  position: relative;
}
.single-product .product-thumbnails .woocommerce-product-gallery__image:last-child,
.page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image:last-child {
  margin-top: 20px;
}
.single-product .product-thumbnails .woocommerce-product-gallery__image:first-child,
.page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image:first-child {
  margin-top: 0;
}
.single-product .product-thumbnails .woocommerce-product-gallery__image:hover .gallery-image-zoom,
.page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image:hover .gallery-image-zoom {
  display: block;
  opacity: 1;
}
.single-product .product-thumbnails .woocommerce-product-gallery__image a,
.page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image a {
  display: block;
}
.single-product .product-thumbnails .woocommerce-product-gallery__image a img,
.page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image a img {
  position: relative;
  height: 300px;
  width: auto;
  max-width: none;
  z-index: -1;
}
@media screen and (min-width: 320px) {
  .single-product .product-thumbnails .woocommerce-product-gallery__image a img,
  .page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image a img {
    height: calc(300px + 195 * ((100vw - 320px) / 480));
  }
}
@media screen and (min-width: 900px) {
  .single-product .product-thumbnails .woocommerce-product-gallery__image a img,
  .page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image a img {
    height: 495px;
  }
}
.single-product .product-thumbnails .woocommerce-product-gallery__image .gallery-image-zoom,
.page-template-contract_product .product-thumbnails .woocommerce-product-gallery__image .gallery-image-zoom {
  transition: .2s ease all;
  pointer-events: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  z-index: 1;
}
.single-product .product-thumbnails .owl-stage,
.page-template-contract_product .product-thumbnails .owl-stage {
  display: flex;
}
.single-product .owl-nav,
.page-template-contract_product .owl-nav {
  justify-content: space-between;
  width: 100%;
  position: absolute;
  margin: 0;
  display: none;
  top: 0;
  pointer-events: none;
}
@media (min-width: 900px) {
  .single-product .owl-nav,
  .page-template-contract_product .owl-nav {
    display: flex;
    margin: 0;
    width: 100%;
  }
}
.single-product .owl-nav button,
.page-template-contract_product .owl-nav button {
  background: url('/wp-content/themes/thosmoser2/images/icon-arrow--blue.svg'), rgba(255,255,255,0.65);
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  border: 2px solid #FFF;
  background-size: 15px;
  padding: 28px 29px;
  height: 15px;
  width: 15px;
  pointer-events: all;
}
@media (min-width: 900px) {
  .single-product .owl-nav button,
  .page-template-contract_product .owl-nav button {
    padding: 33px 34px;
    margin: 0;
  }
}
.single-product .owl-nav button.owl-prev,
.page-template-contract_product .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.single-product .owl-nav button:focus,
.page-template-contract_product .owl-nav button:focus {
  outline: none;
}
.single-product .owl-nav button span,
.page-template-contract_product .owl-nav button span {
  display: none;
}
.single-product .mfp-arrow:before,
.page-template-contract_product .mfp-arrow:before {
  display: none;
}
.single-product button.mfp-arrow:after,
.page-template-contract_product button.mfp-arrow:after {
  background: url(/wp-content/themes/thosmoser2/images/icon-arrow--blue.svg), #fff;
  background-position: center;
  background-size: 45%;
  background-repeat: no-repeat;
  position: absolute;
  content: '';
  width: 45px;
  height: 51px;
  top: 32px;
  border: none;
  padding: 20px;
  cursor: pointer;
  opacity: 0.55;
  backdrop-filter: blur(100px);
}
.single-product .mfp-arrow-right:after,
.page-template-contract_product .mfp-arrow-right:after {
  background: url(/wp-content/themes/thosmoser2/images/icon-arrow--blue.svg), #fff;
  right: 20px;
}
.single-product .mfp-arrow-left:after,
.page-template-contract_product .mfp-arrow-left:after {
  background: url(/wp-content/themes/thosmoser2/images/icon-arrow--blue.svg), #fff;
  left: 20px;
  transform: rotate(180deg);
}
.single-product .product-anatomy-container,
.page-template-contract_product .product-anatomy-container {
  display: none;
  margin: 70px 0 35px;
}
@media (min-width: 1100px) {
  .single-product .product-anatomy-container,
  .page-template-contract_product .product-anatomy-container {
    margin: 125px 0 60px;
  }
}
.single-product .product-anatomy-container h2,
.page-template-contract_product .product-anatomy-container h2 {
  text-align: center;
  text-transform: none;
}
@media (min-width: 1100px) {
  .single-product .product-anatomy-container h2,
  .page-template-contract_product .product-anatomy-container h2 {
    margin-bottom: 70px;
  }
}
.single-product .product-anatomy,
.page-template-contract_product .product-anatomy {
  position: relative;
}
@media (min-width: 1100px) {
  .single-product .product-anatomy,
  .page-template-contract_product .product-anatomy {
    margin-left: calc(-50vw + 50%);
    width: 100vw;
    padding: 0 65px;
    display: -ms-grid;
    -ms-grid-columns: minmax(200px,350px) minmax(575px,1fr) minmax(200px,350px);
    -ms-grid-rows: 1fr 1fr;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: minmax(200px,350px) minmax(575px,1fr) minmax(200px,350px);
  }
}
.single-product .anatomy-image,
.page-template-contract_product .anatomy-image {
  padding: 0px 15px;
}
.single-product .anatomy-image img,
.page-template-contract_product .anatomy-image img {
  max-width: 575px;
  margin: auto;
  width: 100%;
}
@media (min-width: 1100px) {
  .single-product .anatomy-image,
  .page-template-contract_product .anatomy-image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-column: 2 / 3;
    grid-row: 1 / 4;
  }
}
.single-product .anatomy-map,
.page-template-contract_product .anatomy-map {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
.single-product .anatomy-content,
.page-template-contract_product .anatomy-content {
  display: none;
}
@media (max-width: 1099px) {
  .single-product .anatomy-content,
  .page-template-contract_product .anatomy-content {
    box-shadow: rgba(0,0,0,0.25) 0 9px 34px -10px;
    background: #FFFFFF;
    border-radius: 3px;
    padding: 0 20px 20px;
    position: absolute;
    margin: 0 -20px;
    z-index: 1;
    top: 75%;
  }
}
.single-product .anatomy-content--is-visible,
.page-template-contract_product .anatomy-content--is-visible {
  display: block;
}
@media (min-width: 1100px) {
  .single-product .anatomy-content,
  .page-template-contract_product .anatomy-content {
    max-width: 350px;
    display: block;
    padding: 0;
  }
  .single-product .anatomy-content:nth-of-type(2),
  .page-template-contract_product .anatomy-content:nth-of-type(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1 / 2;
    text-align: right;
    order: -1;
  }
  .single-product .anatomy-content:nth-of-type(3),
  .page-template-contract_product .anatomy-content:nth-of-type(3) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 3 / 4;
    order: 1;
  }
  .single-product .anatomy-content:nth-of-type(4),
  .page-template-contract_product .anatomy-content:nth-of-type(4) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-column: 3 / 4;
    order: 2;
  }
}
.single-product .anatomy-content .anatomy-close,
.page-template-contract_product .anatomy-content .anatomy-close {
  transform: translateX(-50%);
  margin: 20px auto auto;
  position: relative;
  background: none;
  border: none;
  left: 50%;
}
@media (min-width: 1100px) {
  .single-product .anatomy-content .anatomy-close,
  .page-template-contract_product .anatomy-content .anatomy-close {
    display: none;
  }
}
.single-product .anatomy-content h3,
.page-template-contract_product .anatomy-content h3 {
  display: inline-block;
}
.single-product .anatomy-line,
.page-template-contract_product .anatomy-line {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1100px) {
  .single-product .anatomy-line,
  .page-template-contract_product .anatomy-line {
    display: none;
  }
}
@media all and (-ms-high-contrast: none) {
  .single-product .anatomy-line,
  .page-template-contract_product .anatomy-line {
    display: none;
  }
}
.single-product .anatomy-point,
.page-template-contract_product .anatomy-point {
  position: absolute;
  background: none;
  border: 0;
  padding: 0;
}
.single-product .anatomy-point:focus,
.page-template-contract_product .anatomy-point:focus {
  outline: none;
}
@media (max-width: 1099px) {
  .single-product .anatomy-point:nth-of-type(1),
  .page-template-contract_product .anatomy-point:nth-of-type(1) {
    top: 50% !important;
    left: 5% !important;
  }
  .single-product .anatomy-point:nth-of-type(2),
  .page-template-contract_product .anatomy-point:nth-of-type(2) {
    left: initial !important;
    right: 15% !important;
    top: 20% !important;
  }
  .single-product .anatomy-point:nth-of-type(3),
  .page-template-contract_product .anatomy-point:nth-of-type(3) {
    left: initial !important;
    right: 15% !important;
    top: 60% !important;
  }
}
.single-product .anatomy-point img,
.page-template-contract_product .anatomy-point img {
  display: block;
  margin: auto;
}
@media (min-width: 1100px) {
  .single-product .anatomy-point img,
  .page-template-contract_product .anatomy-point img {
    display: none;
  }
}
.single-product .anatomy-title,
.page-template-contract_product .anatomy-title {
  font-family: 'DIN W01 Bold';
  color: #000;
  font-size: 10px;
  display: block;
}
@media (min-width: 1100px) {
  .single-product .anatomy-title,
  .page-template-contract_product .anatomy-title {
    display: none;
  }
}
.single-product .product-unique-details,
.page-template-contract_product .product-unique-details {
  text-align: center;
  margin: 0;
  padding: 20px;
  background: #ffffff;
}
@media (min-width: 900px) {
  .single-product .product-unique-details,
  .page-template-contract_product .product-unique-details {
    justify-content: center;
    flex-flow: row wrap;
    margin: 0;
    padding: 85px 20px 20px;
    display: flex;
  }
}
.single-product .product-unique-details .unique-detail-summary,
.page-template-contract_product .product-unique-details .unique-detail-summary {
  margin: 0 auto;
  width: 100%;
}
.single-product .product-unique-details .unique-detail-summary h2,
.page-template-contract_product .product-unique-details .unique-detail-summary h2 {
  font-weight: normal;
}
.single-product .product-unique-details .unique-detail-summary p,
.single-product .product-unique-details .unique-detail-summary h2,
.page-template-contract_product .product-unique-details .unique-detail-summary p,
.page-template-contract_product .product-unique-details .unique-detail-summary h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 810px;
}
.single-product .product-unique-details .unique-detail,
.page-template-contract_product .product-unique-details .unique-detail {
  text-align: center;
  margin: 40px 0;
}
@media (min-width: 900px) {
  .single-product .product-unique-details .unique-detail,
  .page-template-contract_product .product-unique-details .unique-detail {
    width: calc(100% / 3);
    max-width: 400px;
    padding: 0px 20px;
  }
}
.single-product .product-unique-details .unique-detail__header,
.page-template-contract_product .product-unique-details .unique-detail__header {
  text-transform: none;
  margin: 0 0 5px;
  font-size: 30px;
}
@media screen and (min-width: 320px) {
  .single-product .product-unique-details .unique-detail__header,
  .page-template-contract_product .product-unique-details .unique-detail__header {
    font-size: calc(30px + 24 * ((100vw - 320px) / 580));
  }
}
@media screen and (min-width: 900px) {
  .single-product .product-unique-details .unique-detail__header,
  .page-template-contract_product .product-unique-details .unique-detail__header {
    font-size: 54px;
  }
}
.single-product .product-unique-details .unique-detail__body,
.page-template-contract_product .product-unique-details .unique-detail__body {
  max-width: 250px;
  margin: 0 auto;
}
.single-product .related-content,
.page-template-contract_product .related-content {
  margin: 70px 0 0;
}
@media (min-width: 900px) {
  .single-product .related-content,
  .page-template-contract_product .related-content {
    margin: 170px 0 0;
  }
}
.single-product .related-content h2,
.page-template-contract_product .related-content h2 {
  text-align: center;
  padding: 0 20px;
}
.single-product .related-content ul.products,
.page-template-contract_product .related-content ul.products {
  -webkit-overflow-scrolling: touch;
  padding: 0 20px !important;
  flex-direction: row;
  overflow-x: scroll;
  flex-wrap: nowrap;
  display: flex;
  margin: 0;
}
@media (min-width: 900px) {
  .single-product .related-content ul.products,
  .page-template-contract_product .related-content ul.products {
    overflow: auto;
  }
}
@media (min-width: 1200px) {
  .single-product .related-content ul.products,
  .page-template-contract_product .related-content ul.products {
    justify-content: center;
  }
}
.single-product .related-content ul.products.columns-4 li.product,
.page-template-contract_product .related-content ul.products.columns-4 li.product {
  width: auto;
}
.single-product .related-content ul.products li.product,
.page-template-contract_product .related-content ul.products li.product {
  padding: 0 20px 0 0;
  text-align: left;
  min-width: 270px;
  max-width: 370px;
}
@media (min-width: 900px) {
  .single-product .related-content ul.products li.product,
  .page-template-contract_product .related-content ul.products li.product {
    width: calc(100% / 4);
    margin: 10px 0 0;
  }
}
@media (min-width: 900px) {
  .single-product .related-content ul.products li.product:last-child,
  .page-template-contract_product .related-content ul.products li.product:last-child {
    padding-right: 0;
  }
}
.single-product .related-content ul.products li.product .woocommerce-loop-product__title,
.page-template-contract_product .related-content ul.products li.product .woocommerce-loop-product__title {
  font-family: 'DIN W01 Regular';
  text-align: left;
  margin: 10px 0 0;
  padding: 0;
  color: #000;
}
.single-product .related-content ul.products li.product img,
.page-template-contract_product .related-content ul.products li.product img {
  font-family: 'object-fit: cover; object-position: center;';
  max-height: 370px;
  height: 225px;
  width: auto;
}
@media screen and (min-width: 320px) {
  .single-product .related-content ul.products li.product img,
  .page-template-contract_product .related-content ul.products li.product img {
    height: calc(225px + 145 * ((100vw - 320px) / 1480));
  }
}
@media screen and (min-width: 1800px) {
  .single-product .related-content ul.products li.product img,
  .page-template-contract_product .related-content ul.products li.product img {
    height: 370px;
  }
}
.single-product .contract-cta,
.page-template-contract_product .contract-cta {
  margin: 80px 0 20px;
}
@media screen and (min-width: 900px) {
  .single-product .contract-cta,
  .page-template-contract_product .contract-cta {
    justify-content: center;
    flex-direction: row;
    margin: 125px 0 65px;
    align-items: center;
    padding: 0 20px;
    display: flex;
  }
}
.single-product .contract-cta .button-container,
.page-template-contract_product .contract-cta .button-container {
  margin: 20px 0 0;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .single-product .contract-cta .button-container,
  .page-template-contract_product .contract-cta .button-container {
    margin: 30px 0 0;
  }
}
.single-product .contract-cta .button-container a,
.page-template-contract_product .contract-cta .button-container a {
  text-align: center;
  margin: 0 auto 0 0;
  min-width: 275px;
}
.single-product .contract-image,
.page-template-contract_product .contract-image {
  position: relative;
  align-items: center;
  display: flex;
}
@media screen and (min-width: 900px) {
  .single-product .contract-image,
  .page-template-contract_product .contract-image {
    max-width: 600px;
  }
}
.single-product .contract-image img,
.page-template-contract_product .contract-image img {
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: center;';
  height: 300px;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .single-product .contract-image img,
  .page-template-contract_product .contract-image img {
    height: calc(300px + 140 * ((100vw - 320px) / 580));
  }
}
@media screen and (min-width: 900px) {
  .single-product .contract-image img,
  .page-template-contract_product .contract-image img {
    height: 440px;
  }
}
.single-product .contract-image__title,
.page-template-contract_product .contract-image__title {
  position: absolute;
  text-align: center;
  font-size: 30px;
  display: block;
  color: #FFF;
  width: 100%;
  margin: 0;
}
.single-product .contract-body,
.page-template-contract_product .contract-body {
  padding: 0 20px;
}
@media screen and (min-width: 900px) {
  .single-product .contract-body,
  .page-template-contract_product .contract-body {
    margin-left: 80px;
    max-width: 540px;
  }
}
.single-product .contract-body h2,
.page-template-contract_product .contract-body h2 {
  margin-bottom: 10px;
  line-height: 45px;
}
@media screen and (min-width: 900px) {
  .single-product .contract-body h2,
  .page-template-contract_product .contract-body h2 {
    margin-top: 0;
  }
}
.single-product .product-type-simple form.cart .button-container,
.page-template-contract_product .product-type-simple form.cart .button-container {
  max-width: 750px;
}
.single-product .product-type-simple .options-list .registry-container,
.page-template-contract_product .product-type-simple .options-list .registry-container {
  width: calc(50%);
}
.single-product .product-type-simple .options-list .registry-container .button,
.page-template-contract_product .product-type-simple .options-list .registry-container .button {
  border: none;
}
@media print {
  .product,
  #main-navigation,
  .related-content,
  #colophon,
  .contract-cta,
  .wpadminbar,
  #chat-widget-container {
    display: none !important;
  }
  .dataSheet {
    display: block;
  }
  #content {
    padding-top: 40px;
  }
  body.single .sheet {
    width: 216mm;
    height: 279mm;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    overflow: hidden;
  }
  .dataSheetHeader {
    padding: 50px 60px 30px;
    text-align: right;
  }
  .dataSheetHeader h2,
  .dataSheetText h2 {
    font-size: 34px;
    text-transform: uppercase;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    margin: 0.67em 0;
    color: inherit;
    font-weight: bold;
    text-align: right;
    font-size: 16px;
    color: #000;
  }
  .dataSheetHeader p,
  .dataSheetText p {
    color: #000;
    font-size: 12px;
  }
  .dataSheetText p,
  .dataSheetText h2 {
    text-align: left;
  }
  .productDimensions {
    display: flex;
    float: right;
  }
  .productDimensions--horizontal p {
    font-family: "DIN W01 Regular";
  }
  .productDimensions--horizontal p br {
    display: none;
  }
  .productDimensions p {
    line-height: 20px;
  }
  .productDimensions p:last-child {
    font-family: "DIN W01 Regular";
  }
  .dataSheetImage {
    padding: 0px 80px;
    max-height: 650px;
  }
  .dataSheetImage img {
    margin: 0 auto;
    height: 100%;
    width: auto;
  }
  .dataSheetGallery {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    align-items: center;
    height: 330px;
  }
  .dataSheetGallery .imageWrapper {
    height: 100%;
    max-width: 33%;
    background: #F2F3F5;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }
  .productDrawing img {
    max-height: 275px;
    width: auto;
  }
  .dataSheetFooter {
    padding: 20px 0px;
    margin-top: auto;
    width: 100%;
    background: #fff;
  }
  .dataSheetFooter__text {
    display: flex;
    flex-flow: row nowrap;
    font-size: 10px;
    padding: 10px 45px;
    justify-content: space-between;
  }
  .dataSheetFooter__logo {
    width: 230px;
    margin-left: 23px;
  }
  .dataSheetFooter__text .dot {
    font-size: 5px;
    line-height: 2.5;
  }
  .shortDescription p {
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    font-family: "DIN W01 Regular";
  }
  .dataSheet__page--2 .content {
    padding: 100px 80px 0px;
  }
  @page {
    margin: 0;
  }
  body {
    margin: 0;
  }
  .sheet {
    margin: 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    page-break-after: always;
  }
  body.A3               .sheet {
    width: 297mm;
    height: 419mm;
  }
  body.A3.landscape     .sheet {
    width: 420mm;
    height: 296mm;
  }
  body.A4               .sheet {
    width: 210mm;
    height: 296mm;
  }
  body.A4.landscape     .sheet {
    width: 297mm;
    height: 209mm;
  }
  body.A5               .sheet {
    width: 148mm;
    height: 209mm;
  }
  body.A5.landscape     .sheet {
    width: 210mm;
    height: 147mm;
  }
  body.letter           .sheet {
    width: 216mm;
    height: 279mm;
  }
  body.letter.landscape .sheet {
    width: 280mm;
    height: 215mm;
  }
  body.legal            .sheet {
    width: 216mm;
    height: 356mm;
  }
  body.legal.landscape  .sheet {
    width: 357mm;
    height: 215mm;
  }
  .sheet.padding-10mm {
    padding: 10mm;
  }
  .sheet.padding-15mm {
    padding: 15mm;
  }
  .sheet.padding-20mm {
    padding: 20mm;
  }
  .sheet.padding-25mm {
    padding: 25mm;
  }
  body.A3.landscape {
    width: 420mm;
  }
  body.A3,
  body.A4.landscape {
    width: 297mm;
  }
  body.A4,
  body.A5.landscape {
    width: 210mm;
  }
  body.A5 {
    width: 148mm;
  }
  body.letter,
  body.legal {
    width: 216mm;
  }
  body.single {
    width: 216mm;
  }
  body.letter.landscape {
    width: 280mm;
  }
  body.legal.landscape {
    width: 357mm;
  }
  body.single .sheet {
    height: 265mm;
    display: flex;
    flex-direction: column;
  }
}
.single-product.logged-in.admin-bar .product-anatomy-container {
  display: block;
}
@media (max-width: 900px) {
  .page-template-contract_product .product-gallery-description,
  .page-template-contract_product .contract-product__location {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-template-contract_product .product-gallery-container {
    padding: 0px;
  }
}
del::before,
del::after {
  clip-path: inset(100%);
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
del::before {
  content: " [strikethrough, original price] ";
}
.page-template-spring-landing #content #main_content {
  padding: 0 !important;
}
.page-template-spring-landing #breadcrumbs {
  display: none;
}
.page-template-spring-landing .banner {
  background-color: #f2f2f2;
}
.page-template-spring-landing .masthead {
  flex-flow: row wrap;
  margin-bottom: 6.5rem;
}
.page-template-spring-landing .masthead img {
  margin-bottom: 8.4rem;
}
.page-template-spring-landing .masthead h1 {
  text-align: center;
  text-transform: unset;
  font-size: 3.5rem;
}
@media only screen and (min-width: 992px) {
  .page-template-spring-landing .masthead {
    display: flex;
  }
}
.page-template-spring-landing .photo-grid {
  padding-left: 6px;
  padding-right: 6px;
}
.page-template-spring-landing .photo-grid .col {
  padding-left: 6px;
  padding-right: 6px;
}
.page-template-spring-landing .photo-grid .header {
  margin-bottom: 6px;
}
.page-template-spring-landing .photo-grid a {
  cursor: pointer;
}
.page-template-spring-landing .photo-grid .img-wrapper {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.page-template-spring-landing .photo-grid .img-wrapper img {
  transition: all 1.5s ease;
  vertical-align: middle;
}
.page-template-spring-landing .photo-grid .img-wrapper img:hover {
  transform: scale(1.025);
}
.page-template-spring-landing .photo-grid .img-wrapper h5 {
  position: absolute;
  color: #000;
  bottom: 15px;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  display: none;
}
.page-template-spring-landing .photo-grid .img-wrapper h5.white {
  color: #fff;
}
@media only screen and (min-width: 992px) {
  .page-template-spring-landing .photo-grid .img-wrapper h5 {
    display: block;
  }
}
.page-template-spring-landing h2 {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4.5rem;
  text-transform: unset;
  font-weight: 100;
  font-size: 2.75rem;
}
.page-template-spring-landing h2 a {
  text-decoration: underline;
}
.page-template-spring-landing .our-signature {
  padding-left: 6px;
  padding-right: 6px;
}
.page-template-spring-landing .our-signature.row {
  display: flex;
  flex-wrap: wrap;
}
.page-template-spring-landing .our-signature.row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}
.page-template-spring-landing .our-signature .col {
  padding-left: 6px;
  padding-right: 6px;
}
@media only screen and (max-width: 991px) {
  .page-template-spring-landing .our-signature .col {
    width: 100%;
  }
}
.page-template-spring-landing .our-signature .message {
  outline: 1px solid #a3a4a5;
  outline-offset: -3rem;
  padding: 3rem;
  display: flex;
  height: 100%;
  vertical-align: middle;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fbfbfb;
}
@media only screen and (min-width: 992px) {
  .page-template-spring-landing .our-signature .message {
    outline-offset: -6rem;
    padding: 6rem;
  }
}
.page-template-spring-landing .our-signature .message h1 {
  font-family: 'Noe Display', serif;
  text-transform: unset;
  font-weight: 700;
  font-size: 3.5rem;
  margin-top: 0;
}
.page-template-spring-landing .our-signature .message p {
  line-height: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-template-spring-landing .our-signature .message p {
    font-size: 14px;
  }
}
.page-template-spring-landing .our-signature .message p br {
  display: none;
}
.page-template-spring-landing .our-signature .message img {
  width: 150px;
  margin: 0 auto;
}
.page-template-spring-landing .our-signature .message-padding {
  padding: 3rem;
}
@media only screen and (min-width: 992px) {
  .page-template-spring-landing .our-signature .message-padding {
    padding: 6rem;
  }
}
.page-template-spring-landing .our-signature .message-padding h1 {
  color: #000;
}
.page-template-spring-landing .our-signature .img-wrapper {
  display: inline-block;
  overflow: hidden;
}
.page-template-spring-landing .our-signature .img-wrapper img {
  transition: all 1.5s ease;
  vertical-align: middle;
}
.page-template-spring-landing .our-signature .img-wrapper img:hover {
  transform: scale(1.025);
}
.page-template-spring-landing .bottom-navigation {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.page-template-spring-landing .bottom-navigation h1 {
  font-family: "DIN W01 Light";
  font-size: 2.4rem !important;
  text-transform: none;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0 !important;
  padding-top: 15px;
}
.page-template-spring-landing .bottom-navigation ul {
  display: block;
  justify-content: center;
  padding: 0px;
  margin: 0px;
  height: fit-content;
  min-height: 75px;
  padding: 15px 0;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .page-template-spring-landing .bottom-navigation ul {
    display: flex;
  }
}
.page-template-spring-landing .bottom-navigation ul li {
  height: fit-content;
  min-height: 35px;
  padding: 10px 25px;
}
.page-template-spring-landing .bottom-navigation ul li a {
  text-decoration: underline;
  font-weight: 400;
}
.spring-promo-banner {
  background-color: #ebf1fa;
  padding: 5rem 2rem 4rem;
}
@media (min-width: 1200px) {
  .spring-promo-banner .container-fluid {
    width: 1170px;
  }
}
.spring-promo-banner a {
  transition: all .2s ease;
}
.spring-promo-banner a:hover,
.spring-promo-banner a:focus {
  text-decoration: none;
  color: #666;
}
.spring-promo-banner h1,
.spring-promo-banner h2 {
  font-family: 'Noe Display', serif !important;
  text-transform: unset;
  font-weight: 700;
}
.spring-promo-banner .join {
  margin-top: 1.25rem;
}
.spring-promo-banner .join h2 {
  font-size: 3.4rem;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .spring-promo-banner .join h2 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .spring-promo-banner .join h2 {
    text-align: left;
  }
}
.spring-promo-banner .join h3 {
  font-family: "DIN W01 Light";
  font-size: 2.5rem;
  font-weight: 100;
  margin-top: 0;
  margin-bottom: .5rem;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .spring-promo-banner .join h3 {
    text-align: left;
  }
}
.spring-promo-banner .join p {
  font-family: "DIN W01 Light";
  font-size: 1.25rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 100;
}
@media only screen and (min-width: 1200px) {
  .spring-promo-banner .join p {
    text-align: left;
    margin-bottom: 0;
  }
}
.spring-promo-banner .prices {
  text-align: center;
  padding: 1rem;
  margin-top: -1.75rem;
}
.spring-promo-banner .prices h1 {
  font-size: 4rem;
  margin: 0 !important;
  line-height: 3.5rem;
  padding-top: 1.75rem;
  display: inline-block;
  border-bottom: 1px solid #a2a7ab;
  position: relative;
}
.spring-promo-banner .prices h1 sup:first-child {
  font-size: 2.25rem;
}
.spring-promo-banner .prices h1 sup:last-child {
  font-family: "DIN W01 Light";
  font-size: 2.25rem;
  margin-left: .25rem;
}
@media (min-width: 768px) {
  .spring-promo-banner .prices h1 sup:last-child {
    margin-left: .6rem;
  }
}
.spring-promo-banner .prices h1:after {
  content: ' ';
  width: 100%;
  height: 1px;
  border-bottom: none;
  display: block;
  position: absolute;
  bottom: -30px;
}
@media only screen and (min-width: 992px) {
  .spring-promo-banner .prices h1 sup:first-child,
  .spring-promo-banner .prices h1 sup:last-child {
    font-size: 3rem;
  }
  .spring-promo-banner .prices h1:after {
    border-bottom: 1px solid #a2a7ab;
  }
}
@media only screen and (min-width: 992px) {
  .spring-promo-banner .prices h1 {
    font-size: 5.5rem;
    line-height: 6rem;
  }
}
.spring-promo-banner .prices p {
  margin-bottom: 0;
  font-family: "DIN W01 Light";
  line-height: 2.5rem;
  color: #000;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .spring-promo-banner .prices p {
    font-size: 18px;
  }
}
.page-template-spring_sale .spring-sale .desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale .desktop {
    display: block;
  }
}
.page-template-spring_sale .spring-sale .mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale .mobile {
    display: none;
  }
}
.page-template-spring_sale .spring-sale__button {
  width: 100%;
  max-width: calc((100vw - 40px));
  display: block;
  text-align: center;
  margin: 20px auto 0 auto;
  padding: 10px 0;
  font-family: 'Noe Display';
  background: #334154;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 24px;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__button {
    width: 25%;
  }
}
.page-template-spring_sale .spring-sale__button.mobile {
  width: 90%;
  margin: 20px auto 40px auto;
  color: #fff;
}
.page-template-spring_sale .spring-sale__button:hover {
  color: #fff;
}
.page-template-spring_sale .spring-sale__button.catalog {
  margin-top: 75px;
  width: 20%;
}
.page-template-spring_sale .spring-sale__top-navigation {
  display: block;
}
@media screen and (min-width: 1290px) {
  .page-template-spring_sale .spring-sale__top-navigation {
    display: flex;
    flex-direction: row;
    padding: 15px 0px;
    max-width: 90%;
    margin: auto;
  }
}
.page-template-spring_sale .spring-sale__top-navigation .discount-img {
  display: block;
  margin: 15px auto;
  width: 70%;
}
@media screen and (min-width: 780px) {
  .page-template-spring_sale .spring-sale__top-navigation .discount-img {
    width: 50%;
  }
}
@media screen and (min-width: 1390px) {
  .page-template-spring_sale .spring-sale__top-navigation .discount-img {
    width: 25%;
  }
}
.page-template-spring_sale .spring-sale__top-navigation .discount-img img {
  margin: 0 auto;
}
.page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list {
  display: block;
  padding: 0px;
  height: 0px;
  transition: .5s;
  position: absolute;
  background: #fff;
  z-index: 112;
  width: 100%;
  overflow: hidden;
}
.page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list li {
  padding: 15px 30px;
  border-bottom: solid 1px #eee;
}
.page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list li a {
  font-weight: bold;
}
@media screen and (min-width: 1290px) {
  .page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list {
    display: flex;
    justify-content: flex-end;
    height: fit-content;
    min-height: 50px;
    padding: 15px 0;
    margin: 25px 0 0 auto;
    position: static;
    background: none;
  }
  .page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list li {
    height: fit-content;
    min-height: 45px;
    padding: 15px 50px;
    border-right: solid 1px #eee;
    border-bottom: none;
  }
  .page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list li:last-child {
    border-right: none !important;
  }
  .page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list li a {
    text-decoration: none;
    font-weight: bold;
  }
}
.page-template-spring_sale .spring-sale__top-navigation .spring-sale__nav-list.active {
  height: auto;
}
.page-template-spring_sale .spring-sale__masthead-container {
  position: relative;
}
.page-template-spring_sale .spring-sale__top-image {
  width: 100vw;
}
.page-template-spring_sale .spring-sale__top-image--2 {
  position: absolute;
  top: 0px;
  -webkit-animation: fade-image 10s infinite;
  animation: fade-image 10s infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: linear;
}
.page-template-spring_sale .spring-sale__intro {
  padding: 30px 0;
  display: block;
  margin: auto;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__intro {
    margin: 75px auto;
    display: flex;
    justify-content: space-between;
    max-width: 87%;
    padding: 0;
  }
}
.page-template-spring_sale .spring-sale__text {
  width: 100%;
  padding: 0 20px;
  text-align: left;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__text {
    padding: 0 0;
    width: 65%;
    margin: auto;
    text-align: center;
  }
}
.page-template-spring_sale .spring-sale__text h1 {
  font-family: Noe Display;
  font-weight: bold;
  text-transform: none;
  color: #000;
  font-size: 36px;
  padding: 0;
  text-align: left;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__text h1 {
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
  }
}
.page-template-spring_sale .spring-sale__text p {
  font-family: 'DIN W01 Medium';
  font-size: 18px;
  color: #666;
  line-height: 1.556;
  max-width: 630px;
  margin: 0 auto;
}
.page-template-spring_sale .spring-sale__text .button {
  display: block;
  text-align: center;
  margin: 20px auto 0 0;
  padding: 10px 0;
  font-family: 'Noe Display';
  background: #334154;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 24px;
  width: 68%;
}
@media screen and (min-width: 480px) {
  .page-template-spring_sale .spring-sale__text .button {
    width: 40%;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__text .button {
    margin: 40px auto 0 auto;
  }
}
.page-template-spring_sale .spring-sale .section-toggle {
  display: flex !important;
  flex-direction: row;
  padding: 26px 15px;
  justify-content: space-between;
  border-top: solid 1px #ccc;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale .section-toggle {
    display: none !important;
  }
}
.page-template-spring_sale .spring-sale .section-toggle img {
  height: 15px;
  width: 25px;
  margin: 13px 0;
  transition: .5s;
}
.page-template-spring_sale .spring-sale .section-toggle p {
  font-size: 25px;
  font-family: 'DIN W01 Medium';
  text-decoration: underline;
}
.page-template-spring_sale .spring-sale .section-toggle.active img {
  transform: rotate(180deg);
}
.page-template-spring_sale .spring-sale .spring-sale__wrapper {
  max-height: 0px;
  overflow: hidden;
  transition: 1.5s cubic-bezier(1,0,0.11,0.99);
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale .spring-sale__wrapper {
    max-height: none;
    overflow: visible;
  }
}
.page-template-spring_sale .spring-sale .spring-sale__wrapper.active {
  max-height: 10000px;
  transition: 1.5s cubic-bezier(1,0,0.11,0.99);
  margin-bottom: 25px !important;
}
.page-template-spring_sale .spring-sale__sale-section {
  display: block;
  margin: 0 auto 60px auto !important;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__sale-section {
    margin: 0 auto 100px auto !important;
  }
}
.page-template-spring_sale .spring-sale__sale-section .section-link {
  font-family: 'DIN W01 Medium';
  font-size: 34px;
  margin: 20px 0;
}
.page-template-spring_sale .spring-sale__image-title {
  width: 100%;
  position: relative;
}
.page-template-spring_sale .spring-sale__image-title img {
  width: 100%;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text {
  position: absolute;
  bottom: 50%;
  width: 100%;
  text-align: center;
  font-family: 'Noe Display';
  font-weight: bold;
  text-transform: none;
  color: #000;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text .quote-title {
  text-transform: none;
  font-weight: bold;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text .quote-symbol {
  font-family: 'Noe Display';
  font-size: 91px;
  transform: rotate(180deg);
  margin: 0;
  line-height: 34px;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text .quote-text {
  font-family: 'DIN W01 Medium';
  color: #666;
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text .quote-name {
  color: #717171;
  font-size: 25px;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text--perch {
  width: 312px;
  right: 21%;
  top: 70px;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text--perch h1 {
  font-size: 48px;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text--minimus {
  top: 100px;
  left: 100px;
  width: 65% !important;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text--minimus h1 {
  text-align: left;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text--living {
  bottom: -10px !important;
}
.page-template-spring_sale .spring-sale__image-title .overlay-text--living h1 {
  font-size: 48px;
}
.page-template-spring_sale .spring-sale__product-squares {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  margin: 20px;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares {
    flex-wrap: nowrap;
    margin: 20px auto;
    height: 100%;
  }
}
.page-template-spring_sale .spring-sale__product-squares .quote {
  text-align: center;
  margin: 0 0 20px 0;
  position: relative;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares .quote {
    width: calc((33% - 10px)) !important;
    background: url(/wp-content/uploads/quote-bg.png);
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1600px) {
  .page-template-spring_sale .spring-sale__product-squares .quote {
    padding: 5%;
  }
}
.page-template-spring_sale .spring-sale__product-squares .quote .quote-symbol {
  font-family: 'Noe Display';
  font-size: 100px;
  margin: 30px 0 0 0 !important;
  transform: rotate(180deg);
  height: 40px;
  line-height: 40px;
}
.page-template-spring_sale .spring-sale__product-squares .quote .quote-text {
  font-size: 18px;
  line-height: 28px;
  font-family: 'DIN W01 Medium';
  color: #666;
}
.page-template-spring_sale .spring-sale__product-squares .quote .quote-name {
  color: #717171;
  font-size: 25px;
  font-family: 'Noe Display';
  font-weight: bold;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares .quote .spring-sale__button {
    position: absolute;
    bottom: 55px;
    width: 50%;
    left: 25%;
    right: 25%;
  }
}
.page-template-spring_sale .spring-sale__product-squares .product {
  width: calc((50% - 10px)) !important;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares .product {
    width: calc((33% - 10px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-squares.lounge-mobile {
  display: flex;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares.lounge-mobile {
    display: none;
  }
}
.page-template-spring_sale .spring-sale__product-squares.lounge-desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares.lounge-desktop {
    display: flex;
  }
}
.page-template-spring_sale .spring-sale__product-squares--four .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-spring_sale .spring-sale__product-squares--four .product {
    width: calc((50% - 20px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares--four .product {
    width: calc((25% - 12px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-squares--four .product ul {
  width: 100%;
}
.page-template-spring_sale .spring-sale__product-squares--four #lounge-double-product {
  width: calc((50% - 20px)) !important;
}
.page-template-spring_sale .spring-sale__product-squares--four #lounge-double-product .double-product-contianer {
  display: flex;
  justify-content: space-between;
}
.page-template-spring_sale .spring-sale__product-squares--four #lounge-double-product .double-product-contianer .half {
  width: calc((50% - 10px)) !important;
}
.page-template-spring_sale .spring-sale__product-squares--five .product {
  width: calc((50% - 10px)) !important;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares--five .product {
    width: calc((20% - 17px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-squares--five .product ul {
  width: 100%;
}
.page-template-spring_sale .spring-sale__product-squares--five.bed {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares--five.bed {
    display: flex;
  }
}
.page-template-spring_sale .spring-sale__product-squares--five.bed .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-spring_sale .spring-sale__product-squares--five.bed .product {
    width: calc((50% - 10px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares--five.bed .product {
    width: calc((20% - 4px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-squares--five.bed .product ul {
  width: 100%;
}
.page-template-spring_sale .spring-sale__product-squares--five.bed .product p {
  font-size: 15px;
}
.page-template-spring_sale .spring-sale__product-squares--five #bed-double-product {
  width: 40% !important;
  padding-right: 20px;
}
.page-template-spring_sale .spring-sale__product-squares--five #bed-double-product .double-product-contianer {
  display: flex;
  justify-content: space-between;
}
.page-template-spring_sale .spring-sale__product-squares--five #bed-double-product .double-product-contianer .half {
  width: calc((50% - 10px)) !important;
}
.page-template-spring_sale .spring-sale__product-squares--five.bedroom-mobile {
  display: flex;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-squares--five.bedroom-mobile {
    display: none;
  }
}
.page-template-spring_sale .spring-sale__product-squares--five.bedroom-mobile .product.no-image {
  width: 100% !important;
}
.page-template-spring_sale .spring-sale__product-squares--five.bedroom-mobile .product.no-image .strikethrough {
  display: block;
}
.page-template-spring_sale .spring-sale__product-row {
  display: flex;
  justify-content: space-between;
  width: calc((100% - 40px));
  margin: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-row {
    flex-wrap: nowrap;
    margin: 20px auto;
    width: 100%;
  }
}
.page-template-spring_sale .spring-sale__product-row .spring-sale__button {
  width: 100%;
  height: 53px;
  margin: 50px auto;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-row .spring-sale__button {
    width: 60%;
  }
}
.page-template-spring_sale .spring-sale__product-row--two .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-spring_sale .spring-sale__product-row--two .product {
    width: calc((50% - 30px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-row--two .product {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-row--two .button-container {
  width: 100% !important;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-row--two .button-container {
    width: calc((50% - 30px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-row--four .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-spring_sale .spring-sale__product-row--four .product {
    width: calc((50% - 30px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-row--four .product {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-row--four .button-container {
  width: 100% !important;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-row--four .button-container {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-row--five .product {
  width: 100% !important;
}
@media screen and (min-width: 495px) {
  .page-template-spring_sale .spring-sale__product-row--five .product {
    width: calc((50% - 30px)) !important;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__product-row--five .product {
    width: calc((20% - 20px)) !important;
  }
}
.page-template-spring_sale .spring-sale__product-row--five .product ul {
  width: 100%;
}
.page-template-spring_sale .spring-sale__product-row .product ul {
  width: 100%;
}
.page-template-spring_sale .spring-sale .product {
  text-align: center;
}
.page-template-spring_sale .spring-sale .product img {
  width: 100%;
}
.page-template-spring_sale .spring-sale .product .title {
  font-weight: bold;
  text-align: left !important;
  width: 100%;
  display: block;
  padding: 10px 0;
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  .page-template-spring_sale .spring-sale .product .title {
    font-size: 18px;
  }
}
.page-template-spring_sale .spring-sale .product p {
  padding: 0px;
  text-align: left;
  font-size: 14px;
  min-width: 54px;
}
.page-template-spring_sale .spring-sale .product p.strikethrough {
  text-decoration: line-through;
  margin: 0 22px 0 0;
  line-height: 30px;
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale .product p.strikethrough {
    display: block;
  }
}
.page-template-spring_sale .spring-sale .product p.sale-price {
  line-height: 30px;
}
.page-template-spring_sale .spring-sale .product ul {
  width: 100%;
  padding: 0px;
  text-align: left;
  margin: 10px 0;
}
.page-template-spring_sale .spring-sale .product ul li {
  display: flex;
}
.page-template-spring_sale .spring-sale .product ul li img {
  width: 15px;
  height: 15px;
  margin: 8px 0;
  display: inline;
}
.page-template-spring_sale .spring-sale .product ul li span {
  margin: 0 0 0 10px;
}
.page-template-spring_sale .spring-sale .product ul li.pictured {
  font-weight: bold;
}
.page-template-spring_sale .spring-sale__bottom-navigation {
  text-align: center;
}
.page-template-spring_sale .spring-sale__bottom-navigation h1 {
  font-family: Noe Display;
  font-weight: bold;
  text-transform: none;
  color: #000;
}
.page-template-spring_sale .spring-sale__bottom-navigation ul {
  display: flex;
  justify-content: center;
  padding: 0px;
  margin: 0px;
  height: fit-content;
  min-height: 75px;
  padding: 15px 0;
  margin: 0 0 0 auto;
}
.page-template-spring_sale .spring-sale__bottom-navigation ul li {
  height: fit-content;
  min-height: 35px;
  padding: 10px 50px;
  border-right: solid 1px #eee;
}
.page-template-spring_sale .spring-sale__bottom-navigation ul li:last-child {
  border-right: none !important;
}
.page-template-spring_sale .spring-sale__bottom-navigation ul li a {
  font-weight: bold;
}
.page-template-spring_sale .spring-sale__bottom-navigation.desktop {
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__bottom-navigation.desktop {
    display: block;
  }
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile {
  display: block;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__bottom-navigation.mobile {
    display: none;
  }
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .bottom-category-toggle {
  border-top: solid 1px #eee;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .bottom-category-toggle h1 {
  padding: 20px;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .bottom-category-toggle img {
  width: 20px;
  height: 13px;
  padding: 0;
  margin: 35px 10px;
  transition: .5s;
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .bottom-category-toggle img.active {
  transform: rotate(180deg);
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .nav-list {
  display: none;
  overflow: hidden;
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .nav-list li {
  padding: 0px;
  border-right: none;
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .nav-list.active {
  display: block;
  height: auto;
  padding: 0px;
  transition: .5s;
  background: #fff;
  z-index: 112;
  width: 100%;
  overflow: hidden;
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .nav-list.active li {
  padding: 15px 30px;
  background: #F7F7F7;
  text-align: left;
  font-size: 16px;
}
.page-template-spring_sale .spring-sale__bottom-navigation.mobile .nav-list.active li a {
  font-weight: bold;
}
.page-template-spring_sale .spring-sale__overlay-product {
  position: absolute;
  bottom: 32px;
  left: 65px;
}
.page-template-spring_sale .spring-sale__overlay-product h1 {
  font-family: 'Noe Display';
  text-transform: none;
  font-weight: bold;
  color: #000;
  font-size: 48px;
  line-height: 25px;
}
.page-template-spring_sale .spring-sale__overlay-product .product {
  text-align: center;
  width: 100% !important;
}
.page-template-spring_sale .spring-sale__overlay-product .product img {
  width: 100%;
}
.page-template-spring_sale .spring-sale__overlay-product .product .title {
  font-weight: bold;
  text-align: left !important;
  width: 100%;
  display: block;
  padding: 10px 0;
}
.page-template-spring_sale .spring-sale__overlay-product .product p {
  padding: 0px;
  text-align: left;
  font-size: 14px;
  min-width: 43px;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__overlay-product .product p {
    font-size: 15px;
  }
}
.page-template-spring_sale .spring-sale__overlay-product .product p.strikethrough {
  text-decoration: line-through;
  margin: 0 20px 0 0;
  line-height: 30px;
  display: none;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale__overlay-product .product p.strikethrough {
    display: block;
  }
}
.page-template-spring_sale .spring-sale__overlay-product .product p.sale-price {
  line-height: 30px;
}
.page-template-spring_sale .spring-sale__overlay-product .product ul {
  width: 100%;
  padding: 0px;
  text-align: left;
  margin: 10px 0;
}
.page-template-spring_sale .spring-sale__overlay-product .product ul li img {
  width: 15px;
  height: 15px;
  margin: 8px 0;
  display: inline;
}
.page-template-spring_sale .spring-sale__overlay-product .product ul li span {
  margin: 0 0 0 10px;
}
.page-template-spring_sale .spring-sale__overlay-product .product ul li.pictured {
  font-weight: bold;
}
.page-template-spring_sale .spring-sale__overlay-product--lounge {
  top: 100px;
  left: 100px;
}
.page-template-spring_sale .spring-sale__overlay-product--bedroom {
  color: #fff;
}
.page-template-spring_sale .spring-sale__overlay-product--bedroom h1 {
  color: #fff;
  margin-bottom: .67em;
}
.page-template-spring_sale .spring-sale__overlay-product--bedroom .product a {
  color: #fff;
}
.page-template-spring_sale .spring-sale .cherry,
.page-template-spring_sale .spring-sale .walnut {
  position: relative;
  margin: 0px 20px 0 0;
  min-width: 78px !important;
}
.page-template-spring_sale .spring-sale .cherry:before,
.page-template-spring_sale .spring-sale .walnut:before {
  content: '';
  opacity: 0;
  transition: .5s;
  z-index: 110;
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale .walnut:hover:before {
    opacity: 1;
    height: 100px;
    width: 100px;
    background: url(/wp-content/uploads/moser_wood_walnut_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -110px;
    top: -22px;
  }
}
@media screen and (min-width: 1254px) {
  .page-template-spring_sale .spring-sale .cherry:hover:before {
    opacity: 1;
    height: 100px;
    width: 100px;
    background: url(/wp-content/uploads/moser_wood_cherry_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -110px;
    top: -22px;
  }
}
.page-template-spring_sale .spring-sale__container {
  margin: 0 auto;
}
@media only screen and (min-width: 1245px) {
  .page-template-spring_sale .spring-sale__container {
    width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-template-spring_sale .spring-sale__container {
    width: 1450px;
  }
}
@media only screen and (min-width: 1920px) {
  .page-template-spring_sale .spring-sale__container {
    width: 1750px;
  }
}
.page-template-spring_sale #content #main_content,
.page-template-spring_sale #content #main_content.has-sidebar {
  padding: 0 !important;
}
@-webkit-keyframes fade-image {
  0%,
  100% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
}
@keyframes fade-image {
  0%,
  100% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
}
table {
  border-collapse: collapse;
  margin: 1em 0;
  text-align: left;
  width: 100%;
}
table thead,
table tfoot {
  border: 1px solid #CCC;
}
table th,
table td {
  padding: 4px;
}
table th {
  color: #000;
  font-family: "DIN W01 Medium";
  font-weight: normal;
  text-align: left;
  text-transform: uppercase;
}
table td {
  border: 0;
  color: #000;
  vertical-align: top;
}
table tr.even {
  background-color: #FFF;
}
table tr.odd {
  background-color: #f1f4f7;
}
@media only screen and (min-width: 768px) {
  table th,
  table td {
    padding: 8px;
  }
}
.page-template-timeline #content {
  background: linear-gradient(to top,#334254 15%,white 35%);
  padding-bottom: 0px;
}
.timeline {
  scroll-behavior: smooth;
}
.timeline .desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .timeline .desktop {
    display: block;
  }
}
.timeline .mobile {
  display: block;
}
@media screen and (min-width: 1024px) {
  .timeline .mobile {
    display: none;
  }
}
.timeline .page-description {
  text-align: left;
  max-width: 1400px;
  width: 90%;
  margin: 50px auto;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .timeline .page-description {
    margin: 100px auto;
  }
}
@media screen and (min-width: 1920px) {
  .timeline .page-description {
    max-width: 1600px;
  }
}
@media screen and (min-width: 3840px) {
  .timeline .page-description {
    max-width: 2000px;
  }
}
.timeline .page-description h1 {
  font-family: 'Noe Display';
  text-transform: none;
  color: #000;
  font-size: 48px;
}
.timeline__content {
  background: #3c3835;
  width: 100%;
  padding: 50px 0 100px 0;
}
@media screen and (min-width: 1024px) {
  .timeline__content {
    padding: 50px 0 500px 0;
  }
}
.timeline__content .inner-container {
  max-width: 1400px;
  width: 90%;
  display: flex;
  margin: 0 auto 0 auto;
}
@media screen and (min-width: 1920px) {
  .timeline__content .inner-container {
    max-width: 1600px;
  }
}
@media screen and (min-width: 3840px) {
  .timeline__content .inner-container {
    max-width: 2000px;
  }
}
.timeline__left-column {
  width: 100%;
  color: #ffffff;
  margin: 0 0;
}
@media screen and (min-width: 1024px) {
  .timeline__left-column {
    width: 50%;
  }
}
.timeline__left-column .year-content {
  margin: 0 auto 45px auto;
}
@media screen and (min-width: 1024px) {
  .timeline__left-column .year-content {
    opacity: 0;
    transition: .2s;
    margin: 0 0 0 0;
    position: fixed;
    top: 130px;
    width: 42%;
    max-width: 675px;
  }
}
@media screen and (min-width: 1920px) {
  .timeline__left-column .year-content {
    max-width: 800px;
  }
}
@media screen and (min-width: 3840px) {
  .timeline__left-column .year-content {
    max-width: 1000px;
  }
}
@media screen and (min-width: 1024px) {
  .timeline__left-column .year-content.year-1 {
    position: absolute;
    top: 620px;
  }
}
@media screen and (min-width: 1024px) {
  .timeline__left-column .year-content.year-27 {
    position: absolute;
    top: auto;
    bottom: 90px;
  }
}
.timeline__left-column .year-content h2 {
  font-family: 'Noe Display';
  text-transform: none;
  color: #ffffff;
  font-size: 60px;
}
.timeline__left-column .year-content h3,
.timeline__left-column .year-content h4 {
  font-family: 'Noe Display';
  text-transform: none;
  color: #ffffff;
  font-size: 24px;
}
.timeline__left-column .year-content p {
  width: 80%;
}
.timeline__left-column .year-content img {
  margin: 15px auto 15px 0;
  object-fit: contain;
  object-position: left;
}
@media screen and (min-width: 1024px) {
  .timeline__left-column .year-content img {
    height: 350px;
  }
}
@media screen and (min-width: 1920px) {
  .timeline__left-column .year-content img {
    height: 450px;
  }
}
@media screen and (min-width: 3840px) {
  .timeline__left-column .year-content img {
    height: 500px;
  }
}
.timeline__left-column .year-content.active {
  opacity: 1;
}
.timeline__right-column {
  display: none;
}
@media screen and (min-width: 1024px) {
  .timeline__right-column {
    display: block;
    width: 50%;
    color: #ffffff;
    border-left: solid 2px #AEAEB7;
    padding: 15px;
    margin: 85px 20px;
  }
  .timeline__right-column .year-title {
    padding: 0 0 15px 0;
    margin: 0 0 10px 0;
  }
  .timeline__right-column .year-title.active h4,
  .timeline__right-column .year-title.active p {
    color: #aeaeb7;
  }
  .timeline__right-column .year-title h3,
  .timeline__right-column .year-title h4 {
    font-family: 'Noe Display';
    text-transform: none;
    color: #ffffff;
    font-size: 30px;
  }
  .timeline__right-column .year-title p {
    font-size: 18px;
  }
  .timeline__right-column .year-title:before {
    content: '';
    height: 2px;
    width: 50px;
    background: #aeaeb7;
    display: block;
    margin-bottom: 20px;
  }
  .timeline__right-column .year-title--highlight:before {
    display: none;
  }
  .timeline__right-column .year-title--highlight :after {
    content: '';
    height: 2px;
    width: 200px;
    background: #aeaeb7;
    display: block;
    margin-bottom: 20px;
  }
  .timeline__right-column .year-title--highlight h1 {
    margin-bottom: 0;
    font-family: 'Noe Display';
    text-transform: none;
    color: #ffffff;
    font-size: 64px;
  }
  .timeline__right-column .year-title.year-7:before,
  .timeline__right-column .year-title.year-12:before,
  .timeline__right-column .year-title.year-17:before,
  .timeline__right-column .year-title.year-19:before,
  .timeline__right-column .year-title.year-23:before,
  .timeline__right-column .year-title.year-27:before {
    display: none;
  }
}
.cart-upsells__section {
  background-color: transparent;
  padding: 15px;
  margin: 20px 0 60px 0;
  border: 1px solid #E5E5E5;
}
@media (min-width: 768px) {
  .cart-upsells__section {
    padding: 20px;
  }
}
.cart-upsells__carousel .owl-dots {
  text-align: center;
  bottom: -60px !important;
}
.cart-upsells__carousel .owl-dots .owl-dot span {
  background: #ccc;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.cart-upsells__carousel .owl-dots .owl-dot.active span {
  background: #7a8691;
}
.cart-upsells__item {
  display: flex;
  flex-flow: row;
  gap: 15px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cart-upsells__item {
    gap: 30px;
  }
}
.cart-upsells__product-info {
  display: flex;
  flex-flow: column;
  gap: 5px;
  align-content: center;
  align-items: center;
  width: 150px;
  max-width: 150px;
}
.cart-upsells__image {
  width: 100px;
  min-width: 100px;
  height: auto;
}
@media (min-width: 768px) {
  .cart-upsells__image {
    width: 150px;
    min-width: 150px;
  }
}
.cart-upsells__message-container {
  display: flex;
  flex-flow: column;
  gap: 5px;
  padding: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .cart-upsells__message-container {
    padding: 10px 0;
  }
}
.cart-upsells__shop-button-text {
  text-decoration: none !important;
  color: #fff !important;
}
.cart-upsells__shop-button {
  width: fit-content;
  white-space: nowrap;
  font-size: 16px;
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  background: #7a8691;
  color: #fff;
  padding: 5px 20px;
  cursor: pointer;
}
.cart-upsells__shop-button:hover {
  background: #415162;
}
.cart-upsells__product-name {
  color: #000;
  font-size: 1em;
  line-height: 1.45;
  margin: 0;
  font-family: 'DIN W01 regular';
  text-transform: none;
  text-decoration: none;
}
@media (min-width: 768px) {
  .cart-upsells__product-name {
    font-size: 17px;
  }
}
.cart-notices__section {
  background-color: #f8f9fa;
  padding: 10px;
  margin: 20px 0 60px 0;
  border: 1px solid #E5E5E5;
  border-left: 4px solid #7a8691;
}
.cart-notices__carousel .owl-dots {
  text-align: center;
  bottom: -60px !important;
}
.cart-notices__carousel .owl-dots .owl-dot span {
  background: #ccc;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.cart-notices__carousel .owl-dots .owl-dot.active span {
  background: #7a8691;
}
.cart-notices__item {
  display: flex;
  flex-flow: column;
  gap: 15px;
  justify-content: center;
  text-align: center;
}
.cart-notices__message-container {
  display: flex;
  flex-flow: column;
  gap: 10px;
  align-items: center;
}
.cart-notices__message {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  font-family: 'DIN W01 regular';
}
@media (min-width: 768px) {
  .cart-notices__message {
    font-size: 18px;
  }
}
.product-group-configuration {
  display: flex;
  flex-flow: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .product-group-configuration {
    width: 50%;
  }
}
.product-group-configuration .product-preview {
  order: 2;
}
@media (min-width: 768px) {
  .product-group-configuration .product-preview {
    order: 1;
  }
}
.product-page-upsell__section {
  order: 1;
  padding: 15px;
  border: 1px solid #E5E5E5;
}
@media (min-width: 768px) {
  .product-page-upsell__section {
    order: 2;
  }
}
.product-page-upsell__section[data-upsell-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}
.product-page-upsell__section.product-page-upsell--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 500px;
  border: 1px solid #E5E5E5;
}
.product-page-upsell__section:focus-within {
  box-shadow: 0 0 0 2px #7a86911f;
  border-radius: 0;
}
.product-page-upsell__item {
  display: flex;
  flex-flow: row;
  gap: 15px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .product-page-upsell__item {
    gap: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1120px) {
  .product-page-upsell__item {
    flex-flow: column;
  }
}
.product-page-upsell__product-info {
  display: flex;
  flex-flow: column;
  gap: 5px;
  align-content: center;
  align-items: center;
  width: 150px;
  max-width: 150px;
}
@media (min-width: 1024px) and (max-width: 1120px) {
  .product-page-upsell__product-info {
    align-items: flex-start;
  }
}
.product-page-upsell__image {
  width: 100px;
  min-width: 100px;
  height: auto;
}
@media (min-width: 768px) {
  .product-page-upsell__image {
    width: 115px;
    min-width: 115px;
  }
}
.product-page-upsell__image img {
  border: solid 1px #fff;
}
.product-page-upsell__message-container {
  display: flex;
  flex-flow: column;
  gap: 5px;
  padding: 0;
  text-align: left;
}
.product-page-upsell__message {
  font-size: 15px;
}
@media (min-width: 768px) {
  .product-page-upsell__message {
    font-size: 16px;
  }
}
.product-page-upsell__message h4 {
  font-size: 22px;
  margin: 0;
}
@media (min-width: 1024px) and (max-width: 1120px) {
  .product-page-upsell__message h4 {
    font-size: 20px;
  }
}
.product-page-upsell__message a {
  text-decoration: underline;
}
.product-page-upsell__message a:hover {
  text-decoration-thickness: 2px;
}
.product-page-upsell__shop-button-text {
  text-decoration: none !important;
  color: #fff !important;
}
.product-page-upsell__shop-button {
  width: fit-content;
  white-space: nowrap;
  font-size: 16px;
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  background: #b34f2d;
  color: #fff;
  padding: 5px 20px;
  cursor: pointer;
}
.product-page-upsell__shop-button:hover {
  background: #8a451d;
}
.product-page-upsell__product-name {
  color: #000;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  font-family: 'DIN W01 regular';
  text-transform: none;
  text-decoration: none;
}
.product-page-upsell__product-link {
  transition: all 0.2s ease;
  text-decoration: none;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually_hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.yith-wcwl-share li a {
  line-height: 0 !important;
}
.wishlist_table thead th {
  border-top: none;
}
.wishlist_table tr th {
  text-transform: none;
  font-size: 14px;
  padding: 14px !important;
  height: auto;
  line-height: 1;
  color: #000;
  font-family: "DIN W01 Medium";
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}
.wishlist_table tr th br {
  display: none;
}
.wishlist_table tr th.product-name {
  position: initial;
  max-width: initial;
  min-width: 100px;
  width: fit-content;
}
.wishlist_table tr td .product-add-to-cart p {
  margin: 0px;
}
.wishlist_table tr td .product-add-to-cart br {
  display: none;
}
.wishlist_table .wishlist-items-wrapper a.add_to_cart.button.alt {
  background: transparent;
  color: #333;
  text-transform: none;
}
.wishlist_table .wishlist-items-wrapper a.add_to_cart.button.alt:hover {
  background: transparent;
  color: #333;
  text-decoration: underline !important;
}
.woocommerce-wishlist table.shop_table.cart {
  max-width: 1000px;
}
.wishlist_table.mobile {
  padding: 0px;
}
.wishlist_table.mobile .product-name * {
  margin: 0px;
  font-size: 16px;
}
.wishlist_table.mobile li {
  border-bottom: solid 1px #999;
  padding-bottom: 12px;
}
.wishlist_table.mobile li .item-wrapper {
  width: 100%;
}
.wishlist_table.mobile li .item-wrapper .product-thumbnail {
  display: inline-block;
  max-width: 30%;
  margin-right: 10px;
}
.wishlist_table.mobile li .item-wrapper .item-details {
  width: calc(58%);
}
.wishlist_table.mobile li .item-wrapper .item-details table.item-details-table td.value {
  text-align: left;
}
.wishlist_table.mobile li .item-wrapper .item-details table.item-details-table td.label {
  display: none;
}
.wishlist_table.mobile li .additional-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wishlist_table.mobile li .additional-info-wrapper table.additional-info {
  width: fit-content;
}
.wishlist_table.mobile li .additional-info-wrapper * {
  font-size: 14px;
  margin: 0 !important;
}
.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart {
  text-decoration: underline;
}
.wishlist_table.mobile .wishlist-in-stock {
  color: #297e29;
}
.woocommerce-shipping-methods li input[type="radio"] {
  float: left;
  margin-right: 5px;
}
.woocommerce table.variations .swatch-toggle,
.variations .swatch-toggle {
  height: 42px;
  background: #F2F2F2;
  border-bottom: 1px solid #CCC;
  color: #333;
  cursor: pointer;
  position: relative;
}
.woocommerce table.variations .swatch-toggle .swatch-selection-name,
.variations .swatch-toggle .swatch-selection-name {
  line-height: 42px;
  display: block;
  padding-left: 8px;
  padding-right: 2.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.woocommerce table.variations .swatch-toggle .swatch-toggle-icon,
.variations .swatch-toggle .swatch-toggle-icon {
  display: none;
  width: 2em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.woocommerce table.variations .swatch-toggle .swatch-toggle-icon b,
.variations .swatch-toggle .swatch-toggle-icon b {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "DIN W01 Medium";
}
.woocommerce table.variations .swatch-toggle .swatch-toggle-icon b:after,
.variations .swatch-toggle .swatch-toggle-icon b:after {
  font-size: 160%;
}
.woocommerce table.variations .swatch-toggling .swatch-toggle .swatch-toggle-icon b:after,
.variations .swatch-toggling .swatch-toggle .swatch-toggle-icon b:after {
  content: "\f106";
  font-family: "FontAwesome";
}
.woocommerce table.variations .swatch-toggling.swatch-toggle-close .swatch-control,
.woocommerce table.variations .swatch-toggling.swatch-toggle-close div.swatch-label,
.variations .swatch-toggling.swatch-toggle-close .swatch-control {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.woocommerce table.variations .swatch-toggling.swatch-toggle-close .swatch-toggle .swatch-toggle-icon b:after,
.variations .swatch-toggling.swatch-toggle-close .swatch-toggle .swatch-toggle-icon b:after {
  content: "\f107";
  font-family: "FontAwesome";
}
.woocommerce table.variations .swatch-toggling.swatch-toggle-close .swatch-control,
.variations .swatch-toggling.swatch-toggle-close .swatch-control {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.woocommerce table.variations .no-js .swatch-toggle,
.variations .no-js .swatch-toggle {
  display: none;
}
.woocommerce table.variations {
  table-layout: fixed;
  margin-bottom: 0;
}
.woocommerce table.variations td.label,
.variations td.label {
  padding: 0 0 1em 0;
  width: 30%;
}
.woocommerce table.variations td.value,
.variations td.value {
  padding: 0 0 1em 1em;
  width: 70%;
}
.woocommerce table.variations label,
.variations label {
  font-size: 1em;
  margin-bottom: 0;
  padding-top: 0.675em;
}
.woocommerce table.variations .swatch-toggling .swatch-control {
  padding: 5px;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background: #fff;
  clip: initial;
  height: fit-content;
  margin: initial;
  position: static;
  width: auto;
}
.woocommerce table.variations .swatch-toggling div.swatch-label,
.variations .swatch-toggling div.swatch-label {
  border: 1px solid #CCC;
  margin: 0 0 0.875em;
  padding: 10px;
}
.woocommerce table.variations .swatch-toggling div.swatch-label:before,
.variations .swatch-toggling div.swatch-label:before {
  content: "Selected: ";
  font-family: "DIN W01 Italic";
  color: #666;
  margin-right: 5px;
}
.woocommerce table.variations .swatch-toggling div.swatch-label a,
.variations .swatch-toggling div.swatch-label a {
  cursor: zoom-in;
}
.woocommerce table.variations .no-js .swatch-control,
.variations .no-js .swatch-control {
  display: block;
}
.woocommerce table.variations .swatch-control h3,
.variations .swatch-control h3 {
  font-size: 1em;
  clear: both;
  margin: 8px 5px 5px;
  padding-top: 10px;
  font-family: inherit;
  width: 100%;
}
.woocommerce table.variations .swatch-control h3:first-of-type,
.variations .swatch-control h3:first-of-type {
  padding-top: 0;
}
.woocommerce table.variations div.swatch-wrapper.disabled,
.woocommerce table.variations .radio-select .disabled,
.variations div.swatch-wrapper.disabled,
.variations .radio-select .disabled {
  overflow: hidden;
  position: relative;
}
.woocommerce table.variations div.swatch-wrapper.disabled a:after,
.variations .radio-select .disabled a:after {
  content: "X";
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  position: absolute;
  line-height: 26px;
  font-size: 34px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #000;
}
.woocommerce table.variations div.swatch-label,
.variations div.swatch-label {
  font-size: 0.875em;
  margin-bottom: 0;
}
.woocommerce table.variations div.swatch-label a,
.variations div.swatch-label a {
  white-space: nowrap;
}
.woocommerce table.variations div.swatch-label a:hover,
.woocommerce table.variations div.swatch-label a:focus,
.variations div.swatch-label a:hover,
.variations div.swatch-label a:focus {
  text-decoration: none;
}
.woocommerce table.variations div.swatch-label a:hover span,
.woocommerce table.variations div.swatch-label a:focus span,
.variations div.swatch-label a:hover span,
.variations div.swatch-label a:focus span {
  text-decoration: underline;
}
.woocommerce table.variations div.swatch-label .fa,
.variations div.swatch-label .fa {
  margin-left: 3px;
}
.woocommerce table.variations .swatch-wrapper,
.variations .swatch-wrapper {
  padding: 0;
  border: 3px solid #FFF;
}
.woocommerce table.variations .swatch-wrapper:hover,
.woocommerce table.variations .swatch-wrapper:focus,
.woocommerce table.variations .swatch-wrapper.selected,
.variations .swatch-wrapper:hover,
.variations .swatch-wrapper:focus,
.variations .swatch-wrapper.selected {
  border-color: #666;
}
.woocommerce table.variations select,
.woocommerce table.variations .select2-container,
.variations select,
.variations .select2-container {
  margin-bottom: 0.875em;
  width: 100%;
}
.admin-bar.woocommerce-demo-store .demo_store {
  top: 46px;
}
@media only screen and (min-width: 783px) {
  .admin-bar.woocommerce-demo-store .demo_store {
    top: 32px;
  }
}
.woocommerce-demo-store {
  padding-top: 32px;
}
.woocommerce-demo-store .demo_store {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
  padding: 0 5px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #333;
  color: #FFF;
  z-index: 99998;
}
.woocommerce-breadcrumb {
  zoom: 1;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: -3px;
  margin-right: -3px;
  padding: 0;
  font-size: 0.778em;
  color: #666;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.woocommerce-breadcrumb:after,
.woocommerce-breadcrumb:before {
  content: " ";
  display: table;
}
.woocommerce-breadcrumb:after {
  clear: both;
}
.woocommerce-breadcrumb a,
.woocommerce-breadcrumb span {
  display: inline-block;
  padding: 0.5em 3px;
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  margin-top: 0;
  margin-bottom: 2em;
  width: auto;
  list-style: none outside;
  zoom: 1;
  font-family: "DIN W01 Medium";
  font-weight: normal;
}
.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-info:before {
  font-family: "FontAwesome";
  float: left;
  margin-right: 10px;
  font-size: 1.25em;
  position: relative;
  top: -0.1em;
}
.woocommerce-message:after,
.woocommerce-message:before,
.woocommerce-error:after,
.woocommerce-error:before,
.woocommerce-info:after,
.woocommerce-info:before {
  content: " ";
  display: table;
}
.woocommerce-message:after,
.woocommerce-error:after,
.woocommerce-info:after {
  clear: both;
}
.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-info:before {
  color: #000;
}
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  margin-right: 0.45em;
}
.woocommerce-message li,
.woocommerce-error li,
.woocommerce-info li {
  list-style: none outside;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}
.woocommerce-message a:not(.button),
.woocommerce-error a:not(.button),
.woocommerce-info a:not(.button) {
  color: #666;
  text-decoration: underline;
}
.woocommerce-message:before {
  color: #7ad03a;
  content: "\f058" !important;
}
.woocommerce-info:before {
  color: #2ea2cc;
  content: "\f05a" !important;
}
.woocommerce-error:before {
  color: #c0392b;
  content: "\f071" !important;
}
.woocommerce-invalid .select2-selection--single,
.woocommerce-invalid input.input-text {
  border-color: #c0392b;
}
.woocommerce-invalid .select2-selection--single {
  border-color: #81261d;
}
.woocommerce-invalid select {
  outline: 1px ridge #c0392b;
}
.woocommerce-invalid .required {
  color: #c0392b;
}
.password-input {
  position: relative;
  display: block;
}
.show-password-input {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 0;
  display: inline-block;
  line-height: 1;
  font-family: dashicons !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  border: none;
  background: none;
  font-size: 20px;
  color: #666;
  -webkit-font-smoothing: antialiased;
}
.show-password-input:before {
  content: "\f177";
}
.show-password-input.display-password:before {
  content: "\f530";
}
.woocommerce-password-strength {
  text-align: center;
  font-family: "DIN W01 Medium";
  padding: 3px 0px;
}
.woocommerce-password-strength.strong {
  background-color: #c1e1b9;
  border-color: #83c373;
}
.woocommerce-password-strength.short {
  background-color: #f1adad;
  border-color: #e35b5b;
}
.woocommerce-password-strength.bad {
  background-color: #fbc5a9;
  border-color: #f78b53;
}
.woocommerce-password-strength.good {
  background-color: #ffe399;
  border-color: #ffc733;
}
.woocommerce .blockUI.blockOverlay {
  position: relative;
}
.woocommerce .blockUI.blockOverlay:before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  -webkit-animation: spin 1s ease-in-out infinite;
  -moz-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  content: "";
  background: url("/wp-content/plugins/woocommerce/assets/images/icons/loader.svg") center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0,0,0,0.75);
}
.woocommerce .loader:before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  -webkit-animation: spin 1s ease-in-out infinite;
  -moz-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  content: "";
  background: url("/wp-content/plugins/woocommerce/assets/images/icons/loader.svg") center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0,0,0,0.75);
}
.woocommerce mark {
  background: none;
  color: inherit;
  font-family: "DIN W01 Regular";
}
.woocommerce .required {
  color: #666;
  text-decoration: none;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  position: relative;
}
.woocommerce a.button:after,
.woocommerce button.button:after,
.woocommerce input.button:after,
.woocommerce #respond input#submit:after {
  font-family: "FontAwesome";
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading,
.woocommerce #respond input#submit.loading {
  opacity: 0.25;
  padding-right: 2.618em;
}
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:after,
.woocommerce #respond input#submit.loading:after {
  content: "\f110";
  position: absolute;
  right: 1em;
  -webkit-animation: spin 2s infinite linear 0ms;
  -moz-animation: spin 2s infinite linear 0ms;
  -o-animation: spin 2s infinite linear 0ms;
  animation: spin 2s infinite linear 0ms;
}
.woocommerce a.button.added:after,
.woocommerce button.button.added:after,
.woocommerce input.button.added:after,
.woocommerce #respond input#submit.added:after {
  content: "\f00c";
  margin-left: 0.53em;
}
.woocommerce.single-product form.cart .button-container .single_add_to_cart_button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled[disabled] {
  cursor: not-allowed;
  opacity: 1;
}
.woocommerce form.cart a.add_to_cart_button,
.woocommerce form.cart button.single_add_to_cart_button,
.woocommerce input[name="apply_coupon"] {
  height: 42px;
  line-height: 42px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.woocommerce small.note {
  display: block;
  color: #666;
  font-size: 0.857em;
  margin-top: 10px;
}
.woocommerce .form-row input[type="checkbox"],
.woocommerce .form-row input[type="radio"] {
  margin-right: 5px;
}
.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0;
  padding: 0;
  list-style: none outside;
  clear: both;
  zoom: 1;
}
.woocommerce .products ul:after,
.woocommerce .products ul:before,
.woocommerce ul.products:after,
.woocommerce ul.products:before {
  content: " ";
  display: table;
}
.woocommerce .products ul:after,
.woocommerce ul.products:after {
  clear: both;
}
.woocommerce .products ul li,
.woocommerce ul.products li {
  list-style: none outside;
}
.woocommerce span.onsale {
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 0.75em;
  text-align: center;
  color: #333;
  font-family: "DIN W01 Medium";
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 1;
}
.woocommerce span.readytoship {
  display: block;
  position: absolute;
  top: 0;
  color: #333;
  z-index: 1;
}
.woocommerce .snowflake-icon {
  background-size: 100%;
  background-repeat: no-repeat;
  height: 29px;
  width: 25px;
  display: inline-block;
  vertical-align: bottom;
}
.woocommerce table tr.even,
.woocommerce table tr.odd {
  background: none;
}
.woocommerce-tabs-vertical,
.woocommerce-MyAccount-navigation {
  position: relative;
}
.woocommerce-tabs-vertical:before,
.woocommerce-tabs-vertical:after,
.woocommerce-MyAccount-navigation:before,
.woocommerce-MyAccount-navigation:after {
  position: absolute;
  content: "...";
  width: 15px;
  padding: 15px 0;
  height: 100%;
  top: 0;
  z-index: 3;
  background: rgba(255,255,255,0.8);
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.woocommerce-tabs-vertical:before,
.woocommerce-MyAccount-navigation:before {
  left: 0;
  border-left: 1px solid #CCC;
}
.woocommerce-tabs-vertical:after,
.woocommerce-MyAccount-navigation:after {
  right: 0;
  border-right: 1px solid #CCC;
}
.woocommerce-tabs-vertical ul,
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #CCC;
  white-space: nowrap;
  overflow: auto;
}
.woocommerce-tabs-vertical ul li,
.woocommerce-MyAccount-navigation ul li {
  display: inline-block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs-vertical ul li a,
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  text-transform: uppercase;
  color: #666;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  text-decoration: none !important;
}
.woocommerce-tabs-vertical ul li a:hover,
.woocommerce-tabs-vertical ul li a:focus,
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li a:focus {
  color: #000;
  text-decoration: underline !important;
}
.woocommerce-tabs-vertical ul li.active > a,
.woocommerce-tabs-vertical ul li.is-active > a,
.woocommerce-MyAccount-navigation ul li.active > a,
.woocommerce-MyAccount-navigation ul li.is-active > a {
  position: relative;
  padding-right: 2em;
  color: #000;
  background: #F2F2F2;
}
.woocommerce-tabs-vertical ul li.active > a:after,
.woocommerce-tabs-vertical ul li.is-active > a:after,
.woocommerce-MyAccount-navigation ul li.active > a:after,
.woocommerce-MyAccount-navigation ul li.is-active > a:after {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 120%;
  margin-left: 12px;
}
.woocommerce-tabs-vertical ul li.active > a:after,
.woocommerce-tabs-vertical ul li.is-active > a:after,
.woocommerce-MyAccount-navigation ul li.active > a:after,
.woocommerce-MyAccount-navigation ul li.is-active > a:after {
  font-size: 150%;
  position: absolute;
  right: 0.675em;
  line-height: 1;
}
.woocommerce-tabs-vertical ul li:first-child:before,
.woocommerce-tabs-vertical ul li:last-child:after,
.woocommerce-MyAccount-navigation ul li:first-child:before,
.woocommerce-MyAccount-navigation ul li:last-child:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 100%;
  top: 0;
  z-index: 6;
  background: #FFF;
}
.woocommerce-tabs-vertical ul li:first-child:before,
.woocommerce-MyAccount-navigation ul li:first-child:before {
  left: 0;
}
.woocommerce-tabs-vertical ul li:last-child:after,
.woocommerce-MyAccount-navigation ul li:last-child:after {
  right: 0;
}
.woocommerce-tabs-vertical ul li.active:first-child:before,
.woocommerce-tabs-vertical ul li.active:last-child:before,
.woocommerce-tabs-vertical ul li.is-active:first-child:before,
.woocommerce-tabs-vertical ul li.is-active:last-child:before,
.woocommerce-MyAccount-navigation ul li.active:first-child:before,
.woocommerce-MyAccount-navigation ul li.active:last-child:before,
.woocommerce-MyAccount-navigation ul li.is-active:first-child:before,
.woocommerce-MyAccount-navigation ul li.is-active:last-child:before {
  background: #F2F2F2;
}
.woocommerce-checkout-tabs .woocommerce-tabs-vertical {
  margin-top: 1em;
  margin-bottom: 2em;
}
.woocommerce-checkout-tabs .panel {
  margin: 0;
  padding: 0;
  border: none;
}
.woocommerce-checkout-tabs .panel h3 {
  margin-top: 0;
}
.woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0;
  margin: 1.618em 0;
  overflow: hidden;
  position: relative;
}
.woocommerce-tabs ul.tabs li {
  border: 1px solid #CCC;
  display: block;
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
}
.woocommerce-tabs ul.tabs li a {
  display: block;
  color: #666;
  padding: 0.5em 1em;
  text-transform: uppercase;
  text-decoration: none;
}
.woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: #000;
}
.woocommerce-tabs ul.tabs li.active {
  background: #F2F2F2;
  z-index: 2;
}
.woocommerce-tabs ul.tabs li.active a {
  color: #000;
}
.woocommerce-tabs ul.tabs li:not(:first-child) {
  margin-top: -1px;
}
.woocommerce-tabs .panel {
  margin: 0 0 2em;
}
.woocommerce-tabs #tab-designer img {
  max-width: 320px;
}
.woocommerce-tabs #tab-product_information .shop_drawing {
  margin-bottom: 0.5em;
}
.woocommerce-tabs #tab-product_information .shop_drawing img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .woocommerce-tabs-vertical ul,
  .woocommerce-MyAccount-navigation ul {
    display: block;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .woocommerce-tabs-vertical ul li:first-child:before,
  .woocommerce-tabs-vertical ul li:last-child:after,
  .woocommerce-MyAccount-navigation ul li:first-child:before,
  .woocommerce-MyAccount-navigation ul li:last-child:after,
  .woocommerce-tabs-vertical:before,
  .woocommerce-tabs-vertical:after,
  .woocommerce-MyAccount-navigation:before,
  .woocommerce-MyAccount-navigation:after {
    content: '';
    width: 0px;
  }
  .woocommerce-tabs-vertical ul li,
  .woocommerce-MyAccount-navigation ul li {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce-tabs-vertical:before,
  .woocommerce-tabs-vertical:after,
  .woocommerce-MyAccount-navigation:before,
  .woocommerce-MyAccount-navigation:after {
    display: none;
  }
  .woocommerce-tabs-vertical ul,
  .woocommerce-MyAccount-navigation ul {
    white-space: normal;
    overflow-x: visible;
  }
  .woocommerce-tabs-vertical ul li,
  .woocommerce-MyAccount-navigation ul li {
    display: block;
  }
  .woocommerce-tabs-vertical ul li:before,
  .woocommerce-tabs-vertical ul li:after,
  .woocommerce-MyAccount-navigation ul li:before,
  .woocommerce-MyAccount-navigation ul li:after {
    display: none;
  }
  .woocommerce-tabs-vertical ul li a,
  .woocommerce-MyAccount-navigation ul li a {
    text-align: left;
  }
  .woocommerce-tabs {
    clear: both;
  }
  .woocommerce-tabs ul.tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    border: 1px solid #CCC;
  }
  .woocommerce-tabs ul.tabs li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border: 0;
    text-align: center;
  }
  .woocommerce-tabs ul.tabs li.active {
    background: #F2F2F2;
  }
  .woocommerce-tabs ul.tabs li:not(:first-child) {
    margin-top: 0;
  }
  .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1em;
    line-height: 1.277;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .woocommerce-tabs .panel {
    padding: 2em;
  }
  #tab-product_information .shop_drawing {
    float: left;
    margin-right: 2em;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .woocommerce-tabs-vertical ul li a,
  .woocommerce-MyAccount-navigation ul li a {
    padding: 15px 25px;
  }
  .woocommerce-tabs-vertical ul li.active > a:after,
  .woocommerce-tabs-vertical ul li.is-active > a:after,
  .woocommerce-MyAccount-navigation ul li.active > a:after,
  .woocommerce-MyAccount-navigation ul li.is-active > a:after {
    right: 25px;
  }
  .woocommerce-tabs {
    margin-top: 2em;
  }
  .woocommerce-tabs #tab-description,
  .woocommerce-tabs #tab-designer {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .woocommerce-tabs #tab-description *,
  .woocommerce-tabs #tab-designer * {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 1em;
  }
  .woocommerce-tabs #tab-designer h2,
  .woocommerce-tabs #tab-designer h3,
  .woocommerce-tabs #tab-designer h4 {
    -webkit-column-span: all;
    column-span: all;
  }
  .woocommerce-tabs #tab-designer img {
    max-width: 200px;
  }
  .woocommerce-tabs #tab-product_information .shop_drawing {
    margin-right: 3em;
  }
}
@media only screen and (min-width: 1200px) {
  .woocommerce-tabs-vertical ul li a,
  .woocommerce-MyAccount-navigation ul li a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.woocommerce .shop_table td small {
  font-weight: normal;
}
.woocommerce .shop_table tfoot td,
.woocommerce .shop_table tfoot th,
.woocommerce .shop_table tbody th {
  font-family: "DIN W01 Medium";
}
.woocommerce .shop_table tfoot td {
  background: #FFF;
}
.woocommerce th.order-section-title {
  background: #FFF;
  border-bottom: 1px solid #CCC;
}
.woocommerce th.order-section-title:last-of-type {
  border-top: 1px solid #CCC;
}
.woocommerce td.product-name .variation_description {
  color: #999;
  font-size: 0.875em;
}
.woocommerce td.product-name .variation_description:before {
  content: " - ";
}
.woocommerce td.product-name ul.wc-item-meta {
  list-style: none;
  font-size: 0.9em;
  margin: 8px 0 0;
  zoom: 1;
}
.woocommerce td.product-name ul.wc-item-meta:after,
.woocommerce td.product-name ul.wc-item-meta:before {
  content: " ";
  display: table;
}
.woocommerce td.product-name ul.wc-item-meta:after {
  clear: both;
}
.woocommerce td.product-name ul.wc-item-meta li {
  margin: 0;
  padding: 0 0 0.25em;
}
.woocommerce td.product-name ul.wc-item-meta li p {
  margin: 0;
  color: #666;
}
.woocommerce td.product-name ul.wc-item-meta li strong {
  margin: 0 5px 0 0;
}
.woocommerce td.product-name ul.wc-item-meta li strong,
.woocommerce td.product-name ul.wc-item-meta li p {
  display: inline-block;
}
.woocommerce td.product-name dl.variation {
  font-size: 0.9em;
  margin: 8px 0 0;
  zoom: 1;
  overflow: hidden;
}
.woocommerce td.product-name dl.variation:after,
.woocommerce td.product-name dl.variation:before {
  content: " ";
  display: table;
}
.woocommerce td.product-name dl.variation:after {
  clear: both;
}
.woocommerce td.product-name dl.variation dt,
.woocommerce td.product-name dl.variation dd {
  display: inline-block;
  float: left;
}
.woocommerce td.product-name dl.variation dt {
  font-family: "DIN W01 Medium";
  padding: 0 0 0.25em 0;
  margin: 0 5px 0 0;
  clear: left;
}
.woocommerce td.product-name dl.variation dd {
  font-size: 1em;
  padding: 0 0 0.25em 0;
  margin: 0;
}
.woocommerce td.product-name dl.variation dd p {
  margin: 0;
}
.woocommerce td.product-name p.backorder_notification {
  font-size: 0.83em;
}
.woocommerce table.cart td.actions .coupon label {
  display: none;
}
.woocommerce table.order_details {
  margin-bottom: 2em;
}
.woocommerce table.order_details tbody td {
  padding: 15px 12px;
}
.woocommerce table.order_details tfoot td {
  font-family: "DIN W01 Regular";
  font-weight: normal;
}
.woocommerce table.customer_details th,
.woocommerce table.customer_details td {
  padding-left: 0;
  padding-right: 0;
}
.woocommerce .group_table {
  border-top: 1px solid #CCC;
  margin-top: 0;
  margin-bottom: 1.5em;
}
.woocommerce .group_table td {
  vertical-align: middle;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  border-bottom: 1px solid #CCC;
}
.woocommerce .group_table td.label {
  padding-right: 15px;
  padding-left: 15px;
}
.woocommerce .group_table label {
  margin-bottom: 0;
}
.woocommerce .group_table div.quantity {
  float: none;
  margin: 0;
}
.woocommerce .group_table small.stock {
  display: block;
  float: none;
}
.woocommerce .shop_attributes {
  border: 0;
  width: auto;
  max-width: 650px;
}
.woocommerce .shop_attributes th {
  vertical-align: top;
  width: 150px;
  font-family: "DIN W01 Medium";
  padding: 0 0 1em;
}
.woocommerce .shop_attributes td {
  padding: 0 0 1em 1em;
}
.woocommerce .shop_attributes td.product_documents a {
  text-decoration: underline;
}
.woocommerce .shop_attributes td.product_documents a:hover,
.woocommerce .shop_attributes td.product_documents a:focus {
  text-decoration: none;
}
.woocommerce .shop_attributes td p {
  margin: 0;
}
.woocommerce table.my_account_orders {
  margin-bottom: 1em;
}
.woocommerce table.my_account_orders .woocommerce-orders-table__cell-order-actions .button {
  margin: 0.5em 0.5em 0.5em 0;
}
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item:last-of-type .product-name,
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item:last-of-type .product-total,
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item:only-of-type .product-name,
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item:only-of-type .product-total {
  padding-bottom: 25px;
}
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item .product-name,
.woocommerce .woocommerce-checkout-review-order-table tr.cart_item .product-total {
  padding-top: 15px;
}
.woocommerce .woocommerce-checkout-review-order-table tr.fee th {
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  padding: 5px 15px;
}
.woocommerce .woocommerce-checkout-review-order-table tr.fee th p {
  margin-top: 0;
  font-style: italic;
}
.woocommerce .woocommerce-checkout-review-order-table tr.fee td {
  padding: 5px 15px;
}
.woocommerce .woocommerce-checkout-review-order-table tfoot th,
.woocommerce .woocommerce-checkout-review-order-table tfoot td {
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .woocommerce table.shop_table_responsive thead {
    display: none;
  }
  .woocommerce table.shop_table_responsive tbody th {
    display: none;
  }
  .woocommerce table.shop_table_responsive tr {
    display: block;
  }
  .woocommerce table.shop_table_responsive tr td {
    display: block;
  }
  .woocommerce table.shop_table_responsive tr td:before {
    content: attr(data-title);
    font-family: "DIN W01 Medium";
    margin-right: 5px;
    text-transform: uppercase;
  }
  .woocommerce table.shop_table_responsive tr td.woocommerce-orders-table__cell-order-actions:before {
    display: none;
  }
  .woocommerce table.my_account_orders tr {
    margin-bottom: 1em;
  }
  .woocommerce table.my_account_orders tr td {
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce table.my_account_orders tr td.order-actions:before {
    display: none;
  }
  .woocommerce table.my_account_orders tr td.order-actions .woocommerce-orders-table__cell-order-actions {
    float: none;
    margin: 0.125em 0.25em 0.125em 0;
  }
  .woocommerce table.cart {
    border: 0;
  }
  .woocommerce table.cart thead,
  .woocommerce table.cart th {
    display: none;
  }
  .woocommerce table.cart tr {
    display: block;
    position: relative;
    zoom: 1;
  }
  .woocommerce table.cart tr:after,
  .woocommerce table.cart tr:before {
    content: " ";
    display: table;
  }
  .woocommerce table.cart tr:after {
    clear: both;
  }
  .woocommerce table.cart tr.cart_item {
    margin-bottom: 2em;
  }
  .woocommerce table.cart tr.cart-actions {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .woocommerce table.cart tr td:before {
    display: block;
    margin-bottom: 6px;
  }
  .woocommerce table.cart td {
    display: block;
    padding: 0;
  }
  .woocommerce table.cart td td {
    display: block;
  }
  .woocommerce table.cart td.product-thumbnail:before,
  .woocommerce table.cart td.product-remove:before,
  .woocommerce table.cart td.actions:before {
    display: none;
  }
  .woocommerce table.cart td.product-name:before {
    display: none;
  }
  .woocommerce table.cart td .quantity {
    width: auto;
    display: inline-block;
  }
  .woocommerce table.cart td input,
  .woocommerce table.cart td .button,
  .woocommerce table.cart td .input-text {
    box-sizing: border-box;
  }
  .woocommerce .cart_totals table.shop_table_responsive tr {
    display: table-row;
  }
  .woocommerce .cart_totals table.shop_table_responsive tr th,
  .woocommerce .cart_totals table.shop_table_responsive tr td {
    display: table-cell;
    vertical-align: top;
    padding: 9px 12px;
  }
  .woocommerce .cart_totals table.shop_table_responsive tr td:before {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce .shop_table th {
    padding: 15px;
  }
  .woocommerce .shop_table td {
    padding: 20px 15px;
  }
  .woocommerce table.order_details tbody td {
    padding: 20px 15px;
  }
  .woocommerce table.cart label {
    font-size: 0.875em;
  }
  .woocommerce table.cart .form-row {
    margin: 0;
  }
  .woocommerce table.cart td.product-remove {
    padding-left: 15px;
    padding-right: 15px;
    width: 45px;
    vertical-align: middle;
  }
  .woocommerce table.cart td.product-name {
    padding-left: 15px;
    padding-right: 30px;
  }
  .woocommerce table.cart td.actions {
    text-align: right;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1em;
  }
  .woocommerce table.cart td.actions .coupon {
    float: left;
    width: 68%;
  }
  .woocommerce table.cart td.actions .input-text {
    width: 60%;
    float: left;
  }
  .woocommerce table.cart td.actions input[name="apply_coupon"] {
    padding-left: 0.5em;
    padding-right: 0.5em;
    float: left;
    margin-left: 1%;
    width: 39%;
  }
  .woocommerce table.cart td.actions input[name="update_cart"] {
    padding-left: 0.5em;
    padding-right: 0.5em;
    max-width: 200px;
    float: right;
    width: 30%;
  }
  .woocommerce table.my_account_orders th,
  .woocommerce table.my_account_orders td {
    padding: 20px 8px;
    vertical-align: middle;
  }
  .woocommerce table.customer_details {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .woocommerce table.variations td.label {
    font-size: 1em;
  }
  .woocommerce table.variations label {
    padding-top: 0.25em;
  }
  .woocommerce .shop_attributes th {
    padding: 0 0 1.5em;
  }
  .woocommerce .shop_attributes td {
    padding: 0 0 1.5em 1.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .woocommerce table.my_account_orders th,
  .woocommerce table.my_account_orders td {
    padding: 20px 15px;
  }
}
.woocommerce-page .widget_price_filter .price_slider {
  margin-bottom: 1em;
}
.woocommerce-page .widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
  font-size: 0.8751em;
}
.woocommerce-page .widget_price_filter .price_slider_amount .button {
  font-size: 1.15em;
}
.woocommerce-page .widget_price_filter .price_slider_amount .button {
  float: left;
}
.woocommerce-page .widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
  margin-left: .5em;
  margin-right: .5em;
}
.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  background-color: #333;
  border-radius: 1em;
  cursor: ew-resize;
  outline: none;
  top: -0.3em;
  margin-left: -0.5em;
}
.woocommerce-page .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  border-radius: 1em;
  background-color: #333;
}
.woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 1em;
  background-color: #999;
  border: 0;
}
.woocommerce-page .widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}
.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}
.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}
.woocommerce-page ul.cart_list,
.woocommerce-page ul.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}
.woocommerce-page ul.cart_list li,
.woocommerce-page ul.product_list_widget li {
  padding: 4px 0;
  margin: 0;
  zoom: 1;
  list-style: none;
}
.woocommerce-page ul.cart_list li:after,
.woocommerce-page ul.cart_list li:before,
.woocommerce-page ul.product_list_widget li:after,
.woocommerce-page ul.product_list_widget li:before {
  content: " ";
  display: table;
}
.woocommerce-page ul.cart_list li:after,
.woocommerce-page ul.product_list_widget li:after {
  clear: both;
}
.woocommerce-page ul.cart_list li a,
.woocommerce-page ul.product_list_widget li a {
  display: block;
  font-family: "DIN W01 Medium";
}
.woocommerce-page ul.cart_list li img,
.woocommerce-page ul.product_list_widget li img {
  float: right;
  margin-left: 4px;
  width: 32px;
  height: auto;
  box-shadow: none;
}
.woocommerce-page ul.cart_list li dl,
.woocommerce-page ul.product_list_widget li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0,0,0,0.1);
  zoom: 1;
}
.woocommerce-page ul.cart_list li dl:after,
.woocommerce-page ul.cart_list li dl:before,
.woocommerce-page ul.product_list_widget li dl:after,
.woocommerce-page ul.product_list_widget li dl:before {
  content: " ";
  display: table;
}
.woocommerce-page ul.cart_list li dl:after,
.woocommerce-page ul.product_list_widget li dl:after {
  clear: both;
}
.woocommerce-page ul.cart_list li dl dt,
.woocommerce-page ul.cart_list li dl dd,
.woocommerce-page ul.product_list_widget li dl dt,
.woocommerce-page ul.product_list_widget li dl dd {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
}
.woocommerce-page ul.cart_list li dl dt,
.woocommerce-page ul.product_list_widget li dl dt {
  font-family: "DIN W01 Medium";
  padding: 0 0 0.25em 0;
  margin: 0 4px 0 0;
  clear: left;
}
.woocommerce-page ul.cart_list li dl dd,
.woocommerce-page ul.product_list_widget li dl dd {
  padding: 0 0 0.25em 0;
}
.woocommerce-page ul.cart_list li dl dd p:last-child,
.woocommerce-page ul.product_list_widget li dl dd p:last-child {
  margin-bottom: 0;
}
.woocommerce-page ul.cart_list li .star-rating,
.woocommerce-page ul.product_list_widget li .star-rating {
  float: none;
}
.woocommerce-page.widget_shopping_cart .total,
.woocommerce-page .widget_shopping_cart .total {
  border-top: 1px solid #CCC;
  padding: 4px 0 0;
}
.woocommerce-page.widget_shopping_cart .total strong,
.woocommerce-page .widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}
.woocommerce-page.widget_shopping_cart .cart_list li,
.woocommerce-page .widget_shopping_cart .cart_list li {
  padding-left: 2em;
  position: relative;
  padding-top: 0;
}
.woocommerce-page.widget_shopping_cart .cart_list li a.remove,
.woocommerce-page .widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: 0;
}
.woocommerce-page.widget_shopping_cart .buttons,
.woocommerce-page .widget_shopping_cart .buttons {
  zoom: 1;
}
.woocommerce-page.widget_shopping_cart .buttons:after,
.woocommerce-page.widget_shopping_cart .buttons:before,
.woocommerce-page .widget_shopping_cart .buttons:after,
.woocommerce-page .widget_shopping_cart .buttons:before {
  content: " ";
  display: table;
}
.woocommerce-page.widget_shopping_cart .buttons:after,
.woocommerce-page .widget_shopping_cart .buttons:after {
  clear: both;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.cart_list li,
  .woocommerce ul.product_list_widget li,
  .woocommerce-page ul.cart_list li,
  .woocommerce-page ul.product_list_widget li {
    zoom: 1;
  }
  .woocommerce ul.cart_list li:after,
  .woocommerce ul.cart_list li:before,
  .woocommerce ul.product_list_widget li:after,
  .woocommerce ul.product_list_widget li:before,
  .woocommerce-page ul.cart_list li:after,
  .woocommerce-page ul.cart_list li:before,
  .woocommerce-page ul.product_list_widget li:after,
  .woocommerce-page ul.product_list_widget li:before {
    content: " ";
    display: table;
  }
  .woocommerce ul.cart_list li:after,
  .woocommerce ul.product_list_widget li:after,
  .woocommerce-page ul.cart_list li:after,
  .woocommerce-page ul.product_list_widget li:after {
    clear: both;
  }
  .woocommerce ul.cart_list li img,
  .woocommerce ul.product_list_widget li img,
  .woocommerce-page ul.cart_list li img,
  .woocommerce-page ul.product_list_widget li img {
    float: right;
    height: auto;
  }
}
.woocommerce #reviews {
  clear: both;
}
.woocommerce #reviews h2 {
  font-size: 1.875em;
}
.woocommerce #reviews h2 small {
  float: right;
  font-size: 15px;
  line-height: 21px;
  margin: 10px 0 0 0;
}
.woocommerce #reviews h2 small a {
  text-decoration: none;
  color: #444;
}
.woocommerce #reviews h3 {
  margin: 0;
  font-size: 1.25em;
}
.woocommerce #reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}
.woocommerce #reviews #comment {
  height: 75px;
}
.woocommerce #reviews #comments .add_review {
  zoom: 1;
}
.woocommerce #reviews #comments .add_review:after,
.woocommerce #reviews #comments .add_review:before {
  content: " ";
  display: table;
}
.woocommerce #reviews #comments .add_review:after {
  clear: both;
}
.woocommerce #reviews #comments h2 {
  font-size: 1em;
  font-family: "DIN W01 Italic";
  padding: 0;
  margin: 1em 0 0;
  display: none;
}
.woocommerce #reviews #comments ol.commentlist {
  zoom: 1;
  margin: 1em 0 0;
  width: 100%;
  background: none;
  list-style: none;
  border-bottom: 0;
}
.woocommerce #reviews #comments ol.commentlist:after,
.woocommerce #reviews #comments ol.commentlist:before {
  content: " ";
  display: table;
}
.woocommerce #reviews #comments ol.commentlist:after {
  clear: both;
}
.woocommerce #reviews #comments ol.commentlist li {
  padding: 0;
  margin: 0 0 1em;
  border: 0;
  position: relative;
  background: 0;
  border-bottom: 1px solid #EEE;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px;
  width: 32px;
  height: auto;
  margin: 0;
  line-height: 1;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.woocommerce #reviews #comments ol.commentlist li .comment_container {
  padding-top: 5px;
  position: relative;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  zoom: 1;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text:after,
.woocommerce #reviews #comments ol.commentlist li .comment-text:before {
  content: " ";
  display: table;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text:after {
  clear: both;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin: 0 0 1em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: 0.875em;
  margin: 0 0 0.5em;
  padding-left: 42px;
}
.woocommerce #reviews #comments ol.commentlist ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}
.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}
.woocommerce #reviews #comments ol.commentlist #respond {
  border: 1px solid #DFDFDF;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}
.woocommerce #reviews #comments .commentlist > li:before {
  content: "";
}
.woocommerce .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1em;
  font-size: 0.875em;
  width: 5.6em;
  margin-top: 3px;
  font-family: "FontAwesome";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce .star-rating:before {
  content: "\f006\f006\f006\f006\f006";
  color: #E8C142;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.woocommerce .star-rating span {
  text-align: left;
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.woocommerce .star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  position: absolute;
  left: 0;
  color: #E8C142;
}
.woocommerce .woocommerce-product-rating {
  zoom: 1;
  line-height: 2em;
  margin-bottom: 0.25em;
  display: block;
}
.woocommerce .woocommerce-product-rating:after,
.woocommerce .woocommerce-product-rating:before {
  content: " ";
  display: table;
}
.woocommerce .woocommerce-product-rating:after {
  clear: both;
}
.woocommerce .woocommerce-product-rating .star-rating {
  margin: 0.5em 4px 0 0;
  float: left;
  font-size: 1em;
}
.woocommerce .products .star-rating {
  display: block;
  margin: 0 auto 1em;
  float: none;
}
.woocommerce .hreview-aggregate .star-rating {
  margin: 10px 0 0 0;
}
.woocommerce p.stars {
  position: relative;
  font-size: 0.875em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce p.stars a {
  display: inline-block;
  font-family: "DIN W01 Medium";
  margin-right: 1em;
  text-indent: -9999px;
  position: relative;
}
.woocommerce p.stars a:last-child {
  border-right: 0;
}
.woocommerce p.stars a.star-1,
.woocommerce p.stars a.star-2,
.woocommerce p.stars a.star-3,
.woocommerce p.stars a.star-4,
.woocommerce p.stars a.star-5 {
  border-right: 1px solid #CCC;
}
.woocommerce p.stars a.star-1:after,
.woocommerce p.stars a.star-2:after,
.woocommerce p.stars a.star-3:after,
.woocommerce p.stars a.star-4:after,
.woocommerce p.stars a.star-5:after {
  font-family: "FontAwesome";
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  color: #E8C142;
}
.woocommerce p.stars a.star-1 {
  width: 2em;
}
.woocommerce p.stars a.star-1:after {
  content: "\f006";
}
.woocommerce p.stars a.star-1:hover:after,
.woocommerce p.stars a.star-1.active:after {
  content: "\f005";
}
.woocommerce p.stars a.star-2 {
  width: 3em;
}
.woocommerce p.stars a.star-2:after {
  content: "\f006\f006";
}
.woocommerce p.stars a.star-2:hover:after,
.woocommerce p.stars a.star-2.active:after {
  content: "\f005\f005";
}
.woocommerce p.stars a.star-3 {
  width: 4em;
}
.woocommerce p.stars a.star-3:after {
  content: "\f006\f006\f006";
}
.woocommerce p.stars a.star-3:hover:after,
.woocommerce p.stars a.star-3.active:after {
  content: "\f005\f005\f005";
}
.woocommerce p.stars a.star-4 {
  width: 5em;
}
.woocommerce p.stars a.star-4:after {
  content: "\f006\f006\f006\f006";
}
.woocommerce p.stars a.star-4:hover:after,
.woocommerce p.stars a.star-4.active:after {
  content: "\f005\f005\f005\f005";
}
.woocommerce p.stars a.star-5 {
  width: 6em;
  border: 0;
}
.woocommerce p.stars a.star-5:after {
  content: "\f006\f006\f006\f006\f006";
}
.woocommerce p.stars a.star-5:hover:after,
.woocommerce p.stars a.star-5.active:after {
  content: "\f005\f005\f005\f005\f005";
}
.woocommerce #review_form #respond {
  position: static;
  margin: 0 0 1.5em;
  width: auto;
  padding: 0;
  background: transparent none;
}
.woocommerce #review_form #respond p {
  margin: 0 0 10px;
}
.woocommerce #review_form #respond .form-submit {
  margin: 18px 0 -5px;
}
.woocommerce #review_form #respond .form-submit input {
  left: auto;
}
.woocommerce #review_form #respond select,
.woocommerce #review_form #respond .select2-container {
  display: none !important;
}
.woocommerce #review_form #respond textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.woocommerce-products-footer {
  margin-top: 3em;
}
.woocommerce-products-header + .space-xs-none {
  margin-top: 1em;
}
.woocommerce-ordering {
  max-width: 230px;
}
.woocommerce ul.products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.woocommerce ul.products li.product {
  float: left;
  display: inline-block;
  position: relative;
  margin-left: 0;
  margin-top: 0.875em;
  margin-bottom: 0.875em;
  padding-left: 15px;
  padding-right: 15px;
}
.woocommerce ul.products.columns-3 li.product {
  width: 100%;
}
.woocommerce .related.products {
  margin-bottom: 2em;
}
.flexbox .woocommerce ul.products:before,
.flexbox .woocommerce ul.products:after {
  content: normal !important;
}
.woocommerce-MyAccount-navigation {
  margin: 0.5em 0 2em;
}
@media only screen and (min-width: 481px) {
  .woocommerce .related,
  .woocommerce .upsells.products {
    zoom: 1;
    clear: both;
  }
  .woocommerce .related:after,
  .woocommerce .related:before,
  .woocommerce .upsells.products:after,
  .woocommerce .upsells.products:before {
    content: " ";
    display: table;
  }
  .woocommerce .related:after,
  .woocommerce .upsells.products:after {
    clear: both;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce-products-header + .space-xs-normal,
  .woocommerce-products-header + .space-sm-normal {
    margin-top: 2em !important;
  }
  .woocommerce-products-header + .space-xs-none {
    margin-top: 2em;
  }
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last {
    width: 49%;
  }
  .woocommerce form .form-row-first {
    float: left;
  }
  .woocommerce form .form-row-last {
    float: right;
  }
  .woocommerce-account .col2-set,
  .woocommerce-order-received .col2-set,
  .woocommerce-wishlist .col2-set {
    zoom: 1;
    margin-top: 1em;
    width: 100%;
  }
  .woocommerce-account .col2-set:after,
  .woocommerce-account .col2-set:before,
  .woocommerce-order-received .col2-set:after,
  .woocommerce-order-received .col2-set:before,
  .woocommerce-wishlist .col2-set:after,
  .woocommerce-wishlist .col2-set:before {
    content: " ";
    display: table;
  }
  .woocommerce-account .col2-set:after,
  .woocommerce-order-received .col2-set:after,
  .woocommerce-wishlist .col2-set:after {
    clear: both;
  }
  .woocommerce-account .col2-set .col-1,
  .woocommerce-order-received .col2-set .col-1,
  .woocommerce-wishlist .col2-set .col-1 {
    float: left;
    width: 48%;
  }
  .woocommerce-account .col2-set .col-2,
  .woocommerce-order-received .col2-set .col-2,
  .woocommerce-wishlist .col2-set .col-2 {
    float: right;
    width: 48%;
  }
  .woocommerce-cart .cart-collaterals {
    zoom: 1;
    width: 100%;
  }
  .woocommerce-cart .cart-collaterals:after,
  .woocommerce-cart .cart-collaterals:before {
    content: " ";
    display: table;
  }
  .woocommerce-cart .cart-collaterals:after {
    clear: both;
  }
  .woocommerce-cart .cart-collaterals .related {
    width: 30.75%;
    float: left;
  }
  .woocommerce-cart .cart-collaterals .cross-sells {
    width: 48%;
    float: left;
  }
  .woocommerce-cart .cart-collaterals .cross-sells ul.products {
    float: none;
  }
  .woocommerce-cart .cart-collaterals .cross-sells ul.products li {
    width: 48%;
  }
  .woocommerce-cart .cart-collaterals .shipping_calculator {
    width: 48%;
    zoom: 1;
    clear: right;
    float: right;
  }
  .woocommerce-cart .cart-collaterals .shipping_calculator:after,
  .woocommerce-cart .cart-collaterals .shipping_calculator:before {
    content: " ";
    display: table;
  }
  .woocommerce-cart .cart-collaterals .shipping_calculator:after {
    clear: both;
  }
  .woocommerce-cart .cart-collaterals .shipping_calculator .col2-set .col-1,
  .woocommerce-cart .cart-collaterals .shipping_calculator .col2-set .col-2 {
    width: 47%;
  }
  .woocommerce-account .login,
  .woocommerce-wishlist .login {
    width: auto;
    float: none;
  }
  .woocommerce-account.logged-in .page-title {
    padding-left: 25%;
    position: relative;
    left: 45px;
  }
  .woocommerce-MyAccount-navigation {
    margin-top: -3.875em;
    position: relative;
    z-index: 9;
  }
  .woocommerce-Checkout-navigation,
  .woocommerce-MyAccount-navigation {
    float: left;
    width: 25%;
  }
  .woocommerce-form-login,
  .woocommerce-Tabs-panel--login h3,
  .paginate-buttons-wrapper,
  .woocommerce-MyAccount-content,
  .woocommerce-account.logged-in .woocommerce-message,
  .woocommerce-account.logged-in .woocommerce-info,
  .woocommerce-account.logged-in .woocommerce-error,
  .woocommerce-checkout div.woocommerce-message,
  .woocommerce-checkout div.woocommerce-error {
    width: 75%;
    padding-left: 45px;
    float: right;
  }
  .woocommerce-checkout .woocommerce-NoticeGroup div.woocommerce-error {
    padding: 0;
    float: none;
    width: auto;
  }
  .woocommerce-checkout .checkout_coupon {
    zoom: 1;
  }
  .woocommerce-checkout .checkout_coupon:after,
  .woocommerce-checkout .checkout_coupon:before {
    content: " ";
    display: table;
  }
  .woocommerce-checkout .checkout_coupon:after {
    clear: both;
  }
  .woocommerce-checkout .checkout_coupon .form-row-first {
    float: left;
    width: 63%;
  }
  .woocommerce-checkout .checkout_coupon .form-row-last {
    float: right;
    width: 35%;
  }
  .woocommerce-checkout .login {
    zoom: 1;
  }
  .woocommerce-checkout .login:after,
  .woocommerce-checkout .login:before {
    content: " ";
    display: table;
  }
  .woocommerce-checkout .login:after {
    clear: both;
  }
  .woocommerce-checkout .login .form-row-first,
  .woocommerce-checkout .login .form-row-last {
    width: 49% !important;
  }
  .woocommerce-checkout .login .form-row-first {
    float: left;
  }
  .woocommerce-checkout .login .form-row-last {
    float: right;
  }
}
@media only screen and (min-width: 992px) {
  html.csscolumns .woocommerce .page-description {
    margin-top: 1em;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
  html.csscolumns .woocommerce .page-description * {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 1em;
  }
  .woocommerce-result-count {
    position: relative;
    min-height: 1px;
    float: left;
    width: 30%;
    height: 42px;
    line-height: 42px;
  }
  .woocommerce-ordering {
    position: relative;
    min-height: 1px;
    float: right;
    width: 68%;
    text-align: right;
  }
  .woocommerce-ordering select,
  .woocommerce-ordering .select2-container {
    text-align: left;
  }
  .woocommerce-form-login,
  .woocommerce-Tabs-panel--login h3,
  .paginate-buttons-wrapper,
  .woocommerce-MyAccount-content,
  .woocommerce-account.logged-in .woocommerce-message,
  .woocommerce-account.logged-in .woocommerce-info,
  .woocommerce-account.logged-in .woocommerce-error,
  .woocommerce-checkout div.woocommerce-message,
  .woocommerce-checkout div.woocommerce-error {
    padding-left: 7%;
  }
  .woocommerce-account.logged-in .page-title {
    padding-left: 32%;
    left: 0;
  }
  .woocommerce ul.products li.product {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .woocommerce ul.products + .space-xs-normal,
  .woocommerce ul.products + .space-sm-normal,
  .woocommerce ul.products + .space-md-normal {
    margin-top: 4em !important;
  }
  .woocommerce .woocommerce-products-footer {
    margin-top: 5em;
  }
}
.post-type-archive-product ul.products {
  margin-top: 3em;
}
.woocommerce-result-count {
  font-size: 0.875em;
}
.woocommerce-ordering {
  margin: 0 0 1.5em;
}
.woocommerce-ordering select {
  vertical-align: top;
}
.readytoship-key {
  margin: 1em 0;
  max-width: 750px;
}
.readytoship-key .fa {
  margin-right: 5px;
  font-size: 1.125em;
}
.readytoship-key .snowflake-icon {
  margin-right: 5px;
}
.readytoship-key span {
  font-family: "DIN W01 Medium";
  font-size: 0.875em;
  line-height: 1.3;
}
.woocommerce ul.products li.product span.readytoship {
  right: auto;
  left: 15px;
  padding: 5px 8px;
}
.woocommerce ul.products li.product span.readytoship .snowflake-icon {
  height: 29px;
  width: 25px;
}
.woocommerce ul.products li.product span.onsale {
  left: auto;
  right: 15px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin-bottom: 0;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title {
  color: #000;
  margin-top: 0.675em;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title:after {
  content: "Shop All";
  display: block;
  margin-top: 5px;
  font-size: 70%;
  color: #666;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title mark {
  display: none;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #000;
  font-size: 1em;
  line-height: 1.45;
  margin-top: 1em;
  font-family: 'DIN W01 Medium';
  text-transform: uppercase;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product.product-category > a {
  text-decoration: none !important;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link:hover .woocommerce-loop-category__title:after,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link:focus .woocommerce-loop-category__title:after,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link:focus .woocommerce-loop-product__title,
.woocommerce ul.products li.product.product-category > a:hover .woocommerce-loop-category__title:after,
.woocommerce ul.products li.product.product-category > a:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product.product-category > a:focus .woocommerce-loop-category__title:after,
.woocommerce ul.products li.product.product-category > a:focus .woocommerce-loop-product__title {
  color: #000;
}
.woocommerce ul.products li.product img {
  display: block;
  width: 100%;
}
.woocommerce ul.products li.product strong {
  display: block;
}
.woocommerce ul.products li.product a.add_to_cart_button {
  display: inline-block;
  margin: 1em auto;
}
.woocommerce ul.products li.product .price {
  color: #666;
  display: block;
  font-size: 1em;
}
.woocommerce ul.products li.product .price del {
  color: inherit;
  opacity: 0.5;
  display: block;
}
.woocommerce ul.products li.product .price ins {
  background: none;
  font-family: "DIN W01 Medium";
  text-decoration: none;
}
.woocommerce ul.products li.product .price .from {
  font-size: 0.67em;
  margin: -2px 0 0 0;
  text-transform: uppercase;
  color: rgba(102,102,102,0.5);
}
.woocommerce ul.products li.product .readytoship-options {
  margin-top: 1em;
}
.woocommerce-cart .woocommerce h2 {
  font-size: 1.25em;
}
.woocommerce-cart .wc-proceed-to-checkout:after,
.woocommerce-cart .wc-proceed-to-checkout:before {
  content: " ";
  display: table;
}
.woocommerce-cart .wc-proceed-to-checkout:after {
  clear: both;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 0.25em;
  color: #fff;
  text-decoration: none;
}
.woocommerce-cart .cart-collaterals {
  margin-top: 2em;
}
.woocommerce-cart .cart-collaterals p:not(.form-row) {
  margin: 0;
  line-height: 1.5;
}
.woocommerce-cart .cart-collaterals .cart_totals p small {
  color: #666;
  font-size: 0.83em;
}
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product {
  margin-top: 0;
}
.woocommerce-cart .woocommerce-shipping-calculator {
  margin-top: 0.5em;
}
.woocommerce-cart .woocommerce-shipping-calculator .button {
  width: 100%;
  float: none;
  display: block;
}
.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-button {
  display: inline-block;
  margin-bottom: 5px;
}
.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-button:after {
  margin-left: 5px;
  font-family: "FontAwesome";
  content: "\f103";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce-cart .woocommerce-shipping-calculator .shipping-calculator-form {
  margin-bottom: 10px;
}
.woocommerce-cart p.woocommerce-shipping-contents {
  margin: 0;
}
.woocommerce-form-login input[type="checkbox"] {
  margin-left: 15px;
}
.woocommerce-form-login input[type="submit"] {
  margin-bottom: 1em;
}
.woocommerce-form-login .lost_password {
  margin-top: -0.5em;
}
.woocommerce-form-login .lost_password a {
  color: #666;
}
.woocommerce-checkout:not(.woocommerce-order-received) .page-header {
  display: none;
}
.woocommerce-checkout .woocommerce-form-login label {
  display: block;
}
.woocommerce-checkout .paginate-buttons-wrapper {
  margin-top: 2em;
  margin-bottom: 2em;
}
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
  margin-top: 1em;
  margin-bottom: 1em;
}
.woocommerce-checkout .page-content h3:first-child {
  margin-top: 0;
  font-size: 1.625em;
  line-height: 1.2;
  padding-top: 0.5em;
}
.woocommerce-checkout .deposit-summary {
  margin-top: 1em;
}
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout .woocommerce-form-login {
  padding-bottom: 1em;
}
.woocommerce-checkout .checkout_coupon .form-row-first,
.woocommerce-checkout .checkout_coupon p:first-of-type,
.woocommerce-checkout .woocommerce-form-login .form-row-first,
.woocommerce-checkout .woocommerce-form-login p:first-of-type {
  margin-top: 0;
}
.woocommerce-checkout .checkout_coupon .form-row-last {
  margin-top: -1em;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  zoom: 1;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper:after,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper:before,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper:after,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper:before {
  content: " ";
  display: table;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper:after,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper:after {
  clear: both;
}
.woocommerce-checkout .error-class {
  color: #c0392b;
  font-size: 0.9em;
}
.woocommerce-checkout .woocommerce-form-login .form-row,
.woocommerce-checkout .checkout .form-row {
  margin: 0 0 1em;
}
.woocommerce-checkout .woocommerce-form-login .form-row label,
.woocommerce-checkout .checkout .form-row label {
  margin-top: 10px;
}
.woocommerce-checkout .checkout #billing_address_1_field,
.woocommerce-checkout .checkout #shipping_address_1_field {
  margin-bottom: 0.5em;
}
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  float: left;
  clear: none;
  font-size: 1em;
}
.woocommerce-checkout .checkout .col-2 .notes {
  clear: left;
}
.woocommerce-checkout .checkout .col-2 .form-row-first {
  clear: left;
}
.woocommerce-checkout .checkout .col-2 .form-row:first-of-type {
  margin-top: 0;
}
.woocommerce-checkout .checkout .woocommerce-account-fields {
  margin-bottom: 1em;
}
.woocommerce-checkout .checkout .woocommerce-account-fields p.create-account {
  margin-bottom: 0;
}
.woocommerce-checkout .checkout div.create-account {
  padding-top: 0.5em;
}
.woocommerce-checkout .checkout div.create-account p {
  margin: 0;
}
.woocommerce-checkout .checkout div.create-account p:not(.form-row) {
  font-size: 0.9em;
}
.woocommerce-checkout .checkout div.create-account small {
  font-size: 0.875em;
  color: #666;
  display: block;
  margin-top: 0.5em;
}
.woocommerce-checkout .checkout div.shipping-address {
  padding: 0;
  clear: left;
  width: 100%;
}
.woocommerce-checkout .checkout .shipping_address {
  clear: both;
}
.woocommerce-checkout ul#shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout ul#shipping_method li {
  margin: 0;
  padding: 0.25em 0;
  list-style: none outside;
}
.woocommerce-checkout ul#shipping_method .amount {
  font-family: "DIN W01 Medium";
  font-weight: normal;
}
.woocommerce-checkout #payment ul.payment_methods {
  zoom: 1;
  text-align: left;
  padding: 0;
  margin: 0;
  list-style: none outside;
}
.woocommerce-checkout #payment ul.payment_methods:after,
.woocommerce-checkout #payment ul.payment_methods:before {
  content: " ";
  display: table;
}
.woocommerce-checkout #payment ul.payment_methods:after {
  clear: both;
}
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: normal;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  display: inline;
}
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 8px 0 0;
}
.woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  position: relative;
  box-shadow: none;
}
.woocommerce-checkout #payment ul.payment_methods li img[alt="visa"] {
  margin-left: 5px;
}
.woocommerce-checkout #payment ul.payment_methods li img + img {
  margin-left: 2px;
}
.woocommerce-checkout #payment div.form-row {
  margin: 0;
  text-align: center;
}
.woocommerce-checkout #payment div.showroom-visit {
  text-align: left;
}
label[for="other"] .optional {
  display: none;
}
.woocommerce-checkout #payment div.payment_box {
  position: relative;
  padding: 0;
  margin: 0;
  font-size: 0.92em;
}
.woocommerce-checkout #payment div.payment_box fieldset {
  margin: 0.5em 0 0;
  padding: 0;
  border: 0;
}
.woocommerce-checkout #payment div.payment_box .wc-authorize-net-aim-new-payment-method-form {
  font-family: "DIN W01 Regular";
  font-style: normal;
}
.woocommerce-checkout #payment div.payment_box .wc-authorize-net-aim-new-payment-method-form label {
  display: block;
  line-height: 1.4;
}
.woocommerce-checkout #payment div.payment_box .wc-authorize-net-aim-new-payment-method-form select,
.woocommerce-checkout #payment div.payment_box .wc-authorize-net-aim-new-payment-method-form .select2-container {
  width: 5.5em !important;
  margin-right: 10px;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc {
  font-size: 20px;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right;
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.png");
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.png");
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.png");
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.png");
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.png");
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.png");
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.png");
}
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.png");
}
.woocommerce-checkout #payment div.payment_box span.help {
  font-size: .857em;
  color: #666;
  font-weight: normal;
}
.woocommerce-checkout #payment div.payment_box .form-row {
  margin: 0 0 1em;
}
.woocommerce-checkout #payment div.payment_box p {
  margin: 0;
}
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 52px;
  font-size: 0.83em;
}
.woocommerce-checkout #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
}
.woocommerce-checkout #payment .terms-heading {
  padding: 10px 1em;
  text-align: center;
  border: 1px solid #CCC;
  margin-top: 2em;
}
.woocommerce-checkout #payment .terms {
  zoom: 1;
  margin-top: 1em;
}
.woocommerce-checkout #payment .terms:after,
.woocommerce-checkout #payment .terms:before {
  content: " ";
  display: table;
}
.woocommerce-checkout #payment .terms:after {
  clear: both;
}
.woocommerce-terms-and-conditions {
  text-align: left;
  border: 1px solid #CCC;
  padding: 0.5em 1em;
}
.woocommerce-account .woocommerce-form-login,
.woocommerce-wishlist .woocommerce-form-login {
  padding: 0 0 1em;
  margin: 0 0 1em;
  border: 0;
  border-bottom: 1px solid #E6E6E6;
}
.woocommerce-account .woocommerce h2 {
  font-size: 1.25em;
}
.woocommerce-account .woocommerce .myaccount_user,
.woocommerce-account .woocommerce .order-info {
  margin-bottom: 1.5em;
}
.woocommerce-account .woocommerce-form-row {
  margin: 0 0 1.5em;
}
.woocommerce-account .woocommerce-form-row label {
  margin-top: 10px;
}
.woocommerce-account .register {
  padding: 0;
  margin: 0;
  border: 0;
}
.woocommerce-account .addresses .title h3 {
  margin-bottom: 0.5em;
}
.woocommerce-account ol.commentlist.notes li.note p.meta {
  font-family: "DIN W01 Medium";
  margin-bottom: 0;
}
.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
  margin-bottom: 0;
}
.woocommerce-account fieldset {
  border: 0;
  margin: 2em 0 0;
  padding: 4em 0 0 0;
  position: relative;
}
.woocommerce-account fieldset legend {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 1em;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #CCC;
}
.woocommerce-account ul.digital-downloads {
  margin-top: 1em;
  margin-left: 0;
  margin-bottom: 2em;
  padding-left: 0;
}
.woocommerce-account ul.digital-downloads li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.woocommerce-account ul.digital-downloads li:before {
  font-family: 'FontAwesome';
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "";
  text-decoration: none;
}
.woocommerce-account ul.digital-downloads li .count {
  float: right;
  font-family: "DIN W01 Italic";
}
.woocommerce-address-fields__field-wrapper {
  zoom: 1;
}
.woocommerce-address-fields__field-wrapper:after,
.woocommerce-address-fields__field-wrapper:before {
  content: " ";
  display: table;
}
.woocommerce-address-fields__field-wrapper:after {
  clear: both;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin-top: 1.125em;
  }
  .woocommerce ul.products li.product .woocommerce-loop-category__title {
    margin-top: 0.5em;
  }
  .woocommerce-form-login input[type="submit"] {
    margin-bottom: 0;
    margin-right: 1em;
  }
  .woocommerce-checkout #payment .form-row select {
    width: auto;
  }
  .woocommerce-account .woocommerce-form-login,
  .woocommerce-wishlist .woocommerce-form-login {
    border: 0;
    margin: 0;
    padding: 0;
  }
  .woocommerce .upsells ul.products li.product,
  .woocommerce .cross-sells ul.products li.product {
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 992px) {
  .woocommerce ul.products li.product .woocommerce-loop-category__title:after {
    font-size: 50%;
    margin-top: 8px;
  }
  .woocommerce-checkout:not(.woocommerce-order-received) .page-content h3:first-child {
    font-size: 2em;
  }
  .woocommerce-result-count {
    margin: 0 0 30px;
  }
  .woocommerce-ordering {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .flexbox .additional_product_actions:before,
  .flexbox .additional_product_actions:after {
    content: normal !important;
  }
}
.wc-deposits-wrapper {
  margin: 0 0 1.5em;
}
.wc-deposits-wrapper.wc-deposits-optional .wc-deposits-payment-plans {
  margin: 1em 0;
}
.wc-deposits-wrapper.wc-deposits-optional .wc-deposits-payment-plans:before {
  content: "";
  display: block;
  border: 8px solid #ccc;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -3px;
  left: -4px;
  margin: -1em 0 0 25%;
}
.wc-deposits-wrapper.wc-deposits-optional .wc-deposits-payment-plans:after {
  content: "";
  display: block;
  border: 8px solid #fff;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -2px;
  left: -4px;
  margin: -1em 0 0 25%;
}
.wc-deposits-payment-description {
  margin: 0.675em 0 1em;
}
.wc-deposits-option {
  list-style: none outside;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.wc-deposits-option li {
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  width: 48%;
  margin: 0;
  float: left;
}
.wc-deposits-option li:last-child {
  float: right;
}
.wc-deposits-option li input {
  margin-left: 6px;
  display: inline-block;
}
.wc-deposits-option li label {
  margin-bottom: 0;
  vertical-align: text-top;
}
.wc-deposits-payment-plans {
  list-style: none outside;
  padding: 0 1em;
  margin: 0 0 1em;
  border: 1px solid #ccc;
  position: relative;
}
li.wc-deposits-payment-plan {
  border-bottom: 1px solid #eee;
  padding: 1em 0;
}
li.wc-deposits-payment-plan:last-child {
  border-bottom: 0;
}
li.wc-deposits-payment-plan input {
  margin: -2px 1em 0 0;
  display: inline-block;
  vertical-align: middle;
}
li.wc-deposits-payment-plan label {
  padding: 0 0 0 10px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  max-width: 80%;
}
.wc-deposits-payment-plan-name {
  display: block;
}
.woocommerce .order_details .wc-deposits-order-item-description {
  margin-bottom: 0;
}
#inner-content.no-sidebars div#wl-wrapper.product {
  max-width: none;
}
.woocommerce-wishlist ul.woocommerce-info,
.woocommerce-wishlist ul.woocommerce-message,
.woocommerce-wishlist ul.woocommerce-error {
  margin-top: 1em;
}
#wl-wrapper .woocommerce-info,
#wl-wrapper .woocommerce-message,
#wl-wrapper .woocommerce-error {
  margin-top: 1em;
}
#wl-wrapper .stock {
  font-size: 0.889em;
}
#wl-wrapper .button.btn-apply {
  font-family: "DIN W01 Regular";
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  outline: 0;
  -webkit-transition: background-color 0.25s ease-in-out;
  -moz-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  -transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  background-color: #CCC;
  color: #000;
  font-size: 1em;
  padding-top: 0.675em;
  padding-bottom: 0.675em;
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
}
#wl-wrapper .button.btn-apply:hover,
#wl-wrapper .button.btn-apply:focus,
#wl-wrapper .button.btn-apply:active,
#wl-wrapper .button.btn-apply.active {
  text-decoration: none;
}
#wl-wrapper .button.btn-apply:disabled,
#wl-wrapper .button.btn-apply.disabled,
#wl-wrapper .button.btn-apply:disabled[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
#wl-wrapper .button.btn-apply:hover,
#wl-wrapper .button.btn-apply:focus,
#wl-wrapper .button.btn-apply:active,
#wl-wrapper .button.btn-apply.active {
  background-color: #b3b3b3;
  color: #000;
}
#wl-wrapper .button.btn-apply:active,
#wl-wrapper .button.btn-apply.active {
  background-color: #999;
}
#wl-wrapper .button.btn-apply:disabled:hover,
#wl-wrapper .button.btn-apply:disabled:focus,
#wl-wrapper .button.btn-apply:disabled:active,
#wl-wrapper .button.btn-apply.disabled:hover,
#wl-wrapper .button.btn-apply.disabled:focus,
#wl-wrapper .button.btn-apply.disabled:active,
#wl-wrapper .button.btn-apply:disabled[disabled]:hover,
#wl-wrapper .button.btn-apply:disabled[disabled]:focus,
#wl-wrapper .button.btn-apply:disabled[disabled]:active {
  background-color: #CCC;
}
#wl-wrapper .wl-clear:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#wl-wrapper .wl-right {
  float: right;
}
#wl-wrapper .wl-left {
  float: left;
}
#wl-wrapper .wl-row {
  margin-bottom: 15px;
  clear: both;
}
#wl-wrapper .ctr {
  text-align: center;
}
#wl-wrapper .vtop {
  vertical-align: top !important;
}
#wl-wrapper .wl-fgroup {
  float: left;
  margin-right: 10px;
}
#wl-wrapper .wl-intro {
  margin-bottom: 20px;
}
#wl-wrapper .wl-share-url {
  font-size: 0.92em;
  margin-bottom: 0;
  padding-bottom: 1em;
  border: none;
}
#wl-wrapper .wl-small {
  text-transform: none;
  font-family: "DIN W01 Regular";
}
#wl-wrapper .no-marg {
  margin: 0;
}
#wl-wrapper .wl-meta-share {
  clear: both;
  overflow: hidden;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1em;
}
#wl-wrapper .wl-manage-link {
  display: block;
  float: left;
  margin-left: 20px;
}
#wl-wrapper .wl-share-links {
  margin: 10px 0;
}
#wl-wrapper .wl-share-links li {
  display: block;
  margin-left: 0;
}
#wl-wrapper .wl-share-links li.wl-email,
#wl-wrapper .wl-share-links li.wl-facebook,
#wl-wrapper .wl-share-links li.wl-twitter,
#wl-wrapper .wl-share-links li.wl-pinterest {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: middle;
}
#wl-wrapper .wl-share-links a {
  display: inline-block;
  background: none;
  width: auto;
  height: auto;
  text-decoration: none;
}
#wl-wrapper .wl-table.manage {
  margin-bottom: 15px;
}
#wl-wrapper .wl-table .product-purchase .button {
  white-space: nowrap;
}
#wl-wrapper .wl-list-btn-quantity-update.button {
  float: right;
}
#wl-wrapper .wl-actions-table,
#wl-wrapper .wl-actions-table table,
#wl-wrapper .wl-actions-table td,
#wl-wrapper .wl-actions-table tr,
#wl-wrapper .wl-actions-table th {
  padding: 0;
  border: none;
  background: none;
  vertical-align: middle;
}
#wl-wrapper .wl-actions-table {
  margin: 5px 0;
  max-width: 600px;
  table-layout: fixed;
}
#wl-wrapper .wl-actions-table .button {
  float: left;
  margin-left: 15px;
}
#wl-wrapper .wl-actions-table td {
  padding-right: 10px !important;
}
#wl-wrapper .wl-actions-table.wl-right {
  float: none;
}
#wl-wrapper .wl-stock-status {
  margin: 0;
}
#wl-wrapper .wl-manage .row-actions {
  font-size: 0.889em;
  margin-bottom: 5px;
}
#wl-wrapper .wl-manage .row-actions small {
  font-size: 100%;
}
#wl-wrapper .wl-manage .row-actions small a {
  text-decoration: none;
}
#wl-wrapper .wl-manage .row-actions small a:hover,
#wl-wrapper .wl-manage .row-actions small a:focus {
  text-decoration: underline;
}
#wl-wrapper .wl-manage td.actions {
  text-align: center !important;
}
#wl-wrapper .purchased td {
  background-color: #fafafa;
}
#wl-wrapper .wl-form {
  margin-bottom: 20px;
}
#wl-wrapper .wl-form ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#wl-wrapper .wl-form .wl-inline li {
  float: left;
  display: inline;
  margin-right: 10px;
}
#wl-wrapper .wl-form input[type="radio"] + label {
  font-weight: normal;
}
#wl-wrapper .wl-form .form-row textarea {
  width: 100%;
}
#wl-wrapper .wl-search-form {
  max-width: 500px;
}
#wl-wrapper .wl-search-form label {
  display: block;
}
#wl-wrapper .wl-search-form input.find-input {
  width: 60%;
  display: inline-block;
  margin-right: 1em;
}
#wl-wrapper .wl-search-form input[type="submit"] {
  vertical-align: middle;
  height: 42px;
  line-height: 42px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
#wl-wrapper .wl-rad-table td {
  padding: 0;
}
#wl-wrapper .wl-rad-table td input[type="radio"] {
  margin-left: 5px;
  margin-right: 6px;
}
#wl-wrapper td.wl-date-added {
  color: #666;
  font-family: "DIN W01 Italic";
}
#wl-wrapper .wl-table + .wl-row {
  margin-top: -10px;
}
#wl-wrapper .wl-already-in ul {
  margin: 0 0 10px 20px;
}
#wl-list-pop-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 10001;
}
.wl-list-pop {
  padding: 15px;
  background: #F2F2F2;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  width: auto;
  max-width: 250px;
  height: auto;
  border: 1px solid #ccc;
  z-index: 10002;
  position: absolute;
}
.wl-list-pop dl {
  margin: 0 0 1.618em 0;
}
.wl-list-pop dt {
  margin: 0 0 5px 0;
}
.wl-list-pop dd {
  margin: 0 0 2px 10px;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wl-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9000;
  background-color: #000;
}
.wl-modal-backdrop.fade {
  opacity: 0;
}
.wl-modal-backdrop,
.wl-modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.wl-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 560px;
  margin: -250px 0 0 -280px;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,0.3);
  *border: 1px solid #999;
  -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
}
.wl-modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  -moz-transition: opacity .3s linear, top .3s ease-out;
  -o-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%;
}
.wl-modal.fade.in {
  top: 50%;
}
.wl-modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
.wl-modal-header .close {
  margin-top: 2px;
  float: right;
}
.wl-modal-header h3 {
  margin: 0;
  line-height: 30px;
}
.wl-modal-body {
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
}
.wl-modal-body input.input-text {
  width: 95%;
}
.wl-modal-body textarea {
  width: 95%;
}
.wl-modal-body .form-row {
  margin-bottom: 10px;
}
.wl-modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  *zoom: 1;
}
.wl-modal-footer:before,
.wl-modal-footer:after {
  display: table;
  content: "";
  line-height: 0;
}
.wl-modal-footer:after {
  clear: both;
}
.wl-modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.wl-modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.wl-modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  #wl-wrapper.woocommerce table.cart.view tr:not(.cart_table_item) td.product-thumbnail,
  #wl-wrapper.woocommerce table.cart.view tr:not(.cart_table_item) td.product-name,
  #wl-wrapper.woocommerce table.cart.view tr:not(.cart_table_item) td.product-price,
  #wl-wrapper.woocommerce table.cart.view tr:not(.cart_table_item) td.product-quantity {
    display: none;
  }
  #wl-wrapper.woocommerce table.cart.manage tr.cart_table_item,
  #wl-wrapper.woocommerce table.cart.view tr.cart_table_item {
    margin-bottom: 2em;
  }
  #wl-wrapper.woocommerce table.cart.manage tr td.product-purchase,
  #wl-wrapper.woocommerce table.cart.view tr td.product-purchase {
    padding-left: 110px;
  }
  #wl-wrapper.woocommerce table.cart.wl-manage tr.cart_table_item {
    margin-bottom: 1em;
  }
  #wl-wrapper.woocommerce table.cart.wl-manage td.product-name {
    padding-left: 0;
    padding-top: 15px;
    padding-bottom: 3px;
  }
  #wl-wrapper.woocommerce table.cart.wl-manage td.wl-date-added {
    padding-top: 3px;
    padding-bottom: 10px;
  }
  #wl-wrapper.woocommerce table.cart.wl-manage td.wl-privacy-col {
    padding-top: 5px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  #wl-wrapper .wl-table .wl-date-added,
  #wl-wrapper .wl-table .product-purchase,
  #wl-wrapper .wl-table .product-quantity {
    text-align: center;
  }
  #wl-wrapper .wl-privacy-col {
    width: 150px;
  }
}
@media only screen and (min-width: 992px) {
  #wl-wrapper table.cart.wl-manage .wl-privacy-col {
    width: 250px;
  }
}
.coupon-container {
  box-shadow: none;
}
.coupon-container.blue {
  background-color: #F2F2F2;
}
.coupon-container.red {
  background-color: #CCC;
}
.coupon-container.green {
  background-color: #999;
}
.coupon-container.yellow {
  background-color: #666;
}
.coupon-content.small {
  padding: 0.2em 1.2em;
}
.coupon-content.medium {
  padding: 0.4em 1.4em;
}
.coupon-content.large {
  padding: 0.6em 1.6em;
}
.coupon-content.dashed {
  border: none;
}
.coupon-content.dotted {
  border: none;
}
.coupon-content.groove {
  border: none;
}
.coupon-content.solid {
  border: none;
}
.coupon-content.none {
  border: none;
}
.coupon-content .code {
  font-family: "DIN W01 Regular";
}
.coupon-content .coupon-expire,
.coupon-content .discount-info {
  font-family: "DIN W01 Regular";
}
.coupon-content .discount-description {
  font: 0.7em/1 "DIN W01 Regular";
}
div#sc_shortcode_update {
  float: right;
  margin-top: -5px;
}
form#sc_coupons_attributes {
  padding: 0 1em 1em;
}
div#coupon-selector {
  padding: 1em 1em 1em 0;
  float: left;
  border-right: 1px solid #E6E6E6;
}
.coupon-preview {
  padding: 1em 0 1em 1em;
  float: left;
  width: 175px;
}
.preview-heading {
  font-size: 15px;
  text-align: center;
  padding-bottom: 10px;
}
#coupon-option #search-panel #search-results ul li span {
  width: 0;
  color: #f00;
}
#sc_coupons_attributes .submitbox {
  clear: both;
}
#default-text {
  text-align: center;
  font-style: italic;
  padding: 2px;
  background-color: #F2F2F2;
  margin-bottom: -5px;
}
.smart_coupons_style {
  list-style-type: none;
  background-color: #91EE91;
  margin-left: -30px;
  max-width: 80%;
  margin-bottom: -1px;
  cursor: pointer;
  padding: 8px 25px;
  color: #000;
  position: relative;
  box-shadow: 0 3px 4px rgba(181,181,181,0.8);
  border: 1px dashed #FFF;
}
div#gift-certificate-receiver-form thead th {
  text-align: center;
}
input#deliver_on_date {
  text-align: center;
}
div.gift-certificate-receiver-detail-form,
div#gift-certificate-receiver-form-multi {
  display: none;
}
a#single_multi {
  float: right;
}
.sc_info_box {
  padding: 1em 0;
  background-color: rgba(255,255,255,0);
  border-radius: 0px;
  float: none;
}
input.gift_receiver_email {
  margin: 0 0 1%;
}
.form_table {
  width: 100%;
  padding: 20px 5px;
  border-top: 1px;
  border-top-color: #dbdbdb;
  border-top-style: solid;
}
div.mce-smart-coupon-shortcode {
  cursor: pointer;
}
#is_gift_field {
  text-align: left;
  margin: 1.5em 0;
}
#is_gift_field .description {
  display: block;
}
.gift-announcement-wrap label:after {
  content: "  \f06b";
  font-family: FontAwesome;
  font-size: 1.25em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.gift-announcement-wrap .description {
  display: block;
}
@media only screen and (min-width: 768px) {
  #is_gift_field {
    margin-top: 0;
    padding: 1em;
  }
}
ul.woocommerce-shipping-methods {
  padding-left: 0;
}
#wc_checkout_add_ons {
  width: 100%;
}
.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type="tel"].identified.amex {
  border: 1px solid red;
  position: relative;
}
.amex-warning {
  color: red !important;
}
#place_order.disabled {
  opacity: 0.25 !important;
  pointer-events: none !important;
}
@font-face {
  font-family: "DIN W01 Regular";
  src: url("../fonts/din/5426089/a397c752-ee83-47cf-b8a8-b476511dd2c9.eot?#iefix");
  src: url("../fonts/din/5426089/a397c752-ee83-47cf-b8a8-b476511dd2c9.eot?#iefix") format("eot"), url("../fonts/din/5426089/53fb9c60-2054-4c31-9283-5562244b4935.woff2") format("woff2"), url("../fonts/din/5426089/45831ca8-93bd-4808-aa5f-3c915944f727.woff") format("woff"), url("../fonts/din/5426089/429a3e29-88da-4603-94ff-c1450c089c88.ttf") format("truetype");
}
@font-face {
  font-family: "DIN W01 Italic";
  src: url("../fonts/din/5426053/e72945c4-5029-4c68-859b-74bc6429ccd6.eot?#iefix");
  src: url("../fonts/din/5426053/e72945c4-5029-4c68-859b-74bc6429ccd6.eot?#iefix") format("eot"), url("../fonts/din/5426053/59fe4d12-8c74-457e-aa68-b9ad885f8f8f.woff2") format("woff2"), url("../fonts/5426053/39432a06-ab95-4bf7-bbb6-cb84e51170e8.woff") format("woff"), url("../fonts/din/5426053/e93afcb1-b4f4-4177-94ab-97c66a9bb9ee.ttf") format("truetype");
}
@font-face {
  font-family: "DIN W01 Medium";
  src: url("../fonts/din/5426076/9f48a411-8295-4ad8-b97a-f4cc38cef43d.eot?#iefix");
  src: url("../fonts/din/5426076/9f48a411-8295-4ad8-b97a-f4cc38cef43d.eot?#iefix") format("eot"), url("../fonts/din/5426076/79949f65-d692-489f-bd6b-b62647297229.woff2") format("woff2"), url("../fonts/5426076/b9597dec-1d68-488e-87e0-d7824cf36028.woff") format("woff"), url("../fonts/din/5426076/964c9b01-5d07-4ef1-8b71-3b173b54fbcc.ttf") format("truetype");
}
@font-face {
  font-family: "DIN W01 Bold";
  src: url("../fonts/din/bold/37EAFB_0_0.eot?#iefix");
  src: url("../fonts/din/bold/37EAFB_0_0.eot?#iefix") format("eot"), url("../fonts/din/bold/37EAFB_0_0.woff2") format("woff2"), url("../fonts/din/bold/37EAFB_0_0.woff") format("woff"), url("../fonts/din/bold/.ttf") format("truetype");
}
@font-face {
  font-family: "DIN W01 Cond Medium";
  src: url("../fonts/din/5425864/0329a25e-6878-415d-bde2-c014b4a427fd.eot?#iefix");
  src: url("../fonts/din/5425864/0329a25e-6878-415d-bde2-c014b4a427fd.eot?#iefix") format("eot"), url("../fonts/din/5425864/0c1424f1-df5f-4bf5-b9f5-e637305f9da1.woff2") format("woff2"), url("../fonts/5425864/0449f93a-6600-48eb-8434-7a45d2112b54.woff") format("woff"), url("../fonts/din/5425864/a3e99b9a-fe07-4fe5-8a29-0485438127c3.ttf") format("truetype");
}
@font-face {
  font-family: "DIN W01 Light";
  src: url("../fonts/din/light/DINOT-Light.eot?#iefix");
  src: url("../fonts/din/light/DINOT-Light.eot?#iefix") format("eot"), url("../fonts/din/light/DINOT-Light.woff") format("woff"), url("../fonts/din/light/aDINOT-Light.ttf") format("truetype");
}
@font-face {
  font-family: 'Noe Display';
  font-weight: 700;
  src: url('../fonts/noe-display/noe-display-bold.eot') format('eot'), url('../fonts/noe-display/noe-display-bold.woff') format('woff');
}
@font-face {
  font-family: 'Noe Display';
  font-weight: normal;
  src: url('../fonts/noe-display/noe-display-regular.eot') format('eot'), url('../fonts/noe-display/noe-display-regular.woff') format('woff');
}
@font-face {
  font-family: 'Noe Display';
  font-weight: bold;
  font-style: italic;
  src: url('../fonts/noe-display/Noe Display Bold Italic.eot') format('eot'), url('../fonts/noe-display/Noe Display Bold Italic.woff') format('woff');
}
@font-face {
  font-family: 'Noe Display';
  font-weight: normal;
  font-style: italic;
  src: url('../fonts/noe-display/Noe Display Regular Italic.eot') format('eot'), url('../fonts/noe-display/Noe Display Regular Italic.woff') format('woff');
}
@font-face {
  font-family: 'Noe Display Medium Italic';
  font-weight: normal;
  src: url('../fonts/noe-display/noe-display-medium-italic.eot') format('eot'), url('../fonts/noe-display/noe-display-medium-italic.woff') format('woff');
}
body {
  font-family: "DIN W01 Regular";
  color: #000;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    font-size: 20px;
  }
}
h1,
h2,
h3 {
  font-family: 'Noe Display';
  text-transform: capitalize;
  color: #000;
}
h3,
.h3,
h4,
.h4 {
  font-size: 1.4em;
}
h4,
.h4 {
  text-transform: none;
  font-family: 'Noe Display';
  color: #000;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
figcaption,
figure,
main {
  display: block;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
ul.list-style--none,
ol.list-style--none {
  list-style-type: none;
}
ul.list-style--none > li,
ol.list-style--none > li {
  margin-left: 0;
}
ul.list-style--social {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.list-style--social li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
ul.list-style--social li a {
  display: block;
  font-size: 2.5em;
  color: #666;
  text-align: center;
  text-decoration: none;
  padding: 5px 3px;
  width: 1.675em;
  line-height: 1;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
ul.list-style--social li a:hover,
ul.list-style--social li a:focus {
  color: #000;
}
ul.list-type--two-col,
ul.list-type--four-col {
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
}
@media only screen and (min-width: 992px) {
  ul.list-style--social li a {
    width: 1.35em;
    font-size: 1.35em;
    line-height: 1;
  }
  ul.list-type--four-col {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}
img.alignleft,
.alignleft,
img.alignright,
.alignright,
img.aligncenter,
.aligncenter,
img.alignnone,
.alignnone {
  display: block;
  margin: 15px auto;
}
img.alignleft,
.alignleft {
  float: left;
  margin: 7px 25px 0px 0px;
}
img.alignright,
.alignright {
  float: right;
  margin: 7px 0px 0px 25px;
}
.thumb-holder p {
  text-transform: uppercase;
  font-size: 1em;
  color: #666666;
}
.thumb-holder h2,
.thumb-holder h3 {
  font-size: 1.8em;
}
.thumb-holder a {
  text-decoration: none;
  color: #000;
}
.hov {
  cursor: pointer;
}
.fa-facebook-square,
.fa-twitter-square,
.fa-envelope-square {
  font-family: 'FontAwesome';
  font-style: normal;
}
a,
a:visited {
  color: #000;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #000;
  text-decoration: underline;
}
a:link {
  -webkit-tap-highlight-color: rgba(0,0,0,0.3);
}
a.read-more {
  white-space: nowrap;
}
button {
  font-family: "DIN W01 Regular";
  text-transform: inherit;
}
a.sc-btn-bg,
button.sc-btn-bg {
  font-family: "DIN W01 Regular";
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  outline: 0;
  -webkit-transition: background-color 0.25s ease-in-out;
  -moz-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  -transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
a.sc-btn-bg:hover,
a.sc-btn-bg:focus,
a.sc-btn-bg:active,
a.sc-btn-bg.active,
button.sc-btn-bg:hover,
button.sc-btn-bg:focus,
button.sc-btn-bg:active,
button.sc-btn-bg.active {
  text-decoration: none;
}
a.sc-btn-bg:disabled,
a.sc-btn-bg.disabled,
a.sc-btn-bg:disabled[disabled],
button.sc-btn-bg:disabled,
button.sc-btn-bg.disabled,
button.sc-btn-bg:disabled[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
a.sc-btn-txt,
button.sc-btn-txt {
  font-family: "DIN W01 Regular";
  color: #666;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1px;
  border: 0;
  outline: 0;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
a.sc-btn-txt:hover,
a.sc-btn-txt:focus,
a.sc-btn-txt:active,
a.sc-btn-txt.active,
button.sc-btn-txt:hover,
button.sc-btn-txt:focus,
button.sc-btn-txt:active,
button.sc-btn-txt.active {
  text-decoration: none;
  color: #000;
}
a.sc-btn-txt:disabled,
a.sc-btn-txt.disabled,
a.sc-btn-txt:disabled[disabled],
button.sc-btn-txt:disabled,
button.sc-btn-txt.disabled,
button.sc-btn-txt:disabled[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
a.sc-btn-txt.sc-btn--email,
a.sc-btn-txt.sc-btn--wishlist,
a.sc-btn-txt.sc-btn--backward,
button.sc-btn-txt.sc-btn--email,
button.sc-btn-txt.sc-btn--wishlist,
button.sc-btn-txt.sc-btn--backward {
  position: relative;
  vertical-align: middle;
}
a.sc-btn-txt.sc-btn--email:after,
a.sc-btn-txt.sc-btn--wishlist:after,
a.sc-btn-txt.sc-btn--backward:after,
button.sc-btn-txt.sc-btn--email:after,
button.sc-btn-txt.sc-btn--wishlist:after,
button.sc-btn-txt.sc-btn--backward:after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid transparent;
}
a.sc-btn-txt.sc-btn--email:hover:after,
a.sc-btn-txt.sc-btn--wishlist:hover:after,
a.sc-btn-txt.sc-btn--backward:hover:after,
button.sc-btn-txt.sc-btn--email:hover:after,
button.sc-btn-txt.sc-btn--wishlist:hover:after,
button.sc-btn-txt.sc-btn--backward:hover:after {
  border-bottom-color: #000;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -moz-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -ms-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  width: 100%;
  height: 100%;
}
a.sc-btn-txt.sc-btn--forward,
a.sc-btn-txt.sc-btn--normal,
button.sc-btn-txt.sc-btn--forward,
button.sc-btn-txt.sc-btn--normal {
  position: relative;
  vertical-align: middle;
}
a.sc-btn-txt.sc-btn--forward:before,
a.sc-btn-txt.sc-btn--normal:before,
button.sc-btn-txt.sc-btn--forward:before,
button.sc-btn-txt.sc-btn--normal:before {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid transparent;
}
a.sc-btn-txt.sc-btn--forward:hover:before,
a.sc-btn-txt.sc-btn--normal:hover:before,
button.sc-btn-txt.sc-btn--forward:hover:before,
button.sc-btn-txt.sc-btn--normal:hover:before {
  border-bottom-color: #000;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -moz-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -ms-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  -transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.75s;
  width: 100%;
  height: 100%;
}
a.sc-btn--primary,
button.sc-btn--primary {
  background-color: #666;
  color: #FFF;
}
a.sc-btn--primary:hover,
a.sc-btn--primary:focus,
a.sc-btn--primary:active,
a.sc-btn--primary.active,
button.sc-btn--primary:hover,
button.sc-btn--primary:focus,
button.sc-btn--primary:active,
button.sc-btn--primary.active {
  background-color: #4d4d4d;
  color: #FFF;
}
a.sc-btn--primary:active,
a.sc-btn--primary.active,
button.sc-btn--primary:active,
button.sc-btn--primary.active {
  background-color: #333;
}
a.sc-btn--primary:disabled:hover,
a.sc-btn--primary:disabled:focus,
a.sc-btn--primary:disabled:active,
a.sc-btn--primary.disabled:hover,
a.sc-btn--primary.disabled:focus,
a.sc-btn--primary.disabled:active,
a.sc-btn--primary:disabled[disabled]:hover,
a.sc-btn--primary:disabled[disabled]:focus,
a.sc-btn--primary:disabled[disabled]:active,
button.sc-btn--primary:disabled:hover,
button.sc-btn--primary:disabled:focus,
button.sc-btn--primary:disabled:active,
button.sc-btn--primary.disabled:hover,
button.sc-btn--primary.disabled:focus,
button.sc-btn--primary.disabled:active,
button.sc-btn--primary:disabled[disabled]:hover,
button.sc-btn--primary:disabled[disabled]:focus,
button.sc-btn--primary:disabled[disabled]:active {
  background-color: #666;
}
a.sc-btn--secondary,
button.sc-btn--secondary {
  background-color: #F2F2F2;
  color: #666;
}
a.sc-btn--secondary:hover,
a.sc-btn--secondary:focus,
a.sc-btn--secondary:active,
a.sc-btn--secondary.active,
button.sc-btn--secondary:hover,
button.sc-btn--secondary:focus,
button.sc-btn--secondary:active,
button.sc-btn--secondary.active {
  background-color: #d9d9d9;
  color: #666;
}
a.sc-btn--secondary:active,
a.sc-btn--secondary.active,
button.sc-btn--secondary:active,
button.sc-btn--secondary.active {
  background-color: #bfbfbf;
}
a.sc-btn--secondary:disabled:hover,
a.sc-btn--secondary:disabled:focus,
a.sc-btn--secondary:disabled:active,
a.sc-btn--secondary.disabled:hover,
a.sc-btn--secondary.disabled:focus,
a.sc-btn--secondary.disabled:active,
a.sc-btn--secondary:disabled[disabled]:hover,
a.sc-btn--secondary:disabled[disabled]:focus,
a.sc-btn--secondary:disabled[disabled]:active,
button.sc-btn--secondary:disabled:hover,
button.sc-btn--secondary:disabled:focus,
button.sc-btn--secondary:disabled:active,
button.sc-btn--secondary.disabled:hover,
button.sc-btn--secondary.disabled:focus,
button.sc-btn--secondary.disabled:active,
button.sc-btn--secondary:disabled[disabled]:hover,
button.sc-btn--secondary:disabled[disabled]:focus,
button.sc-btn--secondary:disabled[disabled]:active {
  background-color: #F2F2F2;
}
a.sc-btn-border,
button.sc-btn-border {
  font-family: "DIN W01 Regular";
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1px;
  outline: 0;
  border: 2px solid #666;
  color: #666;
  background: transparent;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a.sc-btn-border:hover,
a.sc-btn-border:focus,
a.sc-btn-border:active,
a.sc-btn-border.active,
button.sc-btn-border:hover,
button.sc-btn-border:focus,
button.sc-btn-border:active,
button.sc-btn-border.active {
  border-color: #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
}
a.sc-btn-border:active,
a.sc-btn-border.active,
button.sc-btn-border:active,
button.sc-btn-border.active {
  border-color: #000;
  color: #000;
}
a.sc-btn-border:disabled,
a.sc-btn-border.disabled,
a.sc-btn-border:disabled[disabled],
button.sc-btn-border:disabled,
button.sc-btn-border.disabled,
button.sc-btn-border:disabled[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
a.sc-btn-border:disabled:hover,
a.sc-btn-border:disabled:focus,
a.sc-btn-border:disabled:active,
a.sc-btn-border.disabled:hover,
a.sc-btn-border.disabled:focus,
a.sc-btn-border.disabled:active,
a.sc-btn-border:disabled[disabled]:hover,
a.sc-btn-border:disabled[disabled]:focus,
a.sc-btn-border:disabled[disabled]:active,
button.sc-btn-border:disabled:hover,
button.sc-btn-border:disabled:focus,
button.sc-btn-border:disabled:active,
button.sc-btn-border.disabled:hover,
button.sc-btn-border.disabled:focus,
button.sc-btn-border.disabled:active,
button.sc-btn-border:disabled[disabled]:hover,
button.sc-btn-border:disabled[disabled]:focus,
button.sc-btn-border:disabled[disabled]:active {
  border-color: #666;
  color: #666;
}
a.sc-btn--sm,
button.sc-btn--sm {
  font-size: 1em;
  padding-top: 0.675em;
  padding-bottom: 0.675em;
}
a.sc-btn--lg,
button.sc-btn--lg {
  font-size: 1.25em;
  padding-top: 0.875em;
  padding-bottom: 0.875em;
}
a.sc-btn--narrow,
button.sc-btn--narrow {
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
}
a.sc-btn--wide,
button.sc-btn--wide {
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
}
@media only screen and (min-width: 992px) {
  a.sc-btn--wide,
  button.sc-btn--wide {
    padding-left: 3em;
    padding-right: 3em;
  }
}
a.sc-btn--full,
button.sc-btn--full {
  display: block;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}
.sc-btn--forward:after {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 120%;
  margin-left: 12px;
}
.sc-btn--backward:before {
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 120%;
  margin-right: 12px;
}
.sc-btn--email:before {
  content: "\f0e0";
  font-family: "FontAwesome";
  font-size: 120%;
  margin-right: 12px;
}
.sc-btn--wishlist:before {
  content: "\f06b";
  font-family: "FontAwesome";
  font-size: 120%;
  margin-right: 12px;
}
a.video-thumb {
  display: inline-block;
  position: relative;
  text-decoration: none;
  outline: none;
}
a.video-thumb:after {
  font-family: "FontAwesome";
  font-size: 6em;
  color: rgba(19,19,20,0.7);
  text-align: center;
  content: "\f04b";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  margin: auto;
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
a.video-thumb:before {
  opacity: 0;
  content: "Watch Video";
  font-size: 2em;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a.video-thumb:after {
  color: #000;
  -moz-transform: translate(-90%,-50%);
  -ms-transform: translate(-90%,-50%);
  -webkit-transform: translate(-90%,-50%);
  transform: translate(-90%,-50%);
}
a.video-thumb:before {
  opacity: 1;
  -moz-transform: translate(-10%,-50%);
  -ms-transform: translate(-10%,-50%);
  -webkit-transform: translate(-10%,-50%);
  transform: translate(-10%,-50%);
}
a.video-thumb:active:after {
  color: rgba(19,19,20,0.7);
}
.page-content a.sc-btn-txt,
.entry-content a.sc-btn-txt,
.archive-description a.sc-btn-txt {
  text-decoration: none;
}
.page-content a.sc-btn-txt:hover,
.page-content a.sc-btn-txt:focus,
.entry-content a.sc-btn-txt:hover,
.entry-content a.sc-btn-txt:focus,
.archive-description a.sc-btn-txt:hover,
.archive-description a.sc-btn-txt:focus {
  color: #000;
}
.page-content a.sc-btn-bg,
.entry-content a.sc-btn-bg,
.archive-description a.sc-btn-bg {
  text-decoration: none;
}
.page-content a.sc-btn-bg:hover,
.page-content a.sc-btn-bg:focus,
.entry-content a.sc-btn-bg:hover,
.entry-content a.sc-btn-bg:focus,
.archive-description a.sc-btn-bg:hover,
.archive-description a.sc-btn-bg:focus {
  color: #FFF;
}
.page-content a.sc-btn-border,
.entry-content a.sc-btn-border,
.archive-description a.sc-btn-border {
  text-decoration: none;
}
.section-content a.sc-btn-txt,
.section-content a.sc-btn-bg,
.section-content a.sc-btn-border {
  text-decoration: none;
}
#footer-top .sc-btn-txt {
  font-size: 1.125em;
}
.single-product div.product .additional_product_actions .sc-btn--email,
.single-product div.product .additional_product_actions .sc-btn--wishlist {
  text-transform: none;
}
.woocommerce-store-notice {
  background-color: rgba(51,51,51,0.85) !important;
  color: #FFF !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
}
.product-beta-row {
  margin: 35px 0;
  position: relative;
}
.product-beta-row>.content {
  position: relative;
  padding: 0 !important;
}
.product-beta-row>.content .price {
  color: #38b0cf;
}
.product-beta-row>.content .price ins {
  text-decoration: none;
}
.product-beta-row>.content .content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 20px;
  padding-bottom: 10%;
}
.product-beta-row img {
  display: block;
}
.product-beta-row h2 {
  margin: 0 !important;
}
.product.type-product {
  padding-top: 30px;
}
.row-cta {
  margin-top: 40px;
}
.ehd-holder {
  background-color: ;
}
.ehd {
  padding: 10px;
  text-align: center;
}
.ehd-holder h1,
.ehd-holder h2,
.ehd-holder h3 {
  color: #fff;
}
.ehd-holder * {
  color: #ddd;
}
.ehd-holder .info {
  font-size: smaller;
  font-style: italic;
  font-weight: 300;
}
.thosmoser-page-navi >ul {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 15px;
}
.thosmoser-page-navi >ul li {
  padding: 0px 10px;
}
.thosmoser-page-navi >ul li:hover a {
  text-decoration: underline;
}
.page-template-summer-landing section.holidayProduct__section,
.page-template-summer-landing .module-full-content {
  padding: 0px;
  width: 1140px !important;
}
a.woocommerce-store-notice__dismiss-link {
  display: none;
}
section#section-1 {
  margin-top: 25px;
}
#qrButton1 {
  margin: 0;
}
#qrButton1 a,
#ArButton a,
#qrButton2 a {
  background: url(/wp-content/uploads/AR_Icon_Web.png) left center/50px 50px no-repeat !important;
  border: solid 1px;
  border-radius: 0;
  text-shadow: none;
  font-weight: 100;
  text-decoration: none;
  padding: 10px 10px 10px 50px;
  width: 65%;
  max-width: 240px;
  margin: 19px auto 0 0;
}
@media only screen and (min-width: 900px) {
  #qrButton1 a,
  #ArButton a,
  #qrButton2 a {
    margin: 19px 0 0 auto;
  }
}
#qrButton2 {
  margin-left: 0;
}
#qrButton2 a {
  border: none;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
  padding: 10px 0px 10px 41px;
  color: #334254;
}
#qrButton2 a:hover {
  opacity: .8;
}
#qrButton1.desktop {
  display: none;
}
@media only screen and (min-width: 800px) {
  #qrButton1.desktop {
    display: block;
  }
}
#ArButton.mobile {
  display: block;
}
@media only screen and (min-width: 800px) {
  #ArButton.mobile {
    display: none;
  }
}
.module-section {
  margin-bottom: 40px;
}
.module-section a {
  text-decoration: none;
  color: #000;
}
.module-section a.btn {
  border: 2px solid #000;
  padding: .7em 1.5em;
  background-color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-radius: 0;
  margin: .5em;
}
.module-section a.btn:hover {
  text-decoration: underline;
}
.module-section a.cta-lg {
  font-size: 120% !important;
}
.module-section.sp-deep {
  margin-bottom: 80px;
}
.module-section.sp-shallow {
  margin-bottom: 20px;
}
.module-section.sp-hairline {
  margin-bottom: 1px;
}
.module-section.sp-none {
  margin-bottom: 0;
}
.module-section.lt-gray {
  background-color: #F7F7F7;
}
.module-section.black {
  background-color: #000;
}
.module-section.charcoal {
  background-color: #333;
}
.module-section.hide {
  display: none;
}
@media only screen and (min-width: 768px) {
  .module-section.mobile-only {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .module-section.mobile-hide {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .module-section.desktop-only {
    display: none;
  }
}
.caro {
  overflow: hidden;
  position: relative;
}
.caro-holder {
  overflow: hidden;
  position: relative;
  min-height: 100px;
}
.caro .slide {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in;
}
.caro .slide.on {
  opacity: 1;
  z-index: 200;
}
.caro .slide img {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.caro .slide.show-full-image img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  transform: translate(0%,0%);
  Xborder: 10px solid red;
  width: 100%;
  height: 100%;
}
.ctrls {
  position: absolute;
  z-index: 300;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.caro.num-1 .ctrls {
  display: none;
}
.ctrl {
  width: 15px;
  height: 15px;
  margin: 5px;
  border: 1px solid #fff;
  border-radius: 100px;
  display: inline-block;
  cursor: pointer;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
.ctrl.on {
  background-color: #fff;
}
.slide .content {
  position: absolute;
  z-index: 100;
}
.slide .content a {
  text-transform: uppercase;
}
.slide.left .content {
  left: 20px;
}
.slide.right .content {
  right: 20px;
}
.slide.center .content {
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.slide.bottom .content {
  bottom: 20px;
}
.slide.low .content {
  bottom: 20%;
}
.slide.middle .content {
  top: 50%;
}
.slide.high .content {
  top: 20%;
}
.slide.top .content {
  top: 0;
}
.slide.middle.center .content {
  transform: translate(-50%,-50%);
}
.slide.middle.right .content,
.slide.middle.left .content {
  transform: translateY(-50%);
}
.slide.high.right .content {
  right: 20px;
}
.slide.top.right .content {
  right: 20px;
}
.slide.black .content * {
  color: #000 !important;
  margin: 0 !important;
}
.slide.white .content * {
  color: #fff !important;
  margin: 0 !important;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
.slide .content h2,
.slide .content h3 {
  font-weight: 700 !important;
}
.slide .content h2 {
  font-size: 3.5vw;
}
.slide.txt-lg .content h2 {
  font-size: 5vw;
}
.slide.txt-sm .content h2 {
  font-size: 2vw;
}
.slide .content h3 {
  font-size: 3.5vw;
}
.slide.txt-lg .content h3 {
  font-size: 4vw;
}
.slide.txt-sm .content h3 {
  font-size: 3vw;
}
.slide .content h4 {
  font-size: 2.5vw;
}
.slide.txt-lg .content h4 {
  font-size: 3vw;
}
.slide.txt-sm .content h4 {
  font-size: 2vw;
}
.slide.linked {
  cursor: pointer;
}
.caro-content {
  XXborder: 1px solid #dedede;
  box-sizing: border-box;
  padding: 2em;
}
.caro-content a {
  text-decoration: underline;
}
@media (max-width: 759px) {
  .slide .content p {
    display: none;
  }
  .slide .content h2 {
    font-size: 6vw;
  }
  .slide .content h3 {
    font-size: 5vw;
  }
}
.module-testimonials {
  padding: 4em;
}
.module-testimonials blockquote {
  font-family: "DIN W01 Cond Medium";
  text-transform: uppercase;
  border: none;
  padding: 0;
}
.module-testimonials blockquote p {
  font-size: 1.313em;
  line-height: 1.333;
  position: relative;
  padding-left: 0.75em;
}
.module-testimonials blockquote p:before,
.module-testimonials blockquote p:after {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.module-testimonials blockquote p:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 150%;
  content: "\201C";
}
.module-testimonials blockquote p:after {
  content: "\201D";
}
.module-testimonials blockquote small {
  font-size: 1em;
}
.module-testimonials .section-footer {
  text-align: right;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .module-testimonials blockquote p {
    font-size: 2em;
  }
}
@media only screen and (min-width: 992px) {
  .module-testimonials blockquote p {
    font-size: 2.35em;
  }
}
.module-product-list .section-header {
  text-align: center;
}
.module-featured-content .section-header {
  text-align: center;
}
.module-featured .section-header {
  margin-top: 0.675em;
  margin-bottom: 0.5em;
}
.module-featured .section-title {
  margin-bottom: 0.35em;
}
.module-featured .section-featured-content {
  margin-top: 0.675em;
  margin-bottom: 0.675em;
}
.module-featured .section-featured-content img {
  display: block;
}
.module-featured .product-title {
  color: #666;
  font-size: 1em;
  margin-top: 1em;
  margin-bottom: 0;
  line-height: 1.3;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.module-featured a {
  text-decoration: none;
}
.module-featured a:hover .product-title,
.module-featured a:focus .product-title {
  color: #000;
}
@media only screen and (min-width: 768px) {
  .module-featured .section-header {
    margin-bottom: 1em;
  }
  .module-featured .section-featured-row {
    margin-left: -45px;
    margin-right: -45px;
  }
  .module-featured .section-featured-content {
    padding-left: 45px;
    padding-right: 45px;
    margin-top: 0.875em;
    margin-bottom: 0.875em;
  }
}
@media only screen and (min-width: 992px) {
  .module-featured .section-featured-content {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.bundles a {
  text-decoration: underline !important;
}
.bundles h2 {
  margin-bottom: 0;
}
.bundles h3 {
  margin-top: 0;
}
.price-discounted {
  color: #ccc;
  text-decoration: line-through;
  margin-right: .5em;
}
.after-none {
  margin-bottom: 0 !important;
}
.after-reduced {
  margin-bottom: 2em !important;
}
.before-none {
  margin-top: 0 !important;
}
.before-reduced {
  margin-top: 2em !important;
}
.cart {
  margin-top: 1em;
}
.module-full-content a {
  text-decoration: underline;
}
.module-full-content.ks {
  margin-top: 20px;
  padding-top: 0;
  max-width: 550px;
}
.module-full-content.ks h2 {
  font-family: 'Noe Display', serif;
  text-transform: none;
  font-size: 24px;
  margin: .2em auto !important;
  width: 80%;
}
.module-full-content.ks a {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .module-full-content.ks {
    margin-top: 40px;
    padding-top: 20px;
  }
  .module-full-content.ks h2 {
    font-size: 3vw;
    width: auto;
  }
}
.BGF_Yes {
  background-color: #ddd;
  padding-top: 20px;
  padding-bottom: 30px;
}
.BGF_Yes.space-xs-normal,
.BGF_Yes.space-xs-normal:last-of-type {
  margin: 0px;
}
.BGF_Yes .gform_wrapper {
  max-width: 400px;
}
.BGF_Yes .newsletter-form .gform_footer {
  width: 33%;
}
.BGF_Yes .newsletter-form .gform_footer input[type="submit"] {
  max-width: none;
  border-bottom: 1px solid #666;
}
.BGF_Yes .newsletter-form .gform_footer input[type="submit"]:hover {
  background: #fff;
}
.BGF_Yes input[type="email"] {
  background: transparent;
  border-bottom: 1px solid #666;
  padding-left: 10px;
}
.BGF_Yes h3 {
  font-size: 2.35em;
  font-family: "DIN W01 Cond Medium";
}
.variations-pics {
  width: 800px;
  height: 800px;
  position: relative;
}
.variations-pics img {
  width: 800px;
  height: 800px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .5s ease-in .3s;
}
.variations-pics img.on {
  opacity: 1;
  z-index: 200;
  transition: opacity .5s ease-in;
}
.variation-textile img,
.variation-wood img {
  width: 60px;
  height: 60px;
  border: 5px solid #FFF;
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
}
.variation-swatches {
  margin-top: 100px;
}
.variation-swatches > div img.on {
  border-color: #000;
  border: 0;
}
.module-video-cta .row-flex {
  margin-left: 0;
  margin-right: 0;
}
.module-video-cta .flex-item {
  padding-left: 0;
  padding-right: 0;
}
.module-video-cta .video-cta-image a {
  width: 100%;
}
.module-video-cta .video-cta-image img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.module-video-cta .video-cta-content {
  margin-top: 1em;
}
.module-video-cta .video-thumb-white:after {
  font-family: "FontAwesome";
  font-size: 6em;
  color: white;
  text-align: center;
  content: "\f04b";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  margin: auto;
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.module-video-cta.no-play-btn .video-thumb-white:after {
  content: "";
}
@media only screen and (min-width: 768px) {
  .module-video-cta .video-cta-inner {
    max-width: 95%;
  }
  .module-video-cta .video-cta-inner-sm-right {
    margin-left: auto;
  }
  .module-video-cta .video-cta-content {
    margin-top: 0;
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 15px;
  }
}
@media only screen and (min-width: 1200px) and (min-width: 1530px) {
  .module-video-cta .video-cta-inner {
    zoom: 1;
    margin-left: auto;
    margin-right: auto;
    max-width: 1366px;
  }
  .module-video-cta .video-cta-inner:after,
  .module-video-cta .video-cta-inner:before {
    content: " ";
    display: table;
  }
  .module-video-cta .video-cta-inner:after {
    clear: both;
  }
}
.module-columns .section-content {
  text-transform: none !important;
}
.module-columns .section-content p {
  text-transform: none !important;
}
.module-product-list .section-header,
.module-category-list .section-header {
  margin-top: 0.675em;
  margin-bottom: 0.5em;
}
.module-product-list .section-title,
.module-category-list .section-title {
  margin-bottom: 0.35em;
}
.module-product-list .product-list-wrapper ul.products,
.module-category-list .product-list-wrapper ul.products {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.module-columns.header-false .columns-col:first-child .columns-col-inner-content {
  margin-top: 2em;
}
.module-columns .columns-col:nth-child(even) .columns-col-inner-nocontent {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.module-columns .columns-col:first-child .columns-col-inner-nocontent {
  border-top: 1px solid #F2F2F2;
}
.module-columns .columns-col:last-child .columns-col-inner-nocontent {
  border-bottom: 1px solid #F2F2F2;
}
.module-columns .columns-col-link {
  text-decoration: none;
}
.module-columns .columns-col-link:hover .columns-cta,
.module-columns .columns-col-link:focus .columns-cta {
  color: #000;
}
.module-columns .columns-col-inner-nocontent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.module-columns .columns-col-inner-nocontent .columns-col-img,
.module-columns .columns-col-inner-nocontent .columns-col-content {
  width: 50%;
  float: left;
  display: inline-block;
}
.module-columns .columns-col-inner-nocontent .columns-col-img img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.module-columns .columns-col-inner-nocontent .columns-title {
  font-size: 1.125em;
}
.module-columns .columns-col-inner-nocontent .columns-title,
.module-columns .columns-col-inner-nocontent .columns-cta {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.module-columns .columns-col-inner-nocontent .columns-cta {
  font-size: 0.875em;
}
.module-columns .columns-col-inner-content {
  margin-top: 1em;
  margin-bottom: 2em;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.module-columns .columns-col-inner-content .columns-col-img {
  margin-bottom: 1em;
  width: 120px;
  float: left;
  display: inline-block;
}
.module-columns .columns-col-inner-content .columns-col-img img {
  width: 120px;
  height: 120px;
}
.page-template-mfl_landing_page .flex-item {
  padding-left: 35px;
  padding-right: 35px;
}
.page-template-mfl_home_page {
  color: #334254;
}
.page-template-mfl_landing_page {
  color: #334254;
}
.page-template-mfl_landing_page a {
  color: #334254;
}
.page-template-mfl_landing_page a:hover {
  text-decoration: underline;
}
.page-template-mfl_landing_page h3 {
  font-size: 28px;
}
.page-template-mfl_landing_page h2 {
  font-size: 36px;
  letter-spacing: 0.5px;
  color: #334254;
}
.page-template-mfl_landing_page h3,
.page-template-mfl_landing_page h2 {
  font-family: 'Noe Display', serif;
  font-weight: normal;
  text-transform: none;
}
.page-template-mfl_landing_page h2.homeH {
  font-family: "DIN W01 Regular";
  letter-spacing: 3px;
  font-size: 62px;
}
.page-template-mfl_landing_page h3 a {
  margin-top: 30px;
  font-weight: 700;
}
.simple.module-columns .columns-col-inner-content .columns-col-img {
  width: 100%;
}
.simple.module-columns .columns-col-inner-content .columns-col-img img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.simple.module-columns .section-content p {
  margin: 20px 0px 60px 0px;
}
.simple.module-columns .columns-col-inner-content .columns-col-content .columns-title-wrapper {
  border: none;
  text-align: center;
}
.module-columns .columns-col-inner-content .columns-col-content .columns-title-link,
.module-columns .columns-col-inner-content .columns-col-content .columns-title-wrapper {
  height: 120px;
  border: 1px solid #F2F2F2;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.module-columns .columns-col-inner-content .columns-col-content .columns-title {
  max-height: 120px;
  vertical-align: middle;
  display: inline-block;
}
.module-columns .columns-col-inner-content .columns-col-content .section-content {
  clear: both;
}
.module-columns .section-header {
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
.module-columns .columns-title {
  margin: 0 0 0.35em;
}
.module-columns .columns-cta {
  margin: 0;
  color: #666;
  text-transform: uppercase;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
@media only screen and (min-width: 481px) {
  .module-columns .columns-col-inner-nocontent .columns-title {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 768px) {
  .module-columns.header-false .columns-col:first-child .columns-col-inner-content {
    margin-top: 1em;
  }
  .module-columns .columns-col:first-child .columns-col-inner-content {
    margin-top: 1em;
  }
  .module-columns .columns-col:first-child .columns-col-inner-nocontent {
    border-top: none;
  }
  .module-columns .columns-col:last-child .columns-col-inner-nocontent {
    border-bottom: none;
  }
  .module-columns .columns-col-inner-nocontent {
    display: block;
  }
  .module-columns .columns-col-inner-nocontent .columns-col-img,
  .module-columns .columns-col-inner-nocontent .columns-col-content {
    width: 100%;
    float: none;
  }
  .module-columns .columns-col-inner-nocontent .columns-title {
    font-size: 1.375em;
    margin-left: 0;
    max-width: none;
  }
  .module-columns .columns-col-inner-nocontent .columns-cta {
    font-size: 1em;
    max-width: none;
    margin-left: 0;
  }
  .module-columns .columns-col-inner-content {
    margin-top: 0;
    margin-bottom: 0;
    max-width: none;
    margin-left: 0;
  }
  .module-columns .columns-col-inner-content .columns-col-img {
    width: auto;
    float: none;
    display: block;
  }
  .simple.module-columns .columns-col-inner-content .columns-col-img img {
    width: 100%;
  }
  .page-template-mfl_landing_page .simple h2 {
    text-align: left;
  }
  .module-columns .columns-col-inner-content .columns-col-img img {
    width: auto;
    height: auto;
  }
  .module-columns .columns-col-inner-content .columns-col-content .columns-title-link,
  .module-columns .columns-col-inner-content .columns-col-content .columns-title-wrapper {
    height: auto;
    border: none;
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
  }
  .module-columns .columns-col-inner-content .columns-col-content .columns-title {
    max-height: none;
    display: block;
  }
  .module-columns .section-header {
    margin-top: 0.675em;
    margin-bottom: 1em;
  }
  .module-columns .columns-col-link {
    display: inline-block;
  }
  .module-columns .columns-col-img {
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
  .module-columns .columns-col-content {
    margin-top: 0.5em;
    margin-bottom: 1em;
  }
  .module-product-list .section-header,
  .module-category-list .section-header {
    text-align: center;
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 992px) {
  .module-columns .section-header {
    margin-bottom: 2em;
  }
  .module-category-list .product-list-wrapper {
    margin-top: -1em;
    margin-bottom: -1em;
  }
  .module-category-list .woocommerce ul.products li {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 480px) {
  .page-template-mfl_landing_page h2.homeH {
    font-size: 25px;
    text-align: center;
  }
  .simple.module-columns .section-content p {
    text-align: center;
  }
}
.module-full-video {
  position: relative;
}
.module-full-video .ks-tagline {
  font-family: 'Noe Display', serif;
  text-transform: none;
  font-size: 4.5vw;
  margin: .2em 0 !important;
  color: #fff;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999999;
}
.module-full-video .row {
  height: 100%;
}
.module-full-video .row .col {
  height: 100%;
}
.module-full-video .row .col figure.video-wrapper {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100px;
}
.module-full-video.container-fluid {
  margin: 0;
  padding: 0;
}
.module-full-video.narrow {
  height: 400px;
}
.module-full-video .wp-caption-text {
  display: block;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .module-full-video .wp-caption-text {
    max-width: none;
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) {
  #inner-content .page-content + .module-full-video,
  #inner-content.no-sidebars .page-content + .custom-module-wrapper .module-full-video:first-child {
    margin-top: 5em !important;
  }
}
.module-accordion .section-content {
  margin-bottom: 2em;
}
.module-accordion .section-content h1:first-child,
.module-accordion .section-content h2:first-child,
.module-accordion .section-content h3:first-child {
  margin-top: 0.15em;
}
.module-accordion .accordion-item {
  margin-bottom: 1em;
}
.module-accordion .accordion-item--title {
  background-color: #F2F2F2;
  border: 1px solid #CCC;
  padding: 1em 2.5em 1em 1em;
  margin: -1px 0 0;
  cursor: pointer;
  position: relative;
}
.module-accordion .accordion-init .accordion-item--title:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 2em;
  font-weight: normal;
  position: absolute;
  top: 50%;
  right: 0.5em;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.module-accordion .accordion-open .accordion-item--title:after {
  content: "\f106";
}
.module-accordion .accordion-item--content {
  padding: 1em;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.module-accordion .gallery-columns-3 .gallery-item,
.module-accordion .gallery-columns-4 .gallery-item,
.module-accordion .gallery-columns-5 .gallery-item,
.module-accordion .gallery-columns-6 .gallery-item,
.module-accordion .gallery-columns-7 .gallery-item,
.module-accordion .gallery-columns-8 .gallery-item,
.module-accordion .gallery-columns-9 .gallery-item {
  width: 33.333%;
}
@media only screen and (min-width: 768px) {
  .module-accordion .section-content {
    margin-bottom: 2em;
  }
  .module-accordion .section-content h1:first-child,
  .module-accordion .section-content h2:first-child,
  .module-accordion .section-content h3:first-child {
    margin-top: 0.15em;
  }
  .module-accordion .accordion-item {
    margin-bottom: 1em;
  }
  .module-accordion .accordion-item--title {
    background-color: #F2F2F2;
    border: 1px solid #CCC;
    padding: 1em 2.5em 1em 1em;
    margin: -1px 0 0;
    cursor: pointer;
    position: relative;
  }
  .module-accordion .accordion-init .accordion-item--title:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 2em;
    font-weight: normal;
    position: absolute;
    top: 50%;
    right: 0.5em;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .module-accordion .accordion-open .accordion-item--title:after {
    content: "\f106";
  }
  .module-accordion .accordion-item--content {
    padding: 1em;
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
  }
  .module-accordion .gallery-columns-4 .gallery-item,
  .module-accordion .gallery-columns-5 .gallery-item,
  .module-accordion .gallery-columns-6 .gallery-item,
  .module-accordion .gallery-columns-7 .gallery-item,
  .module-accordion .gallery-columns-8 .gallery-item,
  .module-accordion .gallery-columns-9 .gallery-item {
    width: 25%;
  }
}
.module-ks2-row h2 {
  font-family: 'Noe Display', serif;
  text-transform: none;
  font-size: 250%;
  margin-top: 0;
}
.module-ks2-row h3 {
  font-size: 80%;
  font-weight: 300;
  margin-top: 0;
}
.module-ks2-row .content a {
  display: inline-block;
  padding: .7em 1.1em;
  border: 1px solid #000;
  margin-top: .5em;
}
.module-ks2-row .content a:hover {
  background-color: #F7F7F7;
}
@media only screen and (max-width: 767px) {
  .module-ks2-row .col-content {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .admin-bar .module-ks2-row .col {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .admin-bar .module-ks2-row .col.col-pic {
    justify-content: flex-start;
    perspective: 1000px;
  }
  .admin-bar .module-ks2-row .col.col-pic img {
    transform: rotateY(10deg);
  }
  .admin-bar .module-ks2-row .left .col.col-pic img {
    transform: rotateY(-10deg);
  }
}
.module-ks2-showroom .locator {
  padding: 40px 0;
  text-align: center;
}
.module-ks2-showroom .locator h3 {
  font-size: 1vw;
  margin: 0;
  opacity: 0;
}
.module-ks2-showroom .locator h1 {
  font-family: 'Noe Display', serif;
  text-transform: none;
  font-size: 4.5vw;
  margin: .2em 0 !important;
}
.module-ks2-showroom .locator p {
  font-size: .9vw;
}
.module-ks2-showroom .locator.found h3 {
  opacity: 1;
}
.module-ks2-showroom #pic_holder {
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  margin-right: 15px;
  min-height: 200px;
}
.module-ks2-showroom #pic_holder .view-showroom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  max-width: 200px;
  max-height: 3em;
  transform: translate(-50%,-50%);
  background-color: rgba(255,255,255,0.4);
}
.module-ks2-showroom .row.row-flex {
  min-height: 500px;
}
.module-ks2-showroom .left-col {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.module-ks2-showroom .left-col .flex-item {
  flex-grow: 1;
}
.module-ks2-showroom .left-col .flex-item:first-child {
  margin-bottom: 7.5px;
}
.module-ks2-showroom .left-col .flex-item:last-child {
  margin-top: 7.5px;
}
.module-ks2-showroom .map {
  position: relative;
}
.module-ks2-showroom .map .acf-map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.module-ks2-showroom .map .acf-map .marker {
  display: none;
}
.module-ks2-showroom .map .acf-map img {
  max-width: inherit !important;
}
.module-ks2-showroom .coupon.map div.content {
  opacity: 0;
}
.module-ks2-showroom .coupon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #F7F7F7;
  text-align: center;
}
.module-ks2-showroom .coupon h3 {
  font-family: 'Noe Display', serif;
  text-transform: none;
  font-size: 2.5vw;
  margin-bottom: 0;
}
.module-ks2-showroom .coupon h2 {
  font-weight: 900;
  font-size: 4vw;
  margin-top: 5px;
}
.module-ks2-showroom .coupon p {
  font-size: .8em;
}
.module-ks2-showroom .coupon .legal {
  font-size: .6em;
  font-weight: 300;
}
.module-ks2-showroom .coupon .code {
  font-weight: bold;
  font-size: larger;
}
.module-ks2-showroom .consult {
  margin: 0;
  margin-top: 15px;
  background-color: #F7F7F7;
  padding: 15px;
  text-align: center;
}
.module-ks2-showroom .consult h2,
.module-ks2-showroom .consult a {
  line-height: 60px;
  display: inline-block;
  margin: 0 10px;
}
.module-ks2-showroom .consult h2 {
  font-family: 'Noe Display', serif;
  text-transform: none;
  font-size: 3vw;
}
.module-ks2-showroom.container-fluid {
  padding: 30px !important;
}
@media only screen and (max-width: 479px) {
  .module-ks2-showroom .locator {
    padding: 20px 0;
  }
  .module-ks2-showroom .locator h3 {
    font-size: 14px;
  }
  .module-ks2-showroom .locator h1 {
    font-size: 24px;
  }
  .module-ks2-showroom .left-col {
    margin-top: 15px;
  }
  .module-ks2-showroom .left-col .coupon {
    padding: 15px;
  }
  .module-ks2-showroom .left-col .coupon h3 {
    font-size: 20px;
  }
  .module-ks2-showroom .left-col .coupon h2 {
    font-size: 30px;
  }
}
.module-ks2-videoloop {
  position: relative;
  height: 150px;
}
.module-ks2-videoloop .ks-tagline {
  font-family: 'Noe Display', serif;
  text-transform: none;
  font-size: 24px;
  margin: .2em 0 !important;
  color: #fff;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
}
.module-ks2-videoloop .row {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.module-ks2-videoloop .row video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: translateY(-20%);
}
.module-ks2-videoloop .row .arrow {
  width: 4vw;
  height: 4vw;
  max-width: 100px;
  max-height: 100px;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .module-ks2-videoloop {
    margin-left: -15px;
    margin-right: -15px;
  }
  .module-ks2-videoloop .arrow {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .module-ks2-videoloop {
    height: 350px;
  }
  .module-ks2-videoloop .ks-tagline {
    font-size: 30px;
  }
}
@media only screen and (min-width: 993px) {
  .module-ks2-videoloop {
    height: 50vh;
  }
  .module-ks2-videoloop .ks-tagline {
    font-size: 3.5vw;
  }
}
.module-ks2-full-image {
  position: relative;
}
.module-ks2-full-image .pic {
  width: 100%;
  height: 80vw;
  background-position: 50% 50%;
  background-size: cover;
}
.module-ks2-full-image .content {
  background-color: rgba(0,0,0,0.7);
}
.module-ks2-full-image .content * {
  color: #fff;
}
.module-ks2-full-image .content {
  padding: 5px 10px;
}
.module-ks2-full-image .content h3 {
  margin-top: 0;
}
.module-ks2-full-image .content *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .module-ks2-full-image .pic {
    height: 50vw;
  }
  .module-ks2-full-image .content {
    font-size: 80%;
    padding: 15px;
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 20%;
    width: 30%;
    transform: translate(-50%,-50%);
  }
  .module-ks2-full-image .content a {
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
  }
  .module-ks2-full-image .content a:hover {
    color: #fff;
  }
  .module-ks2-full-image .content.right {
    left: auto;
    right: 20%;
    transform: translate(50%,-50%);
  }
  .module-ks2-full-image .link {
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 150%;
    padding: 1em;
  }
  .module-ks2-full-image .link a {
    color: #fff;
  }
  .module-ks2-full-image .link:after {
    background-image: url(/images/arrow-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: inline-block;
    width: 2em;
    height: 1.4em;
    position: relative;
    top: .3em;
    content: " ";
  }
}
@media only screen and (max-width: 767px) {
  .module-ks2-full-image .content h3 {
    margin-top: .5em;
  }
  .module-ks2-full-image .content p:last-child {
    padding-bottom: 10px;
  }
  .module-ks2-full-image .link {
    background-color: rgba(0,0,0,0.7);
    padding: 5px 10px;
    padding-bottom: 10px;
  }
  .module-ks2-full-image .link * {
    color: #fff;
  }
  .module-ks2-full-image > div {
    margin-bottom: 2em;
  }
}
.module-ks2-full-image + .module-ks2-full-image {
  margin-top: -39px;
}
.module-secondary-banner.container-fluid .row {
  margin-left: -45px;
  margin-right: -45px;
}
.module-secondary-banner.container-fluid .row .sec-banner-caption {
  margin: 10px 30px;
  font-size: smaller;
}
.module-main-banner .main-banner-image {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.module-main-banner .main-banner-spacer {
  padding-top: 42%;
}
.module-main-banner .main-banner-content {
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
}
.module-main-banner .main-banner-title {
  margin: 0 0 0.35em;
}
.module-sec-banner .sec-banner-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec-banner-image img {
  margin: auto;
}
.module-sec-banner .sec-banner-spacer {
  padding-top: 42%;
}
.module-sec-banner .sec-banner-caption {
  margin-top: 1em;
  text-align: right;
}
.module-sec-banner .sec-banner-caption a {
  text-decoration: none;
}
.module-sec-banner .sec-banner-caption a .wp-caption-text {
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.module-sec-banner .sec-banner-caption a:hover .wp-caption-text,
.module-sec-banner .sec-banner-caption a:focus .wp-caption-text {
  color: #000;
}
.promotional-banner {
  background: #F2F2F2;
  text-align: center;
}
.promotional-banner .promotional-banner-txt {
  font-family: "DIN W01 Medium";
  font-size: 0.625em;
  line-height: 1.2;
  text-transform: uppercase;
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.promotional-banner a.promotional-banner-txt {
  color: #000;
}
@media only screen and (min-width: 768px) {
  .module-main-banner .main-banner-content {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .promotional-banner .promotional-banner-txt {
    font-size: 0.889em;
    line-height: 1.3125;
    padding-top: 0.35em;
    padding-bottom: 0.35em;
  }
}
@media only screen and (min-width: 1200px) {
  .module-main-banner + .space-xs-normal,
  .module-main-banner + .space-sm-normal,
  .module-main-banner + .space-md-normal,
  .module-main-banner + .space-lg-normal {
    margin-top: 5em !important;
  }
  .module-main-banner .main-banner-inner {
    position: relative;
  }
  .module-main-banner.module-width--content .main-banner-content.xpos-left .main-banner-content-inner {
    padding-left: 2em;
  }
  .module-main-banner.module-width--content .main-banner-content.xpos-right .main-banner-content-inner {
    padding-right: 2em;
  }
  .module-main-banner.module-width--full .main-banner-content.xpos-left .main-banner-content-inner {
    padding-left: 1em;
  }
  .module-main-banner.module-width--full .main-banner-content.xpos-right .main-banner-content-inner {
    padding-right: 1em;
  }
  .module-main-banner .main-banner-content {
    position: absolute;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }
  .module-main-banner .main-banner-content.xpos-left {
    text-align: left;
  }
  .module-main-banner .main-banner-content.xpos-center {
    text-align: center;
  }
  .module-main-banner .main-banner-content.xpos-right {
    text-align: right;
  }
  .module-main-banner .main-banner-content.ypos-top {
    top: 9%;
  }
  .module-main-banner .main-banner-content.ypos-middle {
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .module-main-banner .main-banner-content.ypos-bottom {
    bottom: 9%;
  }
}
.main-banner-cta,
.main-banner-content,
.main-banner-content-inner {
  cursor: pointer;
}
.module-main-banner .mbLinkH2 .main-banner-title {
  margin: 0px;
}
.module-imagegrid {
  font-size: 0;
}
.module-imagegrid img {
  box-sizing: border-box;
  height: auto;
  max-width: none;
  display: none;
}
.module-imagegrid img:last-child {
  border-right: 0 !important;
}
.module-imagegrid .sp-hairline img {
  border-right: 1px solid white;
}
.module-imagegrid .sp-thin img {
  border-right: 2px solid white;
}
.module-imagegrid .sp-medium img {
  border-right: 5px solid white;
}
.module-imagegrid .sp-wide img {
  border-right: 15px solid white;
}
.holiday-header > div {
  box-sizing: border-box;
}
.holiday-header > div h1,
.holiday-header > div h2,
.holiday-header > div h3 {
  margin: .1em !important;
  padding: 0 !important;
  line-height: 1;
}
.holiday-header > div h1 {
  font-size: 48px;
}
.holiday-header > div h2 {
  font-size: 18px;
}
.holiday-header > div h3 {
  font-size: 16px;
  margin-top: .9em !important;
}
.holiday-header > div p.hol-p {
  margin-top: .8em;
  margin-bottom: 1em;
}
.holiday-header div,
.holiday-header > div * {
  text-align: center !important;
}
.holiday-header-pic {
  XXbox-sizing: border-box;
}
.holiday-header-pic img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.no-pad {
  padding: 0 !important;
}
.hol-col-2 {
  position: relative;
}
.hol-dot {
  text-align: center;
}
.hol-dot img {
  width: 120px;
  height: auto;
  padding: 20px;
  display: inline;
}
.hol-head-red {
  color: ;
  line-height: .8em !important;
  transform: translateY(18%);
}
p.hol-p {
  margin-top: .5em;
  margin-bottom: 0;
}
.hol-btn {
  text-transform: uppercase;
  background-color:  !important;
  border-color:  !important;
  color: #fff !important;
}
.btn-hol-sect {
  margin: 2em 0 !important;
  border: 1px solid  !important;
  color:  !important;
  text-transform: uppercase;
  border-radius: 0 !important;
  padding: .7em 2.5em !important;
}
.btn-hol-sect:hover {
  border-color:  !important;
  background-color:  !important;
  color: #fff !important;
  text-decoration: none !important;
}
.hol-favs {
  width: 85%;
  margin: 0 auto;
  border-bottom: 1px solid #ccc;
  color: #ccc;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  top: 15px;
}
.hol-favs span {
  padding: 0 10px;
  background-color: #fff;
  position: relative;
  top: .5em;
}
.bordered {
  border: 1px solid pink;
}
.hol-sect-content {
  font-size: smaller;
  text-align: center;
  padding: 0 10px;
}
.hol-sect-content p {
  max-width: 750px;
  margin: 0 auto;
}
.hol-sect-dot {
  border-top: 1px solid gray;
  margin-top: 35px;
  text-align: center;
}
.hol-sect-dot img {
  width: 80px;
  height: 80px;
  background-color: #fff;
  padding: 10px;
  position: relative;
  top: -40px;
  display: inline;
}
.hol-header-dot {
  text-align: center;
  padding-bottom: 10px;
}
.hol-header-dot img {
  width: 80px;
  height: 80px;
  display: inline;
}
.hol-price-strike-thr {
  font-size: smaller;
  opacity: .5;
}
.hol-price-now {
  font-size: 11px;
  position: relative;
  top: 3px;
}
.product-cat-hol18 li.product {
  text-align: center;
}
.product-cat-hol18 li.product h2 {
  margin: .1em !important;
  font-size: .95em !important;
}
.product-cat-hol18 li.product a,
.product-cat-hol18 li.product a:hover {
  text-decoration: none !important;
}
.cat-breadcrumb {
  text-align: left !important;
}
.cat-breadcrumb a {
  font-size: smaller;
}
h2.hol-sect-title {
  font-size: 36px !important;
  text-transform: none;
  font-family: 'Noe Display', serif;
  letter-spacing: .03em;
  text-align: center;
}
.prods18 {
  margin-top: 40px;
}
.prods18 h2.hol-sect-title {
  font-size: 32px !important;
}
.prods18 h3.hol-sect-title {
  text-align: center;
  color: #ccc;
  font-size: 16px;
  position: relative;
  width: 85%;
  border-bottom: 1px solid #ccc;
  margin: 0 auto;
}
.prods18 h3.hol-sect-title span {
  padding: 0 10px;
  background-color: #fff;
  position: relative;
  top: .5em;
}
.title-region {
  position: relative;
}
.title-region-hero {
  display: none;
}
.prods18 .prods18 {
  margin-bottom: 20px;
}
.prods18 .prods18 .title-region {
  position: relative;
  top: 30px;
}
.prods18 .prods18 h2.hol-sect-title {
  font-size: 26px !important;
}
@media only screen and (min-width: 768px) {
  li.hol18 > a {
    color:  !important;
  }
  .float-vert h2.hol-sect-title,
  .float-vert p,
  .float-vert a {
    color: #fff !important;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
  }
  .prods18 h2.hol-sect-title {
    font-size: 3.8vw !important;
  }
  .prods18 .hol-sect-content p {
    font-size: 1.7vw !important;
  }
  .prods18 .prods18 h2.hol-sect-title {
    font-size: 3vw !important;
  }
  .title-region-hero {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -40px;
    z-index: 1;
  }
  .title-region-hero img {
    width: 100%;
    height: 100%;
  }
  .holiday-header > div h1 {
    font-size: 6vw;
  }
  .holiday-header > div h2 {
    font-size: 2vw;
  }
  .holiday-header > div h3 {
    font-size: 2.2vw;
    margin-top: .5em !important;
  }
  .holiday-header > div h2.hol-main2-h2 {
    font-size: 3.5vw;
  }
  .hol-col-2 .float {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  .float-vert {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
  }
  .hol-dot img {
    width: 100%;
    height: auto;
    padding: 5px;
    display: block;
  }
  .hol-dot.hol-dot-2 img {
    width: 100px;
    display: inline !important;
    margin-bottom: 10px;
  }
  .hol-prices {
    font-size: smaller;
  }
}
.owl-carousel .caption {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.owl-theme .owl-nav.disabled+.owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
}
.owl-theme.slideshow .owl-dots .owl-dot span {
  box-shadow: 1px 1px 2px 0px rgba(1,1,1,0.2);
  border: 1px solid white;
  background: transparent;
  width: 15px;
  height: 15px;
}
.owl-theme.slideshow .owl-dots .owl-dot.active span,
.owl-theme.slideshow .owl-dots .owl-dot:hover span {
  background: #fff;
}
@media screen and (max-width: 480px) {
  .owl-carousel .caption h2 {
    font-size: 18px;
  }
  .owl-theme.slideshow .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
  }
}
.admin-barXX div.container {
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.admin-barXX section.container {
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.admin-barXX div.row {
  box-shadow: inset 0 0 1px green;
}
.admin-barXX div[class^="col-"] {
  box-shadow: inset 0 0 1px blue;
}
.admin-barXX .admin-only {
  font-size: 14px;
  color: purple;
  display: block;
}
.admin-only {
  display: none;
}
