/*** TYPOGRAPHY ***/
body {
  font-family: neue-haas-grotesk-display, sans-serif;
}

p {
  font-family: schotis-text, serif;
  font-size: 16px;
  font-weight: 400;
}

span {
  font-family: neue-haas-grotesk-display, sans-serif;
}

li {
  font-family: neue-haas-grotesk-display, sans-serif;
}

input {
  font-family: neue-haas-grotesk-display, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: neue-haas-grotesk-display, sans-serif;
  line-height: 1.2;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

:hover {
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #757575;
}

/****** HEADER ******/

#site-header {
  position: fixed;
  height: 80px;
  background-color: #fff;
  left: 0;
  right: 0;
  /*     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); */
  top: 0;
  z-index: 999;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.navbar-item {
  margin: 0.4em;
  width: 100%;
}

.navbar-link {
  color: #000;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  display: flex;
  font-weight: 400;
  align-items: center;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.home-link {
  color: #000;
}

.home-link:focus,
.home-link:hover {
  color: #bbb;
}

.main-logo.hide {
  display: none;
}

.navbar-link {
  font-family: neue-haas-grotesk-display, sans-serif;
  justify-content: center;
  width: 100%;
  padding: 10px 5px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.navbar-link:focus,
.navbar-link:hover {
  color: #757575;
}

.navbar-logo {
  /*   border-radius: 50%; */
  /*   width: 30px;
  height: 30px; */
  /*   margin-right: 0.5em; */
}

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  background-color: #000;
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: #bbb;
}

#site-header.opened .navbar-toggle .icon-bar:first-child,
#site-header.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px;
}

#site-header.opened .navbar-toggle .icon-bar:first-child {
  transform: rotate(45deg);
}

#site-header.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}

#site-header.opened .navbar-toggle .icon-bar:last-child {
  transform: rotate(-45deg);
}

.navbar-menu {
  position: fixed;
  top: 80px;
  bottom: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
}

#site-header.opened .navbar-menu {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
}

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 5px 5px;
}

#site-header.opened .navbar-links {
  padding: 1em;
  max-height: none;
}

.navbar-item.active .navbar-link {
  color: #ce4458;
}

@media screen and (min-width: 700px) {
  .navbar-toggle {
    display: none;
  }

  #site-header .navbar-menu,
  #site-header.opened .navbar-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    display: block;
    height: 100%;
  }

  #site-header .navbar-links,
  #site-header.opened .navbar-links {
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: static;
    flex-direction: row;
    list-style-type: none;
    max-height: max-content;
    width: 100%;
    height: 100%;
  }

  #site-header .navbar-link:last-child {
    margin-right: 0;
  }
}

/**** FOOTER ****/

footer {
  margin-top: 60px;
  margin-bottom: 30px;
}

.footer-content-wrap {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.footer-wrap-upper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-wrap-upper .affiliate-wrap {
  max-width: 480px;
  text-align: center;
}

.footer-wrap-upper .affiliate-wrap p {
  font-size: 12px;
}

.footer-wrap-lower {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #000;
  padding-top: 15px;
}

.footer-menu ul {
  margin: 0;
  padding-left: 0;
  line-height: 1;
  text-align: center;
  margin-bottom: 5px;
}

.footer-menu ul li {
  list-style: none;
}

.footer-menu li {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-menu li:after {
  content: "/";
  padding: 0 10px;
}

.footer-menu li:last-child:after {
  content: "";
}

.footer-menu li a:link,
.footer-menu li a:visited {
  color: #000;
}

.footer-menu li a:hover,
.footer-menu li a:focus {
  color: #757575;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .footer-wrap-upper {
    flex-direction: row;
    justify-content: flex-end;
  }

  .footer-wrap-upper .affiliate-wrap {
    text-align: right;
  }

  .footer-wrap-lower {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .footer-menu ul {
    text-align: left;
    margin-bottom: 0px;
  }

  .footer-copyright {
    text-align: right;
  }
}

/*--- General  ---*/

.site-content {
  margin-top: 120px;
  margin-bottom: 100px;
  padding: 0 15px;
}

/*--- Intro Block ---*/

.section-intro-wrap h1 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-intro-wrap p {
  font-size: 18px;
}

@media screen and (min-width: 700px) {
  .section-intro-wrap h1 {
    font-size: 84px;
    margin-bottom: 0;
  }

  .section-intro-wrap p {
    font-size: 24px;
  }
}

/*--- Section Blocks ---*/

.section-block-wrap {
  margin: 30px auto;
}

.section-block-wrap:after {
  content: "";
  display: block;
  border-bottom: 1px solid #ddd;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  position: relative;
  padding: 0 50px;
}

.section-block-content-wrap,
.section-intro-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  /*   padding: 0 15px; */
}

.section-block-content-wrap h2 {
  font-size: 32px;
  max-width: 660px;
}

.section-block-content-wrap h2.text-normal {
  font-size: 32px;
}

.section-block-content-wrap h2.text-large {
  font-size: 44px;
}

.section-block-wrap.textBlock p {
  margin-bottom: 15px;
}

@media screen and (min-width: 900px) {
  .section-block-content-wrap,
  .section-intro-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/*--- Section Blocks - Slider ---*/

.swiper-button-prev,
.swiper-button-next {
  color: #454545;
  background-color: #f4f4f4;
  padding: 0 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #bbb;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.section-block-content-wrap .swiper-wrapper {
  /*   border-bottom: 1px dotted #bbb; */
}

.section-block-content-wrap .swiper-slide .select-content {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0px;
  border-top: 1px dotted #bbb;
}

.section-block-content-wrap .swiper-slide .select-content {
  font-size: 18px;
}

.section-block-content-wrap .swiper-slide .select-content {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.section-block-content-wrap .swiper-slide-visible {
  z-index: 1000;
}

.section-block-content-wrap .swiper-slide-active .select-content {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.swiper-selects-thumbs .swiper-slide {
  padding: 15px 15px;
  opacity: 0.5;
}

.swiper-selects-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.section-block-content-wrap .swiper-slide h3.select-title-heading {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  /*   letter-spacing: 0.03em; */
}

.section-block-content-wrap .swiper-slide span.select-brand-link {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.section-block-content-wrap .swiper-slide a.select-title:link,
.section-block-content-wrap .swiper-slide a.select-title:visited {
  color: #000;
  text-decoration: none;
}

.section-block-content-wrap .swiper-slide a.select-title:hover,
.section-block-content-wrap .swiper-slide a.select-title:focus {
  color: #bbb;
}

.section-block-content-wrap .swiper-slide .select-family {
  display: flex;
  margin-top: 0px;
  border-top: none;
  border-bottom: none;
  padding: 0px;
}

.slider-nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.slider-button-wrap {
  display: flex;
  margin: 0 -3px;
  margin-top: 15px;
}

.slider-button-wrap .swiper-button-prev,
.slider-button-wrap .swiper-button-next {
  position: initial;
  margin: 0 3px;
}

.slider-pagination-wrap {
  margin-top: 15px;
}

.swiper-pagination-bullet-active {
  background: #96bb31;
}

.slider-pagination-wrap .swiper-pagination {
  position: initial;
}

.section-block-content-wrap .swiper-slide .select-intro-wrap {
  margin-bottom: 0px;
}

.section-block-content-wrap .swiper-slide .select-text {
  margin-bottom: 15px;
}

.section-block-content-wrap .swiper-slide .select-text p {
  font-size: 16px;
}

.section-block-content-wrap .swiper-slide .select-notes-and-links-wrap {
  display: flex;
  flex-direction: column;
}

.section-block-content-wrap
  .swiper-slide
  .select-notes-and-links-wrap
  .select-notes {
  width: 100%;
  border-bottom: none;
}

.section-block-content-wrap
  .swiper-slide
  .select-notes-and-links-wrap
  .select-links {
  width: 100%;
  border-bottom: none;
  margin: 0;
}

.section-block-content-wrap
  .swiper-slide
  .select-notes-and-links-wrap
  .select-notes
  ul {
  margin-left: 0;
}

.section-block-content-wrap .swiper-slide .select-family li span,
.section-block-content-wrap .swiper-slide .select-notes li span {
  font-size: 12px;
  padding: 3px 8px;
}

@media screen and (min-width: 700px) {
  .section-block-content-wrap .swiper-slide .select-intro-wrap {
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 900px) {
  .section-block-content-wrap .swiper-slide .select-notes-and-links-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .section-block-content-wrap
    .swiper-slide
    .select-notes-and-links-wrap
    .select-notes {
    width: 50%;
  }

  .section-block-content-wrap
    .swiper-slide
    .select-notes-and-links-wrap
    .select-links {
    width: 50%;
  }
}

/*--- Section Blocks - Featured Post & Recent Posts ---*/

.section-block-content-wrap .featured-post-wrap .post-content,
.section-block-content-wrap .recent-posts-wrap .post-content {
  display: flex;
  flex-direction: column;
}

.section-block-content-wrap .featured-post-wrap .post-image-wrap,
.section-block-content-wrap .recent-posts-wrap .post-image-wrap {
  width: 100%;
}

.section-block-content-wrap .featured-post-wrap .post-entry-wrap,
.section-block-content-wrap .recents-posts-wrap .post-entry-wrap {
  width: 100%;
}

.section-block-content-wrap .featured-post-wrap .entry-heading-wrap,
.section-block-content-wrap .recents-posts-wrap .entry-heading-wrap {
  border-bottom: 1px dotted #bbb;
  padding-bottom: 10px;
  max-width: 95%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.section-block-content-wrap .featured-post-wrap .entry-heading-wrap h2,
.section-block-content-wrap .recent-posts-wrap .entry-heading-wrap h2 {
  font-size: 38px;
  margin-bottom: 5px;
}

.section-block-content-wrap .featured-post-wrap .entry-link,
.section-block-content-wrap .recent-posts-wrap .entry-link {
  margin-top: 25px;
}

.section-block-content-wrap .featured-post-wrap .entry-link span,
.section-block-content-wrap .recent-posts-wrap .entry-link span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-block-content-wrap .featured-post-wrap .entry-link a,
.section-block-content-wrap .recent-posts-wrap .entry-link a {
  background-color: #000;
  padding: 10px 20px;
}

.section-block-content-wrap .featured-post-wrap .entry-link a:hover,
.section-block-content-wrap .recent-posts-wrap .entry-link a:hover {
  background-color: #454545;
}

@media screen and (min-width: 900px) {
  .section-block-content-wrap .featured-post-wrap .section-block-content,
  .section-block-content-wrap .recent-posts-wrap .section-block-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
  }

  .section-block-content-wrap
    .featured-post-wrap.align-right
    .section-block-content,
  .section-block-content-wrap
    .recent-posts-wrap.align-right
    .section-block-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
  }

  .section-block-content-wrap .featured-post-wrap .entry-heading-wrap,
  .section-block-content-wrap .recent-posts-wrap .entry-heading-wrap {
    margin-top: 0px;
  }

  .section-block-content-wrap .featured-post-wrap .post-image-wrap,
  .section-block-content-wrap .recent-posts-wrap .post-image-wrap {
    width: 40%;
    margin: 0 15px;
  }

  .section-block-content-wrap .featured-post-wrap .post-entry-wrap.two-column,
  .section-block-content-wrap .recent-posts-wrap .post-entry-wrap.two-column {
    width: 60%;
    margin: 0 15px;
  }

  .section-block-content-wrap .featured-post-wrap .post-entry-wrap,
  .section-block-content-wrap .recent-posts-wrap .post-entry-wrap {
    margin: 0 15px;
  }
}

/*--- Section Blocks - Featured Select ---*/

.section-block-content-wrap
  .featured-select-wrap
  .select-info-wrap.align-right {
  flex-direction: row-reverse;
}

/* .section-block-content-wrap .featured-select-wrap .select-content {
  margin: 30px auto 80px;
} */

.section-block-content-wrap .featured-select-wrap .select-family li span,
.section-block-content-wrap .featured-select-wrap .select-notes li span {
  font-size: 12px;
  padding: 3px 8px;
}

.section-block-content-wrap .featured-select-wrap .select-title-family-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px dotted #bbb;
}

.section-block-content-wrap .featured-select-wrap .select-title h3 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 10px;
}

.section-block-content-wrap .featured-select-wrap .select-brand {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 10px;
}

.section-block-content-wrap .featured-select-wrap a.select-brand:link {
  color: #454545;
}

.section-block-content-wrap .featured-select-wrap .select-family {
  display: flex;
  margin-top: 0px;
  border: none;
  padding: 0;
}

.section-block-content-wrap .featured-select-wrap .select-summary {
  margin-bottom: 30px;
}

.section-block-content-wrap .featured-select-wrap .select-notes {
  padding: 0;
  padding-top: 10px;
  border-top: 1px dotted #bbb;
  border-bottom: none;
}

@media screen and (min-width: 700px) {
  .section-block-content-wrap .featured-select-wrap .select-title-family-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 3px;
    border-bottom: 1px dotted #bbb;
  }

  .section-block-content-wrap .featured-select-wrap .select-title h3 {
    margin-top: 0px;
  }

  .section-block-content-wrap .featured-select-wrap .select-summary {
    margin-bottom: 0px;
  }
}

/*--- SELECTS ---*/

.selection-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  /*! padding: 0 15px; */
}

.select-intro-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.select-title-wrap {
  /*   margin-bottom: 10px; */
}

.select-title-wrap h1 {
  font-size: 82px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.85;
  word-break: break-word;
}

a.select-brand:link {
  color: #454545;
}

a.select-brand:hover,
a.select-brand:focus {
  color: #757575;
}

.select-type-status-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
}

.select-type,
.select-status {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 600;
}

.select-type a {
  padding: 8px 10px 5px;
  color: #fff;
  background-color: #000;
}

.select-type a:hover {
  padding: 8px 10px 5px;
  color: #fff;
  background-color: #454545;
}

.select-status span {
  background-color: #f00;
  color: #fff;
  padding: 8px 10px 5px;
  margin-right: 5px;
}

.select-info-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.select-image {
  width: 100%;
}

.select-details {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.select-details h1 {
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
}

.select-summary {
  margin-top: 20px;
}

.select-details h2 {
  color: #454545;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 5px;
  padding-left: 5px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bbb;
}

.select-family {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  border-top: 1px dotted #bbb;
  border-bottom: 1px dotted #bbb;
  padding: 10px 5px 0px 5px;
}

.select-family span,
.select-notes span {
  color: #454545;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 3px;
}

.select-notes {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  padding: 5px 5px;
  border-bottom: 1px dotted #bbb;
}

.select-family ul,
.select-notes ul {
  padding-left: 0;
}

.select-family ul,
.select-notes ul {
  margin-top: 5px;
  margin-left: 0px;
}

.select-links ul {
  padding: 0;
}

.select-family ul li,
.select-notes ul li,
.select-links ul li {
  list-style: none;
}

.select-family li,
.select-notes li,
.select-links li {
  display: inline-block;
  margin-bottom: 10px;
}

.select-family li span,
.select-notes li span {
  color: #000;
  font-size: 14px;
  padding: 3px 8px;
  font-weight: 400;
  text-transform: capitalize;
}

.select-family li:after,
.select-notes li:after {
  content: "/";
  padding: 0 5px 0 8px;
  color: #454545;
}

.select-family li:last-child:after,
.select-notes li:last-child:after {
  content: "";
  padding: 0 10px;
}

.select-links {
  margin-top: 20px;
}

.select-links ul {
  margin: 0;
}

.select-links li {
  display: flex;
  margin-bottom: 0;
  margin-top: 0px;
  /*! justify-content: flex-end; */
}

.select-links li span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.select-links li a {
  background-color: #000;
  padding: 10px 20px;
}

.select-links li a:hover {
  background-color: #454545;
}

.grid-selects-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.grid-selects {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.grid-select {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}

.grid-image img {
  padding: 15px;
}

.grid-image {
  background-color: #bbb;
  margin-bottom: 10px;
}

.grid-selects h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
}

.grid-selects span {
  font-size: 16px;
  font-weight: 600;
}

a.grid-title-url {
  color: #000;
}

a.grid-title-url:hover {
  color: #757575;
}

a.grid-brand {
  color: #454545;
}

a.grid-brand:hover {
  color: #757575;
}

.related-selects {
  margin-top: 60px;
}

.related-selects-title {
  text-align: center;
}

.related-selects-title h3 {
  font-size: 24px;
  text-transform: uppercase;
}

@media screen and (min-width: 700px) {
  .select-intro-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
  }

  .select-title-wrap h1 {
    font-size: 82px;
  }

  .select-type-status-wrap {
    margin-top: 0px;
  }

  .select-notes,
  .select-family {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
  }

  .select-family ul,
  .select-notes ul {
    margin: 0;
    margin-left: 10px;
  }

  .select-links li {
    margin-top: 30px;
  }

  .grid-selects {
    display: flex;
    flex-direction: row;
    margin: 0 -15px;
  }

  .grid-select {
    padding: 0 15px;
    margin-bottom: 30px;
    width: 33.333%;
  }
}

@media screen and (min-width: 900px) {
  .select-info-wrap {
    flex-direction: row;
    margin: 0 -15px;
  }

  .select-image {
    width: 50%;
    margin: 0 15px;
  }

  .select-details {
    width: 50%;
    margin: 0 15px;
  }
  .select-summary {
    margin-top: 0px;
  }
  .select-links {
    margin-top: auto;
  }

  .select-links li {
    justify-content: flex-end;
  }
}

/**** FILTER WRAP ****/

.entries-filter-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.search-filter-wrap {
  width: 100%;
}

.search-bar {
  width: 100%;
}

.search-filter-wrap input {
  border-radius: 0;
  border: 1px solid #ccc;
}

.search-filter-wrap input[type="text"] {
  padding-left: 8px;
  font-size: 14px;
}

.search-filter-wrap input[type="submit"] {
  background-color: #eee;
  border: none;
  color: #000;
  font-size: 14px;
  padding: 8px 10px;
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.search-filter-wrap input[type="submit"]:hover {
  background-color: #bbb;
  transition: all 0.2s ease-in-out;
}

.search-filter-wrap form {
  display: flex;
}

.filter-options-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  align-self: center;
  margin-right: 10px;
  margin-top: 15px;
}

.filter-options-drawer-trigger {
  text-align: right;
  font-size: 14px;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.filter-options-drawer-trigger a:link {
  color: #000;
  background-color: #eee;
  padding: 10px 15px;
  margin-right: 5px;
}

.filter-options-drawer-trigger a:visited {
  color: #eee;
}

.filter-options-drawer-trigger a:hover,
.filter-options-drawer-trigger a:focus {
  color: #000;
  background-color: #bbb;
}

.options-reset-wrap {
  width: 60px;
  text-align: right;
  align-self: center;
  font-size: 14px;
  font-family: neue-haas-grotesk-display, sans-serif;
}

.options-reset-wrap a:link {
  color: #000;
  background-color: #eee;
  padding: 10px 15px;
}

.options-reset-wrap a:visited {
  color: #000;
}

.options-reset-wrap a:hover,
.options-reset-wrap a:focus {
  color: #000;
  background-color: #bbb;
}

.selects-options {
  display: flex;
  flex-direction: column;
}

.options-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 200px;
  overflow: auto;
  background-color: #f4f4f4;
  /*   border-radius: 10px; */
  margin-bottom: 15px;
  padding: 10px 10px;
}

fieldset {
  display: flex;
  flex-direction: column;
  border: none;
}

fieldset legend {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.options-wrap label {
  font-size: 13px;
  font-family: neue-haas-grotesk-display, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.options-wrap label:hover {
  cursor: pointer;
  color: #bbb;
}

.options-wrap input[type="checkbox"] {
  margin-right: 8px;
}

.options-wrap input[type="checkbox"]:hover {
  color: #000;
}

.filter-options-submit {
  padding: 0 10px;
}

.filter-options-drawer__content input[type="submit"] {
  width: 100%;
  padding: 8px 0;
  border-radius: 0;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-options-drawer__content input[type="submit"]:hover {
  background-color: #454545;
}

@media screen and (min-width: 700px) {
  .entries-filter-wrap {
    flex-direction: row;
    justify-content: space-between;
  }

  .search-filter-wrap {
    width: 50%;
  }

  .filter-options-wrap {
    width: 50%;
    margin-right: 5px;
    margin-top: 0px;
  }
}

/**** Category Home ****/

.page-intro-content {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  text-align: center;
}

.page-title {
  font-size: 32px;
  text-transform: uppercase;
  background-color: #eee;
  display: inline-block;
  padding: 10px 25px;
}

.category.index .entries-filter-wrap {
  justify-content: space-between;
  max-width: 780px;
}

.category.index .search-filter-wrap {
  width: 100%;
}

.category.index .options-reset-wrap {
  width: 80px;
  margin-left: 5px;
}

.category-list-wrap {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}

.list-group-heading {
  color: #656565;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

ul.list-group-items {
  padding-left: 0;
  margin-bottom: 30px;
  text-align: right;
}

.list-group-items li {
  list-style: none;
  font-size: 32px;
  font-weight: 700;
}

/* FAMILY COLORS */

*.amber {
  background-color: #ffc600;
}

*.aquatic {
  background-color: #a6e6ff;
}

*.aromatic {
  background-color: #d0ee64;
}

*.citrus {
  background-color: #ff8c3f;
}

*.chypre {
  background-color: #ffd84d;
}

*.floral {
  background-color: #ff98a7;
}

*.fresh {
  background-color: #f2f0f0;
}

*.fruity {
  background-color: #ffb1b1;
}

*.fougere {
  background-color: #aadb1e;
}

*.gourmand {
  background-color: #ffd1d1;
}

*.green {
  /* background-color: #6a8e3d; */
  background-color: #7dd004;
}

*.musk {
  background-color: #dbbd9c;
}

*.spicy {
  background-color: #b74320;
}

.select-family li span.spicy,
.select-notes li span.spicy {
  color: #fff;
}

*.woody {
  background-color: #86684e;
  color: #fff;
}

.select-family li span.woody,
.select-notes li span.woody {
  color: #fff;
}

/* *.fragrance {
  background-color: #860038;
} */

.journal-entry-wrap .journal-entry-content {
  max-width: 960px;
  margin: 0 auto;
}

.journal-entry .entry-heading-wrap {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #bbb;
}

.journal-entry-content h1 {
  font-size: 54px;
}

.journal-entry-wrap h1,
.journal-entry-wrap h2,
.journal-entry-wrap h3,
.journal-entry-wrap h4,
.journal-entry-wrap h5 {
  margin-bottom: 10px;
}

.journal-entry-content p {
  margin-bottom: 15px;
}

.journal-entry-content img {
  margin-bottom: 15px;
  padding: 0 15px;
}

.entry-heading-wrap .entry-meta {
  display: flex;
  font-weight: 600;
  color: #757575;
}

.entry-meta span {
  text-transform: uppercase;
  font-weight: 900;
  color: #000;
  margin-left: 5px;
}

.entry-meta .entry-date {
  margin-right: 10px;
}

.entry-meta .entry-author {
  margin-left: 10px;
}

/*--- Journal Entries ---*/

.journal-entries-wrap {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}

.journal-entries-wrap .post-content {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dotted #bbb;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.journal-entries-wrap .post-image-wrap {
  width: 100%;
}

.journal-entries-wrap .post-entry-wrap {
  width: 100%;
}

.journal-entries-wrap .entry-heading-wrap {
  border-bottom: 1px dotted #bbb;
  padding-bottom: 10px;
  max-width: 95%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.journal-entries-wrap .entry-heading-wrap h2 {
  font-size: 38px;
  margin-bottom: 5px;
}

.journal-entries-wrap .entry-link {
  margin-top: 25px;
}

.journal-entries-wrap .entry-link span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.journal-entries-wrap .entry-link a {
  background-color: #000;
  padding: 10px 20px;
}

.journal-entries-wrap .entry-link a:hover {
  background-color: #454545;
}

@media screen and (min-width: 900px) {
  .journal-entries-wrap .post-content {
    display: flex;
    flex-direction: row;
    margin: 30px -15px;
    padding-bottom: 60px;
  }

  .journal-entries-wrap .entry-heading-wrap {
    margin-top: 0px;
  }

  .journal-entries-wrap .post-image-wrap {
    width: 40%;
    margin: 0 15px;
  }

  .journal-entries-wrap .post-entry-wrap {
    width: 100%;
    margin: 0px 15px;
  }

  .journal-entries-wrap .post-entry-wrap.two-column {
    width: 60%;
    margin: 0 15px;
  }
}

.section-block-content {
  margin-top: 30px;
}

.text-block-content a {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 600;
}

.text-block-content a:hover {
  color: #757575;
}

.entries-pagination-wrap.upper .pagination-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-top: 15px;
  border-top: 1px dotted #bbb;
}

.entries-pagination-wrap.lower .entry-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.pagination-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

.pagination-wrap a {
  width: 30px;
  height: 30px;
  line-height: 1.9;
  background-color: #eee;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  margin: 0 2px;
  font-size: 16px;
}

.pagination-wrap a:hover {
  color: #fff;
  background-color: #bbb;
}

.pagination-wrap a.active {
  background-color: #ff98a7;
}

.page-count {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  font-style: italic;
}

.reviews-count {
  font-style: italic;
  font-size: 14px;
}

select {
  border: none;
  background-color: #eee;
  font-size: 14px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin-right: 10px;
  height: 35px;
}

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