        /* Styles to prevent horizontal overflow */
        html, body {
          margin: 0;
          padding: 0;
          overflow-x: hidden; /* Hide horizontal scrollbar */
      }

.color-section {
    display: flex;
    width: 100%;
    height: 36px; /* Section height */
    font-family: Arial, sans-serif;
    color: white;
    position: relative;
    background-color: #FF8431; /* Orange background for the whole section */
}

@media (max-width: 796px) {
  .color-section {
    display: none;
}

}

.left-side {
    width: 23%;
    background-color: #1DA3DC; /* Light blue */
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%); /* Diagonal cut */
}

.social-icons {
    display: flex;
    gap: 10px; /* Space between icons */
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.center {
    position: absolute; /* Absolute positioning */
    top: 50%; /* Vertical centering */
    left: 50%; /* Horizontal centering */
    transform: translate(-50%, -50%); /* Fine-tuning for centering */
    background-color: transparent; /* Transparent background */
    color: white; /* Text color */
    font-size: 13px; /* Text size */
    white-space: nowrap; /* Prevents text from wrapping */
}

.right-side {
    width: 70%;
    background-color: #FF8431; /* Orange */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    font-size: 13px; /* Text size */
}

.right-side a {
    color: white;
    text-decoration: none;
    margin-left: 20px; /* Space between links */
}


@media (min-width: 1200px) {
    .float-xl-start-new {
      float: left !important;
    }
    .float-xl-end-new {
      float: right !important;
    }
    .float-xl-none-new {
      float: none !important;
    }
    .object-fit-xl-contain-new {
      -o-object-fit: contain !important;
      object-fit: contain !important;
    }
    .object-fit-xl-cover-new {
      -o-object-fit: cover !important;
      object-fit: cover !important;
    }
    .object-fit-xl-fill-new {
      -o-object-fit: fill !important;
      object-fit: fill !important;
    }
    .object-fit-xl-scale-new {
      -o-object-fit: scale-down !important;
      object-fit: scale-down !important;
    }
    .object-fit-xl-none-new {
      -o-object-fit: none !important;
      object-fit: none !important;
    }
    .d-xl-inline-new {
      display: inline !important;
    }
    .d-xl-inline-block-new {
      display: inline-block !important;
    }
  }


  @media (min-width: 1200px) {
    .d-xl-none-new {
      display: none !important;
    }
  }



.bg-gradient-hero{
  background: rgb(13,79,109);
background: -moz-linear-gradient(180deg, rgba(13,79,109,1) 0%, rgba(30,120,161,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(13,79,109,1) 0%, rgba(30,120,161,1) 100%);
background: linear-gradient(180deg, rgba(13,79,109,1) 0%, rgba(30,120,161,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d4f6d",endColorstr="#1e78a1",GradientType=1);
overflow: hidden;  /* This will hide any overflowing content */
}



.image-x-hero-pc{
    position: absolute;
    top:-150px;
    right: -50px;
    height: 1300px;
    z-index: -0;
}

.banner-content-hero{
  position: relative;
  left: -100px;
}

/* Media Query for smaller screens (max-width: 1200px) */
@media (max-width: 1600px) {
  .image-x-hero-pc {
      right: -150px;  /* Adjust the right value */
      top: -100px;
      height: 1150px; /* Adjust the height */
  }


  .banner-content-hero{
    position: relative;
    left: -20px;
  }

}


/* Media Query for smaller screens (max-width: 1200px) */
@media (max-width: 1390px) {
  .image-x-hero-pc {
      right: -200px;  /* Adjust the right value */
      top: -100px;
      height: 1150px; /* Adjust the height */
  }


  .banner-content-hero{
    position: relative;
    left: 0px;
  }
}


/* Media Query for smaller screens (max-width: 1200px) */
@media (max-width: 1300px) {

  .banner-content-hero{
    position: relative;
    left: 50px;
  }
}

/* Media Query for smaller screens (max-width: 1200px) */
@media (max-width: 1200px) {
  .image-x-hero-pc {
      right: -250px;  /* Adjust the right value */
      top: -100px;
      height: 1100px; /* Adjust the height */
  }
}




/* Media Query for smaller screens (max-width: 1200px) */
@media (max-width: 1100px) {
  .image-x-hero-pc {
    display: none !important;

  }

  .banner-content-hero{
    max-width: 76% !important;
    text-align: center;
  }



}


.image-shape-1{
    position: absolute;
    top: -0px;
    height: 100%;
    left: 0px;
    pointer-events: none;
}

.text-white{
    color: white !important;
}




.swiper-button-next,
.swiper-button-prev {
    color: #ffffff; /* Icon color */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #FF8431; /* Solid white background on hover */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px; /* Icon size */
}






/* For mobile devices */
.view-mobile {
  display: none; /* Hidden by default */
}

@media (max-width: 768px) {
  .view-mobile {
      display: block; /* Show on devices with max-width of 768px (adjust as needed) */
  }
}

/* For desktop computers */
.view-pc {
  display: block; /* Shown by default */
}

@media (max-width: 768px) {
  .view-pc {
      display: none !important; /* Hide on devices with max-width of 768px (adjust as needed) */
  }
}


.header-area{
  z-index: 2;
}



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


.swiper-hero{
  top: -100px;
  height: 95vh !important;
}

.banner-content-hero{
  top: 50px;
}

/* Media query for mobile */
@media (max-width: 767px) {
  .swiper-hero {
    top: 0; /* Reset top value on mobile */
    height: auto !important;

  }

  .banner-content-hero {
    top: 0; /* Reset top value on mobile */
  }
}


.swiper-pagination {
  position: absolute;
  bottom: 10% !important; /* Adjust this value as needed */
  transform: translate(-0%, 0%); /* Adjust centering */
  z-index: 10; /* Ensure it's above the content */
}


.swiper-pagination-bullet {
  width: 12px; /* Size of non-selected dots */
  height: 12px; /* Size of non-selected dots */
  background-color: transparent; /* Transparent background */
  border: 2px solid white; /* White border */
  opacity: 1; /* Full opacity */
  margin: 0 5px; /* Space between dots */
  transition: all 0.3s ease; /* Smooth transition */
}

.swiper-pagination-bullet-active {
  width: 16px; /* Size of the selected dot */
  height: 16px; /* Size of the selected dot */
  position: relative;
  top: 2px;
  background-color: white; /* White background */
  border: 2px solid white; /* White border (optional) */
  opacity: 1; /* Full opacity */
}

/* General styles for large screens (1500px and up) */
.title-hero {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 2.7em; /* Base size for large screens */
  text-align: justify; /* Avoid justifying text */
  line-height: 1.1 !important;
  max-width: 600px;
}

/* Media Query for screens with max-width of 1500px */
@media (max-width: 1500px) {
  .title-hero {
      font-size: 2.5em; /* Reduce font size */
  }
}

/* Media Query for screens with max-width of 1400px */
@media (max-width: 1400px) {
  .title-hero {
      font-size: 2.3em; /* Reduce font size */
    max-width: 500px;
  }
}

/* Media Query for screens with max-width of 1300px */
@media (max-width: 1300px) {
  .title-hero {
      font-size: 2.1em; /* Reduce font size */
  }
}

/* Media Query for screens with max-width of 1200px */
@media (max-width: 1100px) {

  .title-hero {
      font-size: 2.0em; /* Further reduce font size */
      max-width: auto !important;
      text-align: center;
      max-width: auto !important;
      width: 100%;
      min-width: 100% !important;
  }

  .banner-content-hero{
    left: 12% !important;
  }

}

/* Media Query for screens with max-width of 992px */
@media (max-width: 992px) {
  .title-hero {
      font-size: 1.8em; /* Adjustment for smaller screens */
  }
}

/* Media Query for screens with max-width of 768px */
@media (max-width: 768px) {
  .title-hero {
      font-size: 2em; /* Adjustment for smaller screens */
      text-align: center;
  }


}


/* Media Query for screens with max-width of 768px */
@media (max-width: 430px) {
  .banner-content-hero{
    left: 13% !important;
  }
}





.banner__content{
  z-index: 1;
}



.image-x-hero-mobile {
  display: none;
  max-height: 400px;
  max-width: 400px;
}


/* Media Query for screens with max-width of 768px */
@media (max-width: 1100px) {
  .image-x-hero-mobile {
    width: 100%;
    display: inline-block;
  }
}

h2 span{
  color: #1DA3DC;
}

.titple-section p{
  font-weight: lighter;

  font-family: "REM", sans-serif;
  color: rgb(163, 163, 163);

}



/* New class for .div-steps-home */
.div-steps-home {
  position: relative; /* To position text over the image */
  border: 2px solid #FF8431; /* Orange border */
  padding: 14px;
  margin: 20px 0;
  padding-bottom: -100px !important;
  border-radius: 10px;
  background-color: #F8FAFD;
  max-height: 436px;
}

/* Image at the top */
.div-steps-home .image-container {
  width: 100%;
  height: auto;
}

/* Image at the top */
.div-steps-home .image-container img{
  width: 100%;
}

/* <h3> text at the top left of the image */
.div-steps-home .image-container h3 {
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 1.3em;
  color: black;
  font-weight: 600;
  padding: 10px;
}

/* Style for the div below the image with title, description, and button */
.div-steps-home .content {
  margin-top: 20px;
}

.div-steps-home .content h4 {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
}


.div-steps-home .content button {
  font-size: 1em;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 600;
}

.div-steps-home .content p {
  font-size: 1em;
  margin-top: 10px;
  font-weight: 100;
}





.swiper-container-sponsor {
  width: 100%;
  height: 200px; /* Adjust slider height as needed */
}

.swiper-slide-sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Styles for navigation buttons */
.swiper-button-next-sponsor,
.swiper-button-prev-sponsor {
    color: #FF8431; /* Icon color (orange) */
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Rounded border */
    border: 2px solid #FF8431; /* Orange border */
    background-color: transparent; /* Transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transitions */
}

.swiper-button-next-sponsor:hover,
.swiper-button-prev-sponsor:hover {
    background-color: #FF8431; /* Orange background on hover */
    border-color: #FF8431; /* Orange border on hover */
    color: #ffffff; /* Change icon color to white on hover */
}

.swiper-button-next-sponsor::after,
.swiper-button-prev-sponsor::after {
    font-size: 20px; /* Icon size */
}


/* Styles for navigation dots */

.swiper-pagination-sponsor {
  position: absolute;
  bottom: 0% !important; /* Adjust this value as needed */
}

/* Style for non-active dots */
.swiper-container-sponsor .swiper-pagination-bullet {
  width: 12px; /* Size of non-selected dots */
  height: 12px; /* Size of non-selected dots */
  background-color: transparent; /* Transparent background */
  border: 2px solid #FF8431; /* Orange border */
  opacity: 1; /* Full opacity */
  margin: 0 5px; /* Space between dots */
  transition: all 0.3s ease; /* Smooth transition */
}

/* Style for the active dot */
.swiper-container-sponsor .swiper-pagination-bullet-active {
  width: 16px; /* Size of the selected dot */
  height: 16px; /* Size of the selected dot */
  position: relative;
  top: 2px;
  background-color: #FF8431; /* Orange background */
  border: 2px solid #FF8431; /* Orange border */
  opacity: 1; /* Full opacity */
}




/* Style for images inside slides */
.swiper-slide-sponsor {
  height: 130px; /* Default height */
  border: 2px solid #19A1DD; /* Light blue border */
  border-radius: 5px;
  background-color: white;
  transition: transform 0.3s ease; /* For a smooth transition on centering */
}


.swiper-slide-sponsor img {
  height: 90%; /* Maintains image proportion */
  padding: 10px; /* Padding inside the image */
}



.color-logo-celeste{
  color: #19A1DD; /* Light blue */
}


.color-logo-orange{
  color: #FF8431; /* Orange */
}

.custom-list li {
  display: flex;
  align-items: flex-start; /* Align SVG to the top */

  margin-bottom: 15px;
  color: black;
  font-weight:bolder;
  font-family: "REM", sans-serif;
  line-height: 1.5;
}


/* Center the button within its container on all devices */
.div-btn-why-choose {
  text-align: left; /* This centers inline content like a link */
}


/* Media Query for smaller screens (mobile) */
@media (max-width: 768px) {
  .div-btn-why-choose {
    justify-content: center; /* Ensure content is centered on mobile */
    text-align: center;
  }
}



.iframe-testimonials {
  width: 100%; /* Full width */
  position: relative;
  top: -100px;
  border: none; /* No border */
  overflow: hidden; /* Remove scroll */
}



.grid-item-work {
  position: relative;
  height: 340px;
  background: linear-gradient(to bottom, white, #1DA3DC);
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  cursor: pointer; /* Makes the cursor a hand on hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.grid-item-work:hover {
  transform: scale(1.01); /* Scale effect on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.grid-item-work img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.grid-item-work .bottom-section-work {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FF8431;
  padding: 15px;
  border-bottom: 10px solid #1DA3DC;
  z-index: 2;
}

.grid-item-work .bottom-section-work h3 {
  margin: 0;
  color: white;
  font-size: 1.3rem;
  text-align: center;
}



.discover-style {
  cursor: pointer; /* Makes the cursor a hand on hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}


.discover-style:hover {
  transform: scale(1.01); /* Scale effect on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}


.bg-gradient-gray{
  position: relative;
  overflow: hidden;

  border-radius: 10px;
  background: rgb(89,89,89);
background: -moz-linear-gradient(48deg, rgba(89,89,89,1) 0%, rgba(89,89,89,1) 0%, rgba(186,186,186,1) 100%);
background: -webkit-linear-gradient(48deg, rgba(89,89,89,1) 0%, rgba(89,89,89,1) 0%, rgba(186,186,186,1) 100%);
background: linear-gradient(48deg, rgba(89,89,89,1) 0%, rgba(89,89,89,1) 0%, rgba(186,186,186,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#595959",endColorstr="#bababa",GradientType=1);
height: 340px;
}

.img-logo-style {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.img-people-style{
  max-height: 340px;
  width: auto !important;
  position: absolute;
  bottom: 0px;
}

.w-100{
  width: 100% !important;
}

.bg-footer{

  background-color: #EBEBEB;

}


@media (max-width: 767px) {
  .mobile-reverse-order {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 1rem;
  }
}


@media (max-width: 767px) {
  .pb-mobile-testimonial {
    margin-bottom: 50px;
  }
}


@media (max-width: 450px) {


  .mobile-tecnology-hero{
    font-size: 14px;
  }
}



.mean-container {
  border: none !important;
}

.mean-nav ul li{
  background-color: white;
  color: black !important;
  border: none !important;

}


.mean-nav ul li a{
  color: black !important;
}

.info li a{
  color: black !important;

}

.padding_navbar{
  padding-right: 80px;
  padding-left: 80px;
}


@media (max-width: 1350px) {
  .padding_navbar{
    padding-right: 30px;
    padding-left: 30px;
  }
}




@media (max-width: 1230px) {
  .padding_navbar{
    padding-right: 10px;
    padding-left: 10px;
  }
}



/* Specific style for mobile */
@media (max-width: 767.98px) {
  .mx-auto-mobile {
    margin-left: auto;
    margin-right: auto;
  }
}


.bars{
  border: none !important;
}



.loading-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.loading-video.active {
  opacity: 1;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #1DA3DC;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.header-area{
  border-bottom: 1px solid #19A1DD;
}



.p_normal{
  font-family: "REM", sans-serif;
  font-weight: lighter !important;
  color: #585858 !important;
}



.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #000;
  border-radius: 10px;
}
#player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 80px;
  height: 80px;
  background-color: #FF6B00;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.youtube-play-button:hover {
  background-color: #FF8B33;
  transform: translate(-50%, -50%) scale(1.1);
}
.youtube-play-button i {
  color: white;
  font-size: 30px;
  margin-left: 5px;
}





.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
}


/* Ensure buttons take full width on mobile */
@media (max-width: 768px) {
  .cta-buttons {
    display: block;  /* Change layout from flex to block to stack buttons */
    gap: 0;  /* Remove space between buttons */
    margin-top: 2rem;
  }

  .cta-buttons .btn {
    width: 100%;  /* Make buttons take 100% width */
    padding: 1rem 0;  /* Adjust padding to look good */
    font-size: 1rem;
    border-radius: 50px;
    text-align: center;  /* Ensure text is centered */
    margin-bottom: 15px;
  }
}


.step-section {
  margin: 4rem 0;
}
.step-section h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #333;
}
.step-section p {
  font-size: 1.1rem;
  color: #555;
}


.btn-outline-primary{
  border:  1px solid #FF8431;
  color: #FF8431;
}


.btn-outline-primary:hover{
  background-color: #FF8431;
  border: none;
}


.col-steps-started p {
  font-size: 1rem !important;  /* Reduce paragraph size */
  color: #555 !important;
  font-family: "REM", sans-serif !important;
}


/* Adjustments for mobile devices */
@media (max-width: 768px) {
  .col-steps-started h4 {
    font-size: 1.3rem;  /* Reduce title size */
  }

  .col-steps-started p {
    font-size: 1rem !important;  /* Reduce paragraph size */
    line-height: 1.5;  /* Improve readability */
  }

  /* Adjust icons to not be too large on mobile */
  .step-icon svg {
    width: 2em;
    height: 2em;
  }

  /* Ensure columns take full width on mobile */
  .col-steps-started {
    margin-bottom: 2rem;  /* Add space between columns */
  }
}








.main-container {
  min-height: 1000px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  background: white;
}

.filters-section {
  background-color: #ffffff;
  height: 100% !important;
  padding: 30px;
  color: rgb(0, 0, 0);
  transition: transform 0.3s;
}

/* Scrollbar styles */
.filters-section::-webkit-scrollbar {
  width: 10px;
}

.filters-section::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.filters-section::-webkit-scrollbar-thumb {
  background: #64b5f6;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.filters-section::-webkit-scrollbar-thumb:hover {
  background: #42a5f5;
}

.products-section {
  padding: 30px;
  height: 100%;
  overflow-y: auto;
}


.products-section .col {
  padding-right: 24px !important;
  padding-bottom: 24px !important;
}


@media (max-width: 456px) {
  .products-section {
    padding: 0px;
    padding-right: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow-x: hidden;
  }


.products-section .col {
  padding-right: 0px !important;
  padding-bottom: 0px !important;
}
}


.mobile-filter-btn {
  display: none;
}

.product-card {
  border: 1px solid transparent; /* Define the border initially */
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.product-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 154, 39, 0.1);
  border-color: #FF8431;
}


.price {
  /* font-size: 2em !important; */
  color: #2c3e50;
  font-weight: 700;
}




@media (max-width: 768px) {
  .filters-section {
    position: fixed;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    z-index: 1000;
    padding: 20px;
    border-radius: 0;
    border: none;
  }

  .filters-active .filters-section {
    transform: translateX(0);
  }

  /* Add background overlay */
  .filters-section::before {
    content: '';
    right: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .filters-active .filters-section::before {
    opacity: 1;
    pointer-events: all;
    overflow-y: visible !important;

  }
}



@media (max-width: 768px) {
  .filters-section {
    height: auto;
    overflow-y: auto !important;
  }
}




.product-card {
  position: relative;
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .product-card {
    margin-bottom: 20px;
  }
}


.product-card img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.image-container {
  width: 100%;
  height: 220px !important; /* You can adjust the height as you wish */
  max-height: 220px !important;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
}

/* Optional: if you want the image to adapt without leaving the container */
.image-container img {
  width: 100%;
  width: auto;
  height: auto;
}

.heart-btn {
  position: absolute;
  top: 10px;
  background: rgb(245, 245, 245);
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  right: 10px;
  padding-top: 2px;
}

.heart-btn:hover {
  background-color: #ffcba8;
}


.heart-btn svg {
  width: 24px;
  height: 24px;
  fill: grey;
}
.heart-btn.active svg {
  fill: red;
  color: red;
}


.compare-btn {
  position: absolute;
  top: 10px; /* Adjust as needed */
  background: rgb(245, 245, 245);
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  right: 60px;
  transition: background 0.3s ease;
}

.compare-btn svg {
  width: 24px;
  height: 24px;
  fill: grey;
}

.compare-btn.active svg {
  fill: blue; /* Change color when active */
}


.compare-btn:hover {
  background-color: #ffcba8;
}



.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
}




.btn-frame-list{
  width: 50%;
}

.price {
  position: relative;
  margin-right: 10px;
  font-size: 1.7em;
  top: 4px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: bold;
}

.border-images-details-product {
  display: flex;
  justify-content: center;
  border-radius: 10px; /* Curved borders on the container */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden; /* So the curved borders look good */
  border: 2px solid #e0e0e0; /* General border of the container */
  height: 64px !important;
  margin-top: 20px !important;
  position: relative;
  top: 15.5px;
  width: 109%;
  left: -16.6px;
  margin-top: 1px !important;
}


@media (max-width: 1698px) {
  .border-images-details-product {
    width: 109.1%;
    left: -16.2px;
  }
}

@media (max-width: 1450px) {
  .border-images-details-product {
    width: 111%;
    left: -16.2px;
  }
}


.thumbnail-img-product {
  width: 33.3% !important; /* Image size */
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Apply right border only to the first two images */
.thumbnail-img-product:nth-child(1),
.thumbnail-img-product:nth-child(2) {
  border-right: 2px solid #ddd; /* Right border */
}

/* The last element will have no border */
.thumbnail-img-product:nth-child(3) {
  border-right: none; /* Remove right border from the last element */
}


.thumbnail-img-product:hover {
  transform: scale(1.05); /* Zoom effect on hover */
}


.btn-b-primary{
  border: 1px solid #19A1DD;
  border-radius: 52px !important;
  color: #19A1DD;
}



.btn-b-primary:hover{
  background-color: #19A1DD;
  color: white;
}


.btn-secondary{
  background-color: #FF8431;
  color: white;
  border: none;
  border-radius: 52px !important;
}



.btn-secondary:hover{
  background-color: #c76422;
  color: white;
}


.container-xxxxl {
  width: 100%;
  max-width: 1600px; /* Adjust the value as you need */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;  /* To ensure some margin */
  padding-right: 15px; /* To ensure some margin */
}



.btn-apply-filters{
  font-size: 1em;
  padding-top: 10px;
  padding-bottom: 10px;
}


.a-link{
  color: #FF8431;
}


.a-link:hover{
  color: #FF8431;
  text-decoration: underline;
}

.page-link{
  color: #FF8431;
}





        /* Centered Try On button */
        .try-on-button {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: #FF8431;
          color: white;
          padding: 12px 30px;
          border-radius: 25px;
          display: flex;
          align-items: center;
          gap: 8px;
          z-index: 10;
          transition: all 0.3s ease;
          border: none;
          white-space: nowrap;
      }

      .try-on-button:hover {
          transform: translateX(-50%) scale(1.05);
          box-shadow: 0 4px 15px rgba(255, 132, 49, 0.3);
      }

      .try-on-button img {
          width: 20px;
          height: 20px;
      }

      /* Color update */
      .active-thumbnail {
          border: 2px solid #FF8431;
      }

      .overflow-x-auto{
          overflow-x: auto !important;
          overflow-y: hidden !important;
      }

      .select-option.selected {
          border-color: #FF8431;
          background-color: rgba(255, 132, 49, 0.1);
          color: #FF8431;
      }

      .btn-primary {
          background-color: #FF8431;
          border-color: #FF8431;
      }

      .btn-primary:hover {
          background-color: #ff6d1f;
          border-color: #ff6d1f;
      }

      .btn-outline-secondary {
          border-color: #19A1DD;
          color: #19A1DD;
      }

      .btn-outline-secondary:hover {
          background-color: #19A1DD;
          color: white;
      }


      .nav-link{
        color: gray;

      }

      .nav-link.active {
          color: #FF8431 !important;
          border-color: #FF8431 !important;
      }

      .lenss-color-active {
          border-bottom: 2px solid #FF8431;
      }

        .image-container-details {
            width: 100%; /* Can still be 100% to fill up to max-width */
            max-width: 1200px; /* Max width of the container */
            height: 500px;
            overflow: hidden;
            position: relative;
            flex: 1;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            justify-content: center; /* Center horizontally */
            align-items: center;    /* Center vertically */
        }


      .main-imagre-frame-details {
          position: relative;
          min-width: 100%;
          min-height: 500px;
          object-fit: contain;
          transition: transform 0.3s;
      }

      @media (max-width: 768px) {
          .image-container-details {
              height: 400px;
          }

          .thumbnails-column {
              width: 100%;
              flex-direction: row;
              overflow-y: hidden !important;
              overflow-x: auto;
              padding-bottom: 10px;
          }

          .thumbnail {
              /* flex-shrink: 0; */
          }
      }


      .thumbnails-column {
          width: 80px;
          flex-shrink: 0;
      }



      .thumbnail-wrapper {
          width: 150px !important;
          height: 80px !important;
          min-width: 150px !important;
          min-height: 80px !important;
          overflow: hidden; /* Very important to clip the image if it exceeds dimensions */
          display: flex;         /* To center the image if it doesn't fill completely */
          justify-content: center; /* Center horizontally */
          align-items: center;    /* Center vertically */
          cursor: pointer; /* To make it look clickable, as the image has onclick */
      }

      .thumbnail {
          min-width: 100%;
          min-height: 100%;
          object-fit: cover;
          cursor: pointer;
          transition: transform 0.3s;
      }
      .thumbnail-wrapper:hover {
          /* transform: scale(1.05); */
          border: 1px solid #FF8431;
      }

      .heart-btn-detail {
          font-size: 1.5rem;
          color: #6c757d;
          transition: color 0.3s;
      }
      .heart-btn-detail.active {
          color: #dc3545;
      }
      .tab-content {
          padding: 20px;
          border: 1px solid #dee2e6;
          border-top: none;
      }

      .lens-container {
          overflow: hidden;
          width: 100px;
          height: 60px;
          position: relative;
      }

      .centered-img {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          max-width: 100%;
          max-height: 100%;
          height: auto;
          width: auto;
      }

      .lens-container:hover .centered-img {
          transform: translate(-50%, -50%) scale(1.1);
          transition: transform 0.3s ease;
      }

      .lens-container:hover{
          border-bottom: 2px solid #FF8431;
          cursor: pointer;
      }

      .select-group {
          display: flex;
          flex-direction: column;
          gap: 8px;
          margin-top: 12px;
      }

      .select-option {
          padding: 12px;
          border: 2px solid #ddd;
          border-radius: 8px;
          cursor: pointer;
          transition: all 0.3s ease;
          font-size: 1em !important;
      }

      .select-option:hover {
          background-color: rgba(255, 132, 49, 0.05);
      }

      .text-primary-spect{
          color: #19A1DD;

      }



    .bg-secondary{
      background-color: #19A1DD !important;
    }







  .btn-start-get{
    width: 450px;
  }



@media (max-width: 768px) {
  .btn-start-get{
    width: auto;
}

}


.sign-up-container{
  border: 1px solid rgb(197, 197, 197);
  border-radius: 10px;
}






select {
  border: none !important;        /* Remove any border */
  outline: none !important;       /* Remove outline (focus border) */
  box-shadow: none !important;    /* Remove any box shadow */
}


.header__main{
  padding-top: 10px;
  padding-bottom: 10px;

}


@media (max-width: 1500px) {

  .nav-about{
    display: none;
  }

}




@media (max-width: 1200px) {

  .nav-about{
    display: inline-block;
  }

}




.hover-nav {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border-bottom: 2px solid transparent; /* Invisible border by default */
  transition: border-bottom 0.3s ease-in-out; /* Smooth transition */
}



a.active{
  border-bottom: 2px solid #19A1DD;
  color: #FF8431;
}


.hover-nav:hover {
  border-bottom: 2px solid #19A1DD;
}


.hover-nav:focus,
.hover-nav:active {
  border-bottom: 2px solid #19A1DD; /* Blue border remains active */
  color: #FF8431; /* Change text color to orange */
  outline: none; /* Optional: remove default outline */
}



@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.top-banner-message > div {
  top: -14px;
  left: -100px;
}

.top-banner-message > div {
    display: none;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.top-banner-message > div.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}







.logo-get-started{
  height: 170px;
  margin-bottom: 20px;
}



@media (max-width: 756px) {


  .logo-get-started{
    height: auto;
    width: 80%;
    margin-bottom: 20px;
  }



}




.mr-2{
  margin-right: 1.2em;
}




.color-select {
  width: 200px;
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
}

.color-select select {
  display: none;
}

.selected-color {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  font-size: 0.9em;
  width: 200px;
}

.selected-color span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.color-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.color-option {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.color-option span {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  margin-right: 10px;
}

.color-option.red span {
  background-color: red;
}

.color-option.black span {
  background-color: black;
}

.color-option.blue span {
  background-color: blue;
}

.color-option.grey span {
  background-color: grey;
}

.color-option.silver span {
  background-color: silver;
}

.color-option.tortoise span {
  background-color: #8B4513; /* Tortoise color (brownish) */
}

.color-option.brown span {
  background-color: brown;
}

.color-option.transparent span {
  background-color: transparent;
  border: 1px solid #ccc;
}

.color-option:hover {
  background-color: #f0f0f0;
}



.form-container.type {
  width: 200px;
}

.form-container.age {
  width: 150px;
}

.form-container.gender {
  width: 150px;
}


.form-container.material {
  width: 150px;
}


.form-container.style {
  width: 150px;
}

.form-container.prize-range {
  width: 240px;
}


@media (max-width: 756px) {
  .form-container.type,
  .form-container.age,
  .form-container.gender,
  .form-container.material,
  .form-container.style,
  .form-container.prize-range {
    width: 100% !important;
    margin-top: 10px;
  }
}



@media (max-width: 756px) {
  .title-mobile-color {
    position: relative;
    width: 100%;
    margin-top: 60px;
  }

  .price-range-mobile-title{
    position: relative;
    width: 100% !important;
    top: 0px;
    margin-top: 60px;
  }

  .w-100-mobile{
    width: 100% !important;
  }

  .color-select{
    width: 100% !important;
  }
}



.suggestion-box {
  position: relative;
  overflow-y: auto;
  margin-top: 5px;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

.suggestion-box li {
  padding: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between; /* To show the counter next to the brand */
}

.suggestion-box li:hover {
  color: #FF8431;
  border-bottom: 1px solid #19A1DD;
}

.suggestion-box li .counter {
  color: gray;
  font-size: 0.8em;
}


.btn-lineal{
  background: white !important;
  border: 1px solid #FF8431;
  color: orange;
}

.btn-one-center:hover{
  background: #0f0d1d !important;
}

@media only screen and (max-width: 768px) {
  .filters-container {
    margin-top: 30px;
    width: 102% !important;
    max-height: 99vh;
    overflow-x: hidden;
    overflow-y: auto !important;
  }
}


.bg-gray-products{
  background-color: rgb(241, 241, 241);
}


@media only screen and (max-width: 456px) {
    .bg-gray-products{
      background-color: rgb(255, 255, 255);
    }

    .product-card {
      border: 1px solid rgb(219, 219, 219);
    }


  .main-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
  }
}







@media only screen and (min-width: 1000px) {
  .main-menu{
    font-size: 0.9em;
  }

}



@media only screen and (min-width: 1500px) {
  .main-menu{
    font-size: 1em;
  }

}



@media only screen and (min-width: 1669px) {
  .main-menu{
    font-size: 1.2em;
  }
}




@media only screen and (min-width: 1969px) {
  .main-menu{
    font-size: 1.5em;
  }
}




@media only screen and (max-width: 1550px) {
  .logo{
    width: 200px;
    padding-top: 10px;
  }
}



@media only screen and (max-width: 1300px) {
  .logo{
    width: 190px;
    padding-top: 10px;
  }
}


.section-header h2{
  font-size: 3em;

}




/* Basic styles for the container */
#texto-desplazable {
  position: relative;
  width: 170%;
  text-align: center;
  font-size: 0.5em;
  overflow: hidden;
  white-space: nowrap;
  color: #333;
  font-size: 1em;
  color: white;
}

.left-side{
  min-width: 400px;
}

@media only screen and (max-width: 1200px) {
  #texto-desplazable {
    left: 8%;
    width: 70%;
  }


.left-side{
  min-width: 200px;
}
}





.filter-container {
  display: flex;
  gap: 1rem;
  padding: 20px;
  flex-wrap: wrap;
  border-radius: 8px;
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Center items vertically */
}

.filter-container-two{
  display: flex;
  text-align: left;
  gap: 1rem;
  padding: 20px;
  flex-wrap: wrap;
  border-radius: 8px;
}

.dropdown-toggle {
    background: white !important;
    border: 1px solid #dee2e6 !important;
    color: #495057 !important;
    min-width: 150px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.dropdown-menu {
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.color-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.form-check-label {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    width: 100%;
    position: relative;
    top: -8px;
}

.selected-count {
    background: #1DA3DC;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.8em;
    margin-left: 8px;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.form-check-input:checked {
    background-color: #FF8431;
    border-color: #FF8431;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Style for small screens */
@media (max-width: 768px) {
    .filter-container {
        display: block;
        position: relative;
    }

    .filter-container-two{
      display: block;
      position: relative;
    }


    .dropdown {
        width: 100%;
        margin-bottom: 10px;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        position: relative; /* Ensure the counter is positioned correctly */
    }

    .selected-count {
        top: 10px;
        right: 10px;
        transform: translateY(0); /* Adjust position on mobile devices */
    }
}



/* Styles for the price input container */
.price-input-container {
  width: 100%;
}

.price-input .price-field {
  display: flex;
  margin-bottom: 22px;
}

.price-field span {
  margin-right: 10px;
  margin-top: 6px;
  font-size: 17px;
}

.price-field input {
  flex: 1;
  height: 35px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  border-radius: 9px;
  text-align: center;
  border: 0px;
  background: #e4e4e4;
}

.price-input {
  width: 100%;
  font-size: 19px;
  color: #555;
}

/* Remove Arrows/Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.slider-container {
  width: 100%;
}

.slider-container {
  height: 6px;
  position: relative;
  background: #e4e4e4;
  border-radius: 5px;
}

.slider-container .price-slider {
  height: 100%;
  left: 25%;
  right: 15%;
  position: absolute;
  border-radius: 5px;
  background: #FF8431;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  top: -5px;
  pointer-events: none;
  cursor: pointer;
  -webkit-appearance: none;
}

/* Styles for the range thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 70%;
  background: #555;
  pointer-events: auto;
  -webkit-appearance: none;
}

.controls-wrapper-main {
    width: 100%;
    /* This wrapper is used for mobile layout primarily */
}


.sort-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute; right:39px; top:10px; width:200px;
  margin-right: -10px;
}

.sort-container-grid{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right:239px;
  top:10px;
  width:100px;
}


.favorite_container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left:264px;
  top:10px;
  width:220px;
  font-size: 0.9em;
}

.compare_container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left:474px;
  top:10px;
  width:240px;
  font-size: 0.9em;
}

.sort-box {
  border-radius: 8px;
  z-index: 1;
}

.sort-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: white;

}

.sort-select:focus {
  outline: none;
  box-shadow: none;
}


.padding-frame-list{
  padding-top: 40px;
}

.padding-frame-list-dos{
  padding-top: 40px;
}


@media screen and (max-width: 768px) {
  /* Main wrapper for all top controls */
  .controls-wrapper-main {
    display: flex;
    flex-direction: column; /* Stack the two rows */
    gap: 1rem;
    width: 100%;
    order: -1; /* Place this whole block before the product grid */
  }

  /* First row: Filter button, Order By, View */
  .controls-row-1 {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  /* Second row: Favorites, Compare */
  .controls-row-2 {
    display: flex;
    gap: 1rem;
  }

  /* Filter button styling for mobile */
  .mobile-filter-btn {
    display: flex !important; /* Make it visible */
    align-items: center;
    justify-content: center;
    position: static !important; /* Remove fixed positioning */
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0; /* Prevent it from shrinking */
    box-shadow: none; /* Remove floating shadow */
  }

  /* Select dropdowns styling */
  .sort-container,
  .sort-container-grid {
    position: relative !important;
    width: 100% !important; /* Let flexbox decide width */
    flex-grow: 1; /* Allow them to fill available space */
    height: 50px !important;
    margin: 0;
    top: auto !important; left: auto !important; right: auto !important;
  }

  .sort-select {
    background: rgb(248, 248, 248);
  }

  /* Favorite buttons styling */
  .favorite_container,
  .compare_container {
    position: static !important;
    width: calc(50% - 0.5rem) !important;
    height: auto !important;
    margin: 0;
    top: auto !important; left: auto !important; right: auto !important;
  }

  .favorite_container button,
  .compare_container button {
    width: 100%;
  }

  /* Other layout adjustments */
  .padding-frame-list-dos {
    padding-top: 20px;
  }

  .viewing-new {
      margin-top: 1rem;
      text-align: center;
      width: 100% !important;
  }
}

/* Modify h4 content inside .div-steps-home */
.div-steps-home .content {
  position: relative !important;
  padding: 0px !important;
  top: -34px;
}

.div-steps-home .content p{
  position: relative;
  top: -10px;
}


.div-steps-home .content a{
  position: relative;
  top: -14px;
}

.text-left{
  text-align: left !important;
}



    .img-wrapper-jones {
      width: 300px;  /* Define the fixed width you want for the container */
      height: 300px; /* Define the fixed height you want for the container */
      overflow: hidden; /* Very important: hides parts of the image that go outside the container */
      position: relative; /* Not strictly necessary for object-fit, but good practice for containers */
      /* Optional: to center the .img-wrapper inside its .jones-td-image cell if the cell is wider */
      margin-left: auto;
      margin-right: auto;
    }

    .img-wrapper-jones img{
      min-height: 300px;
      min-width: 300px;
    }

    .jones-image {
      display: block; /* Removes any extra space below the image if it's inline */
      width: 100%;    /* Makes the image try to fill the entire width of the .img-wrapper */
      height: 100%;   /* Makes the image try to fill the entire height of the .img-wrapper */
      object-fit: cover;
      object-position: center center; /* Centers the image within the container after applying 'object-fit: cover'.
                                        The first 'center' is for the X-axis, the second for the Y-axis. */
    }


    .jones-td-image{
      min-width: 350px;
      padding-top: 10px !important;
      padding-bottom: 10px !important;
      text-align: center; /* Horizontally centers the .img-wrapper if it's display: inline-block or if you use margin auto for display: block */
      vertical-align: middle;
    }



    /* Table style */
    .jones-table {
      width: 100%;
    }

    .jones-td-image{
      padding-top: 10px !important;
      padding-bottom: 10px !important;
    }

    .jones-td-text{
      padding: 20px !important;
      padding-top: 40px !important;
    }

    /* Image and container */
    .img-cell {
      overflow: hidden;
      text-align: center;
    }

    .img-wrapper {
      width: 240px;
      height: 360px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .jones-image {
      min-width: 100%;
      height: auto;
    }

    /* Logo */
    .jones-logo {
      max-width: 170px;
      height: auto;
      margin-bottom: 1rem;
    }

    /* Text */
    .jones-content h1 {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .jones-content p {
      margin-bottom: 1rem;
    }

    /* Responsive: stack on mobile */
    @media (max-width: 767.98px) {
      .jones-table,
      .jones-table tr,
      .jones-table td {
        display: block;
        width: 100%;
      }

      .img-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
      }

      .jones-image {
        width: 100%;
        height: auto;
      }


        .jones-td-image{
          min-width: 100%;
        }

        .viewing-new{

          text-align: center;
        }
    }


.color-orange{
    color: #FF8431 !important;
}






@media (max-width: 768px) {
  .btn-one.btn-lineal {
    font-size: 13px; /* Texto más pequeño en móviles */
    padding: 0 10px; /* Menor padding en móviles */
    padding-bottom: 0px !important;
    padding-top: 2.5px !important;
    height: 30px !important; /* Botón más pequeño */
  }

  .btn-one.btn-lineal svg {
    width: 16px; /* Ícono más pequeño */
    height: 16px;
  }

  .nice-select{
    border: 1px solid rgba(128, 128, 128, 0.151);
  }
}
.div-steps-home .content a.link-to-loc-details {
  top:0px;
}
.loc-cont-col {
  height: 100%;
  display: flex;
  flex-direction: column;
}
