/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/** Global **/
ul,
li {
  list-style: none;
}

/** Itinerary **/
.itinerary__list, .properties__list {
    display: grid;
    /*justify-items: flex-star;*/
    padding: 0;
    gap: 30px;
}
.itinerary__list, .properties__list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
    position: relative;
}
.card__image {
    overflow: hidden
}
.card__image img {
    height: 520px;
    object-fit: cover;
}

.card__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    clip-path: circle(0%);
    transition: clip-path .55s ease-in-out;
    background: rgba(255, 255, 255, 0.20);
}

.card:hover .card__content {
    clip-path: circle(100%);
}

.card__info {
    display: grid;
    place-items: center;
    width: 85%;
    height: 85%;

    text-align: center;
    padding: 0 30px;
    border: 3px solid #ffffff;
}

.card__box {
    padding: 20px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity .80s ease;
}

.card:hover .card__box {
    opacity: 1;
}

.card__category,
.card__title {
    margin: 0;
    color: #631F1E !important;
    text-transform: uppercase;
}

.card__title {
    font-size: 22px !important;
}

body.postid-682 .tablesorter tbody tr:nth-of-type(3),
body.postid-682 .tablesorter tbody tr:nth-of-type(4),
body.postid-682 .tablesorter tbody tr:nth-of-type(5),
body.postid-682 .tablesorter tbody tr:nth-of-type(6){
    display: none;
}

body.postid-680 .list-activities {
    display: none;
}

body.postid-680 .sidebar-itinerary .e-con-inner {
    flex-direction: column;
}
body.postid-680 .sidebar-itinerary .elementor-element-1b8c6a9 {
    width: 100%;
}
body.postid-680 .sidebar-itinerary .elementor-widget-google_maps iframe {
    height: 450px;
}

.video-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  font-size: 30px;
  color: white;
}


/** Properties **/
.properties__list {
    gap: 20px;
}

.property-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
}

.property-card__image {
    display: flex;
    overflow: hidden;
}

.property-card__image img {
    /* max-height: 220px; */
    transform: scale(1);
    transition: transform 0.5s ease;
}

.property-card:hover .property-card__image img {
    transform: scale(1.2);
}

.property-card__content {
    background: #ffffff;
    padding: 20px;
}

.property-card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.property__header {
    margin-bottom: 20px;
}

.property-card__location,
.property-card__title,
.property-card__guests,
.property-card__price {
    margin: 0;
    padding-bottom: 5px;
}

.property-card__title {
    font-size: 25px !important;
    font-weight: 500 !important;
}

.property-card__price {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.property-card__price span {
    font-size: 16px;
    font-weight: 700;
}

/** Guide **/
.filter-btn.active {
    background-color: #A57F5B;
    color: #ffffff;
    border: none;
}

.filter-btn.active a {
    color: #ffffff !important;
}

/** Single: Itinerary **/
.itinerary-category a {
    font-family: 'lato', Sans-Serif;
}

.itinerary-gallery img {
    aspect-ratio: 3 / 4;
}

/** Single: Properties **/
body.single-property .property-card {
    max-width: 320px;
}

/** Footer **/

.footer h5 {
    color: #A57F5B;
}
ul.menu {
    padding: 0;
}

/** Button Floating **/
#scroll-top-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #A57F5B;
    color: #ffffff;
}