/* styles.css */

body #home.video-container .video-frame {
    width: 100% !important;
    background-color: #161a1d;
    overflow-y: auto; /* Add this line to enable vertical scrolling */
    height: auto; /* Add this line to allow the body to expand based on content */
  }

  .content-wrapper {
    flex: 1;
  }

  .main-page {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px; /* Adjust as needed */
    padding: 0 20px; /* Add horizontal padding for mobile */
  }

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 90px; /* Increased height of the top bar */
    display: flex;
    align-items: center; /* Vertically centers content */

  }


  .main-page {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px; /* Adjust as needed */
    /* Remove the overflow-y and height properties */
  }
 
  h1 {
    color: #fff !important; /* This will change H1 text to white */
    font-size: em;
  }

  h2 {
    /* color: #fe5770 */
    color: #fe5770; 
    font-size: 1em;
  }
  
  p {
    color: #b1bac3 !important; /* This will change paragraph text to white */
    font-size: small;
  }
  
  p .email-link {
    color: #b1bac3; /* Change the color of the link */
    text-decoration: none; /* Removes underline from the link */
    /* Add more styling as needed */
}

p .email-link:hover {
    color: #fe5770; /* Change the color when hovering */
    text-decoration: underline; /* Adds underline on hover */
    /* Add more hover effects as needed */
}

  .logo {
    width: 220px; /* adjust this based on your actual logo size */
    height: auto; /* maintain aspect ratio */
    margin-left: 0; /* remove or reduce left margin */
    padding-left:20px;
  }

  .custom-logo {
    margin-left: -100px;  /* Adjust this value to suit your needs */
  }


/* Add the following code */
header svg:hover path {
    fill: #ffffff !important;
  }

header svg path {
    transition: fill 0.3s ease; /* Add this line for transition */
  }
  
  
  #home {
    margin-top: 90px; /* Equal to the height of the fixed header */
    position: relative;
    width: 100%;
    overflow: hidden;
    height: calc(100vw / 4);
    z-index: 0;  /* Ensure the z-index is lower than the header */

  }
  
  #home iframe {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: calc(100vw * 9 / 16); /* 16:9 aspect ratio */
    transform: translateY(-50%);
    background-color: #15191C; /* Override Bootstrap's bg-dark */

  }
  
  #unmute-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
  }
  
  #features, #pricing, #contact, #about, #ethics, #faq {
    margin-top: 190px; /* 100px existing margin + 90px header height */
    padding: 50px;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }
  
  .video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
  }

  nav ul li a {
    color: #f3eeee; /* Color for menu links */
    text-decoration: none; /* Remove underline */
    font-family: 'Space Grotesk', sans-serif; /* Font family */
    position: relative;
  }

  nav ul li a:hover {
    color: #fe5770 /* new color */
  }

  nav ul {
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
    display: flex;
    align-items: center; /* Vertically centers menu items */
  }


/* Animated underline for first 5 links */
nav ul li a:not(.btn):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1.3px;
    background: #fe5770 /* new color */
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  nav ul li a:not(.btn):hover:before {
    transform: scaleX(1);
  }

  /* Baby blue Log In button */
.btn.btn-primary.login-button {
    background-color:#fe5770; /* new color */
    border: none;
    color: #15191C; /* White text */
  }
  
  /* Desaturated dusty green Sign Up button 
  .btn.btn-primary.signup-button {
    background-color: #fe5770 
    border: none;
    color: #15191C; 
  } */

.demo-button {
  background-color:#fe5770
  position: relative; /* or absolute, depending on your layout */
  z-index: 1001; /* Higher than Swiper's z-index */
  pointer-events: auto;
}

  .demo-button {
    background-color:#fe5770
    position: absolute;
    right: 12.5%; /* This ensures it aligns with the right edge of its containing element */
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Space Grotesk', sans-serif;
    color: #15191C; /* Black text */
    font-size: 1.25em; /* 25% larger than the default */
    background-color: #fe5770 /* Dusty green color */
    border: none;
    padding-left:30px;
    padding-right:30px;
    padding-top:15px;
    padding-bottom:15px;
    border-radius: 6px;
  }

  
/* New hover styles for demo button */
.demo-button:hover {
  color: #fe5770 !important; 
  background-color: #15191C; /* White background */
  border-radius: 6px; 

}

  header.bg-dark {
    background-color: #15191C; /* Override Bootstrap's bg-dark */
  }

  /* New styles for Bootstrap buttons */
.btn:hover {
   /*  background-color: #225252 !important;*/
    color: #ffffff !important;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .signup-button::before {
    content: "";
    position: absolute;
    top: 0px;  
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    border-radius: inherit;  /* assuming your button has rounded corners */
    animation: glow 1.5s infinite alternate;
  }

  /* Special Sign Up Button */
.signup-button {
    background-color: #fe5770
    color: #000000;
    animation: colorFade 1.5s infinite alternate;
    position: relative;
    z-index: 2;
  }

 

@keyframes colorFade {
    from {
      background-color: #fe5770
    }
    to {
      background-color: #fe5770
    }
  }

  @keyframes glow {
    0% {
      box-shadow: 0 0 5px #15191C, 0 0 5px #15191C, 0 0 5px #15191C, 0 0 5px #15191C, 0 0 5px #15191C, 0 0 35px #15191C, 0 0 5px #15191C;
      opacity: 1;
    }
    100% {
      box-shadow: 0 0 50px #fe5770, 0 0 5px #fe5770, 0 0 5px #fe5770, 0 0 5px #fe5770, 0 0 5px #fe5770, 0 0 5px #fe5770, 0 0 5px #fe5770;
      opacity: 0.3;
    }
  }
  

  /* Add this new pseudo-element for each section */
#home::before, #features::before, #faq::before, #ethics::before, #pricing::before, #contact::before, #about::before {
    content: "";
    display: block;
    height: /* Same as header height */
    margin-top: /* Negative value of header height */
    visibility: hidden;
}


body {
    padding-top: 180px; /* Equal to header height */
    background-color: #15191C !important;
  }
  
  #home, #features, #ethics, #pricing, #contact, #faq, #about {
    margin-top: -90px; /* Negative value of header height */
    padding-top: 100px; /* Additional padding to compensate */
  }

  #top {
    margin-top: -180px; /* Negative value of header height */
    padding-top: 180px; /* Additional padding to compensate */
    background-color: #15191C !important; /* Override Bootstrap's bg-dark */

  }

  .hidden {
    display: none;
}


#demoheader {
  padding-left:40px;
  text-align: left;
  z-index: 41;
  font-family: 'Adobe Clean Light', 'Space Grotesk', sans-serif;
  font-size: 1.3em;
  color:#ffffff;
  padding-top:20px;
}

.demozone {
  background-color: #36575B;
  min-width: 100%;
  min-height: 200px;
  max-width: 100px;
  z-index: 40;
  padding:40px;
  border-bottom-left-radius: 40px; /* Rounds the bottom left corner */
  border-bottom-right-radius: 40px; /* Rounds the bottom right corner */
  text-align: center;
  font-family: 'Adobe Clean Light', 'Space Grotesk', sans-serif;
  color:#fff;
}

.demoplayer {
  background-color: #24282C;
  margin:auto;
  width: calc(100% - 34px);
  min-height: 150px;
  z-index: 41;
  padding:20px;
  border-radius: 20px; /* Rounds the bottom left corner */
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2); /* Adjust the alpha value for transparency */
}


#section-centre {
  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 25px;
  margin-right: 50px;
  padding: 0px;
  width: 50%; /* Adjusted width */
  background-color: #23282c;
  border-radius: 40px; /* Rounds the bottom left corner */
  position: relative; /* Add this if you want it to be fixed */
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1); /* Adjust the alpha value for transparency */
  display: block;
}


#section-left {

  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 25px;
  padding: 20px;
  width: 50%; /* Adjusted width */
  background-color: #23282c;
  border-radius: 20px;
  position: relative; /* Add this if you want it to be fixed */
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1); /* Adjust the alpha value for transparency */

}

#section-right {

  margin-left: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 50px;
  padding: 20px;
  width: 50%; /* Adjusted width */
  background-color: #23282c;
  border-radius: 20px;
  position: relative; /* Add this if you want it to be fixed */
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1); /* Adjust the alpha value for transparency */

}


.sections-container {
    display: flex; /* Enables flexbox layout */
    }

#section-left, #section-right, #image-section-right, #image-section-left {
    width: 50%; /* Each takes up half of the container */
}

#section-centre {
  width: 100%; /* Ensures the image spans the full width of the container */
  height: 100%; /* Ensures the image spans the full height of the container */
}

#image-section-right {
  margin-left: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 50px;
  border-radius: 20px;
  overflow: hidden; /* This ensures the image is cropped to the border radius */
  width: 50%; /* Adjusted width */
  height: calc(110% - 100px); /* Adjust height to account for the margin */
  display: flex;
  height: 550px;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
}

#image-section-left {
  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 25px;
  border-radius: 20px;
  overflow: hidden; /* This ensures the image is cropped to the border radius */
  width: 50%; /* Adjusted width */
  height: calc(110% - 100px); /* Adjust height to account for the margin */
  display: flex;
  height: 550px;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
 /* background-color: red;*/
}

#image-section-centre {
  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 25px;
  border-radius: 20px;
  overflow: hidden; /* This ensures the image is cropped to the border radius */
  width: 100%; /* Adjusted width */
  height: calc(110% - 100px); /* Adjust height to account for the margin */
  display: flex;
  height: 550px;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
 /* background-color: red;*/
}


.rounded-border-link {
  width: 100%; /* Ensures the image spans the full width of the container */
  height: 100%; /* Ensures the image spans the full height of the container */
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden; /* This ensures the image is cropped to the border radius */
  display: flex;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
}

.rounded-border-link img {
  width: 100%; /* Ensures the image spans the full width of the container */
  height: 100%; /* Ensures the image spans the full height of the container */
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden; /* This ensures the image is cropped to the border radius */
  display: flex;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
}

#image-section-right img {
  width: 100%; /* Ensures the image spans the full width of the container */
  height: 100%; /* Ensures the image spans the full height of the container */
  object-fit: cover;
}

#image-section-left img {
  width: 100%; /* Ensures the image spans the full width of the container */
  height: 100%; /* Ensures the image spans the full height of the container */
  object-fit: cover;
}


#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block; /* or other display property */

  background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 9998; /* High z-index to overlay over other content */
}

div#lightbox.hidden {
  display: none;
}

#lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 20px;
    color: white;
}

iframe {
  width: 1024px; /* Increased from 640px */
  height: 576px; /* Increased from 360px */
}

footer {
  text-align: center; /* Center the text inside the footer */
  padding: 20px 0; /* Add some padding above and below the text */
  background-color: #23282c;
  color: #fe5770   /* Text color */
  position: relative;
  width: 100%;
  font-size: 0.6em; /* Make the text smaller */
}

footer .social-icon {
  color: #b1bac3; /* Icon color */
  margin: 5px; /* Margin around icons */
  font-size: 22px; /* Icon size */
  text-decoration: none; /* Remove underline from links */
}

footer .social-icon:hover {
  color: #fe5770 /* Icon color on hover */
  text-decoration: none; /* Removes the underline */
}

footer p {
margin-left: 20px;
margin-right: 20px;
font-size: 1em; /* Icon size */
}

.swiper {
  margin-top: -90px; /* Equal to the height of the fixed header */
  position: relative;
  width: 100%;
  overflow: hidden;
  height: calc(100vw / 4);
  z-index: 0;  /* Ensure the z-index is lower than the header */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide contents vertically. */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide iframe {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(100vw * 9 / 16); /* 16:9 aspect ratio */
  transform: translateY(-50%);
  background-color: #15191C !important; /* Override Bootstrap's bg-dark */
}

/* Color of the inactive dots */
.swiper-pagination-bullet {
  background: #fff !important;  /* Replace #yourColor with your desired color */
  opacity: 0.5; /* Optional: Adjust for inactive dots transparency */
  margin-bottom: 50px;
}

/* Color of the active dot */
.swiper-pagination-bullet-active {
  background: #fe5770 !important; /* Replace #yourActiveColor with your desired color */
  opacity: 1; /* Optional: Adjust for active dot transparency */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 5;
  margin-bottom: 20px !important; 
}


.swiper-slide .image-container {
  position: relative;
  text-align: left;
}

.swiper-slide .image-container img {
  width: 100%;
  height: auto; /* This ensures the image maintains its aspect ratio */
}

.swiper-slide .text-overlay {
  position: absolute;
  top: 50%;
  left: 20px; /* Adjust the left position as needed */
  transform: translateY(-50%);
  color: white;
  z-index: 10;
  text-align: left;
  width: auto;
  padding: 0;
}

.header-scrolled {
  background-color: #23282c !important; /* Ensuring override */
  /*color: black !important;  Change text color if needed */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Example shadow */
}

.header-unscrolled {
  background-color: #15191C !important; /* Original darker color */
  /*color: white !important; Assuming white text color */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.signup-link {
  color: #fe5770 /* Set the color of the link */
  text-decoration: underline; /* Optional: underline */
}

.signup-link:hover {
  color:white; /* Optional: different color when hovering */
  text-decoration: underline; /* Optional: underline */

}


/* heading for demo player */

.flex-container {
  display: flex;
  justify-content: space-between; /* Ensures items are spread; left and right */
  align-items: center; /* Aligns items vertically in the center */
  padding-left: 10px; /* Overrides inherited padding for left alignment */
  padding-right: 10px; /* Overrides inherited padding for right alignment */
  padding-top: 0px; /* Overrides inherited padding for right alignment */
  min-width: 0; /* Override if necessary to allow shrinkage */
  z-index: 40; /* Keeps inherited z-index */
  font-family: 'Adobe Clean Light', 'Space Grotesk', sans-serif; /* Keeps inherited font */
  color: #fff; /* Keeps inherited color */
  text-align: left; /* Override to prevent centering text-align issues */
}

/* Adjusts images to not stretch too much and maintain space */
.flex-container img:first-of-type {
  margin-right: 20px; /* Space between images */
}

.flex-container img:last-of-type {
  /* No specific changes, allowing it to hug the right */
}


/* demo player text field */

.input-button-container {
  display: flex; /* Enables flex layout */
  align-items: center; /* Aligns items vertically */
  gap: 10px; /* Adjusts gap between elements, if needed */
  margin-top: 20px; /* Space below the previous element */
  padding: 0 10px; /* Matches the flex-container padding for alignment */
}

#responsive-text-field {
  flex-grow: 1; /* Allows the text field to fill available space */
  padding: 8px 20px; /* Adjusted padding */
  font-size: 16px;
  color: #E2DFDC;
  background-color: #16191C;
  border: 0;
  box-sizing: border-box;
  border-radius: 40px;
  margin-right: 10px; /* Ensures some space between the text field and the button */
}

#submit-button {
  min-width: 160px; /* Minimum width */
  padding: 8px 20px; /* Adjust padding to match the text field's height */
  font-size: 11px; /* Match the text field font size */
  color: #000; /* Button text color */
  background-color: #fe5770 /* Green background */
  border: none;
  border-radius: 40px; /* Match the text field border radius */
  cursor: pointer; /* Changes the cursor on hover */
}

/* Optional: Style for hover effect on the button */
#submit-button:hover {
  background-color: #fe5770; /* Slightly darker green on hover */
}

#signuptodownload-button {
  min-width: 160px; /* Minimum width */
  padding: 8px 20px; /* Adjust padding to match the text field's height */
  font-size: 11px; /* Match the text field font size */
  color: #000; /* Button text color */
  background-color: #7e8989; /* Green background */
  border: none;
  border-radius: 40px; /* Match the text field border radius */
  cursor: pointer; /* Changes the cursor on hover */
}

/* Optional: Style for hover effect on the button */
#signuptodownload-button:hover {
  background-color: #fe5770;; /* Slightly darker green on hover */
}

p {
  font-size: small;
}


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */  


/* HOME PAGE AUDIO PLAYER */  


/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */  

.player-and-process-container {
  display: flex;
  align-items: center; /* Vertically center items in the container */
  justify-content: space-between; /* Distribute extra space equally */
}

.audio-player-container {
  flex-grow: 1; /* Allow the audio player to take up as much space as it can */
}

.input-button-container {
  /* Optionally, you can add styling here to control the button's size or margins */
}




.tabunderline {
/*width: 100%;*/
/*min-width:545px;*/
  height: 100%;
  margin: auto;
  position: relative;
 /*  border-top: 1px solid #767676; */
  box-sizing: border-box;
  overflow: hidden;
  position: absolute; /* Position the container at the top-left */
  top: 40px;
  left: 0;
  min-height: 100%; /* Min height to allow vertical scaling */
  overflow: hidden;
  box-sizing: border-box; /* Include padding and borders in the element's total width and height */
  z-index: 0;
}

.view-selector {
  display: flex;
  margin-left: 10px;
  height: 40px;
  background-color: #1e1e1e;
  overflow: hidden;
  z-index: 101;
}

.view-selector a {
  padding: 10px; /* This is a shorthand for setting all paddings at once */
  text-decoration: none;
  color: #7f7f7f;
  /*transition: color 0.3s; /* Smooth transition for color change */
}

.view-selector a:hover {
  color: white; /* This will change the text color to white on hover */
  z-index: 1;
}

.view-selector a.active {
  border-bottom: 1px solid white;
  border-radius: 1px;
  color: white;
  z-index: 1;
}
.view {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 14px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.view.hidden {
  display: none;
  overflow: hidden;
}

#script-textarea {
 /*  width: 100%; */
  position: relative;
  width: calc(100vw - 258px);
  min-width: 332px;
  height: calc(100vh - 214px);
  margin-bottom: 10px;
  resize: none; /* This will prevent resizing */
  background-color: #2C2C2C;
  font-family: 'Adobe Clean','Space Grotesk', sans-serif;
  color: #efefef;
  font-size: 12pt;
  padding:20px;
  border-radius: 10px;
  /* z-index: 10; */
}

.filter-block, .artist-grid, .artist-details {
  float: left;
  width: 100%;
  overflow: hidden;
}

.filter-block {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4%;
  margin-bottom: 0px;
  padding-left:10px;
  padding-right:14px;
  padding-top:10px;
  padding-bottom:5px;
  width: calc(100vw - 217px);
  min-width: 332px;
  overflow: hidden;
}



#voiceover-view, #script-view {
  position: relative;
  position: relative;
  position: relative;

  margin: 0px;
  border-width: 1px;
  overflow: hidden;
  z-index:3;
}

.voiceover-view-container{
  position: relative;
  height: calc(100vh - 214px);
  width: calc(100vw - 258px);
  min-width: 332px;
  margin: 0px;
  border-width: 1px;
  border-radius: 10px;
  border-width: 1px;  
  border-style: solid; /* This makes the border visible */
  border-color: #767676 ;
  background-color: #2C2D2B;
  z-index: 1; /* Higher than .artist-details-bg */
  /* More styling */
  overflow: hidden;
}

.artist-details {
  position: absolute;
  right: 15px;
  top: 34px; /* Adjust as needed */
  width: 170px; /* Adjust the width as necessary */
  height: calc(100vh - 166px);
  /*  max-height: 520px; */
  font-family: 'Adobe Clean','Space Grotesk', sans-serif;
  color: #efefef;
  padding:20px;
  border-radius: 10px;
  border-width: 1px;  
  background-color: transparent;
  z-index: 23; /* Higher than .artist-details-bg */
  text-align: center;
  overflow: hidden;
  max-height: calc(100vh - 70px);
  /* More styling */
}

.artist-details-header {
  position: absolute;
  right: 15px;
  top: 10px; /* Adjust as needed */
  width: 170px; /* Adjust the width as necessary */
  height: 33px; /* If you want it to be full height */
  background-color: #08C6C4;
  font-family: 'Adobe Clean','Space Grotesk', sans-serif;
  color: #efefef;
  border-top-left-radius: 8px; /* adjust the pixel value as needed */
  border-top-right-radius: 8px; /* adjust the pixel value as needed */
  border-width: 0px;  
  border-color: #767676 ;
  border-style: solid; /* This makes the border visible */
  z-index: 1; /* Lower than .artist-details */
  text-align: center;
  color: #2C2C2C;
  font-size: 11px;
  font-family: 'Adobe Clean Thin', sans-serif;
  margin-bottom: 5px;
  margin-top:5px;
  padding:5px;
  display: flex; /* Added flex display */
  align-items: center; /* This centers the text vertically */
  justify-content: center; /* This centers the text horizontally */
  overflow: hidden;
  /* More styling */
}

.artist-details-bg {
  position: absolute;
  right: 15px;
  top: 14px; /* Adjust as needed */
  width: 170px; /* Adjust the width as necessary */
  height: calc(100vh - 166px);
  background-color: #2C2C2C;
  font-family: 'Adobe Clean','Space Grotesk', sans-serif;
  color: #efefef;
  padding:20px;
  border-radius: 10px;
  border-width: 1px;  
  border-color: #767676 ;
  border-style: solid; /* This makes the border visible */
  z-index: 0; /* Lower than .artist-details */
  overflow-y: auto;
    /* More styling */
}

.artist-bio {
  margin-top: 50px; /* Adjust as needed */
  overflow-y: auto;
  /* More styling */
}


.artist-grid {
  overflow-y: auto;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, calc(25% - 1%));
  gap: 1%;
  background-color: transparent;
  border-radius: 8px; /* adjust the pixel value as needed */
  padding-top:3px;
  padding-bottom:10px;
  padding-left:10px;
  padding-right:10px;
  align-items: start; /* Align grid items to the start of the grid area */
  align-content: start; /* Align grid content to the start in case of extra space */
}

/* Media Query for Medium Screens */
@media (min-width: 768px) {
  .artist-grid {
    grid-template-columns: repeat(5, calc(20% - 1%)); /* 5 columns for medium screens */
  }
}

/* Media Query for Large Screens */
@media (min-width: 1024px) {
  .artist-grid {
    grid-template-columns: repeat(6, calc(16.66% - 1%)); /* 6 columns for large screens */
  }
}

/* Media Query for Extra Large Screens */
@media (min-width: 1200px) {
  .artist-grid {
    grid-template-columns: repeat(8, calc(12.5% - 1%)); /* 8 columns for extra large screens */
  }
}

.artist-card {
  width: 100%;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  background-color: #393939;
  padding: 10px;
  min-height: 145px;
  max-height: 393px;
}

.artist-card:hover {
  background-color: #404040;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow effect */
  cursor: pointer;
}

.artist-card:active {
  background-color: #6e6e6e;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow effect */
  border: 1px solid #fe5770; 
}

.artist-card.selected {
  /* border-width: 1px;  
  border-color: #767676 ;
  border-style: solid; /* This makes the border visible */
  background-color: #404040; /* Light grey background */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow effect */
  border: 1px solid #fe5770; 
}

.artist-card img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.artist-name {
  color: #08C6C4;
  background-color: transparent;
  font-size: 13px;
  padding: 5px;
  border-radius: 5px, 5px, 5px, 5px;
  overflow: hidden; /* Hide overflow */

}

select {
  font-family: 'Adobe Clean','Space Grotesk', sans-serif;
  color: #2C2C2C;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fe5770;
  border: none;
  padding: 5px;
  height: 23px;
  width: 100%;
  cursor: pointer;
  font-size: 11px;
  box-sizing: border-box;
  text-align-last: center;
  border-radius: 10px;
  overflow: hidden;
}





select:hover {
  background-color: #fe5770; /* Darker shade of the button color on hover */
  color: white; /* Text color remains white on hover */
}

#reset-filters {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fe5770;
  color: #2C2C2C;
  border: none;
  padding: 5px;
  width: 100%;
  cursor: pointer;
  font-family: 'Adobe Clean', sans-serif;
  font-size: 11px;
  box-sizing: border-box;
  text-align-last: center;
  border-radius: 10px;
  overflow: hidden;
}

#reset-filters:hover {
  /* Optional: Style for hover state */
  background-color: #fe5770; /* Darker shade of the button color on hover */
  color: white; /* Text color remains white on hover */
}

.non-default-selected {
  background-color: #fe5770; /* Darker shade of the button color on hover */
  color: white; /* Text color remains white on hover */
}

.filter-label {
  text-align: center;
  color: #2C2C2C;
  font-size: 11px;
  font-family: 'Adobe Clean Thin', sans-serif;
  margin-bottom: 5px;
  margin-top:5px;
  padding:5px;

}

.filter-labels-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background-color: #fe5770;
  gap: 1%;
  padding-left:10px;
  padding-right:10px;
  height:33px;
  border-top-left-radius: 8px; /* adjust the pixel value as needed */
  border-top-right-radius: 8px; /* adjust the pixel value as needed */
  overflow: hidden;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/*
.filter-block, .artist-grid {
  margin-right: calc(33.33%);
} */


@font-face {
  font-family: 'Adobe Clean';
  src: url('./fonts/AdobeClean-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


.process-button {
  background-color: #08C6C4; /* Cyan-like color */
  width:80px;
  height:25px;
  min-width:80px;
  border: none; /* No border */
  color: #2C2C2C; /* White text color */
  padding: 5px 5px; /* Padding inside the button */
  text-align: center; /* Center the text inside the button */
  text-decoration: none; /* No underline on the text */
  display: inline-block; /* Allows the padding and margins to work */
  font-size: 10px; /* Set the font size */
  margin: 0px 0px; /* Space around the button */
  cursor: pointer; /* Change mouse cursor to signify button */
  border-radius: 54px; /* Rounded edges with 25px radius */
  transition-duration: 0.4s; /* Smooth transition for hover effects */
  font-family: 'Adobe Clean Regular','Space Grotesk', sans-serif;
  font-weight: 400; 
  overflow: hidden;
}

.process-button:hover {
  background-color: #06a4a2; /* Darker shade of the button color on hover */
  color: white; /* Text color remains white on hover */
}

.process-button:active {
  transform: scale(0.95); /* Slightly reduce the size when clicked */
  /* You can also change the background color or add other styles */
}

#process-button-disabled {
  color: #4a4a4a;
  background-color: #2c2c2c;
  pointer-events: none; /* Disables click events */
  cursor: default; /* Changes cursor to indicate it's not clickable */
}

.addtoproject-button {
  background-color: #fe5770;
  width:80px;
  height:25px;
  min-width:110px;
  border: none; /* No border */
  color: #2C2C2C; /* White text color */
  padding: 5px 5px; /* Padding inside the button */
  text-align: center; /* Center the text inside the button */
  text-decoration: none; /* No underline on the text */
  display: inline-block; /* Allows the padding and margins to work */
  font-size: 10px; /* Set the font size */
  margin: 0px 0px; /* Space around the button */
  cursor: pointer; /* Change mouse cursor to signify button */
  border-radius: 54px; /* Rounded edges with 25px radius */
  transition-duration: 0.4s; /* Smooth transition for hover effects */
  font-family: 'Adobe Clean Regular','Space Grotesk', sans-serif;
  font-weight: 400; 
  overflow: hidden;
}

.addtoproject-button:hover {
  background-color: #06a4a2; /* Darker shade of the button color on hover */
  color: white; /* Text color remains white on hover */
}

.addtoproject-button:active {
  transform: scale(0.95); /* Slightly reduce the size when clicked */
  /* You can also change the background color or add other styles */
}


.mobiledownload-link {
  display: none;
}

.disabled-link {
  color: #4a4a4a;
  background-color: #2c2c2c;
  pointer-events: none; /* Disables click events */
  cursor: default; /* Changes cursor to indicate it's not clickable */
}

.disabled-link:hover,
.disabled-link:active {
  /* No change on hover or active to indicate it's not interactive */
  color: #a2a2a2;
  background-color: #2c2c2c;
}

.button-container {
  min-width: 300px;
  position: absolute;
  display: flex;
  /*transform: translateX(-50%); */
  position: fixed; /* Position the button at the bottom */
  bottom: 20px;
  left: 20px;
  right: 0;
  padding: 10px; /* Add some padding around the button */
  margin-right: 217px;
  box-sizing: border-box; /* Include padding in the element's total width and height */
}


.audio-player {
  width: calc(100vw - 428px);
  min-width:120px;
  align-items: center; /* Vertically center the content */
  z-index: 100;
}

.audio-player-container {
  margin-top: 20px;
  margin-left:10px ;
  margin-right:10px ;
 /* background-color: #2C2C2C;*/
  border-radius: 10px;
  display: flex;
  min-width: 120px;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  height: 25px; /* Or set to the desired height */
  position: relative; /* Add this to position the loading animation */
}

.disabled-audio-player {
  opacity: 0.2; /* Lower opacity for greyed out look */
  pointer-events: none; /* Disable mouse interactions */
  cursor: default; /* Default cursor instead of pointer */
}

.disabled-progress-bar, .disabled-progress-bar-container,
.disabled-track-time {
    opacity: 0.2; /* Lower opacity for a greyed-out look */
    /* Any other styling needed for the disabled state */
}
.disabled-audio-player button {
  /* Additional styling for buttons if needed */
}


/* New Loading Animation Styles */
.loading-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    to right,  /* Direction of the gradient */
    #08C6C4,
    #08C6C4 30px,  /* First color segment */
    #404040 30px,
    #404040 60px   /* Second color segment */
  );
  background-size: 60px 100%; /* Adjusted for vertical stripes */
  animation: moveBackground 2s linear infinite;
}

@keyframes moveBackground {
  0% { background-position: 0 0; }
  100% { background-position: 60px 0; } /* Shift horizontally for vertical stripes */
}

/* Artist audio Player */

.artist-audio-player {
  min-width:120px;
  margin-top:450px;
  height: 25px; /* Or set to the desired height */
  overflow: hidden;
}

.artist-audio-player-container {
  margin-top: 0px;
  margin-left:0px ;
  margin-right:0px ;
  /*background-color: #2C2C2C; */
  border-radius: 10px;
  display: flex;
  min-width: 120px;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  height: 25px; /* Or set to the desired height */

}

.progress-bar-container {
  width: 100%;
  min-width: 20px;
  height: 5px;
  background-color: #8A8C8D;
  margin: 5px 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden; /* Hide overflow for the moving animation */
}

.progress-bar {
  height: 100%;
  background-color: #cccfd1;
  width: 0%; /* Initial width of the progress bar */
  border-radius: 10px;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: space-between; /* This spreads out the children */

}

.artist-player-controls {
  display: flex;
  align-items: center;
  min-height: 25px; 
  justify-content: space-between; /* This spreads out the children */
  background-color: #15181c;
  border-radius: 10px;
  padding-left: 5px;
  padding-right: 5px;

}

#playButton {
  background: url('ui/audioplayer_play_sm.png') no-repeat center center;
  border: none;
  margin-left: 4px;
  width: 25px;
  height: 25px;
  min-width:25px;
  min-height:25px;
  display: inline-block;
  cursor: pointer;
  outline: none;
  margin-right: 5px; /* Adjust as needed for spacing */
  scale: 60%;
}

#pauseButton {
  background: url('ui/audioplayer_pause_sm.png') no-repeat center center;
  border: none;
  margin-left: 4px;
  width: 25px;
  height: 25px;
  min-width:25px;
  min-height:25px;
  display: none; /* Start with pause button hidden */
  cursor: pointer;
  outline: none;
  margin-right: 5px; /* Adjust as needed for spacing */
  scale: 60%;
}

#playButton:hover {
  opacity: 0.8;  /* You can also change the background color or add other styles */
}

#pauseButton:hover {
  opacity: 0.8;  /* You can also change the background color or add other styles */
}

#playButton:active {
  transform: scale(0.9); /* Slightly reduce the size when clicked */
  /* You can also change the background color or add other styles */
}

#pauseButton:active {
  transform: scale(0.9); /* Slightly reduce the size when clicked */
  /* You can also change the background color or add other styles */
}

.progress-bar-container {
  flex-grow: 1; /* Allows the progress bar to fill the remaining space */
  /* Your existing styles for progress bar container */
}

  /* Main track counter*/
#mainTrackTimeCounter {
  margin-top: 2px; /* Adjust as needed for spacing */
  margin-left: 10px; /* Adjust as needed for spacing */
  margin-right: 10px; /* Adjust as needed for spacing */
  color: #a2a2a2; /* Adjust as needed for the font color */
  font-family: 'Adobe Clean', 'Space Grotesk', sans-serif; /* Your desired font */
  font-size: 11px; /* Adjust as needed for size */
}

  /* Demo Track Counter*/
div[id^="trackTimeCounter-"] {
  /* Your CSS styles here */
  margin-top: 2px; /* Adjust as needed for spacing */
  margin-left: 10px; /* Adjust as needed for spacing */
  margin-right: 10px; /* Adjust as needed for spacing */
  color: #a2a2a2; /* Adjust as needed for the font color */
  font-family: 'Adobe Clean', 'Space Grotesk', sans-serif; /* Your desired font */
  font-size: 11px; /* Adjust as needed for size */
}

.artist-details .player-controls {
  align-items: center; /* Adjust this as needed */
  min-height: 100px;
  height:100px;
}

.artist-details .player-controls button {
  background-size: contain;
  min-height: 100px;
  height:100px;
  /* Other styles as needed */
}

/* Style for any play button */
.artist-audio-player-container [id^="playButton-"] {
  /* Your styles for the play button */
  background: url('ui/audioplayer_play_sm.png') no-repeat center center;
  background-size: contain;
  min-width: 25px; /* Example size, adjust as needed */
  min-height: 25px; /* Example size, adjust as needed */
  border: none; /* Remove the border if there is one */
  cursor: pointer; /* Change cursor to pointer to indicate this is a button */
  scale:60%;
  z-index: 25;
}

/* Style for any pause button */
.artist-audio-player-container [id^="pauseButton-"] {
  /* Your styles for the pause button */
  background: url('ui/audioplayer_pause_sm.png') no-repeat center center;
  background-size: contain;
  min-width: 25px; /* Example size, adjust as needed */
  min-height: 25px; /* Example size, adjust as needed */
  border: none; /* Remove the border if there is one */
  cursor: pointer; /* Change cursor to pointer to indicate this is a button */
  display: none; /* Hide the pause button by default */
  scale:60%;
  z-index: 25;
}


.artist-image-container {
  display: flex;
  justify-content: center; /* Center children horizontally */
  align-items: center; /* Center children vertically */
  height: 100%; /* Set to the desired height */
  width: 100%; /* Set to the desired width */
  overflow: hidden;
}

.artist-image {
  max-width: 100%; /* Image won't exceed the width of the container */
  max-height: 100%; /* Image won't exceed the height of the container */
  object-fit: contain; /* Ensures the image is scaled properly */
  min-height: 130px;
  overflow: hidden;
}


#artistsContainer {
  text-align: center; /* This will center inline and inline-block elements */
  display: flex;
  background-size: contain;
  flex-direction: column; /* This stacks children vertically */
  align-items: center; /* This centers children horizontally */
  top:50px;
  overflow: hidden;
  height:100%;
  z-index: 24;
}

#preLoaderContainer {
  display: flex;
  flex-direction: column; /* This stacks children vertically */
  align-items: center; /* This centers children horizontally */
  height: 100%; /* Set to the desired height */
  width: 100%; /* Set to the desired width */
  max-width: 100%; /* Image won't exceed the width of the container */
  max-height: 100%; /* Image won't exceed the height of the container */
  object-fit: contain; /* Ensures the image is scaled properly */
  min-height: 130px;
  overflow-y: auto;

}

/* Pre-loader Styles */
.pre-loader {
  display:block;
  position: absolute; /* or 'absolute' if it should be within a container */
  background-image: url("../../images/artists/artist-image-preloader.gif") ;
  background-repeat: no-repeat;
  background-position: center;
 /* background-color: #06a4a2; */
  background-size: contain; /* This will ensure that the image is contained within the div, adjust as needed */
  width: 130px; /* Set a specific width */
  height: 130px; /* Set a specific height */
  min-width: 130px; /* Set a specific width */
  min-height: 130px; /* Set a specific height */
  max-width: 100%; /* Image won't exceed the width of the container */
  max-height: 100%; /* Image won't exceed the height of the container */
  object-fit: contain; /* Ensures the image is scaled properly */
  z-index: 1000;
  overflow-y: auto;
  top:63px;
}

#settings-cog {
  position: absolute;
  top: 21px;
  right: 81px;
  z-index: 100;
  /* Add your cog's styling, such as background, size, and color */
}

#settings-cog i:hover {
  color: white; /* Color of the icon on hover */
  cursor: pointer; /* Change mouse cursor to signify button */
}

#settings-cog i:active {
  transform: scale(0.9); /* Slightly reduce the size when clicked */
  color: #ffffffcd; /* Color of the icon on hover */
}

/* Style for the Font Awesome icon with locally hosted fonts */
#settings-cog i {
  font-family: 'Font Awesome 6 Free'; /* Specify the Font Awesome font family */
  font-weight: 900; /* Specify the font weight for the solid icons */
  font-size: 17px; /* Adjust the size of the icon */
  color: #818181;    /* Adjust the color of the icon */
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  src: url('fonts/fa-solid-900.woff2') format('woff2'); /* Updated path to the WOFF2 file */
  /* Add other font formats (e.g., woff, ttf) as needed */
}

/* ARTIST BIO STYLING*/

.detail-heading {
  color: #a2a2a2; /* Gray color for headings */
  font-family: 'Adobe Clean Light','Space Grotesk', sans-serif;
  font-size: 10pt;
}

.detail-value {
  color: #08C6C4; /* Cyan color for values */
    font-family: 'Adobe Clean Light','Space Grotesk', sans-serif;
  font-size: 10pt;
}

.getOnTop {z-index: 5000;}



/* Loading Spinner*/


.textarea-and-spinner {
  position: relative; /* New container for the spinner */
  width: calc(100vw - 258px);
  min-width: 332px;
  height: calc(100vh - 214px);
  margin-bottom: 10px;
  resize: none; /* This will prevent resizing */
  background-color: #2C2C2C;
  font-family: 'Adobe Clean','Space Grotesk', sans-serif;
  color: #efefef;
  font-size: 12pt;
  border-radius: 10px;
}


#ttsform {
  position: relative; /* This makes it the positioning context for the spinner */
  /* Other styling for your form */
}

.loader {
  border: 5px solid #1e1e1e;
  border-top: 5px solid #08C6C4;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 42%;
  left: 42%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: none; /* Hidden by default */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.loading-overlay {
  position: absolute;
  top: 1px; /* 1px from the top edge */
  left: 1px; /* 1px from the left edge */
  right: 1px; /* 1px from the right edge */
  bottom: 1px; /* 1px from the bottom edge */
  background-color: rgba(44, 44, 44, 0.9); /* semi-transparent*/
  z-index: 9;
  display: none; /* hidden by default */
  cursor: not-allowed; /* optional, shows a 'not allowed' cursor */
  padding:20px;
  border-radius: 10px;
}

  /* Warning Dialog */

.center-dialog {
  position: fixed;
  min-width: 332px;
  min-height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(44, 44, 44, 0.75); /* Use rgba with opacity (0.75) */
 font-family: 'Adobe Clean','Space Grotesk', sans-serif;
 color: #efefef;
 font-size: 12pt;
 padding:20px;
 border-radius: 10px;
  border: 1px solid #767776;
  padding: 20px;
  z-index: 501;
  text-align: center;
}

 /* App inactive overlay */

#appInactiveOverlay { /* Updated name */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65); /* 75% opacity black background */
  z-index: -500; /* Should be lower than the dialog box's z-index (999 in your case) */
 /*  display: none; /* Initially hidden */
}


#reloadButton {
  background-color: #08C6C4; /* Cyan-like color */
  width:80px;
  height:25px;
  min-width:80px;
  border: solid; /* No border */
  color: #2C2C2C; /* White text color */
  padding: 5px 5px; /* Padding inside the button */
  text-align: center; /* Center the text inside the button */
  text-decoration: none; /* No underline on the text */
  display: inline-block; /* Allows the padding and margins to work */
  font-size: 10px; /* Set the font size */
  margin: 0px 0px; /* Space around the button */
  border-radius: 54px; /* Rounded edges with 25px radius */
  transition-duration: 0.4s; /* Smooth transition for hover effects */
  font-family: 'Adobe Clean Regular','Space Grotesk', sans-serif;
  font-weight: 400; 
  overflow: hidden;
  z-index: -999;
  cursor: pointer !important;

}

#reloadButton:hover {
  background-color: #333; /* Change background color on hover */
  color: #767776; /* Change text color on hover */
  border: 1px solid #767776;
  top:1px;
  bottom:1px;
  left:1px;
  right:1px;
  cursor: pointer !important;

}


#upgradeButton {
  background-color: #08C6C4; /* Cyan-like color */
  width: 120px;
  height:25px;
  min-width:80px;
  border: solid; /* No border */
  color: #2C2C2C; /* White text color */
  padding: 5px 5px; /* Padding inside the button */
  text-align: center; /* Center the text inside the button */
  text-decoration: none; /* No underline on the text */
  display: inline-block; /* Allows the padding and margins to work */
  font-size: 10px; /* Set the font size */
  margin: 0px 0px; /* Space around the button */
  border-radius: 54px; /* Rounded edges with 25px radius */
  transition-duration: 0.4s; /* Smooth transition for hover effects */
  font-family: 'Adobe Clean Regular','Space Grotesk', sans-serif;
  font-weight: 400; 
  overflow: hidden;
  z-index: -999;
  cursor: pointer !important;

}

#upgradeButton:hover {
  background-color: #333; /* Change background color on hover */
  color: #767776; /* Change text color on hover */
  border: 1px solid #767776;
  top:1px;
  bottom:1px;
  left:1px;
  right:1px;
  cursor: pointer !important;

}

button, 
input[type="button"], 
input[type="submit"], 
input[type="reset"], 
.a-button-like-class {
    cursor: pointer !important;
}



/* top bar */

.account-top-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px; /* you can adjust this value as needed */
  display: flex;
  align-items: center; /* this centers the button vertically */
  justify-content: space-between;
  padding: 10px;
  z-index: 1000;
}

.account-top-header p {
  margin-bottom: 0;  /* new addition - remove default margin */
}

.logout-button {
  position: absolute;
  align-items: center;
  text-align: center;
  right: 31px;
  top: 22px;
  margin-right: 10px;
  background-color: #818181;
  width: 43px;
  height: 15px;
  min-width: 43px;
  border: none;
  color: #2C2C2C;
  padding: -25px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 9px;
  margin: 0px 0px;
  cursor: pointer;
  border-radius: 30px;
  transition-duration: 0.4s;
  font-family: 'Adobe Clean Regular', sans-serif;
  font-weight: 400;
  overflow: hidden;
  z-index: 100;
}

.logout-button:hover {
  background-color: #ffffff!important;  /* Set background color to white */
}

.email-text {
  color: #fe5770 !important; /* Bootstrap primary (blue) color */
  margin: 0;
  align-items: center; /* vertically aligns the text */
  text-align: center;
  position:absolute;
  
}

.top-bar-label{
  color: #f1f3f4;  /* Replace with the color you want */
}


html,
body {
  height: 100%;
  padding-top: 70px; /* Adjust this value to match the height of your top bar */
  position: relative;
  min-height: 100%;

}



.user-email {
  color: #818181!important;  /* New background color */
  /* Add your cog's styling, such as background, size, and color */
}

.user-email-link {
  color: #818181!important;
  position: absolute;
  right: 96px;
  top: 12px;
  font-size: 14px;
  align-items: center; /* vertically aligns the text */
  text-align: right;
  z-index: 100;
  /* Add your cog's styling, such as background, size, and color */
}

.user-email-link:hover {
  color: #ffffff!important;
  position: absolute;
  font-size: 14px;
  align-items: center; /* vertically aligns the text */
  text-align: right;
  /* Add your cog's styling, such as background, size, and color */
}

.btn-primary {
  background-color: #fe5770 !important;  /* New background color */
  border: none; /* New border color */
}

.btn-primary:hover {
  background-color: #fe5770 !important; 
  border: none; 
/*  background-color: #4d02ee; */ 
}

.mobiledownload-link{
  display: none;
}



  /* RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE  */


@media screen and (max-width: 768px) {
  /* Styles for screens 768px wide or less */
  .sections-container {
    flex-direction: column;
  }
  #section-left, #section-right, #image-section-right, #image-section-left {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sections-container {
    flex-direction: column;
  }
  #section-left, #section-right, #image-section-right, #image-section-left {
    width: 100%;
    margin: 20px 0;
    height: auto;
  }
  #image-section-right img, #image-section-left img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .sections-container {
    flex-direction: column;
  }
  #section-left, #section-right, #image-section-right, #image-section-left {
    width: 100%;
    margin: 20px 0;
    height: auto;
  }
  #image-section-right img, #image-section-left img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  #section-left, #section-right {
    padding: 10px;
  }
}
@media screen and (max-width: 1240px) {
  nav {
    display: none;
  }

  nav.show {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #15191C;
    opacity:94%;
    padding: 10px;
  }

  nav.show ul {
    flex-direction: column;
  }

  nav.show ul li {
    margin-bottom: 10px;
  }

  .btn {
    display: flex;
    justify-content: center; /* Horizontally center items */
}

.signup-button {
    display: block;
    min-width: 200px;
    margin-left:-15px;
    /* Additional styles for the signup button */
}

.btn.btn-primary.login-button {
  background-color:#fe5770 /* new color */
  display: block;
  min-width: 200px;
  /* Additional styles for the signup button */
}

  nav.show ul li a {
    display: block;
    padding: 10px;
  }

  .hamburger-menu {
    display: block;
    cursor: pointer;
  }

  .hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
  }

  nav.show ul li a:focus {
    outline: none;
  }

  nav.show ul li a:active {
    background-color: #fe5770
    color: #15191C;
  }
}


@media screen and (max-width: 767px) {
  body {
    padding-top: 160px; /* Adjust this value based on the height of your mobile header */
  } 



  .top-video {
    /* height: 20vh; */
  }

  .top-video .swiper-container {
    height: 20vh;
    position: relative;
    z-index: 1;
  }



  /* Additional styles for other elements within the swiper slides */

  @media screen and (max-width: 767px) {
    .swiper {
      height: 324px;
    }
  }

  @media screen and (max-width: 767px) {
    #home {
      margin-top: -155px;
      height: 330px;
    }
  }


@media screen and (max-width: 767px) {
  .swiper-slide {
    height: auto; /* Change height to auto */
    min-height: 50vh; /* Set a minimum height if needed */
    background-color: #161a1d;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide {
    height: auto; /* Change height to auto */
    min-height: 20vh; /* Set a minimum height if needed */
  }

  .swiper-slide iframe {
    position: absolute; /* Change position back to absolute */
    top: 0; /* Reset top value */
    left: 0; /* Reset left value */
    width: 100%; /* Set width to 100% */
    height: 100%; /* Set height to 100% to fill the slide */
    transform: none; /* Remove the transform property */
  }
}


@media screen and (max-width: 767px) {
  .main-page {
    padding: 0 10px; /* Adjust horizontal padding for smaller screens */
    padding-left:20px;
    padding-right:40px;
  }
  

}

@media screen and (max-width: 1300px) {
  .swiper-slide .text-overlay {
    font-size: 4vw;
  }
}

@media screen and (max-width: 767px) {
  .top-video {
    position: relative;
  }

  .desktop-demo-button {
    position: absolute;
    right: 12.5%;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .mobile-demo-button {
    display: none;
  }

  }
  
  @media screen and (max-width: 767px) {
    .desktop-demo-button {
      display: none;
    }
  
    .mobile-demo-button {
      display: block;
      position: static;
      margin: 40px auto 20px; /* Add a top margin of 40 pixels and keep the bottom margin of 20 pixels */
      margin-top:20px;
      width: 60%;
      font-size: 1em;
      padding: 10px 20px;
      z-index: 1;
    }


  }

  #section-left,
#section-right {
  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 25px;
  padding: 20px;
  width: 50%;
  background-color: #23282c;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


#section-right {
  margin-left: 25px;
  margin-right: 50px;
}

#image-section-right,
#image-section-left {
  margin-left: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 50px;
  border-radius: 20px;
  overflow: hidden;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#image-section-left {
  margin-left: 50px;
  margin-right: 25px;
}

.sections-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.sections-container > div {
  display: flex;
}

@media screen and (max-width: 768px) {
  #section-left,
  #section-right,
  #image-section-right,
  #image-section-left {
    width: 100%;
    margin: 20px 10px;
    height: auto;
  }

  #image-section-right img,
  #image-section-left img {
    max-width: 100%;
    height: auto;
  }

  .sections-container > div {
    flex-direction: column;
  }
}

}

@media screen and (min-width: 768px) {
  .mobile-demo-button {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .swiper-slide .text-overlay {
    font-size: 3vw;
    left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide .text-overlay {
    font-size: 4vw;
    left: 20px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide .text-overlay {
    top: 24%; /* Adjust the top position for screens above 768px wide */
    left: 100px; /* Adjust the left position for screens above 768px wide */
  }



