/* CSS for departure icon with a takeoff plane SVG image */
.flaticon-takeoff-the-plane {
    display: inline-block;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-image: url('https://everywherejourneys.com/wp-content/uploads/2023/09/departure-icon-svg.svg');
    background-size: cover;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* CSS for destination icon with a landing horse SVG image */
.flaticon-plane-landing {
    display: inline-block;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-image: url('https://everywherejourneys.com/wp-content/uploads/2023/09/horse-icon.svg');
    background-size: cover;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* .gdlr-core-item-list {
	display: block !important;
} */

@media (max-width: 768px) {
  .tourmaster-currency-switcher {
    display: block !important;
  }
}
.tourmaster-content-navigation-item-wrap {
    width: 100% !important;
    display: block !important;
}

.tourmaster-content-navigation-item {
    display: block !important;
    width: 100% !important;
}

.tourmaster-content-navigation-tab {
    display: inline-block !important;
    width: auto !important;
    font-size: 16px !important; /* A standard size for readability */
    padding: 10px 0 !important; /* Basic padding */
    text-align: center;
}
.tourmaster-content-navigation-item-wrap {
    position: fixed; /* Keep the navigation fixed on screen */
    top: 0; /* Align to the top of the viewport */
    left: 0; /* Align to the left of the viewport */
    width: 100%; /* Span the full width of the viewport */
    z-index: 10000; /* Increase z-index to ensure it stays above other content */
    background-color: #fff; /* Set a background color to ensure readability over page content */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Add a subtle shadow for better separation from the page content */
}

.tourmaster-content-navigation-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tourmaster-content-navigation-tab {
    flex: 1; /* Ensures each tab takes equal space */
    text-align: center;
    font-size: 16px; /* Start with a base font size for large screens */
    padding: 10px 0; /* Sufficient padding for touch targets */
}

@media only screen and (max-width: 768px) {
    .tourmaster-content-navigation-item-wrap {
        top: 0px; /* Adjust if you have a mobile header; increase the value to make space for it */
    }

    .tourmaster-content-navigation-item {
        flex-direction: column; /* Stack tabs vertically on smaller screens */
    }

    .tourmaster-content-navigation-tab {
        font-size: 14px; /* Adjusted font size for smaller screens */
        padding: 8px 0; /* Adjusted padding for smaller screens */
    }

    body {
        padding-top: 60px; /* Adjust based on the height of your fixed navigation to prevent content overlap. Increase if necessary. */
    }
}
/* Base styles for the toggle box (if not already defined) */
.gdlr-core-toggle-box-item-title {
    font-style: normal;
    /* You can adjust the base font size here if needed for desktop views */
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    /* Adjusts margins for the toggle box content on mobile devices */
    .gdlr-core-toggle-box-item-content {
        margin-left: 10px; /* Adjust the left margin */
        margin-right: 10px; /* Adjust the right margin */
    }

    /* Reduces the title font size in the toggle box for better readability on mobile */
    .gdlr-core-toggle-box-item-title {
        font-size: 16px; /* Adjust the font size as needed */
    }
}
@keyframes bobbingEffect {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Change Background Color of Button */
.gdlr-core-button.gdlr-core-button-shortcode.gdlr-core-button-gradient.gdlr-core-button-no-border {
    background-image: linear-gradient(to right, #CD6029, #CD6029); /* Solid color background */
}
.tourmaster-tour-price-info {
    display: none;
}
/* Target the container for general text styling */
.full-tour-price {
    font-size: 16px; /* Standard font size */
    color: #333; /* Standard text color */
}

/* Adjust the style to hide 'Price' and display 'Full Tour Price' precisely where 'Price' was */
.tourmaster-header-price-ribbon {
    visibility: hidden; /* Hide the original 'Price' text */
    position: relative; /* Necessary for positioning pseudo-elements */
}

.tourmaster-header-price-ribbon::before {
    content: "Tour Options & Pricing"; /* New content */
    visibility: visible; /* Make sure the pseudo-element is visible */
    position: absolute; /* Absolute positioning to place it exactly */
    left: 0; /* Align left edge with the parent's left edge */
    top: -5px; /* Align top edge with the parent's top edge, moved up by 5px */
    background-color: #ffd700; /* Gold background for emphasis */
    color: black; /* Text color */
    padding: 5px 10px; /* Padding around the text */
    border-radius: 5px; /* Rounded corners for visual appeal */
    font-weight: bold; /* Bold font for emphasis */
}
.tourmaster-combobox-wrap select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E48856;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    appearance: none;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tourmaster-combobox-wrap select:focus {
    border-color: #D07042;
    box-shadow: 0 0 8px rgba(228, 136, 86, 0.4);
}

.tourmaster-combobox-wrap::after {
    content: '▼';
    font-size: 12px;
    color: #E48856; 
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.tourmaster-tour-order-filterer-wrap {
    display: none !important;
}
.tourmaster-tour-search-filter-clear {
    display: none !important;
}
/* Target headers and main label text */
.tourmaster-tour-search-type-filter .tourmaster-head,
.tourmaster-tour-search-type-filter .tourmaster-type-filter-more-button {
  color: #b39b81;
  font-weight: 600;
}
/* Button fix */
#gdlr-core-button-id-1 {
  position: relative;
  z-index: 99;
  pointer-events: auto;
}

/* Optional: background shouldn't block touch */
.gdlr-core-pbf-background {
  pointer-events: none;
}

/* Ensure parent containers of button don't block it */
.gdlr-core-pbf-background * {
  pointer-events: auto;
}
img[src*="logo.png"] {
  display: none !important;
}
#gdlr-core-button-id-2 {
  z-index: 999;
  position: relative;
  pointer-events: auto;
}
img[src*="paypal.svg"] {
  width: 150px;
  height: auto;
}
