/* START no text underline */
.no-underline {
    text-decoration: none;
}

.no-underline:hover {
    text-decoration: none; /* Ensures hover doesn't reintroduce the underline */
}
/* END no test underline */

/* START Back to Top Button */
    #backToTop {
        font-size: 20px;
        line-height: 50px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
        #backToTop {
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        #backToTop {
            width: 30px;
            height: 30px;
            line-height: 30px;
            font-size: 16px;
        }
    }
/* END Back to Top Button */

/* START Cookies Listener */
.cookies-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    background-color: #f1f1f1;
    border-top: 2px solid #ccc;
    padding: 20px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 14px;
}

.cookies-box p {
    margin: 0 0 10px 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.cookies-box a {
    color: #007bff;
    text-decoration: none;
}

.cookies-box a:hover {
    text-decoration: underline;
}

.cookies-form {
    display: flex;
    justify-content: space-between;
}

.cookies-form button {
    flex: 0 0 auto;
    margin: 0 10px;
}

.reset-cookies-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
}

.reset-cookies-button button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    padding: 0;
}
@media (max-width: 768px) {
    .cookies-box {
        width: 100%;
    }

    .cookies-form {
        justify-content: space-between;
    }
}
/* END Cookies Listener */



/*** START custom tooltip ***/
/* Container that holds both the button and the tooltip data */
.tooltip-container {
  display: inline-block;  /* or block, if you want a full-width element */
  position: relative;     /* needed for absolutely positioned tooltip */
}

/* The tooltip text (using ::after) */
.tooltip-container:hover::after {
  content: attr(data-title);
  position: absolute;
  
  /* Position below the container */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  
  /* Sizing */
  min-width: 200px;
  max-width: 300px;
  padding: 10px;
  
  /* Styling */
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  white-space: normal;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  
  /* Keep on top of other elements */
  z-index: 1000;
  
  /* So hovering over the tooltip doesn’t flicker (avoid capturing mouse events) */
  pointer-events: none;
}

/* Optional arrow pointing down from the container */
.tooltip-container:hover::before {
  content: "";
  position: absolute;
  top: 100%;   /* arrow at the bottom of the container */
  left: 50%;
  transform: translateX(-50%);
  
  /* Arrow style */
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  
  /* Slightly lower z-index than the tooltip box */
  z-index: 999;
}
/*** END custom tooltip ***/



/* START Enlarge image on Hover */
.enlarge-on-hover {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.enlarge-on-hover:hover {
    transform: scale(1.1); /* Enlarge the image */
    filter: brightness(0.8); /* Darken the image */
}
/* END Enlarge image on Hover */

/* START Enlarge text link on hover */
.enlarge-text-on-hover {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block; /* Ensures the transform works correctly */
}

.enlarge-text-on-hover:hover {
    transform: scale(1.1); /* Enlarges the text */
    color: #007bff; /* Changes color on hover (optional) */
}
/* END Enlarge text link on hover */


.logo {
    width: 200px; /* Default width for larger screens */
    height: auto; /* Maintain aspect ratio */
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .logo {
        width: 100px; /* Adjust width for small screens */
        height: auto; /* Keep aspect ratio */
    }
}
.wide-dropdown {
    min-width: 400px;
}

/* THEME COLOUR */
.w3-p-primary {
	color:#ACA7A6!important;
	background-color:#15120E!important;
}
.w3-p-bg {
	color:#15120E!important;
	background-color:#E1CF98!important;
}
.w3-p-btn {
	color:#ddd6d7!important;
	background-color:#8D884C!important;
}
.w3-p-cta {
	color:#15120E!important;
	background-color:#DF9757!important;
}
.w3-p-secondary {
	color:#15120E!important;
	background-color:#ACA7A6!important;
}
.w3-p-gold {
	color:#15120E!important;
	background-color:#D4AF37!important;
}
.w3-p-platimum {
	color:#15120E!important;
	background-color:#D3D3D3!important;
}
.w3-text-p-gold {
	color:#D4AF37!important;
}
.w3-text-p-platimum {
	color:#D3D3D3!important;
}
.w3-text-p-cta {
	color:#DF9757!important;
}