/*!
Theme Name: Letme Travel
Theme URI: https://webdeveloper.com.ua/
Author: webdeveloper.com.ua
Author URI: https://t.me/webdeveloper_com_ua
Description:
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: letme-travel
Tags:
----------------------------------------------------------------------------------------- */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

*:focus,
*:active {
  outline: none;
}

:root {
  /* font */
  --font-serif: "Prata", serif;
  --font-sans-serif: "Montserrat", sans-serif;

  /* color */
  --color-black: #000000;
  --color-black-light: #202020;
  --color-black-trans: rgba(27, 27, 27, 0.08);
  --color-black-overlay: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.24) 32%,
    rgba(0, 0, 0, 0.4) 64%,
    rgba(0, 0, 0, 0.8) 100%
  );

  --color-white: #ffffff;
  --color-white-trans: rgba(255, 255, 255, 0.08);

  --color-accent: #0eb27f;
  --color-accent-trans: rgba(14, 178, 126, 0.08);

  --color-gray: #878787;
  --color-gray-dark: #5d5d5d;
  --color-gray-light: #f8f8f8;
}

html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-weight: 500;
  font-display: auto;
  font-family: var(--font-sans-serif);
}

/*  responsive
------------------------------------------ */

/* responsive hide */
@media only screen and (max-width: 1280px) {
  .hide-1280 {
    display: none !important;
  }
}

@media only screen and (max-width: 992px) {
  .hide-992 {
    display: none !important;
  }
  /* reverse 992 */
  .reverse-992 {
    flex-direction: column-reverse !important;
  }
}

@media only screen and (max-width: 768px) {
  .hide-768 {
    display: none !important;
  }
}

@media only screen and (max-width: 576px) {
  .hide-576 {
    display: none !important;
  }
}

/* responsive show */
@media only screen and (min-width: 1280px) {
  .show-1280 {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  /* show 992 */
  .show-992 {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .show-768 {
    display: none !important;
  }
}

@media only screen and (min-width: 576px) {
  .show-576 {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  HTML
 *
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */

:root {
  /* heading */
  --font-size-h1: 2.64rem;
  --font-size-h2: 1.32rem;
  --font-size-h3: 1.24rem;
  --font-size-h4: 1.16rem;
  --font-size-h5: 1.08rem;
  --font-size-h6: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0 !important;
  font-family: var(--font-serif);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.56;
}

ul,
ol,
dl {
  line-height: 1.56;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

hr {
  border: none;
  border-bottom: 1px solid var(--color-black-trans);
}

blockquote {
  padding: 16px;
  font-style: italic;
  position: relative;
  background: var(--color-accent-trans);
  border-left: 2px solid var(--color-accent);
}

/*  table
------------------------------------------ */
table,
td,
th {
  border: 1px solid var(--color-black-trans);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

tr:nth-child(even) {
  background-color: var(--color-accent-trans);
}

td,
th {
  padding: 16px;
  text-align: left;
  line-height: 1.56;
  position: relative;
}

/* thaed */
thead {
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-accent);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* heading */
    --font-size-h1: 1.48rem;
  }
  table {
    min-width: max-content;
  }

  .table-wrapper {
    overflow-x: scroll;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site layout
 *
 *  ——
 *  ——
 *  ——
 *
----------------------------------------------------------------------------------------- */
:root {
  /* column */
  --column-padding: 16px;

  /* container */
  --container-width: 1280px;
}

/*  site layout: container
------------------------------------------ */
.container,
.container-short {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--column-padding);
  max-width: var(--container-width);
}

/* container short */
.container-short {
  max-width: 992px;
}

/*  site layout: row
------------------------------------------ */
.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.y-center {
  align-items: center;
}

.x-space-between {
  justify-content: space-between;
}

.x-reverse {
  flex-direction: row-reverse;
}

/*  site layout: column
------------------------------------------ */
[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: var(--column-padding);

  /* column gap */
  display: flex;
  flex-direction: column;
  gap: calc(var(--column-padding) * 2);
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1280px) {
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site header
 *
 *  —— tophead
 *  —— masthead
 *  —— mastside
 *
----------------------------------------------------------------------------------------- */
:root {
  /* tophead */
  --tophead-height: 48px;

  /* midhead */
  --midhead-height: 96px;

  /* menu */
  --masthead-menu-gap: 24px;
  --masthead-menu-item-gap: 4px;
  --masthead-menu-item-height: 40px;
  --masthead-menu-item-icon-size: 24px;
  --masthead-menu-item-icon-color: var(--color-black);
  --masthead-menu-item-icon: url("https://api.iconify.design/ri/arrow-down-s-fill.svg")
    no-repeat center / contain;

  /* menu sub */
  --masthead-sub-menu-gap: 8px;
  --masthead-sub-menu-width: 220px;
  --masthead-sub-menu-padding: 24px;
}

/* site header */
.site-header {
  top: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
  border-bottom: 1px solid var(--color-white-trans);
}

/* onscroll site header */
.onscroll .site-header {
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.08);
}

/*  tophead
------------------------------------------ */
#tophead {
  height: var(--tophead-height);
  background: var(--color-accent);
}

/*  midhead
------------------------------------------ */
#midhead {
  height: var(--midhead-height);
}

/*  site header: masthead
----------------------------------------------------------------------------------------- */
.masthead,
.masthead-panel,
.masthead [class*="col-"] {
  gap: 0 32px;
  display: flex;
  align-items: center;
}

/* masthead */
.masthead {
  font-weight: 600;
}

/* masthead column */
.masthead [class*="col-"] {
  flex-direction: row;
  justify-content: space-between;
  padding: 0 var(--column-padding);
}

/*  masthead navigation
------------------------------------------ */
.masthead-navigation {
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid var(--color-black-trans);
}

.masthead-navigation .menu,
.masthead-navigation .menu-item {
  display: flex;
  position: relative;
  align-items: center;
}

/* menu */
.masthead-navigation .menu {
  gap: var(--masthead-menu-gap);
}

/* menu item */
.masthead-navigation .menu-item {
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.16s ease-in-out;

  gap: var(--masthead-menu-item-gap);
  height: var(--masthead-menu-item-height);
}

/* sub menu */
.masthead-navigation .sub-menu {
  left: 50%;
  z-index: 1;
  opacity: 0;
  display: flex;
  visibility: hidden;
  position: absolute;
  flex-direction: column;

  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
  transition: opacity 0.16s ease-in-out, visibility 0.16s ease-in-out;

  color: var(--color-white);
  gap: var(--masthead-sub-menu-gap);
  background: var(--color-black-light);
  top: var(--masthead-menu-item-height);
  min-width: var(--masthead-sub-menu-width);
  padding: var(--masthead-sub-menu-padding);
}

.masthead-navigation .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

/* sub menu item */
.masthead-navigation .sub-menu .menu-item {
  height: auto;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 768px) {
  /* tophead */
  #tophead {
    display: none;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  site footer
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */
.site-footer {
  color: var(--color-gray);
  padding: var(--section-padding) 0;
  background: var(--color-black-light);
}

/* --------------------------------------------------------------------------------------
 *
 *  Site Main
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

:root {
  /* section */
  --section-padding: 64px;
}

section {
  padding: var(--section-padding) 0;
}

/*  section feed
------------------------------------------ */
.section-feed > *:nth-child(odd) {
  background: var(--color-accent-trans);
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  :root {
    /* section */
    --section-padding: 32px;
  }
}

/*  section: hero
----------------------------------------------------------------------------------------- */
section.hero {
  /* root */
  --hero-panel-height: 64px;
  --hero-panel-button-width: 256px;

  /* style */
  position: relative;
  padding: 0 !important;
  margin-bottom: calc(var(--hero-panel-height) / 2);
}

/*  hero slider
------------------------------------------ */
#hero-slider {
  color: var(--color-white);
}

/* hero slider / swiper slide */
.hero-slide {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
  background: var(--color-black-overlay);
  padding: calc(
      var(--midhead-height) + var(--section-padding) + var(--tophead-height)
    )
    0 var(--section-padding) 0;
}

/* hero-slide__background */
.hero-slide__background {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;

  /* animation */
  animation: zoomInOut 4.8s infinite alternate;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/*  hero panel
------------------------------------------ */
.hero-panel {
  left: 50%;
  z-index: 1;
  display: flex;
  max-width: 992px;
  position: absolute;
  border-radius: 32px;
  width: calc(100% - 64px);
  transform: translateX(-50%);
  background: var(--color-white);
  height: var(--hero-panel-height);
  bottom: calc(var(--hero-panel-height) / -2);
  box-shadow: 0 0 16px hsla(0, 0%, 0%, 0.08);
}

/* hero panel button */
.hero-panel__button {
  height: 100%;
  display: flex;
  padding: 0 32px;
  font-weight: 600;
  align-items: center;
  border-radius: 32px;
  max-width: max-content;
  justify-content: center;
  text-transform: uppercase;
  background: var(--color-accent);
  width: var(--hero-panel-button-width);
}

/* hero panel slider */
#hero-panel__slider {
  width: calc(100% - var(--hero-panel-button-width));
}

#hero-panel__slider .swiper-slide {
  display: flex;
  padding: 0 32px;
  font-style: italic;
  align-items: center;
}

/*  responsive
------------------------------------------ */
@media only screen and (max-width: 992px) {
  /* hero slide */
  .hero-slide {
    min-height: 420px;
  }
  /* hero panel */
  .hero-panel {
    box-shadow: unset;
    background: transparent;
  }
  /* hero panel slider */
  #hero-panel__slider {
    display: none;
  }
  /* hero panel button */
  .hero-panel__button {
    margin: 0 auto;
  }
}

/*  section: nest
----------------------------------------------------------------------------------------- */
.section-nest {
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  max-width: 1640px;
  position: relative;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  background: rgba(14, 178, 126, 0.8);
}

/* section nest / light */
.section-nest.light {
  color: var(--color-black);
  background: rgba(14, 178, 126, 0.16);
}

/* section nest / subscribe */
#subscribe.section-nest {
  background: var(--color-black-overlay);
}

/*  section nest background
------------------------------------------ */
.section-nest__background {
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

/*  section: layout
----------------------------------------------------------------------------------------- */

/*  section sidebar
------------------------------------------ */
.section-sidebar {
  height: 100%;
  display: flex;
  border-radius: 4px;
  flex-direction: column;
  background: var(--color-gray-light);
}

/* section sidebar divider */
.section-sidebar > * {
  padding: 16px;
}

.section-sidebar > *:not(:last-child) {
  border-bottom: 1px solid var(--color-black-trans);
}

/*  section content
------------------------------------------ */
.section-content {
  padding: 0;
  display: block;
}

/* --------------------------------------------------------------------------------------
 *
 *  Component
 *
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

/*  component: instagram
----------------------------------------------------------------------------------------- */
.instagram-feed {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}

.instagram-feed > * {
  width: calc(33% - 16px);
}

/*  instagram thumbnail
------------------------------------------ */
.instagram-thumbnail {
  height: 128px;
  overflow: hidden;
  border-radius: 4px;
}

.instagram-thumbnail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-in-out 0.16s;
}

.instagram-thumbnail__image:hover {
  scale: 1.04;
}

/*  component: gtranslate
----------------------------------------------------------------------------------------- */

/* gtranslate wrapper */
.gtranslate_wrapper {
  gap: 8px;
  display: flex;
  align-items: center;
}

/*  component: accordion
----------------------------------------------------------------------------------------- */
.accordion {
  position: relative;
}

/*  accordion button
------------------------------------------ */
.accordion-button {
  cursor: pointer;
  position: relative;
}

.accordion-button::selection {
  background: transparent;
}

/*  accordion panel
------------------------------------------ */
.accordion-panel {
  display: none;
}

/*  component: tab
----------------------------------------------------------------------------------------- */

/*  tab content
----------------------------------------- */
.tab-content {
  height: 100%;
  display: none;
  overflow: hidden;
  position: relative;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

/* tab content active */
.tab-content.active {
  display: block;
}

/*  tab animation
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  component: swiper
----------------------------------------------------------------------------------------- */

/* swiper padding */
.swiper-padding {
  padding: 16px 120px !important;
}

/*  swiper slide
----------------------------------------- */
.swiper-slide {
  height: auto !important;
}

@media only screen and (max-width: 992px) {
  /* swiper padding */
  .swiper-padding {
    padding: 16px 32px !important;
  }
}

/*  component: sidebar
----------------------------------------------------------------------------------------- */
:root {
  --sidebar-width: 320px;
}

/* sidebar */
.sidebar {
  top: 0;
  right: 0;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  color: var(--color-white);
  width: var(--sidebar-width);
  transform: translateX(100%);
  background: var(--color-black-light);
  transition: transform 0.16s ease-out;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar > *:not(:last-child) {
  border-bottom: 1px solid var(--color-white-trans);
}

/* sidebar head */
.sidebar-head {
  padding: 0 32px;
  height: calc(var(--midhead-height) * 1);
}

/* sidebar panel */
.sidebar-panel {
  gap: 16px;
  padding: 32px;
}

/*  sidebar navigation
------------------------------------------ */
.sidebar-navigation .menu *::selection {
  background: transparent;
}

/* sidebar navigation menu-item */
.sidebar-navigation .menu .menu-item {
  position: relative;
}

.sidebar-navigation .menu .menu-item:not(:last-child) {
  border-bottom: 1px solid var(--color-white-trans);
}

/* sidebar navigation menu-item > a */
.sidebar-navigation .menu .menu-item > a {
  z-index: 1;
  display: block;
  position: relative;
  padding: 16px 0 16px 32px;
  max-width: calc(100% - 80px);
  transition: ease-in-out 0.16s;
}

.sidebar-navigation .menu .menu-item > a:hover,
.sidebar-navigation .menu [class*="current-menu-"] > a {
  color: var(--color-accent);
}

.sidebar-navigation .menu .menu-item > a:hover {
  text-decoration: underline;
}

/* sidebar navigation menu-item-has-children > a */
.sidebar-navigation .menu .menu-item-has-children > a {
  display: inline-block;
}

/* sidebar navigation menu-item > accordion-button */
.sidebar-navigation .menu-item > .accordion-button {
  right: 0;
  top: 14px;
  width: 100%;
  height: 24px;
  opacity: 0.32;
  display: block;
  cursor: pointer;
  position: absolute;
  transition: ease-in-out 0.16s;
  background: url("https://api.iconify.design/mdi-light/chevron-down.svg?color=white")
    no-repeat right 32px center / contain;
}

.sidebar-navigation .menu-item > .accordion-button:hover {
  opacity: 1;
}

/* іidebar navigation sub-menu */
.sidebar-navigation .sub-menu {
  background: var(--color-white-trans);
}

/*  component: tab
----------------------------------------------------------------------------------------- */

/*  tab content
----------------------------------------- */
.tab-content {
  overflow: hidden;
  position: relative;
  animation: fadeEffect 0.16s;
  -webkit-animation: fadeEffect 0.16s;
}

/*  tab animation
----------------------------------------- */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*  tab navigation
------------------------------------------ */
.tab-navigation {
  display: flex;
}

/*  component: contact
----------------------------------------------------------------------------------------- */

/*  contact
------------------------------------------ */
.contact {
  display: flex;
  line-height: 1.56;
  flex-direction: column;
}

/* contact label */
.contact-label {
  font-size: 12px;
  font-weight: 600;
}

/* contact map */
.contact-map {
  height: 420px;
  position: relative;
  background: var(--color-black-trans);
}

.contact-map iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
}

/*  contact group
------------------------------------------ */
.contact-group {
  gap: 0px;
  display: flex;
  flex-direction: column;
}

/* contact group inline */
.contact-group.inline {
  gap: 8px;
  flex-direction: row;
}

/*  component: editor
----------------------------------------------------------------------------------------- */
.editor {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* editor list */
.editor ul,
.editor ol {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.editor ul {
  list-style: square inside;
}

.editor ol {
  list-style: decimal inside;
}

/* editor iframe */
.editor iframe {
  width: 100%;
  height: 320px;
  border-radius: 4px;
}

/* editor link */
.editor a {
  text-decoration: underline;
  color: var(--color-accent);
}

/* editor bold */
.editor strong,
.editor b {
  font-weight: 600;
}

/*  component: language switcher
----------------------------------------------------------------------------------------- */
.wpm-language-switcher {
  display: flex;
  align-items: center;
}

.wpm-language-switcher > *:not(:last-child)::after {
  content: "/";
  opacity: 0.16;
  margin: 0 16px;
  display: inline-block;
}

.switcher-list li.active a,
.switcher-list li.active > span {
  color: var(--color-accent) !important;
}

.switcher-list li a,
.switcher-list li > span {
  color: inherit !important;
}

/*  component: site branding
----------------------------------------------------------------------------------------- */
.site-branding {
  gap: 16px;
  display: flex;
  align-items: center;
}

/* site logo */
.site-logo {
  max-height: 48px;
}

/* site name */
.site-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.56;
}

/*  component: button
----------------------------------------------------------------------------------------- */
:root {
  --button-height: 48px;
}

/*  button group
------------------------------------------ */
.button-group {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
}

/* button group center */
.button-group.center {
  justify-content: center;
}

/* button group unwrap */
.button-group.unwrap {
  flex-wrap: nowrap;
  overflow-x: scroll;
}

/*  button
------------------------------------------ */
.button {
  gap: 8px;
  display: flex;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0px 16px;
  border-radius: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: var(--color-white);
  height: var(--button-height);
  transition: ease-in-out 0.16s;
  border: 1px solid transparent;
  background: var(--color-accent);
}

/* button transparent */
.button.transparent {
  color: inherit;
  background: transparent;
  border-color: var(--color-accent);
}

/* button active */
.button.active {
  color: var(--color-white);
  background: var(--color-accent);
}

/* button small */
.button-small {
  --button-height: 40px;
}

/*  button square / round
------------------------------------------ */
.button-round,
.button-square {
  padding: 0;
  font-size: 24px;
  width: var(--button-height);
  height: var(--button-height);
  min-width: var(--button-height);
  min-height: var(--button-height);
}

/* button square */
.button-square {
  border-radius: 4px;
}

/* button round */
.button-round {
  border-radius: 100%;
}

/*  button brand
------------------------------------------ */
.button-brand::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 100%;
  background: url(/wp-content/themes/letme-travel/assets/media/logo.png)
    no-repeat center center / cover;
}

.button-brand.active::after {
  background-color: var(--color-white);
}

/*  button pulse
------------------------------------------ */
.button-pulse {
  animation: shadow-pulse 1s infinite;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(14, 178, 126, 0.32);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 0, 0, 0);
  }
}

@media (max-width: 576px) {
  .button-group.responsive .button {
    width: 100%;
  }
}

/*  component: modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
  border-radius: 4px !important;
}

/*  component: thumbnail
----------------------------------------------------------------------------------------- */
.thumbnail {
  gap: 8px;
  height: 256px;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  transition: ease-in-out 0.16s;
}

.thumbnail-image,
.thumbnail::after {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

/* thumbnail overlay */
.thumbnail::after {
  content: "";
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.16) 32%,
    rgba(0, 0, 0, 0.32) 64%,
    rgba(0, 0, 0, 0.64) 100%
  );
}

/* thumbnail image */
.thumbnail-image {
  object-fit: cover;
  transition: ease-in-out 0.16s;
}

.thumbnail:hover .thumbnail-image {
  transform: scale(1.02);
}

/* thumbnail panel */
.thumbnail-panel {
  z-index: 1;
  padding: 32px;
  position: relative;

  /* style */
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/*  thumbnail square
------------------------------------------ */
.thumbnail-square {
  padding: 100% 0 0 0;
}

/*  component: headline
----------------------------------------------------------------------------------------- */
.headline {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/* headline center */
.headline.center {
  text-align: center;
  align-items: center;
}

.headline.center * {
  text-align: center;
}

/*  headline group
------------------------------------------ */
.headline-group {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

/*  headline label
------------------------------------------ */
.headline-label {
  opacity: 0.8;
}

/*  headline title
------------------------------------------ */
.headline-title {
  font-weight: 600;
  line-height: 1.48;
  font-size: var(--font-size-h2);
  font-family: var(--font-serif);
}

@media only screen and (min-width: 992px) {
  .headline-title {
    font-size: 1.64rem;
  }
}

/* headline title <h1> */
h1.headline-title {
  font-size: var(--font-size-h1);
}

/*  component: widget
----------------------------------------------------------------------------------------- */
.widget {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.widget.sticky {
  position: sticky;
  top: calc(var(--midhead-height) + 16px);
}

/* widget title */
.widget-title {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.56;
}

/* widget list */
.widget-list > * {
  padding: 16px 0;
}

.widget-list > *:not(:last-child) {
  border-bottom: 1px solid var(--color-white-trans);
}

/*  component: brand
----------------------------------------------------------------------------------------- */

/*  brand box
------------------------------------------ */
.brand-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* brand box image */
.brand-box__image {
  opacity: 0.8;
  max-height: 72px;
  filter: grayscale(100%);
}

/*  component: form
----------------------------------------------------------------------------------------- */
form {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  height: 32px;
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--color-white);
  border: 1px solid var(--color-black-trans);
}

/* textarea */
textarea {
  height: 120px;
}

/* input [type="checkbox"] */
input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* input [type="submit"] */
input[type="submit"] {
  width: max-content;
}

/*  Form Layout
------------------------------------------ */
.form-field {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/*  Contact Form 7
------------------------------------------ */

/* .wpcf7-form-control-wrap */
.wpcf7-form-control-wrap {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* wpcf7-form-control */
.wpcf7-form-control {
  gap: 16px;
  display: flex;
}

/* .wpcf7-list-item */
.wpcf7-list-item {
  gap: 8px;
  margin: 0;
  display: flex;
  align-items: center;
}

/* .wpcf7-spinne */
.wpcf7-spinner {
  top: 50%;
  right: 25px;
  position: absolute;
  transform: translateY(-50%);
}

/* .wpcf7-response-output */
.wpcf7-response-output {
  font-size: 12px;
  border-width: 1px;
  border-radius: 8px;
  margin: 0 !important;
  padding: 16px !important;
}

/*  component: exchange rate
----------------------------------------------------------------------------------------- */
.exchange-rate {
  gap: 0 16px;
  display: flex;
  cursor: pointer;
  max-width: max-content;
  flex-direction: column;
}

/* rate item */
.exchange-rate__item {
  gap: 8px;
  display: flex;
  line-height: 1.64;
  justify-content: space-between;
}

/*  exchange rate table
------------------------------------------ */
table.exchange-rate {
  background: transparent;
}

table.exchange-rate td {
  padding: 8px 16px;
}

table.exchange-rate tr:nth-child(2) td {
  background-color: rgba(14, 178, 127, 0.48);
}

/*  component: facet
----------------------------------------------------------------------------------------- */

/* facetwp facet */
.facetwp-facet {
  gap: 8px;
  display: flex;
  margin: 0 !important;
  flex-direction: column;
}

/* facetwp-checkbox */
.facetwp-checkbox {
  gap: 8px;
  display: flex;
  margin: 0 !important;
  transition: ease-in-out 0.16s;
  padding-left: 24px !important;
}

.facetwp-checkbox:hover,
.facetwp-checkbox.checked {
  color: var(--color-accent);
}

/* facetwp-display-value */
.facetwp-display-value {
  padding: 0 !important;
}

/* facetwp-counter */
.facetwp-counter {
  opacity: 0.4;
}

/*  component: card
----------------------------------------------------------------------------------------- */

/* card title */
.card-title {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.56;
  font-family: var(--font-serif);
}

/*  card panel
------------------------------------------ */
.card-panel {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

/*  card meta
------------------------------------------ */
.card-meta {
  display: flex;
  font-size: 16px;
}

.card-meta > * {
  display: flex;
  transition: ease-in-out 0.16s;
}

.card-meta > a:hover {
  color: var(--color-accent);
}

/* card meta team */
.card-meta__term {
  text-decoration: underline;
}

.card-meta__term:not(:last-child)::after {
  content: ",";
  font-weight: 300;
  margin-right: 8px;
  display: inline-block;
}

/* card meta data */
.card-meta__data {
  opacity: 0.88;
  transition: ease-in-out 0.16s;
}

.card-meta__data:not(:last-child)::after {
  content: "•";
  opacity: 0.16;
  margin: 0 16px;
  font-weight: 300;
  display: inline-block;
}
