/* 
Theme Name:     Visit Findlay Child Theme
Theme URI:      https://www.splust.com
Description:    Bootstrap 5 child theme
Author:         Christy L
Author URI:     https://www.splust.com
Template:       bootstrap-starter-theme
Version:        1.0.0
*/

/*
    Add your custom styles here
*/

/* Custom Variables */

:root {
  /* Base Spacing Unit */
  --spacing-unit: 15px;

  /* Colors */
  --primary-color: #005295;
  --blue-color: #005295;
  --green-color: #7d9917;
  --maroon-color: #9e2f4c;
  --red-color: #9e2f4c;
  --light-blue-color: #307fe2;
  --orange-color: #ff671f;
  --text-color: #212529;
  --grey-color: #ececed;
}

html {
  scroll-behavior: smooth;
}

body,
p {
  font-family: "Poppins", serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  margin-bottom: 30px;
}

h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

a {
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.5s;
}

a:hover {
  color: var(--green-color);
}

strong,
b {
  font-weight: 700;
}

.btn,
.gform_button {
  padding: 6px 30px;
  margin-bottom: 15px;
  border: none;
  outline: none !important;
  box-shadow: none !important;
  background: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.5s;
}

.btn:hover,
.gform_button:hover {
  color: #fff;
  background: var(--green-color);
}

.btn-reverse {
  color: var(--primary-color);
  background: #fff;
}

.btn-green {
  background-color: var(--green-color);
}

.btn-green:hover {
  background-color: var(--primary-color);
}

.section-padded {
  padding-top: calc(4 * var(--spacing-unit));
  padding-bottom: calc(4 * var(--spacing-unit));
}

.section-padded-lg {
  padding-top: calc(8 * var(--spacing-unit));
  padding-bottom: calc(8 * var(--spacing-unit));
}

.block-padding {
  padding: calc(4 * var(--spacing-unit));
}

.blue-background {
  background: var(--primary-color);
}

.grey-background {
  background: var(--grey-color);
}

.black-background {
  background: #000;
}

/* These styles are for the alternating black/white effect. 
These classes are added dynamically to containers with the class "candycane", via candycane-effect.js 
This does NOT apply to the homepage blocks, which have their own styles, 
and is mainly intended for single pages for categories and locations.
*/
.candycane-black {
  background-color: white;
}
.candycane-black *:not(a) {
  color: #fff;
}
.candycane-black a {
  color: var(--green-color);
  &:hover {
    color: var(--primary-color);
  }
}
.candycane-black > div {
  background-color: black;
  border-radius: 0 200px 200px 0;
}
.candycane-black .post-info {
  background-color: black;
}

.candycane-white {
  background-color: black;
}
.candycane-white *:not(a) {
  color: black;
}
.candycane-white a {
  color: var(--primary-color);
  &:hover {
    color: var(--green-color);
  }
}
.candycane-white .btn {
  color: #fff;
}
.candycane-white > div {
  background-color: white;
  border-radius: 200px 0 0 200px;
}
.candycane-white .post-info {
  background-color: white;
}

.candycane-single > div {
  border-radius: 0 0 200px 0;
}

.candycane-first.candycane-black > div {
  border-radius: 0 0 200px 0;
}
.candycane-first.candycane-white > div {
  border-radius: 0 0 0 200px;
}

.candycane-last.candycane-black > div {
  border-radius: 0 200px 0 0;
}
.candycane-last.candycane-white > div {
  border-radius: 200px 0 0 0;
}

/*  Loading SVG Animation  */

#ajax_working {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.loader {
  width: 50%;
  margin: 100px auto;
  text-align: center;
}

@keyframes top-clip {
  0% {
  }
  50% {
    transform: translateY(21px);
  }
  100% {
    transform: translateY(21px);
  }
}

@keyframes bottom-sand-path {
  0% {
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bottom-sand-g {
  0% {
  }
  85% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-9px);
  }
}

@keyframes hourglass-rotation {
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(180deg);
  }
}

#top-sand #top-clip-path rect,
#bottom-sand path,
#bottom-sand g,
svg {
  animation-duration: 5s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

#top-sand #top-clip-path rect {
  animation-name: top-clip;
}

#bottom-sand path {
  transform: translateY(21px);
  animation-name: bottom-sand-path;
}

#bottom-sand g {
  animation-name: bottom-sand-g;
}

div.loader svg {
  animation-name: hourglass-rotation;
}

.white-text,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text a,
.white-text li {
  color: #fff;
}

.white-text a:hover {
  color: var(--primary-color);
}

.maroon-text {
  color: var(--maroon-color);
}

.green-text {
  color: var(--green-color);
}

.green-link,
.green-link i {
  color: var(--green-color) !important;
}

.green-link:hover,
.green-link:hover i {
  color: var(--blue-color) !important;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: none !important;
}

.anchor {
  position: relative;
}

.anchor a {
  position: absolute;
  left: 0px;
  top: -240px;
}

.anchor-initial a {
  top: -573px;
}

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/*  Heading Styles  */

#main {
  margin-top: 0px;
}

#header {
  padding: 0px;
  background-color: #fff !important;
  border-bottom: 1px solid #efefef;
}

.header-links {
  padding-left: 45px;
  padding-right: 15px;
}

.header-links a {
  font-size: 24px;
  padding: 0px 5px;
  display: inline-block;
}

.headernavswrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.headerWrap {
  margin: 0;
}

.navbar-brand {
  padding: 10px 0px 15px;
}

.navbar-brand img {
  height: 75px;
}

.navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: var(--green-color) !important;
}

ul#menu-main-nav li {
  margin-bottom: unset;
  font-weight: 400;
}

ul#menu-main-nav ul {
  display: none;
  float: left;
  position: absolute;
  z-index: 99999;
  text-align: left;
  font-size: 14px;
  border-radius: 0px;
  list-style: none;
  margin: 0px;
  padding: 0;
  width: auto;
  min-width: 180px;
}

ul#menu-main-nav ul li {
  padding: 0px;
  margin: 0px;
  white-space: nowrap;
}

ul#menu-main-nav ul li:last-of-type {
  border-bottom: none;
}

ul#menu-main-nav li:hover > ul {
  display: block;
}

.dropdown-menu ul {
  right: -179px;
  top: -1px;
}

.dropdown-item {
  padding: 10px 15px;
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--grey-color) !important;
  color: var(--text-color);
}

.search-form ::placeholder,
.searchButton {
  color: #fff;
}

.search_container {
  padding: 8px 0px 0px 15px;
  position: absolute;
  right: 180px;
  top: 24px;
  max-width: calc(100% - 190px);
  z-index: 1300;
  width: 0px;
}

.searchbox {
  position: relative;
  min-width: 50px;
  width: 0%;
  height: 40px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  z-index: 1;
}

.searchbox-input {
  top: 0;
  right: 0;
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0px 50px 0px 0px;
  font-size: 18px;
}

.searchbox-input::-webkit-search-cancel-button {
  display: none !important;
}

.searchbox-open {
  border-bottom: 1px solid #0e406a;
}

.searchbox-input::-webkit-input-placeholder,
.searchbox-input:-moz-placeholder,
.searchbox-input::-moz-placeholder,
.searchbox-input:-ms-input-placeholder,
.searchbox-input::placeholder {
  color: #fff;
}

.searchbox-icon,
.searchbox-submit {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 0px;
  font-family: verdana;
  font-size: 24px;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  text-align: center;
  cursor: pointer;
  color: var(--primary-color);
  background: transparent;
}

.searchbox-open .searchbox-submit {
  z-index: 1;
}

#searchCloseWrap img {
  max-width: 18px;
}

#searchCloseWrap {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 35px;
  top: 0px;
  margin-right: 0px;
  opacity: 0;
}

.searchbox-open {
  width: 100%;
}

.search-results .cat-links,
.search-results .post-edit-link {
  display: none;
}

.search-results article {
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

/* !PopUp Nav */

#mainMenuPopUpMenu a:hover {
  bottom: 0 !important;
}

#mainMenuPopUpMenu > li > a {
  padding-left: 3% !important;
  padding-right: 3% !important;
}

#mainMenuPopUpMenu {
  float: none !important;
  margin: 60px auto !important;
  width: 590px !important;
}

#mainMenuPopUpWrap {
  background-color: rgba(255, 255, 255, 0.97) !important;
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

#mainMenuPopUpMenu li a {
  color: var(--green-color) !important;
  padding: 3px 0 !important;
}

#mainMenuPopUpMenu > li {
  padding: 7px 0px !important;
  margin: 0px 0 !important;
  background-color: transparent !important;
  border-bottom: 1px solid var(--primary-color);
}

.mainMenuSubMenuToggler {
  background-image: url(images/bluemainMenuToggle.png) !important;
  background-size: 13px auto !important;
  width: 27px !important;
  padding: 3px 0 !important;
  margin-left: 12px;
}

.openMenu > .mainMenuSubMenuToggler {
  background-image: url(images/bluemainMenuToggleX.png) !important;
}

#mainMenuPopUpMenu > li:hover {
  background-color: transparent !important;
}

#mainMenuPopUpMenu > li.current-menu-item > a,
#mainMenuPopUpMenu .sub-menu > li.current-menu-item > a {
  color: var(--maroon-color) !important;
  background-color: transparent !important;
}

#mainMenuPopUpMenu a:hover {
  color: var(--primary-color) !important;
  background-color: transparent !important;
}

.mainMenuSubMenuToggler:hover {
  opacity: 0.8;
  background-color: transparent !important;
}

#mainMenuPopUpMenu > li > ul > li:hover {
  background-color: transparent !important;
}

#mainMenuPopUpMenu .sub-menu {
  padding-left: 15px !important;
}

#mainMenuPopUpMenu > li > ul > li > ul > li:hover {
  background-color: transparent !important;
}
#mainMenuPopUpWrap {
  background-color: rgba(255, 255, 255, 0.93);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2010;
  overflow: hidden;
  overflow-y: scroll;
  display: none;
}

#mainMenuPopUpInnerWrap {
  position: relative;
}

#mainMenuPopUpCloseWrap {
  cursor: pointer;
  background-image: url(images/searchCloseIcon.svg);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: 40px;
  z-index: 2000;
}

#mainMenuPopUpCloseWrap:hover {
  background-image: url(images/searchCloseIcon.svg);
}

#mainMenuPopUpMenu {
  list-style: none;
}

#mainMenuPopUpMenu li a {
  color: #fff;
  float: left;
  position: relative;
  bottom: 0;
}

#mainMenuPopUpMenu {
  list-style: none;
  padding-left: 0;
  float: left;
  margin: 60px 0;
  width: 100%;
}

#mainMenuPopUpMenu li {
  float: left;
  width: 100%;
  margin: 0;
}

#mainMenuPopUpMenu > li {
  padding: 0px;
  list-style: none;
  margin: 17px 0;
  background-color: #3495d7;
}

#mainMenuPopUpMenu .sub-menu {
  list-style: none;
  padding-left: 0;
  float: left;
  width: 100%;
  display: none;
}

#mainMenuPopUpMenu a {
  color: #fff;
}

#mainMenuPopUpMenu > li > a {
  padding-left: 5%;
}

.mainMenuSubMenuToggler {
  color: transparent;
  background-image: url(images/mainMenuToggle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px auto;
  width: 44px;
  cursor: pointer;
}

.openMenu > .mainMenuSubMenuToggler {
  background-image: url(images/mainMenuToggleX.png);
}

#mainMenuPopUpMenu a,
.mainMenuSubMenuToggler {
  display: inline-block;
  padding: 7px 0;
  font-size: 20px;
  text-decoration: none;
}

#mainMenuPopUpMenu a:hover {
  color: #fff;
  text-decoration: none;
  bottom: 2px;
}

#mainMenuPopUpMenu > li:hover {
  background-color: #88b435;
}

#mainMenuPopUpMenu .sub-menu a:hover {
  background: none;
}

#mainMenuPopUpMenu > .current-menu-ancestor > a {
  text-decoration: none;
}

#mainMenuPopUpMenu .current-menu-ancestor > .sub-menu {
  display: block;
}

#mainMenuPopUpMenu > li.current-menu-item > a,
#mainMenuPopUpMenu .sub-menu > li.current-menu-item > a {
  background-color: #a21d49;
  text-decoration: none;
}

#mainMenuPopUpMenu .sub-menu > li.current-menu-item > a {
  text-decoration: none;
}

#mainMenuPopUpMenu li > .sub-menu li > a {
  padding-left: 10%;
}

#mainMenuPopUpMenu li > .sub-menu li > .sub-menu li > a {
  padding-left: 15%;
}

#mainMenuPopUpMenu > li > ul > li:hover {
  background-color: #899e37;
}

#mainMenuPopUpMenu > li > ul > li > ul > li:hover {
  background-color: #98af40;
}

#mainMenuPopUpMenu li.menu-item-has-children > a {
  padding-right: 10px;
}

.mainMenuSubMenuToggler:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/*  Footer Styles  */

#footer {
  background: #fff;
  border-top: 1px solid #000;
  color: var(--text-color);
}

#footer .navbar-brand img {
  margin-bottom: 30px;
}

#footer .footer-info {
  border-right: 1px solid #000;
}

#footer .social-icons {
  display: flex;
  margin-top: 30px;
}

#footer .social-icons a {
  background-color: var(--green-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

#footer .social-icons i {
  font-size: 16px;
}

#footer .social-icons a:hover {
  background-color: var(--primary-color);
}

#footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#footer .footer-menu {
  padding: 60px;
}

#footer .footer-menu .nav-link {
  line-height: 1;
  color: #000;
}

#footer .footer-menu .nav-link:hover {
  color: var(--green-color);
}

#footer .logo-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

#footer .footer-logos {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  max-height: 260px;
}

#footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-left: 15px;
}

#footer .footer-logo img {
  max-width: 150px;
  max-height: 50px;
  margin-bottom: 15px;
}

#footer .footer-logo:hover {
  filter: brightness(0.75);
}

#footer .copyright {
  text-align: center;
  font-size: 14px;
  padding: 30px;
  color: #fff;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

#footer .copyright a {
  color: #fff;
}

#footer .copyright a:hover {
  color: var(--green-color);
}

/*  Homepage Styles  */

.slideimg {
  height: 500px;
  display: flex;
  align-items: center;
}

.overlay-text {
  color: #fff;
  font-size: 45px;
}

#background-image-block h2,
#background-image-block h3,
#background-image-block p {
  color: #fff;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

#homepage-header {
  min-height: 700px;
  border-top-left-radius: 400px;
}

.homepage-blocks-inner {
  border-bottom-right-radius: 200px;
  background: #fff;
}

.homepage-blocks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 15px;
  margin-bottom: 30px;
}

.homepage-blocks .block-image,
.homepage-blocks .block-image-inner {
  height: 350px;
  border-radius: 40px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.homepage-blocks .overlay {
  border-radius: 40px;
  display: none;
  transition: all 0.5s;
  background-color: rgba(0, 82, 150, 0.6);
}

.homepage-blocks h4 {
  text-align: center;
  color: var(--text-color);
  margin-top: 15px;
}

.homepage-blocks .icon {
  background-color: var(--maroon-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  color: #fff;
  border-radius: 100px;
  font-size: 36px;
  align-self: center;
  margin-top: -35px;
  z-index: 1;
  transition: all 0.5s;
}
.homepage-blocks:hover .block-image-inner {
  transform: scale(1.05);
}

.homepage-blocks:hover .overlay {
  display: block;
}

.homepage-blocks:hover .icon {
  background-color: var(--blue-color);
}

.homepage-events-headline {
  margin-top: 30px;
  margin-bottom: 60px;
}

.homepage-events-headline h1 {
  padding-right: 15px;
}

.homepage-events-headline a i {
  margin-left: 8px;
}

.homepage-events-headline a.view-all-events {
  padding-top: 20px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

#homepage-events {
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
}

.homepage-events-headline a.view-all-events i {
  padding-left: 10px;
}

.post-info {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.post-info .color-slide,
.place-info .color-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-info .copy {
  z-index: 1;
  position: relative;
}

.post-info .copy h4 {
  font-size: 20px;
  line-height: 1.2;
}

.post-info .copy .date {
  color: var(--green-color);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  min-width: 60px !important;
}

.post-info .info {
  margin-bottom: 0px;
}

.post-vertical,
.post-horizontal {
  border: 1px solid var(--green-color);
  border-radius: 30px;
  display: block;
  overflow: hidden;
  transition: all 0.5s;
}

.post-vertical .post-image {
  height: 350px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  transition: all 0.5s;
}

.post-vertical .post-info {
  height: 265px;
  padding: 30px 60px;
  z-index: 1;
}

.post-vertical h4 {
  display: flex;
  justify-content: space-between;
}
.post-horizontal {
  display: flex;
  margin-bottom: 30px;
}

.post-horizontal .post-image {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 50%;
  transition: all 0.5s;
}

.post-horizontal:hover .post-image,
.post-vertical:hover .post-image {
  transform: scale(1.05);
}

.post-horizontal .post-info {
  width: 50%;
  padding: 30px;
  z-index: 1;
}

.post-vertical:hover .color-slide,
.post-horizontal:hover .color-slide,
.place-item:hover .color-slide {
  animation: slide-in-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  background-color: var(--green-color);
}

.post-vertical:hover .date,
.post-horizontal:hover .date {
  color: #fff;
}

.carousel-icons,
.bbb_viewed_nav_container {
  display: flex;
  justify-content: flex-end;
}

.carousel-icons a,
.bbb_viewed_nav_container .bbb_viewed_nav {
  opacity: 1;
  background-color: var(--green-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  width: 42px;
  border-radius: 100px;
  font-size: 28px;
  position: relative;
  transition: all 0.5s;
}

.carousel-icons a i {
  color: #fff !important;
}

.carousel-icons a + a,
.bbb_viewed_nav_container .bbb_viewed_nav + .bbb_viewed_nav {
  margin-left: 20px;
}

.carousel-icons a:hover,
.bbb_viewed_nav:hover {
  background-color: var(--primary-color);
  color: #fff;
}

#eventsCarousel .carousel-inner {
  padding-bottom: 60px;
}

#eventsCarousel .carousel-icons {
  position: absolute;
  bottom: 30px;
  right: 0px;
}

#sb_instagram img {
  border-radius: 40px !important;
}

#sbi_load {
  margin-top: 30px;
}

/* Start Carousel */

@media (min-width: 768px) and (max-width: 991px) {
  /* Show 4th slide on md  if col-md-4*/
  #prod-carousel
    .carousel-inner
    .active.col-md-4.carousel-item
    + .carousel-item
    + .carousel-item
    + .carousel-item {
    position: absolute;
    top: 0;
    right: -33.3333%; /*change this with javascript in the future*/
    z-index: -1;
    display: block;
    visibility: visible;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  /* Show 3rd slide on sm  if col-sm-6*/
  #prod-carousel
    .carousel-inner
    .active.col-sm-6.carousel-item
    + .carousel-item
    + .carousel-item {
    position: absolute;
    top: 0;
    right: -50%; /*change this with javascript in the future*/
    z-index: -1;
    display: block;
    visibility: visible;
  }
}
@media (min-width: 576px) {
  #prod-carousel .carousel-item {
    margin-right: 0;
    width: 50%;
  }

  /* show 2 items */
  #prod-carousel .carousel-inner .active + .carousel-item {
    display: block;
  }

  #prod-carousel
    .carousel-inner
    .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  #prod-carousel
    .carousel-inner
    .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)
    + .carousel-item {
    transition: none;
  }

  #prod-carousel .carousel-inner .carousel-item-next,
  #prod-carousel2 .carousel-inner .carousel-item-next {
    position: relative;
    transform: translate3d(0, 0, 0);
  }

  /* left or forward direction */
  #prod-carousel
    .active.carousel-item-left
    + .carousel-item-next.carousel-item-left,
  #prod-carousel .carousel-item-next.carousel-item-left + .carousel-item,
  #prod-carousel
    .carousel-item-next.carousel-item-left
    + .carousel-item
    + .carousel-item {
    position: relative;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  /* farthest right hidden item must be abso position for animations */
  #prod-carousel .carousel-inner .carousel-item-prev.carousel-item-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    visibility: visible;
  }

  /* right or prev direction */
  #prod-carousel
    .active.carousel-item-right
    + .carousel-item-prev.carousel-item-right,
  #prod-carousel .carousel-item-prev.carousel-item-right + .carousel-item,
  #prod-carousel
    .carousel-item-prev.carousel-item-right
    + .carousel-item
    + .carousel-item {
    position: relative;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
    visibility: visible;
  }
}

/*MD*/
@media (min-width: 991px) {
  #prod-carousel .carousel-item {
    margin-right: 0;
    width: 33.33333333%;
  }

  /* show 3rd of 3 item slide */
  #prod-carousel .carousel-inner .active + .carousel-item + .carousel-item {
    display: block;
  }

  #prod-carousel
    .carousel-inner
    .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)
    + .carousel-item
    + .carousel-item {
    transition: none;
  }

  #prod-carousel .carousel-inner .carousel-item-next {
    position: relative;
    transform: translate3d(0, 0, 0);
  }

  /* left or forward direction */
  #prod-carousel
    .carousel-item-next.carousel-item-left
    + .carousel-item
    + .carousel-item
    + .carousel-item {
    position: relative;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  /* right or prev direction */
  #prod-carousel
    .carousel-item-prev.carousel-item-right
    + .carousel-item
    + .carousel-item
    + .carousel-item {
    position: relative;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
    visibility: visible;
  }
}

#prod-carousel {
  padding: 0px 57px;
}

#prodCarControls {
  display: block !important;
}

#prod-carousel .carousel-control-prev,
#prod-carousel .carousel-control-next {
  width: 42px;
  opacity: 1;
}

.prodCarControls i {
  background-color: var(--green-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  width: 42px;
  border-radius: 100px;
  font-size: 28px;
  color: #fff;
  position: absolute;
}

.carItemInner {
  height: 100%;
  position: relative;
  border: 1px solid var(--green-color);
  border-radius: 40px;
}

.more-info-image {
  height: 150px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.more-info {
  padding: 30px;
  min-height: 350px;
}

.more-info h4 {
  text-align: center;
  margin-bottom: 15px;
}

.more-info p {
  font-size: 16px;
  margin-bottom: 0px;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* End Carousel */

#this-weekend {
  margin-bottom: -200px;
}

.this-weekend-inner {
  background: #fff;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
  z-index: 1;
  position: relative;
}

.weekend-image {
  height: 500px;
  border-radius: 30px;
  position: relative;
  display: flex;
  justify-content: center;
}

.color-banner {
  position: absolute;
  margin-top: -25px;
  min-width: 250px;
  height: 50px;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--maroon-color);
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  z-index: 1;
}

.weekend-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#weekendCarousel .carousel-icons {
  justify-content: flex-start;
  position: absolute;
  bottom: 15px;
}

#homepage-communities {
  padding-top: 200px;
}

.location-container {
  display: flex;
  max-width: 800px;
  margin: auto;
  padding-top: 30px;
  padding-bottom: 60px;
}

.location-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 15px;
  width: 33%;
}

.location-col a {
  padding: 5px;
  text-align: center;
}

.location-col a:hover {
  color: var(--light-blue-color);
}

.location-container .location-col + .location-col {
  border-left: 1px solid #fff;
}

.community-btn {
  background: #000;
  padding: 20px 50px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #fff !important;
}

.community-btn:hover {
  background-color: var(--primary-color);
}

/* Template Styles */

.filter-section-inner {
  z-index: 1;
  position: relative;
}

#filter-section h4 {
  color: var(--green-color);
  font-size: 22px;
  margin-bottom: 20px;
}

.facet {
  padding-right: 60px;
}

.facetwp-facet {
  margin-bottom: 40px;
  max-height: 300px;
  overflow-y: scroll;
}

.facetwp-radio {
  font-size: 16px;
  font-weight: 400;
  background-position: 0 5px !important;
  margin-bottom: 6px !important;
}

.facetwp-radio:hover {
  color: var(--green-color);
}

.facetwp-radio.checked {
  filter: invert(49%) sepia(89%) saturate(408%) hue-rotate(32deg)
    brightness(94%) contrast(88%);
}

.facetwp-counter {
  display: none;
}

.facetwp-facet::-webkit-scrollbar {
  height: 100px;
  width: 10px;
  background: var(--text-color);
  border-radius: 10px;
}

.facetwp-facet::-webkit-scrollbar-thumb {
  background: var(--green-color) !important;
  border-radius: 10px;
}

/* Overrides for FacetWP styles (specifically the "categories" heirarchical checkboxes on the place selector) */
.facetwp-type-checkboxes {
  overflow-x: hidden;
}

.facetwp-checkbox {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  background-position: 0 4px !important;
}

.facetwp-checkbox:hover span,
.facetwp-radio:hover span,
.facetwp-checkbox.checked span {
  color: var(--green-color) !important;
}

.facetwp-type-checkboxes .facetwp-expand {
  margin-left: auto;
  margin-right: 10px;
}

.facetwp-type-checkboxes .facetwp-expand span {
  display: inline-block;
  transform: rotate(180deg);
  position: relative;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.5s;
}

.facetwp-type-checkboxes .facetwp-expand span.closed {
  transform: rotate(90deg);
  top: -0.1em;
}

#filter-section .clear-filter {
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
}

#filter-section .clear-filter:hover {
  color: var(--green-color);
}

.place-item {
  border: 1px solid var(--green-color);
  border-radius: 20px;
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.place-image {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  transition: all 0.5s;
}

.place-item:hover .place-image {
  transform: scale(1.05);
}

.place-info {
  position: relative;
  overflow: hidden;
  padding: 30px;
  z-index: 1;
  background-color: #000;
  height: 100%;
  color: #fff;
}

.place-item .place-content {
  z-index: 1;
  position: relative;
}

.place-item h3 {
  font-size: 20px;
}

.place-info p {
  color: #fff;
}

.place-item .locally-owned {
  font-weight: 300;
  font-size: 14px;
  margin-top: 15px;
}

.place-item .favorite i {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 24px;
  /* filter: drop-shadow(4px 4px 7px #383737); */
}
.place-item .favorite .full {
  z-index: 1;
}

.place-item .favorite.favorited_place .full {
  color: #ffdf00;
  display: block !important;
  z-index: 1;
}

.place-item .favorite i.empty {
  color: #fff !important;
  z-index: 2;
}

.place-item .favorite:hover .empty {
  filter: unset !important;
  color: #f4f7f4 !important;
}
.place-item .favorite:hover i {
  filter: drop-shadow(2px 2px 7px rgba(255, 255, 255, 0.619));
}

.place-item .favorite:hover .full {
  display: block !important;
  color: #ffdf00 !important;
}

.pagination {
  justify-content: center;
  margin-top: 30px;
}

.pagination .page-numbers {
  font-weight: 600 !important;
  padding: 0px 4px;
}

.pagination .page-numbers:hover {
  color: var(--green-color);
  font-weight: 700 !important;
}

.facetwp-pager .facetwp-page.active {
  color: var(--green-color);
}

.category-events-inner {
  z-index: 1;
  position: relative;
}

#category-events .post-info {
  background-color: #fff;
}

#category-events .post-info h4,
#category-events .post-info .date {
  color: var(--text-color);
}

#category-events .post-vertical:hover h4,
#category-events .post-horizontal:hover h4,
#category-events .post-vertical:hover .date,
#category-events .post-horizontal:hover .date,
#category-events .post-vertical:hover p {
  color: #fff !important;
  transition: all 0.5s;
}

#might-also-like .homepage-blocks h4 {
  color: #fff;
}

#might-also-like .homepage-blocks .block-image {
  height: unset;
}

#single-post-header {
  min-height: 500px;
  border-top-left-radius: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}

#single-post-header,
#single-post-header .overlay {
  border-top-left-radius: 400px;
}

#single-post-header .overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

#single-post-header h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2;
}

#single-post-header h3 {
  text-transform: uppercase;
}

#single-post-header .icons,
#subpage-header .icons {
  position: absolute;
  bottom: -20px;
  display: flex;
}

#single-post-header .icons a,
#subpage-header .icons a {
  background-color: var(--green-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  font-size: 20px;
}

#single-post-header h3.green-accents {
  color: var(--green-color);
}

#single-post-header h3.light-blue-accents {
  color: var(--light-blue-color);
}

#single-post-header h3.orange-accents {
  color: var(--orange-color);
}

#single-post-header h3.maroon-accents {
  color: var(--maroon-color);
}

#single-post-header .icons.green-accents a {
  background-color: var(--green-color);
}

#single-post-header .icons.light-blue-accents a {
  background-color: var(--light-blue-color);
}

#single-post-header .icons.orange-accents a {
  background-color: var(--orange-color);
}

#single-post-header .icons.maroon-accents a {
  background-color: var(--maroon-color);
}

#single-post-header .address {
  font-size: 22px;
  font-weight: 700;
  max-width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

#single-post-header.dynamic-background {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

  @media (max-width: 767px) {
    background-size: auto;
  }
}

#placePhotoCarousel .carousel-item {
  height: 500px;
}

#placePhotoCarousel .carousel-icons {
  position: absolute;
  bottom: 15px;
  right: 30px;
}

#placePhotoCarousel .carousel-icons.green-accents a {
  background-color: var(--green-color);
}

#placePhotoCarousel .carousel-icons.light-blue-accents a {
  background-color: var(--light-blue-color);
}

#placePhotoCarousel .carousel-icons.orange-accents a {
  background-color: var(--orange-color);
}

#placePhotoCarousel .carousel-icons.maroon-accents a {
  background-color: var(--maroon-color);
}

#placePhotoCarousel .carousel-icons a:hover {
  background-color: var(--blue-color);
}

.bbb_viewed_item {
  width: 100%;
}

.event-slider-item {
  display: block;
}

.event-slider-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid var(--green-color);
  border-radius: 30px;
  padding: 30px 15px;
}

.event-slider-item h3 {
  font-size: 22px;
  width: 225px;
  height: 86px;
}

.event-slider-item .date {
  color: var(--green-color);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  min-width: 60px !important;
}

.event-slider-link:hover {
  border: 1px solid #fff;
}

.event-slider-link:hover .date {
  color: #fff;
}

.community-headline h1 {
  margin: 0px 60px;
}

.community-headline h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 32px;
  text-align: end;
}

.info-container .info-item {
  display: block;
  border-radius: 30px;
  border: 1px solid var(--green-color);
  position: relative;
  margin-bottom: 30px;
  color: var(--text-color);
  transition: all 0.5s;
}

.info-container .info-link {
  background-color: var(--green-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  width: 42px;
  border-radius: 100px;
  font-size: 28px;
  color: #fff;
  position: absolute;
  right: 30px;
  transition: all 0.75s;
}

.info-container .info-link i {
  color: #fff !important;
}

.info-container:hover .info-item {
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
}

.info-container:hover .info-link {
  background-color: var(--primary-color);
  /* right: 30px;
    left: unset;*/
}

/* Site Styles */

#subpage-header {
  min-height: 500px;
  border-top-left-radius: 400px;
  display: flex;
  align-items: center;
}

#subpage-header h1 {
  font-size: min(10vw, 120px);
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0px;
  line-height: 1;
}

#VideoPopUpWrap {
  position: absolute;
  z-index: 1021;
  display: none;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#VideoPopUpWrap .contentWrap {
  width: 100%;
  height: 100%;
}

.videoWrap {
  width: 87%;
  height: auto;
  display: block;
  margin-left: -43.5%;
  left: 50%;
  top: 60px;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

#VideoPopUpWrap iframe {
  position: absolute;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoPopUpCloseButton {
  font-size: 36px;
  position: absolute;
  top: 10px;
  right: 60px;
  cursor: pointer;
  z-index: 20;
  color: #fff;
}

#VideoPopUpWrap .transparentBckgrnd {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

#header-image {
  height: 300px;
  display: flex;
  align-items: center;
}

.accordion-header > span {
  position: absolute;
  top: -80px;
}

.accordion-item {
  border: none;
  background: transparent;
}

.accordion-header {
  padding: 40px 0px;
}

.accordion-item + .accordion-item .accordion-header {
  border-top: 1px solid var(--primary-color);
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0px !important;
  font-size: 16px;
  color: var(--primary-color) !important;
  text-decoration: none !important;
  background-color: unset !important;
  box-shadow: none !important;
}

.accordion-button:after {
  display: none !important;
}

.accordion-button span {
  font-size: 26px;
  padding-left: 15px;
  padding-right: 10px;
  line-height: 0;
  font-weight: 100;
  margin-top: -3px;
}

.accordion-header .minus {
  font-size: 30px;
}

.accordion-button:hover,
.accordion-button[aria-expanded="true"] {
  color: #54585a !important;
}

.accordion-body {
  padding: 15px 30px 15px 0px;
  color: #54585a !important;
}

#google-maps-section iframe {
  width: 100%;
  height: 450px;
}

/*  Mobile Styles  */

@media (max-width: 1200px) {
  .navbar-brand img {
    height: 60px;
  }

  .navbar-brand {
    padding: 17.5px 0px;
  }
}

@media (max-width: 991px) {
  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
  }

  #menu-top-nav {
    display: none;
  }

  #mainMenuPopUpCloseWrap {
    top: 30px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .header-links {
    padding-left: 5px;
  }

  #footer .footer-logos {
    max-height: unset;
    flex-direction: row;
    justify-content: center;
    padding-top: 30px;
  }

  .homepage-blocks .block-image {
    height: 250px;
  }

  .post-vertical {
    display: none;
  }

  #weekendCarousel .carousel-icons {
    position: relative;
    bottom: unset;
    margin-top: 30px;
  }

  .facet {
    padding-right: 30px;
  }

  #single-post-header h1 {
    font-size: 60px;
  }

  #single-post-header h3 {
    font-size: 20px;
  }

  #single-post-header .address {
    margin-bottom: 15px;
  }

  .more-info {
    min-height: 320px;
  }

  .carousel-inner {
    min-height: 949px;
  }

  .carousel-item {
    min-height: 949px;
  }

  #menu-top-nav {
    padding-right: 45px;
  }

  .searchbox-icon,
  .searchbox-submit {
    top: -3px;
  }
}

@media (max-width: 787px) {
  #menu-top-nav {
    padding-right: 30px;
  }
}

@media (max-width: 771px) {
  #menu-top-nav {
    padding-right: 25px;
  }
}

@media (max-width: 767px) {
  .slideimg {
    height: 300px;
  }

  .navbar-brand {
    padding: 20px 0px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .search_container {
    top: 12px;
  }

  ul#menu-main-nav ul {
    position: static !important;
  }

  ul#menu-main-nav li:hover > ul {
    display: unset !important;
  }

  .dropdown-menu {
    background-color: unset;
    border: none;
  }

  .dropdown-menu a {
    padding: 5px 15px;
  }

  .section-padded {
    padding-top: calc(2 * var(--spacing-unit));
    padding-bottom: calc(2 * var(--spacing-unit));
  }

  .section-padded-lg {
    padding-top: calc(4 * var(--spacing-unit));
    padding-bottom: calc(4 * var(--spacing-unit));
  }

  .block-padding {
    padding: calc(2 * var(--spacing-unit));
  }

  #homepage-header {
    min-height: 400px;
    border-top-left-radius: 200px;
  }

  #subpage-header {
    border-top-left-radius: 200px;
  }

  #single-post-header,
  #single-post-header .overlay {
    min-height: 400px;
    border-top-left-radius: 200px;
  }

  .homepage-blocks-inner {
    border-bottom-right-radius: 100px;
  }

  #homepage-events {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }

  .this-weekend-inner {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
  }

  /* These styles are for the alternating black/white effect. 
    These classes are added dynamically to containers with the class "candycane", via candycane-effect.js 
    This does NOT apply to the homepage blocks, which have their own styles, 
    and is mainly intended for single pages for categories and locations.
    */
  .candycane-black > div {
    border-radius: 0 100px 100px 0;
  }
  .candycane-white > div {
    border-radius: 100px 0 0 100px;
  }
  .candycane-single > div {
    border-radius: 0 0 100px 0;
  }
  .candycane-first.candycane-black > div {
    border-radius: 0 0 100px 0;
  }
  .candycane-first.candycane-white > div {
    border-radius: 0 0 0 100px;
  }
  .candycane-last.candycane-black > div {
    border-radius: 0 100px 0 0;
  }
  .candycane-last.candycane-white > div {
    border-radius: 100px 0 0 0;
  }

  .location-container {
    flex-direction: column;
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .location-col {
    padding: 0px 15px;
    width: 100%;
  }

  .location-container .location-col + .location-col {
    border-left: none;
  }

  #single-post-header h1 {
    font-size: 45px;
  }

  #single-post-header .address {
    text-align: left;
    font-size: 18px;
  }

  .searchbox-icon,
  .searchbox-submit {
    top: 1px;
  }

  #google-maps-section iframe {
    padding: 15px 0;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  #mainMenuPopUpCloseWrap {
    right: 15px;
  }

  #footer .navbar-brand {
    display: flex;
    justify-content: center;
    margin: auto;
  }

  #footer .footer-info {
    border-right: unset;
    border-bottom: 1px solid #000;
    padding-bottom: 30px;
  }

  #footer .footer-menu {
    padding: 30px 15px;
  }

  .slideimg,
  #header-image {
    background-attachment: unset !important;
  }
}
