/* Reset default margin and padding */

:root {
  --main-color: #00568f; /*#41a7eb #2f89c5 #137886 #93194c Define your color variable here */
  --main-color-medium: #5486af;
  --main-color-light: #41a7eb;
  --main-color-lightest: #e5f4ff80;
  --main-color-lightmedium: #ceeaff;
}


@font-face {
    font-family: 'Poppins-Bold';
    src: url('/static/fonts/Poppins-Bold.ttf') format('truetype');
}

@font-face {
font-family: 'Poppins-Regular';
src: url('/static/fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('/static/fonts/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('/static/fonts/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url('/static/fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Squares-Bold';
  src: url('/static/fonts/Squares-Bold-Free.otf') format('truetype');
}

@font-face {
  font-family: 'Squarea-Regular';
  src: url('/static/fonts/Squarea-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Gorga-Grotesque-Regular';
  src: url('/static/fonts/Gorga Grotesque Regular.otf') format('truetype');
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
}

body {
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0;
height: 100%;
}

header {
  position: fixed;
  top: 0%;
  width: 100%;
  background-color: white;
  color: #000000;
  font-size: 120%;
  z-index: 1000;
  vertical-align: middle;
  /* transition: top 0.3s; */
}

/* Style your other header elements as needed */
.horizontal-bar {
  background-color: white; /* Adjust the background color as needed */
  color: black; /* Adjust the text color as needed */
  font-size: 0.75rem;
  padding-top: 2px;
}

/* Rest of your header styling... */


nav {
    background-color: #ffffff;
  }
  
  .navigation {
    display: flex;
    justify-content: left;
    align-items: center;
    /* padding-top: 4px; */
    margin-bottom: 0;
    margin-top: 5px;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 5px; /* Add gap between img and h2 */
    user-select: none;
  }
  
  .logo-container img {
    height: 70px; /* Adjust the width as needed */
    margin: 0;
    margin-left: 10px;
  }
  
  .logo-container h2 {
    margin: 0; /* Remove default margin */
    margin-right: 70px;
    font-family: 'Montserrat-SemiBold';
    font-size: 1.5rem;
  }
  
  .menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
    font-family: 'Montserrat-SemiBold';
    justify-content: space-between;
  }

  .main-section:hover {
    background-color: var(--main-color);
  }
  
  .menu a:hover {
    color: white;
  }  
  
  .menu li {
    font-size: 16px;
    /* float: left; */
  }
  .menu a {
    text-decoration: none;
    color: var(--main-color);    
  }

  .main-section {
    text-decoration: none;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 5px 10px; /* Adjust padding as needed for spacing */
  }  
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    list-style-type: none;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    justify-content: center;
    text-align: center;
    min-width: 125px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .nav-down-arrow {
    width: 80px;
    left: -150%;
    background-color: white;
  }

  .nav-down-arrow li a {
    font-size: 14px;
    color: grey;
    font-family: 'Montserrat-Regular';
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
    color: var(--main-color);
  }

  .dropdown:hover .nav-down-arrow {
    min-width: 80px;
    font-size: 14px;
    color: grey;
  }

  .dropdown-content li:hover a {
    color: #000;
    /* text-decoration: underline; */
  }

  .right-section {
    position: absolute;
    right: 0;
    margin-right: 60px;
    padding: 5px 20px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background-color: var(--main-color);
  }

  .right-section:hover {
    background-color: white;
  }  

  a.signIn {
    color: white; /* Default color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Add a smooth color transition */
    font-size: 1rem;
  }

  a.signIn:hover {
    color: var(--main-color); /* Color on hover */
  }
  
  .right-section1 {
    position: absolute;
    right: 0;
    margin-right: 165px;
    padding: 5px 20px; /* Adjust padding as needed */
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background-color: white;
  }

  .right-section1:hover {
    background-color: var(--main-color);
  }  

  a.signIn1 {
    color: var(--main-color); /* Default color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Add a smooth color transition */
    font-size: 1rem;
  }

  a.signIn1:hover {
    color: white; /* Color on hover */
  }  

/* Define the animation */
@keyframes colorChange {
  0% {
    color: black;
    font-size: 100%; /* Initial font size */
  }
  50% {
    color: var(--main-color);
    font-size: 104%; /* Increase font size by 20% */
  }
  100% {
    color: black;
    font-size: 100%; /* Back to initial font size */
  }
}

/* Apply the animation to the list item with the "color-change" class */
.color-change {
  margin-left: 50px;
  text-decoration: underline;
  animation: colorChange 4s infinite;
}

.emoji-small {
  vertical-align: middle;
  margin-left: 2px;
  /* margin-right: 2px; */
  margin-top: -2px; /* Adjust as needed */
  width: 20px;
}

section {
padding: 20px;
}

.hero {
/* background-color: rgb(224, 224, 224); linear-gradient(rgba(0, 123, 255, 0.7), rgba(195, 224, 255, 0.7)), */
background: url('/static/images/custom_bg1.png');
background-size: cover;
background-position: center;
height: 475px;
display: flex;
justify-content: center;
align-items: center;
color: black;
text-align: center;
font-size: 20px;
}

.cover h1 {
    font-family: 'Montserrat-Regular';
    font-size: 2.6rem;
    /* text-shadow: 1.2px 1.2px 1.2px #000; */
}

.cover p {
  font-family: 'Montserrat-Regular';
  margin-top: 15px;
}

.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.get-started {
  padding: 5px 20px;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  background-color: var(--main-color);
  max-width: 220px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s, color 0.3s, text-decoration 0.3s;
  display: inline-block;
}

.get-started:hover {
  background-color: white;
  color: var(--main-color);
  /* text-decoration: underline; */
}

a.getStarted {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Default color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s; /* Add a smooth color transition */
  margin-bottom: 35px;
  max-width: 220px;
}


.services {
display: flex;
background-color: white;
justify-content: space-around;
flex-wrap: wrap;
padding-bottom: 20px;
font-family: 'Montserrat-Regular';
padding-left: 40px;
padding-right: 50px;
}

.service:hover::after {
  content: ''; /* Create a pseudo-element */
  display: block;
  width: 0; /* Start with zero width */
  height: 1px; /* Line height/thickness */
  background-color: var(--main-color); /* Line color */
  margin-top: 2px; /* Adjust the distance from the text */
  transition: width 0.4s; /* Transition only the width property */
}

.service:hover {
  /* transform: scale(1.04); */
  cursor: default;
  box-shadow: 5px 5px 8px var(--main-color);
  border: 1px solid var(--main-color);
}

#second-plan {
  cursor: default;
  box-shadow: 5px 5px 8px var(--main-color);
  border: 1px solid var(--main-color);  
}

.service {
  width: 25rem;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.422);
  border-radius: 5px;
  text-align: center;
  margin: 10px;
  margin-top: 5rem;
  height: 29.5rem;
  transition: all 0.4s;
  position: relative; /* Position relative for absolute positioning of pseudo-element */
  padding-bottom: 20px;
}

.service h2.model {
  position: relative; /* Create a stacking context for pseudo-element */
  /* z-index: 1;  */
}

/* Add margin to the h2 to create space for the underline */
.service h2.model::after {
  content: ''; /* Create a pseudo-element */
  display: block;
  width: 50%;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 25%;
  transform-origin: bottom right;
  transform: scaleX(0); /* Start with zero width */
  transition: transform 0.4s ease-in-out;
}

.service:hover h2.model::after {
  transform-origin: bottom left;
  transform: scaleX(1); /* Expand to full width on hover */
}


.services a {
text-decoration: none;
color: black;
}

.model {
  text-decoration: none;
  color: var(--main-color);
  /* margin-bottom: 0.1rem; */
}

.service h3 {
  /* text-decoration: none;
  color: var(--main-color); */
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: grey;
  font-size: 1rem;
}

.service p {
  text-align: left;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-top: 0.3rem;
}

.service p img {
  width: 20px;
  /* height: 15px; */
  margin-right: 10px;
}

#advance-service {
  border: 1px solid var(--main-color);
}

/* Base button styles */
.buy-plan {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: bold;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  margin-top: 0.25rem;
  font-family: 'Montserrat-Regular';
  transition: background-color 0.3s ease-in-out;
}

/* Hover effect */
.buy-plan:hover {
  background-color: white;
  color: var(--main-color);
  
}

/* Focus effect (for accessibility) */
.buy-plan:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}


.prices {
  margin: 0.9rem;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  color: #4c4c4a;
  font-family: 'Gorga-Grotesque-Regular';
  font-family: 'IBM Plex Mono', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time {
  font-size: 1rem;
}

.toggle-plans {
  width: 23rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto; /* Adjust margin as needed */
  cursor: pointer;
  user-select: none;
  background-color: rgb(235, 235, 235);
  height: 30px; /* Define a height for vertical alignment */
  border-radius: 20px; /* Adding border-radius for consistency */
  margin-top: 1.1rem;
}

.toggle-plans > * {
  display: flex;
  align-items: center;
}

.toggle-container {
  display: flex;
  width: 45px;
  height: 20px;
  border-radius: 20px;
  background-color: #000000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.toggle-track {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid black;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

.toggle-thumb {
  width: 20px;
  height: 20px;
  background-color: var(--main-color-light);
  border-radius: 50%;
  position: absolute;
  left: 0;
  transition: left 0.3s ease-in-out;
}


.horizontal-bar {
height: 30px;          /* Set the thickness of the bar */
width: 100%;    /* Set the maximum width of the bar */
background-color: white; /* Set the background color of the bar */
margin: 0 auto;      /* Center the bar horizontally */
text-align: center;
color: black;
justify-content: center;
/* align-items: baseline; */
font-family: 'Montserrat-SemiBold';
margin-top: 75px;
}

.horizontal-bar1 {
    height: 35px;          /* Set the thickness of the bar */
    width: 100%;    /* Set the maximum width of the bar */
    background-color: white; /* Set the background color of the bar */
    margin: 0 auto;      /* Center the bar horizontally */
    text-align: center;
    justify-content: center;
    font-family: 'Montserrat-Bold';
    margin-top: 45px;
    margin-bottom: 75px;
}

.horizontal-bar1 h2 {
  font-size: 2rem;
  /* text-decoration: underline; */
  color: var(--main-color);
}

.horizontal-bar1 p {
  font-family: 'Montserrat-Regular';
}

.horizontal-bar2 {
  height: 1px;          /* Set the thickness of the bar */
  width: 90%;    /* Set the maximum width of the bar */
  background-color: grey; /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  margin-bottom: 0.8rem;
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-SemiBold';
}

.horizontal-bar3 {
  height: auto;          /* Set the thickness of the bar */
  width: 100%;    /* Set the maximum width of the bar */
  background-color: white; /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-Bold';
  padding-top: 45px;
  padding-bottom: 15px;
}

.horizontal-bar3 h2 {
  font-size: 2rem;
  /* text-decoration: underline; */
  color: black;
}

.horizontal-bar3 p {
  font-family: 'Montserrat-Regular';
}

.horizontal-bar4 {
height: 200px;          /* Set the thickness of the bar */
width: 100%;    /* Set the maximum width of the bar */
background-color: white;
margin: 0 auto;
padding: 0; 
}

.horizontal-bar5 {
  height: auto;          /* Set the thickness of the bar */
  width: 100%;    /* Set the maximum width of the bar */
  background-color: white; /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-Bold';
  padding-top: 45px;
  padding-bottom: 1rem;
}

.horizontal-bar5 h2 {
font-size: 2rem;
/* text-decoration: underline; */
color: var(--main-color);
}

.horizontal-bar5 p {
font-family: 'Montserrat-Regular';
}

.horizontal-bar6 {
  height: 2px;          /* Set the thickness of the bar */
  width: 80%;    /* Set the maximum width of the bar */
  background-color: var(--main-color-light); /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
}

.horizontal-bar7 {
  height: auto;          /* Set the thickness of the bar */
  width: 100%;    /* Set the maximum width of the bar */
  background-color: white; /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-Bold';
  padding-top: 45px;
  padding-bottom: 1rem;
}

.horizontal-bar7 h2 {
font-size: 2rem;
/* text-decoration: underline; */
color: var(--main-color);
}

.horizontal-bar7 p {
font-family: 'Montserrat-Regular';
}

.horizontal-bar8 {
  /* display: inline; */
  height: 1px;          /* Set the thickness of the bar */
  width: 40%;    /* Set the maximum width of the bar */
  background-color: var(--main-color); /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-Regular';
  margin-top: 10px;
  margin-bottom: 10px;
}


.horizontal-bar9 {
  height: 35px;          /* Set the thickness of the bar */
  width: 90%;    /* Set the maximum width of the bar */
  background-color: white; /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-Bold';
  margin-top: 30px;
  /* margin-bottom: 15px; */
}

.horizontal-bar10 {
  height: 35px;          /* Set the thickness of the bar */
  width: 80%;    /* Set the maximum width of the bar */
  background-color: white; /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-Bold';
  /* margin-top: 75px; */
  margin-bottom: 15px;
}

.outer-outer {
  background-color: white;
}

.outer-outer2 {
  background-color: white;
}

.feedback-outer {
  width: 95%;
  margin: 0 auto;
  background-color: white;
}

.feedbacks {
  /* display: inline; */
  height: auto;          /* Set the thickness of the bar */
  /* width: 80%; */
  background-color: white;
  /* margin: 0 auto; */
  padding: 0;
  padding-bottom: 3rem;
}

.feedback {
  display: inline-flex;
  margin-left: 20px;
  margin-top: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
  border: 0.5px solid var(--main-color-light);
  border-radius: 8px;
  align-items: center;
  max-width: 50%;
  box-shadow: 2px 2px 4px rgb(144, 144, 144);
  transition: all 0.4s;
  cursor: default;
}

#fb1 {
  max-width: 45%;
}

#fb2 {
  max-width: 50%;
}

#fb3 {
  max-width: 100%;
}

#fb4 {
  max-width: 35%;
}

#fb5 {
  max-width: 60%;
}

#fb6 {
  max-width: 53%;
}

#fb7 {
  max-width: 42%;
}

.feedback:hover {
  border: 0.5px solid var(--main-color);
  box-shadow: 3px 3px 6px var(--main-color);
}

.feedback-line {
  display: inline;
  font-family: 'Poppins-Regular';
  font-size: 0.85rem;
  font-style: italic;
  position: relative;
  top: 0;
}

.client {
  font-style: normal;
  font-weight: bold;
}

.client1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman';
  font-style: italic;
  /* font-weight: bold; */
  font-size: 1.3rem;
  color: black;
}

footer {
  background-color: black;
  font-family: 'Montserrat-Regular';
  color: white;
  text-align: center;
  padding: 7.5px;
  font-size: 12px;
  font-weight: bold;
}

#contact-outer {
  max-width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.contact-outer1 {
  max-width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.contacts {
  display: flex;
  justify-content: space-between;
  padding: 0 5%; /* Adjust horizontal padding */
  padding-bottom: 2rem;
}

.contact {
  flex: 1;
  margin: 10px; /* Adjust margin between  contacts */
  padding: 20px;
  margin-left: 2.6rem;
  margin-right: 2.6rem;
  border: 0.5px solid rgb(207, 207, 207);
  /* border-radius: 8px; */
  box-shadow: 2px 2px 4px rgb(144, 144, 144);
  transition: all 0.4s;
  cursor: default;
  padding-bottom: 30px;
}

.contact:hover {
  border: 0.5px solid var(--main-color-light);
  box-shadow: 3px 3px 6px var(--main-color-light);
}

.pointers {
  font-family: 'Montserrat-Regular';
  font-size: 0.83rem;
  text-align: left;
  /* position: relative; */
  left: 25%;
  /* width: 60%; */
}

.pointers1 {
  font-family: 'Montserrat-Regular';
  font-size: 0.83rem;
}

.logged-pointers {
  position: relative;
  width: 55%;
}

.email-to {
  text-decoration: none;
  color: #000;
}

.email-support {
  font-family: 'Montserrat-SemiBold';
}

.email {
  padding: 10px;
  font-size: 1.2rem;
  
}

.email-image {
  width: 40px;
  margin-right: 10px;
}


#contact2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.feedback-heading {
  font-family: 'Montserrat-SemiBold';
  padding-bottom: 0;
  margin-bottom: 0;
}

#front-page-form .increase-height {
  height: 10rem;
}

.feedback-form {
  width: 25rem;
  /* height: 5rem; */
  border-radius: 5px;
  box-shadow: 1px 1px 2px var(--main-color);
  padding: 10px;
}


.feedback-form::placeholder {
  font-family: 'Montserrat-Regular';
  font-size: 12px;  
}

#front-page-form {
  margin-top: 5px;
  margin-left: 20px;
}

form input[type="email"] {
  border-radius: 5px;
  box-shadow: 1px 1px 2px var(--main-color);
  padding: 10px;
  border: 1px solid var(--main-color);
  margin-right: 8px;
  width: 282px;
}

form input[type="email"]::placeholder {
  font-family: 'Montserrat-Regular';
  font-size: 12px;
}


.feedback-submit {
  padding: 8px 16px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 15px;
  font-weight: bold;
  border: 1px solid var(--main-color-light);
  box-shadow: 1px 1px 2px var(--main-color);
  border-radius: 5px;
  background-color: white;
  color: var(--main-color);
  cursor: pointer;
  margin-top: 0.75rem;
  /* margin-bottom: 30px; */
  font-family: 'Montserrat-Regular';
  transition: background-color 0.3s ease-in-out;
}

/* Hover effect */
.feedback-submit:hover {
  /* background-color: white; */
  /* color: black; */
  border: 1px solid var(--main-color);
  box-shadow: 2px 2px 6px var(--main-color);
}

/* Focus effect (for accessibility) */
.feedback-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}

.thank-you-note {
  display: none;
  flex-direction: column;
  text-align: center;
  vertical-align: middle;
  height: 180px;
  margin: 0 auto;
  width: 500px;
  padding: 10px;
  font-size: 18px;
  font-family: 'Montserrat-SemiBold';
  color: var(--main-color);
  margin-bottom: 30px;
  margin-top: 30px;
  border: 0.5px solid var(--main-color-light);
  box-shadow: 3px 3px 6px var(--main-color-light);
}

.thank-you-note-front {
  display: none;
  flex-direction: column;
  text-align: center;
  vertical-align: middle;
  height: 150px;
  margin: 0 auto;
  width: 350px;
  padding: 10px;
  font-size: 18px;
  font-family: 'Montserrat-SemiBold';
  color: var(--main-color);
  margin-bottom: 30px;
  margin-top: 10px;  
}

.emoji-thankyou {
  width: 70px;
  margin-bottom: 5px;
}


.models-description {
  margin: 0;
  margin-top: 1rem;
  padding-bottom: 0;
  display: flex;
  /* justify-content: center;   */
  flex-direction: row;
}

.model-details {
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  /* box-shadow: 2px 2px 8px rgba(139, 45, 227, 0.5);   */
  width: 30%;
  margin-left: 5rem;
  margin-top: 0.9rem;
}

.model-details1 { 
  position: relative;
  right: 2%;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  margin-left: 5rem;
  margin-right: 0;
  /* box-shadow: 2px 2px 8px rgba(139, 45, 227, 0.5);   */
  width: 52%;
}

.model-details:hover {
  border: none;
  box-shadow: none;
}

.model-details1:hover {
  border: none;
  box-shadow: none;
}

.model-name {
  color: var(--main-color);
  font-family: 'Montserrat-SemiBold';
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  /* text-decoration: underline; */
}

.model-image {
  width: 100%;
  box-shadow: 2px 2px 8px rgba(139, 45, 227, 0.5);  
  /* margin: 4rem; */
  /* margin-left: 5rem; */
}

.model-points {
  margin-left: 0;
  font-family: 'Montserrat-Regular';
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.model-short {
  margin-left: 3rem;
  font-family: 'Montserrat-Regular';
  /* font-size: 1.25rem; */
  margin-bottom: 8px;  
}

.emoji-medium {
  vertical-align: middle;
  margin-left: 2px;
  margin-right: 1rem;
  margin-top: -2px; /* Adjust as needed */
  width: 30px;
}

.model-name-desc {
  color: grey;
  font-size: 1.5rem;
}

.already {
  font-style: italic;
}

.already a {
  color: var(--main-color);
}

.google-text {
  font-family: 'Montserrat-Regular';
  color: black;
  font-size: 1.15rem;
}

.login-pages {
  background-color: white;
  background: url('/static/images/custom_bg_login.png');
  background-size: contain;
  background-position: center;  
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.login-pages h1 {
  font-family: 'Times New Roman', Times, serif;
  color: var(--main-color);
  /* text-decoration: underline; */
}

.google-signin {
  margin: 1rem;
  padding: 0.3rem;
  padding-left: 2rem;
  padding-right: 1.9rem;
  border: 1px solid var(--main-color);
  border-radius: 3px;
}

.google-signin:hover {
  box-shadow: 1px 1px 2px var(--main-color-light);
}


.google-link {
  text-decoration: none;
  color: black;
}

.signup-or {
  display: inline-flex;
  width: 30rem;
  justify-content: space-around;
  align-items: center;
  vertical-align: middle;
  margin-bottom: 10px;
}

/* Basic form styles */
.signup-form {
  font-family: 'Montserrat-Regular';  
  width: 300px;
  margin: auto;
  text-align: center;
}

/* Input styles */
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Button styles */
.signup-form button {
  width: 40%;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: var(--main-color);
  color: white;
  border: 1px solid var(--main-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Montserrat-Bold';
}

.signup-form button:hover {
  background-color: white;
  color: var(--main-color);
  border: 1px solid var(--main-color);  
}

form ul {
  display: none;
}

/* Style the help text */
.signup-form .helptext, form ul.errorlist {
  color: #f96767;
  font-size: 12px;
  display: block;
  text-align: left;
  margin-top: 5px;
}

.width-short {
  width: 12rem;
  margin-top: 0;
}

@keyframes scaleUpDown {
  0% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.02); /* Slightly larger */
  }
  100% {
    transform: scale(1); /* Back to normal size */
  }
}

body {
  background-color: white;
}

.user-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 14rem;
}

.go-back {
  display: inline-flex;
  margin: 10px;
  padding: 7px 20px;
  padding-left: 2rem;
  padding-right: 2rem;
  font-family: 'Montserrat-Regular';
  font-size: 1.1rem;
  cursor: pointer;
  background-color: 'white';
  border-radius: 5px;
  border: 1px solid var(--main-color);
  box-shadow: 2px 2px 4px var(--main-color);
}

.go-back:hover {
  color: #00568f;
  transform: scale(1.02);  
}

#profileButton {
  color: var(--main-color);
  text-decoration: none;
}





/* Styling Success Messages */
.messages .success {
  color: green;
  /* Other styles */
}

/* Styling Info Messages */
.messages .info {
  color: blue;
  /* Other styles */
}

/* Styling Warning Messages */
.messages .warning {
  color: orange;
  /* Other styles */
}

/* Styling Error Messages */
.messages .error {
  color: red;
  /* Other styles */
}


.helptext a {
  color: rgb(110, 110, 110);
}


/* After Login */

.grid-container {
  display: grid;
  grid-template-columns: 20% 1fr; /* 400px for the first column and the rest for the second */
  grid-gap: 0; /* Optional gap between columns */
  height: calc(100vh - 34px);
}

.first-column {
  /* border: 0.1px solid var(--main-color); */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.second-column {
  /* background-color: lightgreen; */
  overflow-y: auto;
  height: 100%;
  /* You can style the second column here */
}

.sidebar {
  margin-top: 30px;
}

.sidebar-icons {
  margin-top: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
}

/* .sidebar-icons:hover {
  background-color: #e2e2e2c0;
  color: #000;
} */

.sidebar-links {
  text-decoration: none;
  font-family: 'Montserrat-SemiBold';
  color: grey;
  /* margin-left: 25px; */
  margin-top: 20px; 
}

.left-margin {
  margin-left: 50px;
  margin-right: 5px;
}

.top-bar {
  display: flex;
  justify-content: space-between; /* Creates space between elements */
  align-items: center; /* Vertically aligns items */
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 5px;
  z-index: 1;
  position: fixed;
  width: 80%;
  background-color: white;
  /* border: 1px solid var(--main-color); */
}

.top-bar-title {
  text-align: right;
}

.left-align {
  flex: 1; /* Takes up remaining space on the left */
  text-align: left;
  margin-left: 25px;
  font-family: 'Montserrat-SemiBold';
  font-size: 20px;
  /* color: var(--main-color); */
}

.right-align {
  text-align: right;
  padding: 7px;
  border-radius: 5px;
  background-color: rgb(227, 227, 227);
}

/* .right-align:hover {
  background-color: rgb(227, 227, 227);
  padding: 7px;
} */

.welcome-user {
  font-size: 17px;
}

.welcome-user:hover {
  text-decoration: underline;
  color: #000;
  cursor: pointer;
}

.small-arrow {
  width: 12px;
}

.profile-picture {
  width: 30px;
  border-radius: 15px;
  background-color: white;
  /* Add other styles as needed */

  /* Initial styling for the circle */
  transition: border-color 0.3s, background-color 0.3s; /* Smooth transition effect */
  border: 3px solid transparent; /* Hide the border initially */
}

.profile-picture-text {
  width: 30px;
  height: 30px; /* Added height to make it a circle */
  border-radius: 50%; /* Make it a circle */
  background-color: white;
  color: var(--main-color);
  font-family: 'Montserrat-Bold';
  text-align: center;
  transition: border-color 0.3s, background-color 0.3s; /* Smooth transition effect */
  border: 3px solid var(--main-color-lightmedium); /* Hide the border initially */
  display: inline-block; 
}


/* .signout-link {
  text-decoration: none;
  color: #000;
}

.signout-link:hover {
  text-decoration: underline;
} */

.menu-loggedIn {
  list-style-type: none;
  display: flex;
  gap: 20px;
  font-family: 'Montserrat-Regular';
  justify-content: space-between;
}

.menu-loggedIn a:hover {
  color: white;
}  

.menu-loggedIn li {
  font-size: 15px;
  /* float: left; */
}
.menu-loggedIn a {
  text-decoration: none;
  color: black;    
}

.content-loggedIn {
  padding-top: 4px;
  padding-bottom: 4px;
  background-color: #f9f9f9;
  width: 100%;  
  min-width: 80px;
  right: 0;
  height: 30px;
  box-shadow: 2px 4px 4px grey;
  z-index: 1;
}

.dropdown-loggedIn:hover .content-loggedIn {
  color: var(--main-color);
}

.content-loggedIn li:hover a {
  color: #000;
  text-decoration: underline;
}  

.custom-underline {
  width: 450px;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid black; /* Adding a border instead of text-decoration for better control */
  color: var(--main-color);
  /* Adjust the spacing and thickness of the underline */
  padding-bottom: 2px; /* Increase the space between text and underline */
}

.custom-underline img {
  /* display: inline-flex; Ensures the image respects inline layout */
  /* vertical-align: middle; */
  margin-bottom: 5px; 
  margin-right: 5px;
}

.top-margin {
  margin-top: 20px;
  margin-left: 50px;
  text-align: left;
  width: 80%;
}

.top-margin1 {
  margin: 0 auto;
  margin-top: 110px;
  margin-left: 30%;
  margin-right: 100px;
  margin-bottom: 15px;
  width: 40%;
  height: 1.5px;
  background-color: white;
  border-bottom: 3px dashed rgb(192, 192, 192); 
}

.logged-contacts {
  margin-left: 50px;
}

.logged-support {
  margin-top: 10px;
}

.logged-feedback {
  margin-top: 30px;
}


.logged-heading {
  /* color: rgb(104, 104, 104); */
  color: #64869c;
}

.logged-submit {
  margin-left: 140px;
}

.logged-plans {
  /* text-align: left; */
  /* margin-left: 10px; */
  font-size: 20px;
  margin-top: 0;
  font-family: 'Montserrat-SemiBold';
}

.logged-toggle {
  width: 30%;
}

.logged-service {
  width: 40%;
}

.logged-queries {
  font-family: 'Montserrat-Regular';
  color: black;
}

.current-subscriptions {
  font-family: 'Montserrat-Regular';
  margin: 0 auto;
  /* margin-left: 80px; */
  margin-top: 30px;
  padding: 0;
  text-align: center;
  font-size: 14px;
  /* background-color: #efefef7c; */
}

.subscribed-models {
  display: inline-flex;
  width: auto;
  align-items: center;
  padding: 7px;
  margin: 5px;
  /* height: 30px; */
  text-align: center;
  vertical-align: middle;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
}

.logged-first {
  background-color: var(--main-color);
  color: white;
  font-family: 'Montserrat-SemiBold';
  border: 2px solid white;
  /* border-right: none; */
  /* border-top-left-radius: 10px; */
  /* border-bottom-left-radius: 10px; */
  padding-left: 15px;
  border-radius: 10px;
  /* padding-right: 15px; */
  /* border-top-right-radius: none; */
  /* border-bottom-right-radius: none; */
  margin-right: 0;
  text-align: center;
}

.logged-first1 {
  background-color: white;
  color: var(--main-color);
  font-family: 'Montserrat-SemiBold';
  font-size: 0.8rem;
  border: 1px solid var(--main-color);
  padding-left: 15px;
  border-radius: 10px;
  margin-right: 20px;
  margin-left: 20px;
  text-align: left;
  /* height: 50px; */
  /* padding-bottom: 10px; */
  transition: background-color 0.25s ease-in-out;
}

.credits-left {
  margin: 0;
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 15px;
  margin-right: 5px;
  background-color: #00568ffa;
  color: white;
  font-size: 0.8rem;
  /* margin-bottom: 10px; */
  transition: background-color 0.25s ease-in-out;
}

.subscribed-models.logged-first1:hover {
  background-color: white;
  color: #00568ffa;
  border-color: #00568ffa;
}

.subscribed-models.logged-first1:hover .credits-left {
  background-color: #00568ffa;
  border-color: white;
  color: white;
}

.logged-second {
  background-color: grey;
}

.models-margin {
  margin-top: 0;
}

.logged-model-name {
  font-size: 1.3rem;
  color: #64869c;
}

.first-model {
  margin-top: 10px;
}

.logged-model-name-desc {
  font-size: 16px;
}

.logged-model-points {
  font-size: 16px;
}

.logged-model-short {
  font-size: 14px;
  font-style: italic;
}

.logged-model-details {
  margin-right: 75px;
  margin-left: 0;
}

.logged-last-outer {
  margin-bottom: 35px;
}

.extra-links {
  text-decoration: underline;
  color: grey;
  font-size: 14px;
}

.container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* margin-top: 200px; */
  margin: 0 auto;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: calc(100vh - 345px);
}

.extra-container {
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  color: grey;
  /* background-color: var(--main-color-medium); */
}


/* Audio/Video Upload Form */

#myform {
  /* max-width: 800px; Adjust the width as needed */
  margin: 0 auto;
  margin-top: 70px;
  padding: 5px;
  font-family: 'Montserrat-SemiBold';
  color: grey;
}


.form-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-group {
  margin: 0 10px; /* Add horizontal spacing between elements */
}

/* Style the submit button */

input[name="fileUpload"] {
  min-width: 300px;
}

.custom-file-upload {
  display: flex; /* Use inline-flex to vertically align content */
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  cursor: pointer;
  padding: 10px;
  height: 200px;
  width: 800px;
  border: 3px dashed #ccc;
  border-radius: 20px;
  color: #333;
  font-size: 16px;
  text-align: center;
  margin-left: 10px;
  background-color: rgb(242, 242, 242);
}

.custom-file-upload input[type="file"] {
  display: none;
}

.centered-content {
  text-align: center;
  width: 100%;
}

.centered-content img {
  width: 70px; /* Adjust the width of your custom image */
  /* height: 48px; Adjust the height of your custom image */
}

.centered-content p {
  font-weight: lighter;
  color: #aeaeae;
  /* margin-top: 10px; Adjust the spacing between the image and text */
}

select {
  width: 150px;
  height: 45px;
  margin-bottom: 1px;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: #333;
  font-size: 16px;
  text-align: center;
  margin-left: 0px;   
}

.upload-button-container {
  text-align: center;
}

.upload-button {
  margin-top: 0;
  width: 200px;
}

.latest-transcripts {
  /* border: 1px solid var(--main-color); */
  margin: 0 auto;
  margin-top: 15px;
  /* margin-bottom: 50px; */
  width: 800px;
  height: auto;
  justify-content: center;
  text-align: center;
  font-family: 'Montserrat-Regular';
}

/* Example styles, adjust as needed */
.custom-table {
  border-collapse: collapse;
  /* border-spacing: 0; */
  width: 800px;
  color: black;
  margin-left: auto;
  margin-right: auto;  
  /* text-align: center; */
}

/* .custom-table thead {
  border-radius: 5px;
} */

.custom-table th,
.custom-table td {
  /* border: 1px solid #ddd; */
  padding: 6px;
  /* text-align: left; */
}

.custom-table td {
  color: black;
  text-align: center;
  font-size: 12px;
  border-top: 1.99px solid rgb(240, 240, 240);
}

.custom-table thead {
  /* display: flex;
  margin: 0 auto; */
  /* background-color: var(--main-color); */
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  color: var(--main-color);
}

.custom-table td.firstColumn, .custom-table th.firstColumn  {
  text-align: left; /* Left align for the first cell */
  padding-left: 30px;
  margin-right: 10px;
  width: 260px;
  overflow: hidden;
}

.custom-table td.firstColumn {
  font-size: 14px;
  /* font-family: 'Montserrat-SemiBold'; */
}

.custom-table tr:hover {
  background-color: #f9f9f9;
}

.new-file {
  font-family: 'Montserrat-SemiBold';
  font-style: italic;
  color: var(--main-color-light);
}

.head-row {
  border-bottom: 2px solid var(--main-color);
}

.horizontal-bar11 {
  height: 2px;          /* Set the thickness of the bar */
  width: 100%;    /* Set the maximum width of the bar */
  background-color: var(--main-color); /* Set the background color of the bar */
  margin: 0 auto;      /* Center the bar horizontally */
  text-align: center;
  justify-content: center;
  font-family: 'Montserrat-Bold';
  margin-top: 5px;
  margin-bottom: 20px;
}

.restrict-height {
  height: 8px;
  /* margin-bottom: 0; */
}

.view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* text-decoration: none; */
  margin-bottom: 40px;
  font-family: 'Montserrat-Regular';
  color: var(--main-color);
}

.bottom-margin-less {
  margin-bottom: 20px;
}

.contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}


/* Basic styling for the search form */
.search-transcripts {
  display: flex;
  align-items: center;
  margin: 0;
  font-family: 'Montserrat-Regular';
}

/* Style for the search input field */
.search-transcripts input[type="text"] {
  padding: 8px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  border: 1px solid var(--main-color-light);
  /* border-radius: 4px; */
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  /* margin-right: 5px; */
  margin-left: 250px;
  flex: 1;
}

/* Style for the placeholder text */
.search-transcripts input[type="text"]::placeholder {
  color: rgba(0, 0, 0, 0.769); /* Change placeholder text color to black */
  font-size: 12.5px;
  font-style: italic;
  font-family: 'Montserrat-Regular';
}

/* Style for the search button */
.search-transcripts .search-button {
  padding: 4.5px 15px 4.5px 25px;
  
  font-size: 16px;
  background-color: white;
  color: #fff;
  border: 1px solid var(--main-color-light);
  /* border-radius: 4px; */
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;  
  cursor: pointer;
  border-left: none;
}

.search-button {
  margin-right: 250px;
}

/* Hover effect for the search button */
.search-transcripts .search-button:hover {
  background-color: white;
  /* border: 1px solid black; */
  color: var(--main-color);
}

.search-icon {
  width: 25px;
}

.your-search-query {
  text-align: center; 
  font-family: 'Montserrat-Regular';
  font-size: 14px;
 }

 #progressBar {
  display: none;
  /* justify-content: center; */
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 0 auto;
  background-color: rgb(250, 250, 250);
  border: 3px solid rgb(239, 239, 239);
  border-radius: 5px;
  font-family: 'Montserrat-Regular';
  width: 800px;
  height: auto; /* Adjust height for vertical alignment */
  margin-top: 15px;
  /* margin-bottom: 15px; */
  color: black;
  position: relative; /* Add position for children positioning */
  /* padding-left: 20px; */
}

#progressFill {
  text-align: center;
  background-color: var(--main-color-light);
  width: 0;
  height: 10px;
  border-radius: 4px;
  color: white;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  border: 1px solid rgb(255, 255, 255);
  margin-left: 15px;
}

#upload-progress {
  left: 0;
  padding-left: 50px;
  /* padding-right: 30px;   */
  font-size: 14px;
} 

#progress-percent {
  font-family: 'Montserrat-SemiBold';
  /* margin-right: 15px; */
  color: var(--main-color);
}

#files-count {
  /* font-size: 16px; */
  color: var(--main-color);
  font-family: 'Montserrat-SemiBold';
}

.files-received {
  /* text-decoration: underline; */
  font-style: italic;
}

.success-upload {
  margin: 0;
  width: 40px;
  /* margin-left: 5px; */
}

#notify {
  display: none;
}

#selectedFiles {
  color: grey;
  display: none; /* Use inline-flex to vertically align content */
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  /* cursor: pointer; */
  padding: 10px;
  height: 200px;
  width: 800px;
  border: 3px dashed #ccc;
  border-radius: 20px;
  /* color: #333; */
  font-size: 16px;
  text-align: center;
  margin-left: 10px;
  background-color: rgb(242, 242, 242);
}

.uploaded-file-names {
  margin: 0;
  display: flex;
  font-size: 12px;
  align-items: center;
  color: var(--main-color);
}

.files-change {
  margin-left: 7.5px;
  width: 15px;
  cursor: pointer;
}

.preparing-files {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* padding-top: 5px; */
  /* padding-bottom: 5px; */
  margin: 0 auto;
  background-color: white;
  border: 1px solid rgb(239, 239, 239);
  border-radius: 5px;
  font-family: 'Montserrat-SemiBold';
  width: 100%;
  height: 30px; /* Adjust height for vertical alignment */
  margin-top: 1px;
  margin-bottom: 1px;
  color: var(--main-color);
  position: relative; /* Add position for children positioning */  
}

.transcription-progress {
  justify-content: left;
  padding-left: 20px;
}

.transcriptionProgressBar {
  max-width: 300px;
  width: 250px;
  height: 4px;
  background-color: var(--main-color-light) !important;;
}

.width-enhance {
  width: 30px;
}

.star-note {
  font-size: 12px; 
  font-style: italic; 
  text-align: left;
  /* position: relative; */
  /* left: -35%; */
}

#table-body tr:first-child {
  border-top: 2px solid var(--main-color); /* Apply border to the first tr */
}

.file-link {
  text-decoration: none;
  color: var(--main-color-light);
}

#table-body .status-update {
  color: rgb(0, 180, 78);
  font-family: 'Montserrat-SemiBold';
}


.goBackLink {
  color: grey;
  font-style: italic;
  /* margin-left: 50px; */
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  /* text-decoration: none; */
}

.go-back-icon {
  width: 10px;
  margin-left: 0;
  padding-left: 0;
}

#audiowav {
  width: 80%; 
  /* margin-left: 10%;  */
  margin-top: 20px; 
  margin-bottom: 20px;  
}

.audio-player {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
  width: 900px;
  border-radius: 10px;
  background-color: rgb(252, 252, 252);
  border: 2px solid rgb(226, 226, 226);
  /* user-select: none; */

  position: sticky;
  top: 67px;
  z-index: 1;
}

.audio-player-outside {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 900px;
  height: auto; /* Adjust height as needed */
  border-radius: 10px;
  background-color: rgb(252, 252, 252);
  border: 2px solid rgb(226, 226, 226);
  top: 75px; /* Fixed position from top */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust to center horizontally */
  z-index: 12000;
  position: fixed;
  /* padding-top: 10px; */
  /* padding-bottom: 10px; */
}


#audio-progress {
  -webkit-appearance: none;
  width: 300px;
  height: 6px;
  background: rgba(195, 227, 246, 0.616);
  border-radius: 4px;
  cursor: pointer;
}

#audio-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: rgb(45, 74, 96);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid #efefef;
  box-shadow: 0 2px 2px rgba(143, 143, 143, 0.22);
}

.audio-controls-cont {
  display: inline-flex;
  width: 950px;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 15px;
}


#playpause {
  margin-right: 5px;
  cursor: pointer;
  width: 35px;
  /* box-shadow: 0 1px 1px rgba(143, 143, 143, 0.22); */
  /* border-radius: 50%; */
}

/* #playpause:hover {
  border: 1px solid rgba(143, 143, 143, 0.22);
  border-radius: 5px;
} */

.file-container {
  margin: 0 auto; 
  width: 800px; 
  margin-bottom: 30px;
}

.file-heading {
  color: var(--main-color);
  font-family: 'Montserrat-SemiBold';
  width: 400px;
  font-size: 15px;
  margin-top: 10px;
  margin-left: 40px;
  padding-left: 5px;
  /* margin-right: 30px; */
  text-align: left; 
  /* margin-right: auto;   */
  white-space: nowrap; /* Prevents wrapping */
  overflow: hidden; /* Hides the overflowing text */
  text-overflow: ellipsis;
  border-bottom: 0.1px solid grey;
}

.file-details {
  display: flex;
  justify-content: space-between; /* Aligns children at each end */
  align-items: center;
  /* display: inline-flex; */
  /* flex-direction: row; */
  font-family: 'Montserrat-SemiBold';
  font-size: 12px;
  width: 900px;
  color: grey; 
  padding-left: 40px;
  /* padding-top: 5px; */
}

.transcript-container {
  margin-top: 25px; 
}

.transcript-container-outside {
  margin-top: 20px;
}

.horizontal-bar-outside {
  margin-top: 80px;
}

.transcript-timetext {
  font-family: 'Montserrat-Regular';
  background-color: rgba(226, 226, 226, 0.158);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  /* border: 1px solid rgb(226, 226, 226); */
  border-radius: 10px; 
}

.lineItem {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: row;
}

.timingStart {
  display: inline;
  width: 80px;
  font-size: 14px;
  text-align: center;
  left: 0;
  margin-left: 45px;
  margin-right: 45px;
  border-radius: 5px;
  background-color: var(--main-color-lightmedium);
}

.lineText {
  display: inline;
  width: 650px;
  padding: 20px;
  font-size: 12.8px;
}

.export-buttons {
  display: inline-flex;
  flex-direction: row;
  margin-right: 50px;
  font-size: 14px;
  align-items: right;
  justify-content: right;
}

.details-text {
  margin-left: 5px;
  flex: 1;  
 
}

.file-created-at {
  color: grey;
}

.exchange-attributes {
  font-size: 11px; 
  font-family: 'Montserrat-Regular';
  color: #4d4d4d;
} 

.actions-buttons {
  /* display: inline-flex; */
  margin-left: 10px;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 0;
  margin-bottom: 0;

} 

.hover-action-button {
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  border: 1px solid rgba(210, 209, 209, 0.63);
  border-radius: 5px;

}

.hover-action-button:hover {
  border: 1px solid grey;
  /* background-color: #ccc; */
}

.second-last-action {
  user-select: none;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 15px;
}

.last-action {
  margin-right: 0;
  min-width: 100px;
  text-align: center;
  user-select: none;
  /* margin-left: 20px; */
}

.action-play-buttons {
  display: flex;
  flex: row;
  align-items: center;
  justify-content: center;

}

#playBack {
  margin-right: 5px;
  cursor: pointer;
}

#playBack:hover {
  border-radius: 50%;
  border: 1px solid white;
  /* box-shadow: 0 4px 4px rgba(49, 49, 49, 0.22); */
}

#playForw {
  cursor: pointer;
  margin-right: 10px;
}

#playForw:hover {
  border-radius: 50%;
  border: 1px solid white;
  /* box-shadow: 0 4px 4px rgba(49, 49, 49, 0.22); */
}

#volumeCtrl {
  cursor: pointer;
  width: 25px;
  margin-right: 5;
}

#volumeCtrl:hover {
  border-radius: 50%;
  border: 1px solid white;  
}

.current-duration {
  margin: 0;
  margin-right: 10px;
  background-color: #ebf7ffd9;
  font-family: 'Montserrat-Regular';
}

.total-duration {
  margin-left: 10px;
}

#volume-level {
  -webkit-appearance: none;
  width: 60px;
  height: 6px;
  background: var(--main-color-lightmedium);
  border-radius: 4px;
  cursor: pointer;
  margin-right: 25px;
}

#volume-level::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: rgb(45, 74, 96);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid #efefef;
}

.share-btn-container {
  display: none;
}

.audio-top-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  width: 900px;
  align-items: center;
  vertical-align: middle;
}

.timeStampsYesNo {
  padding-top: 5px;
  display: flex;
  align-items: center;
  margin-right: 50px;
  font-family: 'Montserrat-SemiBold';
  font-size: 12px;
  color: grey;
}

/* CSS */
/* CSS */
#timeStampsYesNo {
  /* Hide the default checkbox */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--main-color); /* Border color */
  border-radius: 3px; /* Rounded corners */
  outline: none; /* Remove default focus outline */
  cursor: pointer; /* Show pointer cursor on hover */
  user-select: none;
}

/* Styling the checkbox when it's checked */
#timeStampsYesNo:checked {
  /* Use var(--main-color) for the checked background color */
  background-color: var(--main-color);
}

/* CSS */
#timeStampsYesNo:checked::before {
  content: '\2714'; /* Center-aligned checkmark unicode character */
  /* Additional styles for centering */
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  color: white; /* Color of the checkmark */
}

.viewTrans-menu {
  color: grey;
  gap: 5px;
  align-items: center;
  /* justify-content: right; */
}


.main-section:hover {
  background-color: var(--main-color);
}

.viewTrans-menu a:hover {
  color: grey;
}  

.viewTrans-menu li {
  font-size: 14px;
  /* float: left; */
}
.viewTrans-menu a {
  text-decoration: none;
  color: grey;    
}

.hoverActions {
  text-decoration: none;
  /* border: 1px solid var(--main-color); */
  border-radius: 5px;
  padding: 5px 10px; /* Adjust padding as needed for spacing */
}  

.dropdown {
  position: relative;
}


.dropdown-content-viewTran {
  list-style-type: none;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 110px;
  margin-left: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content-viewTran1 {
  list-style-type: none;
  font-family: 'Montserrat-Regular';
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  justify-content: center;
  text-align: left;
  align-items: center;
  width: 110px;
  margin-left: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}



.dropdown:hover .viewTransDrop {
  display: block;
  color: grey;
}

.dropdown-content-viewTran li:hover a {
  color: #000;
  text-decoration: none;
}

.dropdown-content-viewTran1 li {
  margin-left: 15px;
  font-size: 12px;
  padding: 2px;
}

.dropdown-content-viewTran1 li:hover a {
  color: #000;
  text-decoration: none;
}

.third-last-action {
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 0;
}

.viewTrans-dropdown {
  margin-right: 0;
}

#copied-link {
  font-size: 10px;
}

.credits-remaining {
  display: flex;
  flex-direction: row;
  align-items: end;
  vertical-align: bottom;
}

.credits-container {
  position: absolute;
  /* left: 60%; */
  margin-left: 540px;
  font-size: 14px;
}

.credits-icon {
  /* width: 15px; */
  /* height: 15px; */
  vertical-align: bottom;
  cursor: pointer;
  margin-right: 0;
  /* border: 1px solid rgba(0, 0, 0, 0.2); */
}

.model-specific {
  /* margin-left: 5px; */
  margin-right: 5px;
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-family: 'Montserrat-Regular';
}

.credits-inputs {
  /* padding: 3px; */
  display: inline-block; /* Ensure they're in a row */
  width: auto;
  min-width: 80px;
  height: 25px; /* Set a fixed height for consistency */
  margin: 2px; /* Add margin for spacing between them */
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px; /* Optional: Add rounded corners */
  text-align: center; /* Center content horizontally */
  line-height: 25px; /* Vertically center content */
  /* font-family: 'Montserrat-SemiBold'; */
  user-select: none;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
}

#standard-credits {
  font-size: 22px;
  /* background-color: var(--main-color); */
  color: #00568f5c;
  padding: 0;
  vertical-align: top;
}

#advance-credits {
  color: #00568fbb;
}

#premium-credits {
  color: #00568f;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted black; If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  top: 100%;
  left: 50%;
  margin-left: -60px;  
  background-color: rgb(75, 75, 75);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  font-size: 10px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Tooltip container */
.tooltip1 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  /* border-bottom: 1px dotted black; If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip1 .tooltiptext1 {
  visibility: hidden;
  width: 80px;
  bottom: 100%;
  left: 50%;
  margin-left: -40px;  
  background-color: rgb(75, 75, 75);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  font-size: 10px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip1:hover .tooltiptext1 {
  visibility: visible;
}

.pagination {
  margin-top: 20px;
  /* margin-bottom: 30px; */
  text-align: center;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 0px 10px;
  margin: 0 3px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  background-color: #f9f9f9;
}

.pagination a:hover {
  background-color: #e9e9e9;
}

.pagination .current-page {
  font-weight: bold;
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.highlight-search {
  background-color: rgba(255, 200, 49, 0.265);
}

.main-details {
  margin: 0 auto;
  width: 850px;
  border: 5px dotted rgb(219, 219, 219);
  background-color: #efefef7c;
  border-radius: 20px;
  margin-top: 15px;
  padding-bottom: 20px;
}

.main-underline {
  width: 500px;
  margin-top: 20px;
  height: 1.5px;
  background-color: white;
  border-bottom: 3px dashed rgb(192, 192, 192); 
}

.help-text1 {
  display: none; 
  color: red; 
  font-size: 12px; 
  padding: 0;
  /* padding-left: 400px;  */
  margin: 0;
}

.three-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  /* margin-bottom: 10px; */
  /* font-family: 'Montserrat-Regular'; */
}

.three-grid-container > div {
  min-width: 275px;
  width: 29%;
  height: auto; /* Set a height for visibility */
  /* border: 1px solid #ccc; */
  padding: 25px;
  margin: 10px;
  border-radius: 10px;
}

.faq-outer-container {
  background-color: #f0f0f0a9;
  background-image: 
  repeating-linear-gradient(45deg, #ffffff, #ffffff 10px, #f0f0f013 125px, #f0f0f013 100px);
  border-radius: 8px; /* Rounded corners for a softer look */
  padding: 20px; /* Padding for content spacing */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.question-heading {
  margin-top: 0; /* Remove default margin for the heading */
  font-size: 18px; /* Larger font size for the question */
  font-family: 'Montserrat-Bold';
  font-size: 14px;
  color: var(--main-color-medium);

}

.answer-below {
  margin-bottom: 0; /* Remove default margin for the paragraph */
  line-height: 1.5; /* Improved line spacing for better readability */
  font-family: 'Montserrat-Regular';
  font-size: 12px;
}

.contact-invite {
  text-align: center;
  font-size: 14px;
}

.privacy-policy-container {
  display: block;
  justify-content: center;
  margin: 0 auto;
  margin-left: 50px;
  margin-right: 50px;
  /* margin-top: 10px; */
  margin-bottom: 35px;
}

.privacy-policy-container h3 {
  color: var(--main-color);
  font-family: 'Montserrat-SemiBold';
  margin-top: 20px;
}

.privacy-policy-container h4 {
  /* color: var(--main-color); */
  font-family: 'Montserrat-SemiBold';
  margin-top: 5px;
}

.privacy-policy-container p {
  font-family: 'Montserrat-Regular';
  font-size: 14px;
}

#payment_options {
  left: 40%; 
  align-items: center;
  margin-top: 80px;
  margin-left: 400px;
  width: 100%;
  font-family: 'Montserrat-SemiBold';
  padding: 20px;
  /* border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(98, 98, 98, 0.651);
  border-left: 1px solid rgba(98, 98, 98, 0.651); */
  border-radius: 10px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

/* #paypal-container-XV2E3YJAKGWK2 {
  left: 40%; 
  align-items: center;
  margin-top: 100px;
  margin-left: 400px;
  width: 80%;
  font-family: 'Montserrat-SemiBold';
  padding: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 3px solid rgba(98, 98, 98, 0.651);
  border-left: 3px solid rgba(98, 98, 98, 0.651);
  border-radius: 10px;
  box-shadow: 4px 8px 16px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
} */

#buttons-container {
  width: 50%;
}

.checkout-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50%;
}

#paypal-form-fields-container-XV2E3YJAKGWK2 .desc-label {
  /* font-size: 25px; */
  font-family: 'Montserrat-SemiBold';
}

#total {
  color: var(--main-color);
  font-size: 22px;
}

.custom-order-details {
  margin-bottom: 10px;
  text-align: left;
}

.radio-group {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: left;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding-left: 0.8rem;
}

.radio-group label {
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
}

.radio-group label:hover {
  background-color: var(--main-color);
  color: #fff;
}

.radio-group input[type="radio"] {
  margin-right: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid gray;
  outline: none;
  transition: 0.2s all;
  cursor: pointer;
}

.radio-group input[type="radio"]:checked {
  background-color: var(--main-color); /* Custom blue color */
  border-color: var(--main-color); /* Custom blue color */
}

.payform-title {
  font-size: 1.25rem;
  color: var(--main-color);
  /* text-decoration: underline; */
  border-bottom: 0.5px solid black;
}

.plan-type-tag, .plan-type-tag-saver {
  padding: 1px;
  border: 1px solid rgb(188, 160, 0);
  color: rgb(188, 160, 0);
  border-radius: 5px;
  font-size: 0.66rem;
  /* margin-bottom: 15px; */
  margin-left: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: 'Montserrat-Regular';
  background-color: rgba(255, 217, 0, 0.119);
}

.plan-type-tag-saver {
  border: 1px solid rgb(25, 187, 25);
  color: rgb(25, 187, 25);
  background-color: rgba(25, 187, 25, 0.114);
}

#basic-plan-liner, #advance-plan-liner, #credits-liner-advance, #credits-liner-basic {
  font-weight: bolder;
  /* color: var(--main-color); */
}

.logged-service p {
  margin: 15px;
}

.plan-details {
  display: flex;
  flex-direction: column;
  justify-content: left;
  /* grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1fr; */
  margin-top: 4px;
  margin-left: 30px;
  margin-right: 30px;
  /* margin-bottom: 15px; */
}