@import url("https://fonts.googleapis.com/css?family=Oswald:500");



/* Container for the entire social media bubble system */
.social-media-container {
    position: fixed;
    bottom: 55px;
    left: 1px;
    width: 40px; /* Adjusted for 2/3 of the current size */
    height: auto;
    z-index: 1000;
}

/* Styling for the main bubble */
.main-bubble {
    width: 40px; /* 2/3 of the original size */
    height: 40px; /* 2/3 of the original size */
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Styling for the icon inside the main bubble */
.main-bubble i {
    font-size: 16px; /* 2/3 of the original size */
    color: white;
}

/* Rotate animation on hover using animate.css */
.main-bubble:hover i {
    animation: rotateIn 1s; /* Uses animate.css for rotation */
}

/* Changes the background color when the main bubble is hovered over */
.main-bubble:hover {
    background-color: #2980b9;
}

/* General styling for all social bubbles */
.social-bubble {
    position: absolute;
    width: 40px; /* 2/3 of the original size */
    height: 40px; /* 2/3 of the original size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    pointer-events: none;
    left: 1px; /* Aligns the bubbles directly above the main bubble */
}

/* Styling for the icons inside the social media bubbles */
.social-bubble i {
    font-size: 16px; /* 2/3 of the original size */
    color: white; /* White color for all social media icons */
}

/* LinkedIn specific styling */
.social-bubble.linkedin {
    background-color: #0077b5; /* LinkedIn blue */
    top: -50px; /* Adjusted for smaller size */
}

/* Facebook specific styling */
.social-bubble.facebook {
    background-color: #3b5998; /* Facebook blue */
    top: -100px; /* Adjusted for smaller size */
}

/* Twitter specific styling */
.social-bubble.twitter {
    background-color: #1da1f2; /* Twitter blue */
    top: -150px; /* Adjusted for smaller size */
}

/* Instagram specific styling */
.social-bubble.instagram {
    background-color: #e4405f; /* Instagram gradient pink */
    top: -200px; /* Adjusted for smaller size */
}

/* YouTube specific styling */
.social-bubble.youtube {
    background-color: #ff0000; /* YouTube red */
    top: -250px; /* Adjusted for smaller size */
}

/* Discord specific styling */
.social-bubble.discord {
    background-color: #7289da; /* Discord purple */
    top: -300px; /* Adjusted for smaller size */
}

/* Snapchat specific styling */
.social-bubble.snapchat {
    background-color: #fffc00; /* Snapchat yellow */
    top: -350px; /* Adjusted for smaller size */
}

/* When the main bubble is active, display the social bubbles with slide-in animations */
.main-bubble.active ~ .social-bubble.linkedin {
    opacity: 1;
    pointer-events: auto;
    animation: slideInUp 0.5s 0.1s both; /* Slide in with a delay */
}

.main-bubble.active ~ .social-bubble.facebook {
    opacity: 1;
    pointer-events: auto;
    animation: slideInUp 0.5s 0.2s both; /* Slide in with a delay */
}

.main-bubble.active ~ .social-bubble.twitter {
    opacity: 1;
    pointer-events: auto;
    animation: slideInUp 0.5s 0.3s both; /* Slide in with a delay */
}

.main-bubble.active ~ .social-bubble.instagram {
    opacity: 1;
    pointer-events: auto;
    animation: slideInUp 0.5s 0.4s both; /* Slide in with a delay */
}

.main-bubble.active ~ .social-bubble.youtube {
    opacity: 1;
    pointer-events: auto;
    animation: slideInUp 0.5s 0.5s both; /* Slide in with a delay */
}

.main-bubble.active ~ .social-bubble.discord {
    opacity: 1;
    pointer-events: auto;
    animation: slideInUp 0.5s 0.6s both; /* Slide in with a delay */
}

.main-bubble.active ~ .social-bubble.snapchat {
    opacity: 1;
    pointer-events: auto;
    animation: slideInUp 0.5s 0.7s both; /* Slide in with a delay */
}

/* Hover effects for the icons - lightening the color on hover */
.social-bubble.linkedin:hover {
    background-color: #005983; /* Darker LinkedIn blue */
}

.social-bubble.facebook:hover {
    background-color: #2d4373; /* Darker Facebook blue */
}

.social-bubble.twitter:hover {
    background-color: #1991da; /* Darker Twitter blue */
}

.social-bubble.instagram:hover {
    background-color: #c13584; /* Darker Instagram gradient pink */
}

.social-bubble.youtube:hover {
    background-color: #cc0000; /* Darker YouTube red */
}

.social-bubble.discord:hover {
    background-color: #5a70ba; /* Darker Discord purple */
}

.social-bubble.snapchat:hover {
    background-color: #e0db00; /* Darker Snapchat yellow */
}


/* Hide Last visit */
.right.responsive-center.time.rightside {
    display: none !important;
}

/* Hide current date and time */
.responsive-center.time {
    display: none !important;
}

/* Mchat User is typing */
#typing_on {
    margin-top: 5px;
    font-style: italic;
}
.type {
    font-size: 1.0em;
    text-align: center;
}

/* GOOGLE MAPS SWEETALERTPOPUP */
.map-popup {
    max-width: 800px; /* Set the maximum width of the popup */
    margin: 20px auto; /* Center the popup horizontally with 20px margin from the top */
    border-radius: 10px; /* Add rounded corners to the popup */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Add a shadow effect to the popup */
    background-color: #ffffff; /* Set the background color of the popup */
    padding: 20px; /* Add padding inside the popup */
}

.map-popup iframe {
    border-radius: 10px; /* Add rounded corners to the iframe inside the popup */
}


/* MCHAT MENU NAVIGATION */
.mchat-nav, .mchat-nav-main {
  text-align: center !important;
  white-space: nowrap !important;
  overflow-x: auto !important; /* Allow horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mchat-nav a {
  font-family: "Oswald", sans-serif !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #FFFFFF !important;
  text-shadow: 1px 1px 1px #000000 !important;
  margin: 0 5px !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  position: relative !important;
  display: inline-block !important;
  max-width: 100% !important; /* Set maximum width to 100% */
  box-sizing: border-box; /* Include padding and border in the width */
  overflow: hidden; /* Hide any overflow content */
  text-overflow: ellipsis; /* Display ellipsis for overflow text */
}

.mchat-nav a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: transparent; /* Changed background color to transparent */
  bottom: 0; /* Changed top to bottom to position the underline */
  left: 0; /* Changed right to left */
  transform: scaleX(0); /* Initially, set width to 0 */
  transform-origin: bottom right; /* Changed transform origin */
  transition: transform 0.3s ease; /* Added transition for smooth animation */
}

.mchat-nav a:hover:before {
  transform: scaleX(1); /* Increase width to show the underline */
  transform-origin: bottom left; /* Changed transform origin */
}

@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mchat-nav a:nth-child(1) {
  animation: show 0.2s 1.1s ease 1 both;
}

.mchat-nav a:nth-child(2) {
  animation: show 0.2s 1.2s ease 1 both;
}

.mchat-nav a:nth-child(3) {
  animation: show 0.2s 1.3s ease 1 both;
}

.mchat-nav a:nth-child(4) {
  animation: show 0.2s 1.4s ease 1 both;
}

.mchat-nav a:nth-child(5) {
  animation: show 0.2s 1.5s ease 1 both;
}

@media (max-width: 768px) {
  .mchat-nav a {
    font-size: 0;
  }
  .mchat-nav a i {
    font-size: 20px; /* Adjust the size as needed */
  }
}




.birthdate-container {
    display: flex;
    flex-wrap: wrap;
}

.birthdate-container label {
    flex: 1 0 33.33%;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .birthdate-container label {
        flex: 1 0 100%;
        margin-right: 0;
    }
}



/* DEMO-SPECIFIC STYLES */
.typewriter {
  color: #000;
  font-size: 1.5rem;
  font-family: monospace;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .5em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .1em; /* Adjust as needed */
  animation: 
    typing 1.5s steps(30, end),
    blink-caret .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange }
}

/* Custom SweetAlert Style */
.custom-popup {
  border: 2px solid transparent;
  border-radius: 40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  background-image: linear-gradient(rgba(255, 102, 102, 0.5), rgba(255, 204, 0, 0.5));
  background-clip: border-box;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  -o-background-clip: padding-box;
  font-family: 'Arial', sans-serif;
  -moz-transform: rotate(12deg);
  -webkit-transform: rotate(12deg);
  -o-transform: rotate(12deg);
  -ms-transform: rotate(12deg);
  transform: rotate(12deg);
  color: #000 !important;
}

@keyframes borderGlow {
  0% {
    border-color: #ff6666;
  }
  100% {
    border-color: #ffcc00;
  }
}

/* Custom class to hide loader */
.swal2-loader {
  display: none !important; /* Hide the loader */
}

.popup-container {
  padding: 1rem;
  max-width: 100%;
}

.popup-content {
  color: #000 !important;
  font-size: 1rem !important;
  text-align: center;
  margin-bottom: 1rem;
}

.popup-title {
  color: #000 !important;
  font-size: 1.9rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.popup-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0px;
  word-spacing: 2px;
  color: #000 !important;
  font-weight: 400;
  text-decoration: none;
  font-style: italic;
  font-variant: normal;
  text-transform: none;
}

.popup-icon {
  color: #ffcc00;
  font-size: 0.5rem;
  margin-bottom: 1rem;
}

.popup-input {
  border: 2px solid #ff6666;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.popup-actions {
  display: flex;
  justify-content: center;
}

.swal2-cancel,
.swal2-styled,
.popup-confirm-button,
.popup-cancel-button {
  height: 40px !important;
  color: #fff !important;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5),
              7px 7px 20px 0px rgba(0,0,0,.1),
              4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

.swal2-cancel,
.swal2-styled,
.popup-confirm-button,
.popup-cancel-button {
  background: rgb(96,9,240) !important;
  background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%) !important;
  border: none;
}

.popup-confirm-button:hover {
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
              inset -4px -4px 6px 0 rgba(255,255,255,.2),
              inset 4px 4px 6px 0 rgba(0, 0, 0, .4) !important;
}

.popup-cancel-button {
  background: rgb(255, 51, 51);
  background: linear-gradient(0deg, rgba(255, 51, 51, 1) 0%, rgba(255, 102, 102, 1) 100%) !important;
  border: none;
}

.popup-cancel-button:hover {
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
              inset -4px -4px 6px 0 rgba(255,255,255,.2),
              inset 4px 4px 6px 0 rgba(0, 0, 0, .4) !important;
}

.swal-close {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 1;
  z-index: 9999;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 102, 102, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.swal-close:hover {
  background-color: rgba(255, 102, 102, 1);
  transform: translateY(2px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
}

.swal-close:active {
  transform: translateY(4px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5);
}



.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
    font-size: 12px !important; /* Adjust the size as needed */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3) !important; /* Adjust the shadow as needed */
}

.colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
    font-size: 12px !important; /* Adjust the size as needed */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3) !important; /* Adjust the shadow as needed */
}

.colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
    font-size: 12px !important; /* Adjust the size as needed */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3) !important; /* Adjust the shadow as needed */
}

.colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
    font-size: 12px !important; /* Adjust the size as needed */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3) !important; /* Adjust the shadow as needed */
}

.colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
    font-size: 12px !important; /* Adjust the size as needed */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3) !important; /* Adjust the shadow as needed */
}


.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}

.no-outline {
  outline: none;
}

body.swal2-shown > [aria-hidden="true"] {
  filter: blur(10px);
}
/* Adjust image size for mobile devices */
@media (max-width: 768px) {
    .custom-video-thumbnail {
        max-width: 100%; /* Adjust this value as needed */
        height: auto;
    }
}

/* Adjust image size for desktop devices */
@media (min-width: 769px) {
    .custom-video-thumbnail {
        max-width: 200px; /* Adjust this value as needed */
        height: auto;
    }
}


@media (max-width: 767px) {
  /* Styles for mobile devices (less than 768px wide) */
  #site-description {
    text-align: center;
  }
  
  #site-description h1 {
    opacity: 0;
    animation-name: fadeInDownBig;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
  }
  
  @keyframes fadeInDownBig {
    0% {
      opacity: 0;
      transform: translateY(-200px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.fade-in.is-visible {
  opacity: 1;
}


/* CSS styles for floating social media icons */
#ss_menu {
  bottom: 30px;
  width: 60px;
  height: 60px;
  color: #fff;
  position: fixed;
  right: 30px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

#ss_menu > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  background: #00796B;
  border-radius: 50%;
  display: table;
}

#ss_menu > div i {
  display: table-cell;
  vertical-align: middle;
}

#ss_menu > div:hover {
  background: #009688;
  cursor: pointer;
}

#ss_menu div:nth-child(1) {
  top: 0px;
  left: -160px;
}

#ss_menu div:nth-child(2) {
  top: -80.0px;
  left: -138.56406px;
}

#ss_menu div:nth-child(3) {
  top: -138.56406px;
  left: -80.0px;
}

#ss_menu div:nth-child(4) {
  top: -160px;
  left: 0.0px;
}

.ss_animate {
  -webkit-animation: badbounce 1s linear;
  -moz-animation: badbounce 1s linear;
  animation: badbounce 1s linear;
}

@-webkit-keyframes 
badbounce {  
  0%, 100% {
    -webkit-transform: translateY(0px);
  }
  10% {
    -webkit-transform: translateY(6px);
  }
  30% {
    -webkit-transform: translateY(-4px);
  }
  70% {
    -webkit-transform: translateY(3px);
  }
  90% {
    -webkit-transform: translateY(-2px);
  }
}

@-moz-keyframes 
badbounce {  
  0%, 100% {
    -moz-transform: translateY(0px);
  }
  10% {
    -moz-transform: translateY(6px);
  }
  30% {
    -moz-transform: translateY(-4px);
  }
  70% {
    -moz-transform: translateY(3px);
  }
  90% {
    -moz-transform: translateY(-2px);
  }
}

@keyframes 
badbounce {  
  0%, 100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  10% {
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -o-transform: translateY(6px);
    transform: translateY(6px);
  }
  30% {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  70% {
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
  }
  90% {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}

#ss_menu > .menu {
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.23), 0 3px 10px rgba(0, 0, 0, 0.16);
  color: #fff;
}

#ss_menu > .menu .share {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

#ss_menu > .menu .share .circle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  margin-top: -6px;
  left: 12px;
  opacity: 1;
}

#ss_menu > .menu .share .circle:after, #ss_menu > .menu .share .circle:before {
  content: '';
  opacity: 1;
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

#ss_menu > .menu .share .circle:after {
  left: 20.78461px;
  top: 12.0px;
}

#ss_menu > .menu .share .circle:before {
  left: 20.78461px;
  top: -12.0px;
}

#ss_menu > .menu .share .bar {
  width: 24px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  left: 18px;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

#ss_menu > .menu .share .bar:before {
  content: '';
  width: 24px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0px;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

#ss_menu > .menu .share.close .circle { opacity: 0; }

#ss_menu > .menu .share.close .bar {
  top: 50%;
  margin-top: -1.5px;
  left: 50%;
  margin-left: -12px;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  transform: rotate(405deg);
}

#ss_menu > .menu .share.close .bar:before {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-450deg);
  -moz-transform: rotate(-450deg);
  -ms-transform: rotate(-450deg);
  -o-transform: rotate(-450deg);
  transform: rotate(-450deg);
}
/* End CSS styles for floating social media icons */

dd a[href*="twitter"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: "\f099";
  color: #00acee;
  font-size: 35px;
}

dd a[href*="facebook"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: "\f082";
  color: #3b5998;
  font-size: 35px;
}

dd a[href*="linkedin"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: "\f08c";
  color: #0072b1;
  font-size: 35px;
}

dd a[href*="maps.google.com"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: "\f041";
  color: #DD6600;
  font-size: 35px;
}

dd a[href*="instagram"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: '\f16d';
  color: #feda75;
  font-size: 35px;
}

dd a[href*="snapchat"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: '\f2ac';
  color: #FFFC00;
  font-size: 35px;
}

dd a[href*="youtube"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: '\f167';
  color: #c4302b;
  font-size: 35px;
}

dd a[href*="skype"]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: '\f17e';
  color: #00aff0;
  font-size: 35px;
}

a[href^=sms]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: '\1F4F1';
  color: #DD6600;
  font-size: 35px;
}

a[href^=tel]:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: '\260E';
  font-size: 35px;
}

.pm-icon:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: "\f27a";
  color: #DD6600;
}

.email-icon:before {
  font-family: FontAwesome;
  padding-right: 10px;
  content: "\f0e0";
  color: #DD6600;
}


.process {
  width: 300px;
  box-shadow: 0px 1px 10px #0a990a, 0px 2px 15px #990a0a, 0px 3px 20px #0a0a99, -1px 1px 25px #0a990a, -1px 2px 30px #990a0a, -1px 3px 35px #0a0a99;
}

.process::before {
  content: ' ';
  position: absolute;
  background-color: #3bb78f;
  background-image: linear-gradient(315deg, #3bb78f 0%, #0bab64 74%);
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  animation: processing 5s;
  border-radius: 4px;
  z-index: -1;
}

.tick {
  position: absolute;
  left: 10px;
  top: 10px;
  opacity: 1;
  transition: left 2s;
}

.submitted {
  padding-left: 40px;
  animation: tick 0.6s;
  background-image: linear-gradient(315deg, #3bb78f 0%, #0bab64 74%);
  box-shadow: 0px 1px 10px #0a990a, 0px 2px 15px #990a0a, 0px 3px 20px #0a0a99, -1px 1px 25px #0a990a, -1px 2px 30px #990a0a, -1px 3px 35px #0a0a99;
}

@keyframes processing {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes tick {
  0% {
    transform: scale(0.1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh7USSwiPHA.ttf) format('truetype');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWw.ttf) format('truetype');
}


label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
  cursor: pointer;
}

body > * {
  transition: 0.1s filter linear;
}

.fa-heart {
  text-shadow: 1px 1px 1px #000000;
}

.fa-heart-o {
  text-shadow: 1px 1px 1px #000000;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#slidebox {
  z-index: 1000;
  max-width: 400px;
  height: auto;
  background-color: #fff;
  color: #7F7F7F;
  padding: 10px;
  border: 2px solid #ccc;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-box-shadow: 0 1px 5px #333;
  -webkit-box-shadow: 0 1px 5px #333;
}

#close {
  position: absolute;
  color: white;
  top: -1px;
  right: -1px;
}

.termsx {
  overflow-y: scroll;
  height: 300px;
  width: 100%;
  border: 1px solid #DDD;
  padding: 10px;
}

#ds-sticky-button {
  position: fixed;
  right: -195px !important;
  top: 200px;
  width: 200px !important;
  height: 25px !important;
  z-index: 99999;
  transform: rotate(90deg);
  transform-origin: left top 0;
}

#ds-sticky-button a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0px;
  border: 1px solid #fff;
  color: #ffffff;
  font-size: 16px;
  background: #000000;
  padding: 5px 15px 5px 15px;
  text-decoration: none;
}

#ds-sticky-button a:hover {
  -webkit-border-radius: 0px 0px 25px 25px;
  -moz-border-radius: 0px 0px 25px 25px;
  border-radius: 0px 0px 25px 25px;
  background: #ff6600;
  text-decoration: none;
}

#ds-sticky-button a:active {
  position: relative;
  top: 1px;
  background-color: #019ad2;
}

@media only screen and (max-width: 980px) {
  #ds-sticky-button {
    top: 100px !important;
  }
}

@media only screen and (max-width: 980px) {
  #ds-sticky-button {
    display: none;
  }
}

@media only screen and (max-width: 980px) {
  .icon-bar2 {
    display: none;
  }
}

.icon-bar2 {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar2 a {
  display: block;
  text-align: center;
  padding: 8px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar2 a:hover {
  background-color: #000;
}

.facebook2 {
  background: #3B5998;
  color: white;
}

.twitter2 {
  background: #55ACEE;
  color: white;
}

.paypal2 {
  background: #3b7bbf;
  color: white;
}

.linkedin2 {
  background: #007bb5;
  color: white;
}

.youtube2 {
  background: #bb0000;
  color: white;
}
iframe {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 700px;
}

.iframe-container {
  overflow: hidden;
  padding-top: 86.25%; /* 16:9 Aspect Ratio */
  position: relative;
}

@media only screen and (max-width: 767px) {
  .iframe-container {
    padding-top: 100%; /* 100% width on mobile devices */
  }
}

.iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transform-style: preserve-3d; /* Add 3D portal effect */
  perspective: 1000px; /* Adjust perspective for 3D effect */
}


.sticky-divi-button a {
  font: 20px "Helvetica";
  display: inline-block;
  margin: 20px;
  position: relative;
  text-decoration: none;
}

.sticky-divi-button {
  font: 20px "Helvetica";
  z-index: 10;
  position: fixed;
  bottom: 50px;
  left: 10px;
  background: #12a3eb;
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.4) 100%), -webkit-linear-gradient(left, #00b486 0%, #00684d 50%, #00b486 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(to right, #00b486 0%, #00684d 50%, #00b486 100%);
  background-position: 0 0;
  background-size: 200% 100%;
  border-radius: 10px;
  color: #fff;
  padding: 15px 55px 15px 15px;
  text-shadow: 1px 1px 5px #666;
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.sticky-divi-button:after {
  border-left: 1px solid #004f3a;
  color: #003527;
  content: "\f004";
  font: 20px "FontAwesome";
  padding: 10px 0;
  padding-left: 15px;
  position: absolute;
  right: 16px;
  top: 7px;
  -webkit-transition: all 600ms 200ms;
  transition: all 600ms 200ms;
}

.sticky-divi-button:hover {
  text-decoration: none;
  background-position: -100% 0;
}

.sticky-divi-button:hover:after {
  border-left: 1px solid #008260;
  color: #fff;
  text-shadow: 0 0 10px #000;
}

.sticky-divi-button {
  display: none;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .sticky-divi-button {
    display: inline;
  }
}


.GeneratedImage {
  width: 50px;
  margin: 0px;
  border-width: 1px;
  border-color: #000000;
  border-style: solid;
}


[data-tooltip] {
  position: relative;
  letter-spacing: 0.1rem;
}

[data-tooltip]::before,
[data-tooltip]::after {
  --tooltip-color: #333;
  --arrow-size: .5rem;
  --scale: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, var(--translate-y)) scale(var(--scale));
  transition: transform 100ms;
  transition-timing-function: linear;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  --scale: 1;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.45, 1.93);
}

[data-tooltip]::before {
  --translate-y: calc(-100% - var(--arrow-size));
  content: attr(data-tooltip);
  background-color: var(--tooltip-color);
  color: #FFF;
  padding: .5em;
  border-radius: .3em;
  width: max-content;
  max-width: 100%;
  text-align: center;
  transform-origin: bottom center;
}

[data-tooltip]::after {
  --translate-y: calc(-1 * var(--arrow-size));
  content: '';
  border: var(--arrow-size) solid transparent;
  border-top-color: var(--tooltip-color);
  transform-origin: top center;
}

