/*
Theme Name: Seek and Hide: Citadel
Author: MRZ Design
Author URI: www.mrz.design
Requires at least: 5.9
Tested up to: 5.9
Requires PHP: 5.6
Version: 1.0.0
*/

/* ==========================================================================
   General Styles 
   ========================================================================== */

@font-face {
  font-family: "Nunito-Bold";
  src: url("/wp-content/themes/seek-and-hide/assets/fonts/Nunito-Bold.woff2")
      format("woff2"),
    url("/wp-content/themes/seek-and-hide/assets/fonts/Nunito-Bold.woff")
      format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora-Medium";
  src: url("/wp-content/themes/seek-and-hide/assets/fonts/Lora-Medium.woff2")
      format("woff2"),
    url("/wp-content/themes/seek-and-hide/assets/fonts/Lora-Medium.woff2")
      format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora-Italic";
  src: url("/wp-content/themes/seek-and-hide/assets/fonts/Lora-Italic.woff2")
      format("woff2"),
    url("/wp-content/themes/seek-and-hide/assets/fonts/Lora-Italic.woff2")
      format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Color Palette */

:root {
  --color-primary: #d94c4d;
  --color-secondary: #002e1c;
  --color-complimentary: #5b4687;
  --color-green: #767334;
  --color-light: #e5e4d4;
  --color-dark: #1d1511;
  --color-white: #fff;
  --color-black: #000;
  --color-ten: #f4dfcc;

  --color-messageError: #d94c4d;
  --color-messageSuccess: #00fff5;
  --color-fieldError: #eb5757;

  --font-title: "Nunito-Bold", sans-serif;
  --font-text: "Lora-Medium", sans-serif;
}

/* Body */

html,
body {
  padding: 0;
  margin: 0;
  font-family: var(--font-text);
  color: var(--color-secondary);
  background: var(--color-light);
  background-image: url("/wp-content/themes/seek-and-hide/assets/images/texture.png");
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Typography styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  margin: 10px 0;
}

h1 {
  font-size: 64px;
  line-height: 72px;
}

h2 {
  font-size: 42px;
  line-height: 48px;
}

h3 {
  font-size: 28px;
  line-height: 32px;
}

h4 {
  font-size: 24px;
  line-height: 26px;
}

h5 {
  font-size: 24px;
  line-height: 26px;
}

p,
a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.paragraph--large {
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 30px;
}

blockquote {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  margin: 20px 0 50px 0;
  padding-left: 30px;
  border-left: 2px solid var(--color-primary);
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

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

ul {
  padding: 0;
  margin: 0;
}

.headline strong {
  color: var(--color-green);
}

.main-font {
  font-family: var(--font-title);
}

.text-font {
  font-family: var(--font-text);
}

.text-large {
  font-size: 32px;
  line-height: 38px;
}

.text-small {
  font-size: 16px;
  line-height: 20px;
}

.text-upper {
  text-transform: uppercase;
}

.text-font-normal {
  font-weight: 400;
}

.text-font-italic {
  font-style: italic;
}

.text-font-bold {
  font-weight: 700;
}

.gray-color {
  background: var(--color-dark);
}

/* Effects */

.glow {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Color Codes */

.color-red {
  color: var(--color-red);
}

.color-white {
  color: var(--color-white);
}

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

.max-560 {
  max-width: 560px;
}

.whitespace {
  height: 20px;
}

.p-relative {
  position: relative;
}

/***********************
        DIVIDER
***********************/

.divider {
  width: 90%;
  max-width: 1400px;
  text-align: center;
  height: 42px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider::before {
  content: "";
  height: 1px;
  width: 38%;
  left: 10%;
  margin: 0px auto;
  background: var(--color-secondary);
  display: block;
  position: absolute;
}

.divider::after {
  content: "";
  height: 1px;
  width: 38%;
  right: 10%;
  margin: 0px auto;
  background: var(--color-secondary);
  display: block;
  position: absolute;
}

.divider img {
  top: -30px;
}

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

header {
  background: var(--color-secondary);
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

#nav {
  display: flex;
  justify-content: flex-start;
  transition: 0.4s all;
  padding: 20px 0px;
}

.nav li:nth-child(2) {
  margin-right: 100px;
}

.nav li:nth-child(3) {
  margin-left: 100px;
}

.nav li {
  display: flex;
  list-style: none;
  padding: 10px 40px;
}

.nav li a {
  font-family: var(--font-title);
  font-weight: 600;
}

.language {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--color-white);
  width: 200px;
}

.logo {
  display: flex;
  background: #00000000;
  padding: 20px;
  position: absolute;
  left: calc(50% - 85px);
}

.logo img {
  height: 50px;
  transition: 0.4s all;
}

.logo:hover {
  transform: scale(0.95);
}

.sub-menu {
  box-shadow: 0px 4px 5px #00000017;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children ul {
  position: absolute;
  top: 65px;
  left: 20px;
  max-height: 0;
  background: var(--color-light);
  overflow: hidden;
  transition: 0.4s;
  min-width: 150px;
}

.menu-item-has-children ul li {
  padding: 5px;
  margin: 10px 0px;
}

.menu-item-has-children ul li a {
  width: 100%;
  display: block;
  color: var(--color-secondary);
}

.menu-item-has-children ul li a:hover {
  color: var(--color-primary);
}

.menu-item-has-children:after {
  content: "\e906";
  font-family: "mrz-iconset";
  margin-left: 8px;
  position: relative;
  height: 10px;
  padding: 2px;
  font-size: 10px;
  top: 6px;
  transition: 0.4s all;
  transform-origin: 50% 45%;
  color: var(--color-light);
}

.menu-item-has-children:hover ul {
  max-height: 100px;
}

.menu-item-has-children:hover:after {
  transform: rotate(-180deg);
}

.mega-menu {
  position: relative;
}

.mega-menu .sub-menu {
  position: absolute;
  width: 900px;
  left: calc(50% - 250px);
  border-radius: 0px 0px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-menu:hover ul {
  max-height: 260px;
}

.nav .menu-col {
  width: 33%;
  overflow: hidden;
  padding: 0px;
  margin: 0px !important;
  text-align: center;
}

.nav .menu-col a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.menu-col:hover {
  background-color: var(--color-light);
  border-radius: 5px;
}

.menu-col img {
  width: 180px;
  padding: 20px 20px 10px 20px;
  object-fit: contain;
  border-radius: 5px;
  transition: 0.4s all;
}

.menu-col img:hover {
  transform: scale(1.02);
}

.header-cta {
  width: 225px;
}

.header-cta .btn {
  margin: 0px;
}

.header-cta-mobile {
  display: none !important;
}

/***********************
    SECTION HERO
***********************/

.seek-banner h1 {
  text-shadow: 0px 5px 10px #00000038;
}

.seek-title {
  text-align: center;
  font-size: 32px;
  width: 33%;
  position: absolute;
  right: 0;
}

.about-squirell {
  margin-top: -50px;
}

/***********************
       FOOTER
***********************/

.footer {
  margin: 0px auto;
  background: var(--color-secondary);
  color: var(--color-ten);
  border-bottom: 5px solid var(--color-primary);
  overflow: visible;
  z-index: 1;
}

.footer .container {
  padding: 10vh 0;
}

.footer p {
  line-height: 22px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer .container a {
  color: var(--color-ten);
  padding-left: 0px;
  transition: 0.4 all;
  cursor: pointer;
}

.footer h3 {
  color: var(--color-primary);
}

/* Footer Navigation Link Hover */

.footer .container li a:hover {
  padding-left: 18px;
}

.footer .container li a::before {
  content: "\e905";
  font-family: "mrz-iconset";
  display: block;
  position: absolute;
  margin-top: 2px;
  font-size: 12px;
  color: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.footer .container li a:hover::before {
  opacity: 1;
}

.footer-area .headline::after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  margin: 15px 0px;
  border-radius: 2px;
  background: var(--color-green);
}

.footer-area-one p {
  display: none;
}

/* Copyright Section */

.copyright {
  width: 90%;
  margin: 20px auto;
  max-width: 1440px;
  font-size: 12px;
}

.copyright a {
  color: var(--color-ten);
  font-size: 12px;
  margin-left: 3px;
}

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

.ancp a:hover img {
  transform: scale(0.95);
}

.ancp img {
  max-width: 160px;
  border-radius: 5px;
  transition: 0.3s all;
}

/* Footer Logo */

.footer .logo-footer {
  background: var(--color-primary);
  border-radius: 100px;
  display: flex;
  margin-top: -70px;
  padding: 30px;
}

.logo-footer img {
  height: 95px;
}

.footer .logo-footer:hover {
  transform: scale(0.95);
}

.footer-area a {
  font-family: var(--font-title);
}

/***********************
      BLOG ARTICLE
***********************/

.archives {
  margin-bottom: 10vh;
}

.blog .article-item {
  margin-bottom: 40px;
}

.blog h1 {
  margin: 6vh 0;
}

.post {
  margin-top: -85px;
}

.post .container-full {
  background: var(--color-light);
  background-image: url("/wp-content/themes/seek-and-hide/assets/images/texture.png");
  position: relative;
  z-index: 1;
  padding: 2% 0;
}

.post h1 {
  font-size: 54px;
  line-height: 64px;
}

.post a {
  color: var(--color-primary);
}

.post a:hover {
  color: var(--color-secondary);
}

.post-feature {
  width: 100%;
  height: 50vh;
  top: -100px;
  overflow: hidden;
  position: sticky;
}

.post-feature img {
  width: 100%;
  object-fit: cover;
}

.meta-container {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-dark);
}

.meta-container a {
  color: var(--color-primary);
}

.meta-container,
.meta-container li {
  font-size: 15px;
}

.meta-container .date {
  min-width: 100px;
}

.category ul {
  display: flex;
}

.category ul li,
.tags a {
  list-style: none;
  margin-left: 10px;
}

.block {
  padding: 50px;
  min-height: 20vh;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */

/* Color Container */

.comments {
  width: 100%;
}

.comments label {
  font-weight: bold;
}

.comments form input,
.comments form textarea {
  background: #00000000;
  color: var(--color-black);
  font-size: 14px;
  border: 1px solid var(--color-dark);
  margin-top: 10px;
  padding: 0px 10px;
}

.comments form input {
  height: 45px;
}
.comments form textarea {
  height: 100px;
  padding-top: 10px;
}

.comment {
  background: var(--color-white);
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--color-dark);
}

.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.comment-author img {
  margin-right: 20px;
  border-radius: 50px;
}

.comment-author cite {
  font-style: normal;
  margin-right: 10px;
}

.comment-author cite a {
  font-size: 18px;
  font-weight: bold;
}

.comment-list {
  padding: 0;
}

.comment .odd {
  background-color: #f3f3f3;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email {
  display: flex;
  flex-direction: column;
}

.comment-form-author,
.comment-form-email {
  width: 48%;
  float: left;
}

.comment-form-author {
  margin-right: 4%;
}

.comment-respond {
  max-width: 800px;
  margin: 5vh auto;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  float: left;
}
.comment-form-cookies-consent input {
  height: 20px !important;
  margin-top: 4px !important;
  margin-right: 10px;
}

.form-submit .submit {
  width: 100%;
  display: inline-block;
  opacity: 1;
  height: 46px;
  padding: 0 40px;
  text-align: center;
  font-size: 16px;
  line-height: 46px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-title);
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--color-primary);
  color: var(--color-black);
}

.form-submit .submit:hover {
  background: var(--color-secondary);
}

/* ==========================================================================
   COOKIE POPUP
   ========================================================================== */

/* Cookie Popup */

.cookie-popup {
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  bottom: -6.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 0.625rem 0.9375rem;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.15);
  line-height: 150%;
  transition: opacity 0.5s;
  opacity: 0;
  z-index: 99999;
  background: var(--color-secondary);
  border-radius: 20px;
  color: var(--color-white);
}

.cookie-popup--short {
  right: none;
  width: 21.875rem;
}

.cookie-popup--dark {
  background: #000;
  color: #fff;
}
.cookie-popup--not-accepted {
  opacity: 1;
  animation: cookie-popup-in 0.5s ease forwards;
}
.cookie-popup--accepted {
  opacity: 0;
}
.cookie-popup a {
  color: var(--color-complimentary);
  font-family: var(--font-text);
  font-size: 16px;
}

.cookie-popup a:hover {
  color: var(--color-primary);
}
.cookie-popup a:visited {
  color: skyblue;
  text-decoration: none;
}
.cookie-popup-actions {
  flex: 1;
  text-align: right;
}
.cookie-popup-actions button {
  color: var(--color-black);
  border: none;
  background: none;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-title);
  background: var(--color-ten);
  padding: 10px;
  border-radius: 5px;
  transition: 0.5s all;
}

.cookie-popup-actions button:hover {
  background: var(--color-primary);
}

@keyframes cookie-popup-in {
  from {
    bottom: -6.25rem;
  }
  to {
    bottom: 1.25rem;
  }
}

.wp-block-cover__inner-container {
  width: 90% !important;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

/* Color Container */

.nothing {
  height: 70vh;
}

.nothing h1 {
  font-size: 10vh;
  margin: 0px;
}

.nothing-img {
  max-width: 40vh;
}

/* ==========================================================================
   SEARCH
   ========================================================================== */

/* Search Form */

.search {
  max-width: 400px;
  margin: 30px auto;
  box-shadow: 0px 0px 10px #00000012;
}

.search form {
  display: flex;
}

/* Search Input */

.search input {
  background: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  font-family: var(--font-text);
}

.search form input[type="search"] {
  width: 70%;
}

/* Search Button */

.search form input[type="submit"] {
  width: 30%;
  font-weight: bold;
  background: var(--color-primary);
  transition: all 0.3s;
}

.search form input[type="submit"]:hover {
  background: var(--color-secondary);
}

/* ==========================================================================
   ARCHIVE PAGE
   ========================================================================== */

/* Archive Item */

.archive-item {
  padding: 20px;
  margin-bottom: 20px;
}

.post-thumbnail {
  margin-bottom: 20px;
  border-radius: 10px;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
}

.pagination a {
  color: var(--color-primary);
  font-size: 16px;
  padding: 0px 4px;
}

.post-title a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.post-title a:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

/* Contact Label */

.wpcf7 label {
  font-weight: bold;
  display: block;
  font-size: 16px;
}

/* Contact Input */

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--color-secondary);
  border-style: none none dotted none;
  color: var(--color-black);
  font-size: 16px;
}

/* Contact Submit */

.wpcf7 .btn {
  width: 100%;
}

/* Contact Validation Alert */

.wpcf7-not-valid-tip {
  position: absolute;
  top: -32px;
  right: 0;
}

.wpcf7 input[type="submit"] {
  padding: 0 40px;
  margin-bottom: 10px;
  background: var(--color-complimentary);
  color: var(--color-white);
  font-size: 16px;
  line-height: 46px;
  font-weight: bold;
  font-family: var(--font-title);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.4s;
}

/* Contact Submit Error */

.wpcf7 form .wpcf7-response-output {
  margin: 0px 0px 50px 0px;
  padding: 10px;
  text-align: center;
  background: var(--color-messageError);
  border-radius: 5px;
  border: 0px;
}

/* Contact Loader */

.wpcf7-spinner {
  position: absolute;
  left: inherit;
  background-color: var(--color-primary);
  opacity: 1;
  width: 600px;
  border-radius: 0px;
  margin-left: -600px;
  padding: 0;
  height: 46px;
  transition: all 0.5;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 13px;
  left: 280px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.slideshow-container {
  color: var(--color-white);
}

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.accordion-container {
  width: 100%;
}

button.accordion {
  width: 100%;
  align-items: center;
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 20px;
  color: var(--color-black);
  cursor: pointer;
  background: var(--color-white);
  transition: background-color 0.2s linear;
}

button.accordion:after {
  content: "\e903";
  font-family: "mrz-iconset";
  font-size: 18px;
  float: right;
  transition-duration: 0.2s;
  transition-property: transform;
}

button.accordion.is-open:after {
  transform: rotate(180deg);
}

button.accordion:hover,
button.accordion.is-open {
  background-color: #ddd;
}

.accordion-content {
  background-color: var(--color-white);
  border-left: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  padding: 0px 20px;
  max-height: 0;
  overflow: hidden;
  display: flex;
  transition: max-height 0.2s ease-in-out;
  align-items: center;
  border-bottom: 1px solid var(--color-dark);
}

.read-time {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 5px;
  border-radius: 6px;
  justify-content: center;
  min-width: 100px;
  position: absolute;
  margin: 12px;
  text-align: center;
  z-index: 9;
}

/* ==========================================================================
   AUTHOR PAGE
   ========================================================================== */

.author-profile-card {
  margin-top: 20px;
  border-bottom: 1px solid var(--color-gray);
  padding: 30px 20px;
  text-align: center;
}

.author-profile-card a {
  color: var(--color-primary);
  display: block;
  margin-bottom: 10px;
}

.author-profile-card a:hover {
  color: var(--color-secondary);
}

.author-profile-card .author-photo img {
  border-radius: 100%;
}

.author-posts h3 a {
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: bold;
}

.author-posts h3 a:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

/* Home Accomodation */

.home-citadel {
  padding-bottom: 0;
}

.home-accomodation-title {
  position: absolute;
  top: 10vh;
}

.home-accommodation {
  align-items: flex-start;
}

.home-accommodation div:nth-child(2) {
  margin-top: 70px;
}

.home-accommodation div:nth-child(2)::after {
  content: url("/wp-content/themes/seek-and-hide/assets/images/mascot-vaze.png");
  position: absolute;
  margin-left: -460px;
  margin-top: 350px;
}

.home-accommodation div:nth-child(3) {
  margin-top: -40px;
}

.home-accommodation div:nth-child(3)::before {
  content: url("/wp-content/themes/seek-and-hide/assets/images/mascot-boot.png");
  position: relative;
  margin-bottom: -100px;
  left: -100px;
  z-index: 9;
}

.home-accommodation div:nth-child(4) {
  margin-top: 200px;
}

.home-accommodation h5 {
  margin: 30px 0px;
}

/* Instagram */

.instagram-section .btn {
  justify-content: flex-end;
}

.sbi_photo {
  border-radius: 20px;
}

/* ==========================================================================
   STORY PAGE
   ========================================================================== */

/* Hidden Story */

.story-container {
  width: 325px;
  height: 200px;
  padding: 0px;
  margin: 0px;
  background: url("/wp-content/themes/seek-and-hide/assets/images/story-hover.png")
    no-repeat;
  display: inline-block;
  cursor: pointer;
  transition: 0.4s all;
}

.story-container:hover {
  background: url("/wp-content/themes/seek-and-hide/assets/images/story-normal.png");
}

.story-container .btn-modal {
  width: 170px;
  height: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
  position: absolute;
  background: #d94c4d00;
  box-sizing: border-box;
  align-items: center;
  font-family: var(--font-title);
  color: #fff0;
  line-height: 16px;
  margin: 0px;
  left: calc(50% - 70px);
}

.story-container .btn-modal:hover {
  box-shadow: none;
  color: #ffffff;
}

.story-container .modal-content .paragraph--large {
  display: flex;
  align-items: center;
}

.story-container .modal-content .paragraph--large::before {
  content: url("/wp-content/themes/seek-and-hide/assets/images/story-acrons.png");
  width: 180px;
  margin-right: 30px;
  position: relative;
  display: flex;
}

.seek-joy {
  position: absolute;
  right: 0;
  width: 300px;
  bottom: 0;
}

/* ==========================================================================
   LOCATION PAGE
   ========================================================================== */

/* Features */

.cherish-moments {
  position: relative;
}

.cherish-moments::before {
  content: url("/wp-content/themes/seek-and-hide/assets/images/mascot-sleep.png");
  display: block;
  position: absolute;
  z-index: 9;
  bottom: -50px;
}

/* Features */

.icon-before {
  display: flex;
  align-items: center;
}

.icon-before::before {
  font-family: "seek";
  position: relative;
  display: flex;
  margin-right: 10px;
  color: var(--color-primary);
  font-size: 22px;
}

.icon-bedroom::before {
  content: "\e901";
}

.icon-bathroom::before {
  content: "\e900";
}

.icon-guests::before {
  content: "\e906";
}

.icon-livingroom::before {
  content: "\e90a";
}

.icon-kitchen::before {
  content: "\e909";
}

.icon-full-kitchen::before {
  content: "\e905";
}

.icon-full-towel::before {
  content: "\e910";
}

.icon-wifi::before {
  content: "\e914";
}

.icon-tv::before {
  content: "\e912";
}

.icon-iron::before {
  content: "\e908";
}

.icon-hair::before {
  content: "\e907";
}

.icon-wash::before {
  content: "\e913";
}

.icon-toys::before {
  content: "\e904";
}

.icon-crib::before {
  content: "\e911";
}

.icon-chair::before {
  content: "\e902";
}

.icon-smoke::before {
  content: "\e90d";
}

.icon-pets::before {
  content: "\e90c";
}

.icon-party::before {
  content: "\e90b";
}

.icon-quite::before {
  content: "\e90f";
}

.icon-check-out::before {
  content: "\e90e";
}

.icon-check-in::before {
  content: "\e903";
}

/* Review */

.review-section blockquote {
  border: none;
  margin: 0 0 50px 0;
  padding: 0;
  text-align: center;
  line-height: 36px;
}

.review-container {
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  font-family: var(--font-title);
  margin-top: 50px;
}

.review-container .wp-block-image {
  margin: 0px 10px 0px 0px;
}

/* ==========================================================================
   BOOKING PAGE
   ========================================================================== */

/* Calendar */

.booking-section {
  margin-top: -100px;
  margin-bottom: 20vh;
}

.booking {
  background: var(--color-white);
  max-width: 1100px;
  align-items: flex-start;
}

.booking .vrc-calendar {
  width: 55%;
  margin-right: 5%;
}

.booking label,
.calendar-legend-text {
  font-family: var(--font-title);
  font-size: 14px;
}

.calendar-header {
  border-bottom: 1px solid var(--color-green);
  padding-bottom: 20px !important;
}

.day-number {
  padding: 10px;
}

.calendar-month-name {
  font-family: var(--font-title);
  font-size: 24px !important;
  background: var(--color-green);
  margin: 0 !important;
  padding: 10px;
  color: var(--color-white) !important;
}

.calendar-day-head {
  background: #002e1c !important;
  padding: 10px !important;
  color: white !important;
  font-family: var(--font-title);
}

.vrc .btn-danger {
  background: var(--color-complimentary) !important;
  border: 0px !important;
  font-family: var(--font-title);
}

.vrc.vrc-calendar.vrc-calendar-id-1 td.calendar-day .day-number.hasClicked {
  background-color: var(--color-complimentary) !important;
}

.date_update {
  font-family: var(--font-title);
  font-size: 18px !important;
  margin-bottom: 20px;
}

#vrc-booking-form-wrapper,
.vrc.vrc-calendar.vrc-calendar-id-1 .calendar-month-container {
  border: 0px !important;
}

.booking-heading {
  background: var(--color-secondary) !important;
  border-radius: 10px;
  text-align: center;
}

.vrc.vrc-calendar.vrc-calendar-id-1 td.calendar-day .day-number.event-day,
.vrc.vrc-calendar.vrc-calendar-id-1 .day-number.event-day {
  background: var(--color-fieldError) !important;
}

.vrc .has-error .help-block {
  color: var(--color-primary) !important;
  font-family: var(--font-title);
  font-size: 12px;
}

.bottom {
  width: 100%;
  height: 18px;
  margin-top: -17px;
  z-index: 9;
  position: relative;
}

.bottom::before {
  content: "";
  background: #e1e0d2;
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  border-radius: 0px 20px 0px 0px;
}

.bottom::after {
  content: "";
  background: #e1e0d2;
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  border-radius: 20px 0px 0px 0px;
}

.max-height-500 {
  max-height: 500px;
}

.seek-banner {
  flex-direction: column;
  padding: 0px;
  width: 100%;
  margin: 0px auto;
  max-width: 1920px;
  border-radius: 0px 0px 10px 10px;
}

.banner-content {
  position: absolute;
  text-align: center;
  z-index: 2;
}

.banner-content .column-full {
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
}

.seek-banner .slideshow-container,
.seek-banner .slide {
  height: 80vh;
}

/* ==========================================================================
   CALENDAR
   ========================================================================== */

.wpbs-main-wrapper {
  width: 96%;
  padding: 2%;
  margin: 20px auto;
  max-width: 1440px;
  position: relative;
  display: flex;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 10px;
  box-sizing: border-box;
}

.wpbs-container,
.wpbs-form-container {
  width: 48%;
}

.wpbs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wpbs-container h2 {
  margin-bottom: 5vh;
}

.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field label {
  padding: 0px !important;
  font-family: var(--font-title);
  font-size: 15px;
}

.wpbs-container .wpbs-calendars .wpbs-calendar-wrapper,
.wpbs-legend,
.wpbs-container .wpbs-calendars .wpbs-calendar .wpbs-calendar-header {
  background: var(--color-white) !important;
  border: none !important;
}

.wpbs-container .wpbs-calendars .wpbs-calendar {
  border: 0px !important;
  width: 48%;
}

.wpbs-main-wrapper .wpbs-form-container {
  padding: 0px !important;
}

.wpbs-container .wpbs-calendars .wpbs-calendar table tr td,
.wpbs-container .wpbs-calendars .wpbs-calendar table tr th {
  padding: 0px !important;
}

.wpbs-prev,
.wpbs-next {
  background: var(--color-secondary) !important;
}

.wpbs-prev:hover,
.wpbs-next:hover {
  background: var(--color-primary) !important;
}

.wpbs-tooltip-active .wpbs-date-inner .wpbs-date-number,
.wpbs-date-hover .wpbs-date-inner .wpbs-date-number {
  background: #e6e4d5;
  color: var(--color-white) !important;
}

.wpbs-date-selected .wpbs-date-number {
  background: #e6e4d5;
}

.wpbs-selected-first .wpbs-date-number,
.wpbs-selected-last .wpbs-date-number {
  background: var(--color-complimentary) !important;
  color: var(--color-white) !important;
}

.wpbs-container.wpbs-calendar-1 .wpbs-legend-item-1 .wpbs-date-number {
  color: var(--color-white) !important;
}
.wpbs-calendar-header-navigation {
  font-size: 18px !important;
  font-family: var(--font-title);
}

.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field input[type="email"],
.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field input[type="number"],
.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field input[type="text"],
.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field textarea,
.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field select {
  width: 100%;
  border-top: 0px !important;
  border-left: 0px !important;
  border-right: 0px !important;
  border-bottom: 1px solid #e6e4d5;
  color: var(--color-black) !important;
  font-size: 16px;
  padding: 10px 0px;
  background: none !important;
  outline: none;
  box-sizing: border-box;
}

.wpbs-form-field-label {
  margin-bottom: 10px;
}

.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field {
  padding-bottom: 10px !important;
}

.wpbs-main-wrapper .wpbs-form-container .wpbs-form-field button[type="submit"] {
  background: var(--color-complimentary) !important;
  color: var(--color-white) !important;
  text-align: left !important;
  display: flex !important;
  align-items: center !important;
  font-size: 16px !important;
  justify-content: center !important;
  font-weight: bold !important;
  font-family: var(--font-title) !important;
  box-sizing: border-box !important;
  border: none !important;
  cursor: pointer !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  transition: all 0.4s !important;
  padding: 15px 30px !important;
  width: 100% !important;
}

.wpbs-overview-container {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.wpbs-overview-container .wpbs-overview-row .wpbs-overview-row-header {
  left: inherit;
}

.wpbs-overview-container .wpbs-legend-item-icon-1 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-17 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-13 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-25 div:first-of-type {
  background: #e5e3d4 !important;
}

.wpbs-overview-container .wpbs-legend-item-icon-2 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-3 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-4 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-14 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-15 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-16 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-18 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-19 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-20 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-26 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-27 div:first-of-type,
.wpbs-overview-container .wpbs-legend-item-icon-28 div:first-of-type {
  background: #f4dfcc !important;
}

.wpbs-calendar-header-inner a {
  color: var(--color-secondary);
  font-size: 18px !important;
}

.wpbs-calendar-header-inner a:hover {
  color: var(--color-primary);
}

.wpbs-main-wrapper
  .wpbs-form-container
  .wpbs-form-field.wpbs-form-field-payment_method
  .wpbs-form-field-input
  label
  span {
  background: #e2e2e2 !important;
}

.wpbs-main-wrapper table.wpbs-pricing-table thead th,
.wpbs-main-wrapper table.wpbs-pricing-table tr.wpbs-line-item-subtotal td,
.wpbs-main-wrapper table.wpbs-pricing-table tr.wpbs-line-item-total td {
  background: var(--color-white) !important;
}

.wpbs-main-wrapper
  .wpbs-form-container
  .wpbs-form-field.wpbs-form-field-payment_method
  .wpbs-form-field-input
  label:hover
  input
  ~ span {
  background: #b3b196 !important;
}

.wpbs-overview-container .wpbs-overview-row .wpbs-overview-row-header {
  font-size: 18px !important;
  line-height: 24px !important;
}

.wpbs-overview-container .wpbs-overview-row .wpbs-overview-row-header-inner {
  line-height: 24px !important;
}

.wpbs-form-field-total {
  margin-top: 10px;
}

.wpbs-overview-container .wpbs-overview-row .wpbs-overview-row-header-inner,
.wpbs-overview-header .wpbs-overview-row-content > div .wpbs-date,
.wpbs-overview-row-abbreviations .wpbs-overview-row-content > div .wpbs-date {
  background: var(--color-white);
  font-family: var(--font-title);
}

.wpbs-overview-container .wpbs-overview-row-abbreviations .wpbs-date-inner {
  color: #979666;
}

.wpbs-overview-container
  .wpbs-overview-header-navigation
  .wpbs-overview-row-header-inner
  select {
  font-family: var(--font-title) !important;
  font-size: 12px;
}

.wpbs-main-wrapper table.wpbs-pricing-table td,
.wpbs-main-wrapper table.wpbs-pricing-table th,
.wpbs-main-wrapper table.wpbs-pricing-table td:first-child,
.wpbs-main-wrapper table.wpbs-pricing-table th:first-child {
  border: none !important;
}

.wpbs-pricing-table th {
  background: var(--color-white) !important;
}

.gallery-slick .wp-block-image img {
  width: 95% !important;
  margin: 2.5% !important;
  border-radius: 10px;
}

.wpbs-line-item-total td,
.wpbs-line-item-total td span {
  font-family: var(--font-title);
}

.wpbs-line-item-total td span {
  font-size: 20px;
}

.gallery-slick .slick-dots {
  bottom: -30px;
}

.line-1,
.line-2,
.line-3 {
  max-width: 1440px;
}

.line-1 {
  background: url("/wp-content/uploads/2023/09/line-1.svg") no-repeat;
  background-position: 10% center;
  background-size: contain;
}

.line-2 {
  background: url("/wp-content/uploads/2023/09/line-2.svg") no-repeat;
  background-position: 78%;
  background-size: contain;
}

.line-3 {
  background: url("/wp-content/uploads/2023/09/line-3.svg") no-repeat;
  background-position: 15% center;
  background-size: contain;
}

.home-thumb {
  align-items: center;
}

.home-thumb .wp-block-image {
  max-width: 550px;
}

.icon-before {
  font-family: var(--font-text) !important;
  line-height: 130%;
}

.no-line::before,
.no-line::after {
  display: none;
}
