@charset "utf-8";
.pdf-iframe {
    width: 90%;
    height: 87vh;
    display: block;
    margin: 0 auto;
}
/* Ensure the PDF is fit to the width of the iframe */
.pdf-iframe::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
}
/* Highlight message pointing to GLOBE */
.highlight-message {
  position: absolute;
  z-index: 10000; /* Above all other elements */
  background-color: #00558C; /* Matches your page theme */
  color: #fff;
  padding: 0.8vw 1.2vw;
  font-size: 1.2vw;
  border-radius: 0.5vw;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  display: none; /* Initially hidden */
  animation: fadeIn 0.5s ease-in-out, bounce 1.5s infinite; /* Subtle animations */
}

/* Triangle pointer */
.highlight-message::after {
  content: '';
  position: absolute;
  top: 100%; /* Bottom of the message */
  left: 10%;
  border-width: 10px;
  border-style: solid;
  border-color: #00558C transparent transparent transparent;
}
.setup-drop {
  padding: 0; /* You can remove this if you had added padding earlier */
  margin: 0; /* Same here for margin */
}

.setup-drop option {
  padding: 5px; /* Adjust this if needed */
  margin: 0; /* Ensure no unwanted spacing */
}

/* Bounce animation for the message */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Dimmed overlay */
#page-dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9998; /* Behind the dropdown */
  display: none; /* Initially hidden */
}

/* Highlighted dropdown */
#leadType {
  z-index: 9999; /* Above the dimmed background */
  position: relative; /* To ensure proper stacking */
  animation: highlight 1s infinite alternate; /* Subtle glow animation */
  outline: none;
  border: 2px solid #ed722f; /* Highlight border color */
}

/* Keyframe animation for dropdown highlight */
@keyframes highlight {
  from {
    box-shadow: 0 0 10px rgba(237, 114, 47, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(237, 114, 47, 0.9);
  }
}

.extra-container {
  display: grid;
  grid-template-columns: auto auto; /* Two columns */
  gap: 2px; /* Space between columns */
  align-items: center; /* Align items vertically */
}
.extra-slide-container {
  text-align: right;
}
.extra-checkbox-container {
  text-align: left;
}
.AIL, .NIL {
    display: none;
}
.pdf-checkmark {
  font-weight: bold;
  color: white; /* You can adjust the color as needed */
  visibility: hidden; /* Initially hide the check mark */
  user-select: none;
}
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Make sure the loading screen appears above everything else */
}
.hidden, .wlVsTerm {
    display: none;
}
#pdfWillViewer {
    height: calc(84vh); /* Adjust the height accordingly based on other elements on the page */
}
#pdfWillEmbed {
    width: 100%;
    height: 100%;
}
/* Hiding the original file input button */
#pdfWillFileInput {
    display: none;
}
#pdfLetterViewerCopy {
    position: relative;
    height: calc(84vh); /* Adjust the height accordingly based on other elements on the page */
    margin: 0 auto;
    z-index: 2;
}
.background-dimmer {
    background-color: white;
    opacity: 0.8;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
}
/* Hiding the original file input button */
#pdfMessageFileInput {
    display: none;
}
#pdfADDViewer {
    position: relative;
    height: calc(84vh); /* Adjust the height accordingly based on other elements on the page */
}
/* Hiding the original file input button */
#pdfADDFileInput {
    display: none;
}
#pdfADDViewerRef {
    position: relative;
    height: calc(84vh); /* Adjust the height accordingly based on other elements on the page */
}
/* Hiding the original file input button */
#pdfADDFileInputRef {
    display: none;
}
#pdfLetterViewer {
    height: calc(84vh); /* Adjust the height accordingly based on other elements on the page */
}
/* Hiding the original file input button */
#pdfLetterFileInput {
    display: none;
}
/* Positioning for labels */
.label-container {
    position: fixed;
    bottom: 1vw;
    right: 4vw;
    text-align: right;
}
.close-button {
    padding: .3vw .6vw;
    border-radius: .3vw;
	font-size: 1vw;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    background-color: #b25271;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    width: 12vw;
    margin: 2px;
    box-shadow: .3vw .3vw .5vw rgba(0, 0, 0, 0.8);
    text-align: center;
}
.close-button:hover {
    background-color: #C9869B;
}
.close-button:active {
    background-color: #E9CFD7;
}
.pdf-button {
    padding: .3vw .6vw;
    border-radius: .3vw;
	font-size: 1vw;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    background-color: #ed722f;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    width: 12vw;
    margin: 2px;
    box-shadow: .3vw .3vw .5vw rgba(0, 0, 0, 0.8);
    text-align: center;
}
.pdf-button:hover {
    background-color: #F3A174;
}
.pdf-button:active {
    background-color: #FADECE;
}
.next-button {
    padding: .3vw .6vw;
    border-radius: .3vw;
	font-size: 1vw;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    background-color: #319B42;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    width: 12vw;
    margin: 2px;
    box-shadow: .3vw .3vw .5vw rgba(0, 0, 0, 0.8);
    text-align: center;
}
.next-button:hover {
    background-color: #6AD07A;
}
.next-button:active {
    background-color: #D8F2DC;
}
#slideshow-container {
    margin-top: 8vh;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Calibri", sans-serif;
    color: #474c55;
    overflow: auto;
    user-select: none;
}
/* Image Div */
.image-div {
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    margin: 0;
    width: 100%;
    height: 92vh; /* Adjust the height as needed */
}
.lab-image-div {
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    margin: 0;
    width: 100%;
    height: 250vh;
    overflow-y: auto;
}
/* Fullscreen Button */
#fullscreenBtn {
    position: fixed;
    top: .5vw;
    right: .5vw;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
#fullscreenIcon {
        width: 1.5vw;
    }
/* Video */
.vid {
    box-shadow: 0 0 40px rgba(0, 0, 0, .75);
    border-radius: 25px;
    margin: 10px;
    width: 75%;
    height: auto;
}
/* Navigation Buttons */
#nav-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
button {
    margin: 5px;
}
/* Faint Arrow */
.faint-arrow {
    position: fixed;
    bottom: 20px; /* Adjust this value as needed to control the distance from the bottom */
    font-size: 3vw;
    color: rgba(0, 0, 0, .3);
    z-index: 999;
    transition: opacity 0.3s ease;
	cursor: pointer;
	user-select: none;
}
#faint-arrow-left {
    left: 20px;
}
#faint-arrow-right {
    right: 20px;
}
#faint-arrow-left:hover, #faint-arrow-right:hover {
    color: rgba(0, 0, 0, 0.7);
}
/* Faint Overlay for Sponsors */
.faint-overlay {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 40px; /* Distance from the right */
    font-size: 1.5vw; /* Adjust font size as needed */
    color: rgba(0, 0, 0, .3); /* Faint color */
    z-index: 999; /* Ensure it appears above other elements */
    transition: opacity 0.3s ease, color 0.3s ease;
    cursor: pointer; /* Pointer cursor for interactivity */
    user-select: none; /* Prevent text selection */
}
#sponsors-overlay {
	display: none;
}
/* Hover Effect */
#sponsors-overlay:hover {
    color: rgba(0, 0, 0, 0.7); /* Darker color on hover */
    opacity: 1; /* Ensure full opacity on hover */
}
/* Box Sizing */
* {
    box-sizing: border-box;
}
/* Header */
.header {
    margin: 0 auto;
    top: 0;
    left: 0;
    height: 8vh;
    display: flex;
    background-color: #00558C;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: background-color 1s;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 99999;
}
/* Fade Animation */
.fade-animation {
    animation-name: fade;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* Item */
.item {
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
}
.item:nth-child(1) {
    flex: 2.5;
}
.item:nth-child(2) {
    flex: 1;
}
/* Headline */
.headline {
    font-size: calc(2.5vw + .5vh); /* Adjust the formula based on your preference */
    font-family: "Futura", sans-serif;
    font-weight: bold;
	object-fit: contain;
}
/* Logo */
.logo {
    width: 15vw;
    height: 7vh;
	object-fit: contain;
}
/* Media Queries */
@media (max-width: 1400px) {
}
@media (max-width: 1050px) {
}
@media (min-width: 5120px) and (max-height: 1440px) {
    #slideshow-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hidden, .slide {
        width: 50%;
        height: 100%;
    }
    .vid {
        width: auto;
        height: 100%;
    }
}
@media (min-width: 3840px) and (max-height: 1080px) {
    #slideshow-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hidden, .slide {
        width: 50%;
        height: 100%;
    }
    .vid {
        width: auto;
        height: 100%;
    }
}