/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/



/*Add your own styles here:*/

.mb-zero{
margin-bottom: 0px!important;
}
.waypoint-hide {
  position: fixed !important;
  top: -100px;
  width: 100%;
  z-index: 999;
  opacity: 0;
  background: #fff;
  transition: 0.3s all;
  box-shadow: 0 2px 3px rgba(0,0,0,0.15);
}

.waypoint-show {
  top: 0;
  opacity: 1;
  transition: 0.3s all;
}
    /* Styling for the floating link */
    .floating-link {
      display: flex; /* Aligns icon and text horizontally */
      align-items: center; /* Vertically centers icon and text */
      gap: 8px; /* Space between icon and text */
      position: fixed; /* Makes the link float */
      bottom: 20px; /* Distance from the bottom */
      right: 20px; /* Distance from the right */
      background-color: #007BFF; /* Background color */
      color: white; /* Text and icon color */
      padding: 10px 15px; /* Padding around the content */
      border-radius: 5px; /* Rounded corners */
      text-decoration: none; /* Removes underline from the link */
      font-size: 14px; /* Font size */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
      transition: background-color 0.3s ease; /* Smooth hover effect */
      display: none; /* Initially hidden */
    }

    /* Hover effect for the link */
    .floating-link:hover {
      background-color: #0056b3; /* Darker shade on hover */
    }

/* QHSE Inline Filter Form Styling */
.qhse-header-form {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #2D57A3;
    border-radius: 6px;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
}

.qhse-header-form input[type="text"],
.qhse-header-form input[type="search"] {
    flex: 1 1 auto;
    padding: 8px 12px;
    min-width: 160px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    color: black;
}


.qhse-btn-green {
    background: #fdd51c;
    color: #fff;
}

.qhse-btn-green:hover {
    background: linear-gradient(90deg, #218838, #1e7e34);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.qhse-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qhse-btn-dark {
    background-color: #fdd51c;
    color: #fff;
}

.qhse-btn-dark:hover {
    background-color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.qhse-btn-red {
    background-color: #fdd51c;
    color: #fff;
}

.qhse-btn-red:hover {
    background-color: #c9302c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.qhse-check {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: bold;
}

.qhse-check input {
    margin: 0;
}

#header{
	display:none;
}

.qhse-directory-banner-wrap {
    background: #00B7F1;
    padding: 30px 5px;
    color: #fff;
    text-align: center;
}
.qhse-directory-header h2 {
    margin-bottom: 20px;
    font-size: 26px;
}
.qhse-directory-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.qhse-dir-wrap {
    display: inline-block;
    max-width: 100px; /* limit size */
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qhse-dir-wrap img.qhse-dir-image {
    width: 100%;
    height: auto; /* keep original aspect ratio */
    display: block;
    object-fit: contain;
}

.qhse-dir-wrap:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Tooltip for title */
.qhse-dir-wrap::after {
    content: attr(title);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.qhse-dir-wrap:hover::after {
    opacity: 1;
}


.qhse-brand-slider .brand-logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;   /* fixed slide height */
    padding: 10px;
    overflow: hidden;
/*     background: #fff; /* optional, gives clean box */ */
}

.qhse-brand-slider .brand-logo-slide img {
    width: 100%;
    height: 75px;
    object-fit: contain; /* keeps proportions but fills box */
    transition: transform 0.3s ease;
}

.qhse-brand-slider .brand-logo-slide img:hover {
    transform: scale(1.05);
}


.qhse-header-bar {
    position: fixed!important;
    top: 0;
    left: 0;
    right: 0;
    background: #00B7F1;
/*     z-index: 10000; */
    padding: 20px 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

body {
    padding-top: 200px; /* Adjust depending on header height */
}
.qhse-custom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    z-index: 999;
    padding: 20px;
    color: #fff;
}

/* body {
    padding-top: 180px; 
} */

/* .qhse-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00B7F1;
    color: #000;
    z-index: 9999;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.qhse-footer-nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
}
.qhse-footer-nav .multi-line-link {
    font-size: 12px;
    line-height: 1.2;
    font-weight: normal;
}
.qhse-footer-cta .qhse-download-button {
    background: #3C5AA6;
    color: #fff;
    padding: 8px 16px;
    border: 2px solid red;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
} */
/* body {
    padding-bottom: 70px;
}
 */
#footer{
	display:none;
}
p span.highlight-badge-gold {
  display: inline-block;
  background: linear-gradient(135deg, #f7d358, #e6b800);
  color: #fff;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  border: 1px solid #d4af37;
}

a.highlight {
  background: #FFC107!important;
  color: #fff;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  border: 1px solid #d4af37;
}

.vis-count {
  background: linear-gradient(90deg, #FFD700, #FFC300, #FFB700, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

#ribbon-popup, .ribbon-content{
	display:none!important;
}
.qhse-pricing-table th{
    text-align: center;
}
a.pricing-btn {
    display: inline-block;
    padding: 8px 24px;
    background-color: #0073e6; /* Change to your brand color */
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 115, 230, 0.2);
}

a.pricing-btn:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 91, 181, 0.3);
}

a.pricing-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 91, 181, 0.2);
}
#top form{
	margin-bottom:5px!important;
}
#top input{
	margin-bottom:0px!important;
}
.avia-cookie-consent-wrap{
	display:none;
}
@media (max-width: 768px) {
    .qhse-header-form {
        flex-direction: column;
        align-items: stretch;
    }
    .qhse-header-form input,
    .qhse-btn {
        width: 100%;
    }
}


