:root {
  --blue-color: rgb(10, 16, 79);
  --pink-color: rgb(190, 0, 128);
  --primary-gray-color: rgb(192, 195, 202);
  --secondary-gray-color: rgb(154, 159, 170);
  --tertiary-gray-color: rgb(50, 63, 87);
  --navy-blue-gray-color: rgb(0, 15, 45);
  --gradient: linear-gradient(45deg, var(--pink-color) 0%, var(--blue-color) 100%);
  --official-gradient: linear-gradient(
    to right,
    rgb(50, 63, 87) 80%,
    rgb(102, 111, 130) 60%,
    rgb(154, 159, 170) 40%,
    rgb(192, 195, 202) 15%
  );
  --primary-gradient: linear-gradient(
    243deg,
    rgba(25, 25, 139, 0.7175245098039216) 0%,
    rgba(179, 26, 173, 0.6587009803921569) 100%
  );
  --gradient-alernative-color: linear-gradient(45deg, #f06, #4a90e2);
}

/* 
  These are classes to help migrate to tailwind
  since there are a lot of bootstrap in the project
*/
/*----------------------------
		START GLOBAL CLASSES
----------------------------*/
.text-blue {
  color: var(--blue-color);
}

.text-pink {
  color: var(--pink-color);
}

.hover\:text-blue:hover {
  color: var(--blue-color);
}

.hover\:bg-gray:hover {
  background-color: var(--primary-gray-color);
}

.border-blue {
  border-color: var(--blue-color);
}

.fw-bold {
  font-weight: bold;
}

.hover\:bg-blue:hover {
  background-color: var(--blue-color);
}

.hover\:text-white:hover {
  color: #fff;
}

.bg-blue {
  background: var(--blue-color);
}

.bg-pink {
  background: var(--pink-color);
}

.bg-gray-secondary {
  background: var(--secondary-gray-color);
}

.bg-blue-100 {
  background-color: #cad8dd;
}

/*----------------------------
		END GLOBAL CLASSES
----------------------------*/

body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy-blue-gray-color);
  overflow-x: hidden;
  overflow-anchor: none;
}

p,
ul,
table,
ol,
div {
  font-size: 0.9rem;
}

a {
  color: rgb(107, 151, 208);
}

a,
a:hover {
  text-decoration: none;
}

.tab-links {
  color: rgb(107, 151, 208);
  text-decoration: underline !important;
}

h1,
h2 {
  background-image: linear-gradient(45deg, var(--pink-color) 0%, var(--blue-color) 100%);
  color: transparent !important;
  background-clip: text;
  -webkit-background-clip: text;
  padding-bottom: 2px;
}

h3,
h4,
h5,
h6 {
  color: var(--blue-color);
}

.btn-gradient-color {
  background-image: linear-gradient(45deg, rgb(190, 0, 128) 15%, rgb(10, 16, 79) 85%);
}

@media (max-width: 768px) {
  h4 {
    font-size: 1rem;
  }

  h5 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  h6 {
    font-size: 0.8rem;
  }

  .mobile-responsive img {
    width: 50px !important;
    margin-right: 8px !important;
  }

  .mobile-responsive .bi {
    font-size: 1rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .mobile-responsive .px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .mobile-responsive .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mobile-responsive ul {
    margin-bottom: 0 !important;
  }

  .mobile-responsive li {
    font-size: 0.85rem;
  }
}

.containerCab {
  text-align: left;
  padding-top: 40px;
}

/*----------------------------
		NAV MENU 
----------------------------*/
.logo {
  width: 170px;
  height: auto;
  margin-left: 30px;
}

/* Styles for the expanded menu container */
.container-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 15px;
  right: 15px;
  background-color: rgba(192, 195, 203, 0.749);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}

.container-view {
  height: 70%;
}

/* Styles for the menu options */
.menu-options {
  position: relative;
  top: auto;
  right: auto;
  padding: 1px 50px 10px 50px;
  display: flex;
  flex-direction: column;
}

.nav-icon {
  cursor: pointer;
  display: flex;
  font-size: 40px;
  justify-content: space-between;
  margin: 10px;
  color: var(--blue-color);
}

@media (max-width: 768px) {
  .nav-icon {
    font-size: 30px;
    margin: 10px;
  }
}

/*----------------------------
		END NAV
----------------------------*/

/*----------------------------
		HOME
----------------------------*/

.custom-home-h3 {
  font-size: 40px;
}

.custom-home-p {
  font-size: 20px;
  padding: 10px 100px 10px 100px;
  color: var(--tertiary-gray-color);
}

@media (max-width: 1050px) {
  .custom-home-h3 {
    font-size: 25px;
  }

  .custom-home-p {
    font-size: 20px;
    padding: 10px 100px 10px 100px;
    color: var(--tertiary-gray-color);
  }
}

@media (max-width: 768px) {
  .custom-home-h3 {
    font-size: 14px;
    padding: 2px 2px;
  }

  .custom-home-p {
    font-size: 12px;
    padding: 4px 4px;
  }
}

.home-header {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 93vh;
  min-height: 400px;
  width: 100%;
  margin-bottom: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}

@keyframes gradient-animation {
  0% {
    width: 100%;
    right: 0;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
    right: 0;
  }
}

.header-gradient {
  position: relative;
  background-color: #ffffff;
  background-image: linear-gradient(45deg, rgb(190, 0, 128), rgb(10, 16, 79));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 3px;
}

.header-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  animation: gradient-animation 0.5s forwards;
}

.hero-static-image-container {
  position: relative;
  width: 100%;
  height: 93vh;
  min-height: 400px;
  overflow: hidden;
}

.hero-static-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-static-image-container .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.64) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.63) 80%,
    rgba(245, 245, 245, 1) 100%
  );
  pointer-events: none;
}

.hero-static-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
}

.background-image-container {
  display: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255) 100%
  );
  pointer-events: none;
}

.hero-video-overlay-profile {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, #fcfcfd 30%);
  pointer-events: none;
}

.overlay-content {
  width: 100%;
  position: absolute;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
@media (max-width: 1025px) {
  .home-header {
    width: 100%;
    height: 80vh;
    min-height: 300px;
  }

  .hero-static-image-container {
    height: 80vh;
    min-height: 300px;
  }

  .hero-static-image {
    width: 100%;
    height: 100%;
  }

  .logo {
    margin-left: 8px;
  }

  .menuNav {
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0;
  }

  .hero-static-image-container {
    display: none;
  }

  .background-image-container {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .background-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-header {
    width: 100%;
    min-height: 100svh;
    height: 100svh;
  }

  .background-image-container img {
    height: 100% !important;
    padding-bottom: 0 !important;
  }

  .home-features {
    justify-content: center;
    text-align: center;
  }

  .logo {
    width: 100px;
    height: auto;
    margin-left: 10px;
  }

  .menuNav {
    margin-right: 0 !important;
  }

  .hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.7) 40%,
      rgba(255, 255, 255, 0.65) 70%,
      rgb(245, 245, 245, 1) 100%
    );
    pointer-events: none;
  }
}

.custom-slogan {
  color: var(--pink-color);
  font-weight: bold;
  font-size: 3rem;
  padding-top: 200px;
}

@media (max-width: 1025px) {
  .slogan-container {
    top: 250%;
    right: 15%;
    width: 20%;
  }

  .custom-slogan {
    font-size: 2.5rem;
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  .slogan-container {
    top: 250%;
    right: 20%;
    width: 20%;
  }

  .custom-slogan {
    font-size: 20px !important;
    padding-top: 70px;
  }
}

.search-header {
  background-image: url('../../../static/images/KeyVisuals/hero.png');
  background-size: cover;
}

.common-header {
  height: 30vh;
  background-image: url('../../../static/images/KeyVisuals/hero.png');
  background-size: cover;
  background-position: center center;
}

.aida_banner {
  background-image: url('../../../static/images/Header Banner.jpg');
  background-size: cover;
  background-position: center;
  padding-bottom: 200px;
}

@media (max-width: 768px) {
  .common-header,
  .aida_banner {
    display: block;
    width: 100%;
    height: 130px;
  }
}

.firstHiddenTitle {
  display: none;
}

.video-container {
  position: absolute;
  z-index: -200;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
}

.box-home-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.box-home {
  margin: 2px;
  border-radius: 5px;
  padding: 50px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .box-home-div {
    padding-top: 0px;
  }

  .box-home {
    margin: 2px;
    border-radius: 5px;
    padding: 20px;
    justify-content: center;
  }
}

.benefits-background {
  background: linear-gradient(125deg, rgba(34, 34, 195, 0.16) 0%, rgba(215, 45, 253, 0.097) 100%);
  border-radius: 50px;
}

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

.fade-in-active {
  opacity: 1;
}

/*----------------------------
		END HOME
----------------------------*/

/*----------------------------
		FOOTER
----------------------------*/

.container-footer {
  padding: 40px;
  border-top: 1px solid var(--primary-gray-color);
  background: rgb(245, 242, 242) !important;
}

@media (max-width: 768px) {
  .container-footer {
    padding: 5px !important;
  }
}

.footer-columns-container {
  display: flex;
}

.footerColumn {
  flex: 1;
}

footer {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--navy-blue-gray-color);
  position: relative;
  z-index: 1;
}

footer a {
  color: white;
  opacity: 0.75;
}

footer a:hover {
  color: var(--pink-color);
  opacity: 1;
}

.footerLinksContainer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footerLinksColumn {
  flex: 1;
}

.footerLinksColumn ul {
  list-style-type: none;
  padding: 0;
}

.footerLinksColumn ul li {
  margin-top: 10px;
  margin-bottom: 5px;
}

.logoSocialMediaContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 40%;
  text-align: center;
}

.logoSocialMedia {
  width: 1.5rem;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 1340px;
  /* max-width: 100%; */
}

@media (min-width: 1600px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 100%;
    padding: 0 !important;
  }

  .containerCab {
    max-width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .containerCab h3 {
    font-size: 2.25rem;
    line-height: 1.15;
    padding: 20px 0px 0 50px;
  }

  footer,
  .navCab {
    font-size: 1.1rem;
  }
}

/* Responsive */

.responsive-map {
  position: relative;
  width: 100%;

  overflow: hidden;
  border-radius: 12px;
  /* opcional */
}

.responsive-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  border: 0;
}

.example-responsive {
  display: inline-flex;
  align-items: center;
  margin: 0.25rem 0.65rem;
  padding-right: 0.5rem;
  font-size: 0.9rem;
  color: rgb(61, 72, 95);
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .example-responsive {
    display: block;
    margin: 0.4rem 0;
  }
}

@media (max-width: 1025px) {
  .responsive-inline-flex {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
  }
}

@media (max-width: 1025px) {
  .responsive-inline-flex {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
  }
}

@media (max-width: 1025px) {
  .container-footer {
    max-width: 100%;
    padding: 5px;
  }

  .footerLinksContainer {
    justify-content: center;
    text-align: center;
  }

  .footerLinksContainer ul {
    font-size: 0.7rem;
  }

  .footerColumn a {
    font-size: 0.7rem;
  }

  .footer-columns-container {
    display: block;
  }

  .logoSocialMedia {
    width: 1.1rem;
  }

  .infoFooter {
    font-size: 0.7rem;
  }
}

/*----------------------------
		END FOOTER
----------------------------*/

/*----------------------------
		SEARCH
----------------------------*/
.search-input input,
.search-input textarea {
  background: rgb(245, 242, 242);
  border: 2px solid var(--primary-gray-color) !important;
  border-radius: 30px 0 0 30px;
  display: block;
  float: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  height: 62px;
  margin: 0;
  padding: 0 20px;
  width: 94%;
  resize: none;
}

.responsive-search-tabs {
  position: sticky;
  top: 70px;
  z-index: 999;
  background: #f5f5f5;
  padding-top: '0.5rem';
  padding-bottom: '0.5rem';
}

@media (max-width: 1025px) {
  .search-input input,
  .search-input textarea {
    font-size: 1rem;
    height: 51px;
    width: 95%;
  }
}

@media (max-width: 768px) {
  .search-input input,
  .search-input textarea {
    font-size: 0.8rem;
    height: 31px;
    width: 95%;
  }

  .responsive-search-tabs {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 1.5rem !important;
  }
}

#tags .etiquetas {
  width: 97.8%;
  margin-bottom: 2px;
  height: 4.1rem;
  max-height: 4.1rem;
  overflow-y: auto;
}

#tags .etpeq {
  height: 0%;
}

#tags .etiquetas > span {
  cursor: pointer;
  display: flex;
  float: left;
  color: var(--tertiary-gray-color);
  background: #fff;
  padding: 3px 10px;
  padding-right: 8px;
  margin: 4px;
  font-size: 0.8rem;
  border-radius: 50px;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

#tags .etiquetas > span:hover {
  opacity: 0.7;
}

#tags .etiquetas > span:after {
  background: var(--tertiary-gray-color);
  content: 'x';
  border: 1px solid;
  padding: 0 4px;
  margin-left: 3px;
  font-size: 8px;
  border-radius: 50px;
  color: white;
  margin-top: -1px;
  font-weight: bold;
}

#tags .etiquetas > input {
  font-weight: 500;
}

.geneModalLink,
.showLoginBtn {
  color: rgb(74, 119, 178);
}

.geneModalLink:hover,
.showLoginBtn:hover {
  color: #0758b3;
  cursor: pointer;
}

/*----------------------------
		SEARCH DROPDOWN
----------------------------*/

body.search-dropdown-open .home-header,
body.search-dropdown-open .home-hero-overlay,
body.search-dropdown-open .home-hero-content {
  overflow: visible;
}

body.search-dropdown-open .home-header {
  position: relative;
  z-index: 100;
}

.search-dropdown-root {
  position: relative;
}

.react-dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  display: flex;
  justify-content: center;
  margin-top: 2px;
  box-sizing: border-box;
  z-index: 30;
}

.search-examples {
  background-color: rgb(229 232 237);
  max-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
}

.react-dropdown-container {
  display: flex;
  flex-direction: column;
  width: 70vw;
  min-width: 70vw;
  max-width: 70vw;
  max-height: min(70vh, 600px);
  flex-shrink: 0;
  border: 1px solid var(--primary-gray-color);
  border-radius: 10px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
}

.saved-filter-card {
  border: 2px solid var(--primary-gray-color);
  border-radius: 1rem;
  font-size: 16px;
  padding: 15px;
}

.react-dropdown-list {
  margin: 10px;
  padding: 0;
  list-style-type: none;
  max-height: 200px;
  overflow-y: auto;
}

.react-dropdown__suggestion {
  cursor: pointer;
  border-bottom: 1px solid var(--primary-gray-color);
  padding: 12px 0.3rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.react-dropdown__suggestion-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
  text-align: left;
}

.react-dropdown__suggestion-row {
  display: block;
}

.react-dropdown__suggestion-label {
  font-weight: 600;
  color: inherit;
  margin-right: 0.25em;
}

.react-dropdown__section-container {
  border-right: 1px solid rgb(212 215 223);
  border-left: 1px solid rgb(212 215 223);
}

.react-dropdown__section-container ul {
  height: 80%;
  padding: 0.3rem;
}

.react-dropdown__section-container--first ul {
  border-left: none;
}

.react-dropdown__section-title {
  padding: 10px 1rem;
  font-size: 14px;
  color: var(--pink-color);
  background-color: rgb(229 232 237);
  font-weight: 400;
  text-align: center;
}

.react-dropdown__section-container:first-child .react-dropdown__section-title {
  border-top-left-radius: 10px;
}

.react-dropdown__section-container:last-child .react-dropdown__section-title {
  border-top-right-radius: 10px;
}

.react-dropdown__section-container input[type='checkbox'] {
  order: -1;
  cursor: pointer;
  height: auto;
  width: auto;
  opacity: 0.7;
  margin-right: 8px;
  accent-color: var(--pink-color);
}

.section-dropdown {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.react-dropdown-container .section-dropdown {
  overflow-y: auto;
}

/* Button */
.react-dropdown-container div.botonCab {
  flex-shrink: 0;
}

div.botonCab {
  display: flex;
  justify-content: center;
  text-align: center !important;
  width: 100%;
}

.react-dropdown-container .search-examples {
  flex-shrink: 0;
}

button.BtnGraph {
  color: white !important;
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  border-radius: 30px;
  max-width: 300px;
  margin: 5px;
  font-size: 16px;
  display: inline;
  float: none;
}

.custom-btn-search {
  background-image: linear-gradient(45deg, rgb(190, 0, 128) 15%, rgb(10, 16, 79) 85%) !important;
}

.first-button-class {
  height: 62px;
  cursor: pointer;
}

@media (max-width: 1025px) {
  .first-button-class {
    height: 52px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .first-button-class {
    height: 32px;
  }

  .search-results-container {
    padding-left: 2% !important;
    padding-right: 2% !important;
  }

  .react-dropdown-container {
    font-size: 14px;
    padding: 10px 10px;
    padding-top: 10px;
  }

  .react-dropdown-list {
    margin: 5px;
    max-height: 150px;
    display: flex;
    flex-direction: column;
  }

  .react-dropdown__suggestion {
    padding: 5px;
  }

  .react-dropdown__section-title {
    font-size: 12px;
  }

  .react-dropdown__section-container input[type='checkbox'] {
    width: 16px;
    height: 16px;
  }

  .section-dropdown {
    display: block;
  }

  button.BtnGraph {
    font-size: 12px;
    width: 40%;
    max-width: none;
    height: 30px;
    font-size: 12px;
    width: 40%;
    max-width: none;
    height: 30px;
  }
}

button.ChangeViews {
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
}

/* scroll */

.etiquetas,
.react-dropdown-list {
  /*Estilos estándar experimentales (Principalmente Firefox)*/
  scrollbar-color: var(--pink-color) rgba(205, 15, 205, 0);
  scrollbar-width: thin;
}

::-webkit-scrollbar,
.react-dropdown-list::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical,
.react-dropdown-list::-webkit-scrollbar:vertical {
  width: 8px;
}

::-webkit-scrollbar-button:increment,
.etiquetas::-webkit-scrollbar-button,
.react-dropdown-list::-webkit-scrollbar-button:increment,
.react-dropdown-list::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar:horizontal,
.react-dropdown-list::-webkit-scrollbar:horizontal {
  height: 10px;
}

::-webkit-scrollbar-thumb,
.react-dropdown-list::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
  border-radius: 5px;
}

::-webkit-scrollbar-track,
.react-dropdown-list::-webkit-scrollbar-track {
  border-radius: 5px;
}

/*----------------------------
		END SEARCH DROPDOWN
----------------------------*/

/*----------------------------
		SIDEBAR
----------------------------*/

.sidebar-link {
  display: block;
  padding: 0.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: #333;
}

.sidebar-link:hover {
  color: rgb(190, 0, 128);
}

.sidebar-link.active {
  color: rgb(190, 0, 128);
  font-weight: 600;
}

/*----------------------------
		END SIDEBAR
----------------------------*/

/*----------------------------
SEARCH PAGE
----------------------------*/

.search-results-container {
  padding-left: 8%;
  padding-right: 8%;
  height: 100%;
}

.info-container {
  padding-left: 130px;
}

.section-info {
  margin-right: auto;
  max-width: 500px;
  max-height: 700px;
  overflow: auto;
}

.titCab {
  height: 0%;
  max-height: 90px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
  border-radius: 7px;
}

.titTabla {
  max-height: 50px;
  color: var(--blue-color);
}

.titEtiqueta {
  background: rgb(245, 245, 245);
  height: 0;
  line-height: 28px;
  text-align: Center;
  font-size: 1.3rem;
}

.titEtiqueta span {
  background: rgb(245, 245, 245);
  padding: 2px;
}

.btn-info {
  color: #fff;
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  font-size: 0.9rem;
  padding: 0 1rem 0 1rem;
  height: 1.5rem;
  margin-top: 6px;
}

.btn-info:focus {
  box-shadow: none;
}

.react-tabs {
  position: relative;
}

.react-tabs__tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 0 0.3rem 0;
  padding: 0;
}

.react-tabs__tab {
  color: rgb(10, 16, 79);
  background-color: transparent;
  border: 2px solid rgb(10, 16, 79);
  padding: 0.2rem 1rem;
  border-radius: 4px;
  margin: 0 0.5rem 0.5rem 0;
  font-size: 0.9rem;
  transition: all 0.5s;
}

.react-tabs__tab:hover {
  color: white;
  background-color: var(--blue-color) !important;
  border: 2px solid var(--blue-color);
  cursor: pointer;
  transform: scale(1.05);
}

.react-tabs__tab--selected,
.react-tabs__tab--selected:hover {
  background: var(--blue-color) !important;
  border: 2px solid var(--blue-color);
  color: #fff;
  transform: scale(1);
}

.menuTabs {
  display: flex;
  list-style-type: none;
  text-align: center;
  width: 100%;
  margin: auto;
}

.modal-dialog {
  max-width: 80%;
  margin: 1.75rem auto;
}

.dialogReg {
  max-width: 500px;
  margin: 1.75rem auto;
}

.dropdown-item {
  font-size: 0.95rem;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--primary-gray-color);
  text-decoration: none;
  background-color: var(--tertiary-gray-color);
  border: none;
}

.dropdown-item-profile {
  display: block;
  width: 100%;
  padding: 0.7rem 1.5rem;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
  border: 0;
  color: var(--secondary-gray-color);
  border-radius: 0.5rem;
}

.dropdown-item-profile:hover,
.dropdown-item-profile:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item-profile.active,
.dropdown-item-profile:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--pink-color);
}

.dropdown-item-profile.disabled,
.dropdown-item-profile:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.subitem {
  font-size: 0.9rem;
  opacity: 0.9;
}

:focus {
  outline: -webkit-focus-ring-color auto 0px;
}

span.gene {
  color: var(--pink-color);
  font-weight: 600;
}

.evidence-legend .gene {
  background-color: var(--pink-color);
  font-weight: 600;
  border-radius: 50%;
}

span.variant {
  color: rgba(92, 47, 196, 0.768);
  font-weight: 600;
}

.evidence-legend .variant {
  background-color: rgba(92, 47, 196, 0.768);
  color: white;
  border-radius: 50%;
}

span.disease {
  color: var(--blue-color);
  font-weight: 600;
}

.evidence-legend .disease {
  background-color: var(--blue-color);
  border-radius: 50%;
}

span.negation_marker {
  color: var(--secondary-gray-color);
  font-weight: 600;
}

.evidence-legend .negation_marker {
  background-color: var(--secondary-gray-color);
  color: white;
  border-radius: 50%;
}

span.chemical {
  color: rgb(101, 174, 175);
  font-weight: 600;
}

.evidence-sentence-legend {
    font-weight: 300;
}

.evidence-legend .chemical {
  background-color: rgb(101, 174, 175);
  line-height: 2;
  border-radius: 50%;
}

.evidence-legend {
  list-style: none;
}

.evidence-legend li {
  float: left;
  margin-right: 10px;
  line-height: 2;
}

.evidence-legend span {
  border: 1px solid #ffffff;
  float: left;
  width: 20px;
  height: 20px;
  margin: 4px;
}

/* HELP */

.left {
  float: left;
  width: 45%;
}

.right {
  float: right;
  width: 45%;
}

.table-condenseddg td {
  border: none !important;
}

.table-condenseddg tr {
  border-top: 1px solid #dee2e6 !important;
}

.table-condenseddg tr.FilaSinBorde {
  border-top: 0px solid #dee2e6 !important;
}

table.table-condenseddg {
  border-bottom: 1px solid #dee2e6 !important;
}

/* Columns */

.external-menu {
  margin: 2rem 0;
}

.column-card {
  max-height: 20rem;
  margin: 0 1rem 2rem;
  width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column-card-actions {
  border-top: 1px solid rgba(128, 128, 128, 0.267);
}

.column-item {
  display: flex;
  margin-bottom: 1rem;
  justify-content: center;
}

.category-columns {
  width: 100%;
  display: flex;
  justify-content: center;
}

.custom-checkbox {
  accent-color: var(--pink-color);
}

.Cabtabla {
  max-width: 90vw;
}

@media (max-width: 1025px) {
  .column-item {
    display: flex;
    flex-wrap: wrap;
  }
}

.source-btn-one {
  color: rgb(255, 255, 255);
  background-color: var(--tertiary-gray-color);
}

.source-btn {
  color: rgb(0, 6, 19);
  background-color: var(--secondary-gray-color);
}

/* SIDE BAR */
#table-scroll {
  max-height: 950px;
}

.table-headers {
  font-weight: 700;
}

.vocab-table td {
  word-wrap: break-word;
  width: 33%;
}

.chord {
  width: 650px;
  height: 650px;
}

/* GENE CONTENT */

/* CLOSE MODAL   */
.closeModalGene {
  font-size: 1.5rem;
  color: var(--pink-color);
}

.closeModalGene:hover {
  cursor: pointer;
  transform: scale(1.2);
}

/* SPINNER CONTAINER */
.spinner-container {
  height: 500px;
}

/* PATHWAYS STYLES */
.pathway-diagram-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.pathway-diagram-title h1 {
  color: var(--blue-color);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.2rem;
}

.pathway-diagram-title span {
  text-align: center;
  font-size: 0.75rem;
}

.pathway-diagram-title span:hover {
  text-decoration: underline;
  cursor: pointer;
}

.pathway-diagram-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pathway-diagram-buttons button {
  background-color: var(--blue-color);
  color: white;
  padding: 0.5rem;
  border-radius: 5px;
}

.pathway-diagram-buttons button:hover {
  font-weight: 700;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pathways-list {
  margin-top: 2rem;
  width: 80%;
}

.pathways-list th {
  text-align: center;
}

.pathway-item {
  padding: 0.5rem;
  padding-left: 1rem;
  border-radius: 12px;
  margin: 1rem;
  cursor: pointer;
  list-style-type: none;
  text-align: center;
  transition:
    background-color 0.5s,
    color 0.5s;
}

.pathway-item.active {
  color: var(--pink-color);
  font-weight: 700;
}

.geneModalLink,
.showLoginBtn {
  color: rgb(74, 119, 178);
}

.geneModalLink:hover,
.showLoginBtn:hover {
  color: #0758b3;
  cursor: pointer;
}

@media (max-width: 768px) {
  .responsive-search-results {
    min-width: 100vw !important;
  }
}

/*----------------------------
END SEARCH PAGE
----------------------------*/

/*----------------------------
		GRAPHS
----------------------------*/
.graph-container {
  width: 100%;
}

.graph-title {
  color: #08306b;
  font-size: 1.4rem;
  margin-top: 1rem;
  margin-left: 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.graph-top-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.graph-controls-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.graph-dashboard {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  align-items: flex-start;
}

.graph-dashboard p {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pink-color);
  margin-bottom: 0.5rem;
}

.graph-dashboard .list-group-item {
  font-size: 0.95rem;
  color: white;
  border-color: white;
  background-color: var(--blue-color);
  cursor: pointer;
  font-weight: 600;
}

.graph-dashboard .list-group-item.active {
  background-color: var(--pink-color);
}

.graph-sample-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.graph-sample-selector label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pink-color);
  margin: 0;
}

.graph-sample-selector select {
  border: 1px solid #c7ced9;
  border-radius: 8px;
  background: #fff;
  color: #14365d;
  min-height: 36px;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
}

.graph-interactions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: start;
  gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.graph-range-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: start;
}

.graph-range-controls input[type='range'] {
  width: 140px;
  accent-color: var(--pink-color);
}

.graph-range-label,
.graph-range-window {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-blue-gray-color);
}

.graph-action-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 1400px) {
  .graph-title {
    font-size: 1.38rem;
  }

  .graph-dashboard .list-group-item {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 1200px) {
  .graph-title {
    font-size: 1.2rem;
    text-align: left;
  }

  .graph-dashboard .list-group-item {
    font-size: 0.9rem;
  }
}

/* Common Charts styles*/

.chart-container-75 {
  min-height: 540px;
  height: 72vh;
}

.axisLegend {
  font-size: 0.85rem;
  color: var(--navy-blue-gray-color);
  font-style: italic;
}

.verticalTopLegend {
  transform: rotate(-90deg);
}

.additional-notes {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.centered-paragraph {
  font-size: 0.95rem;
  text-align: center;
}

/* Heatmap Custom styles */
.custom-tooltip-heatmap {
  background-color: white;
  font-size: 1.1rem;
  color: var(--navy-blue-gray-color);
  padding: 6px 9px;
  border-radius: 2px;
  min-width: 160px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  white-space: pre;
}

.score-color {
  height: 8px;
  margin-bottom: 1.5px;
}

.heatmap-custom-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.heatmap-custom-legend-gradient {
  width: min(420px, 65vw);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #deebf7 0%, #9ecae1 45%, #6baed6 70%, #2171b5 100%);
}

.heatmap-custom-legend-value {
  font-size: 0.82rem;
  color: var(--navy-blue-gray-color);
  font-weight: 600;
}

/* NETWORK */
.network-container {
  width: min(96vw, 1700px);
  height: 80vh;
  margin: 0 auto;
  margin-top: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1rem 0.5rem 1rem;
}

.network-graph {
  width: 100%;
  height: calc(100% - 64px);
  margin: 0 auto;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, #f3f7fb 65%, #ecf1f7 100%);
}

@media (max-width: 768px) {
  .network-graph {
    width: 100% !important;
  }
}

.cytoscape-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.cytoscape-buttons button {
  padding: 0.25rem 1rem;
  color: white;
  background-color: var(--blue-color);
  border-radius: 999px;
  margin: 0.5rem;
  transition:
    background-color 0.5s,
    color 0.5s;
}

.cytoscape-buttons button:hover {
  background-color: var(--secondary-gray-color);
  color: var(--blue-color);
}

.select-layout-options {
  cursor: pointer;
}

.select-layout-options.active,
.select-layout-options:active {
  background-color: var(--secondary-gray-color);
  color: var(--blue-color);
}

.bullet-item {
  list-style: none;
  padding-left: 15px;
  position: relative;
}

.bullet-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--pink-color);
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

.special {
  margin-left: 20px;
}

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

.fade-in-active {
  opacity: 1;
}
.graph-top-content {
  display: flex;
  justify-content: space-between;
}

/*----------------------------
END GRAPHS
----------------------------*/

.bullet-item {
  list-style: none;
  padding-left: 15px;
  position: relative;
}

.bullet-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--pink-color);
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

/*----------------------------
 Dot Menu 
----------------------------*/

.nav-item {
  margin: 2px;
  position: relative;
}

.cd-title {
  color: var(--navy-blue-gray-color);
  padding: 5px 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  max-width: 8ch;
  text-overflow: ellipsis;
}

.horizontal-menu {
  display: flex;
  margin-left: 30px;
}

.nav-item:hover .cd-title {
  max-width: none;
  color: var(--pink-color);
  font-size: 16px;
}

/*----------------------------
API
----------------------------*/

.rpackage-code {
  font-size: 13px;
  color: black;
}

.tools-section-image {
  border: thin #c0c0c0 solid;
  display: flex;
  flex-flow: column;
  padding: 5px;
  margin: auto;
}

.tools-section-image figcaption {
  background-color: var(--navy-blue-gray-color);
  color: #fff;
  font: italic smaller sans-serif;
  padding: 3px;
  text-align: center;
}

.apikey-retrieval {
  max-width: 700px;
}

/* .launching-image {
  max-width: 300px;
}

img.launching-image-settings {
  max-height: 75vh;
} */

.cytoscape-steps li {
  padding-left: 0.5rem;
}

.dump_code {
  border: 1px solid var(--tertiary-gray-color);
  padding: 0.5rem;
  border-radius: 3px;
}

/* mobile Nav */
@media only screen and (max-width: 600px) {
  #cd-vertical-nav ul.horizontal-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px;
    margin: 0;
  }

  .txt-contenido {
    word-wrap: break-word;
    word-break: break-word;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  #cd-vertical-nav ul.horizontal-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px;
    margin: 0;
  }

  .txt-contenido {
    word-wrap: break-word;
    word-break: break-word;
  }
}

/*----------------------------
END API
----------------------------*/

/*----------------------------
		PLANS
----------------------------*/

.PricingApp {
  position: relative;
  font-family: 'Poppins', sans-serif;
  display: grid;
  padding-top: 20px;
  place-items: center;
}

button {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.card-title {
  font-weight: 400;
  font-size: 30px;
}

.PricingApp .app-container {
  width: min(90%, 90rem);
}

@media (max-width: 1580px) {
  .PricingApp .app-container {
    width: min(99%);
  }
}

.PricingApp header .header-topic {
  text-align: center;
}

.PricingApp .pricing-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  background: rgb(239 239 239);
  text-align: left;
  color: var(--blue-color);
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 20px;
  border: 1px solid rgb(226 228 233);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 4rem;
}

.PricingCard {
  display: grid;
  align-content: space-between;
  padding: 30px;
  margin: 10px;
  border-radius: 15px;
  text-align: center;
  background: white;
  color: var(--blue-color);
  transition: transform 0.3s ease;
  min-height: 585px;
  max-height: 585px;
  border: 1px solid var(--secondary-gray-color);
}

.PricingCard-ac {
  flex: 1;
  padding: 20px;
  margin-right: 10px;
  border: 2px solid var(--primary-gray-color);
  border-radius: 15px;
  text-align: center;
  background: rgb(50, 63, 87);
  color: white;
  width: min(100%, 30rem);
  transition: transform 0.3s ease;
  height: 250px;
}

.PricingCard-advanced {
  color: var(--navy-blue-gray-color);
  background-image: linear-gradient(
    180deg,
    rgb(25 25 139 / 12%) 0%,
    rgb(179 26 173 / 12%) 30%,
    transparent 100%
  );
  border: 1px solid var(--secondary-gray-color);
}

.tab-title-advanced {
  color: var(--navy-blue-gray-color);
  background-image: linear-gradient(
    180deg,
    rgb(25 25 139 / 12%) 0%,
    rgb(179 26 173 / 12%) 30%,
    transparent 100%
  );
}

.card-info {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--blue-color);
  background-color: var(--primary-gray-color);
  margin: -21px -21px 5px -21px;
  border-radius: 15px 15px 0 0;
}

.PricingCard header > .card-title1 {
  font-weight: 500;
  font-size: 40px;
  color: var(--pink-color);
}

.PricingCard header > .card-price {
  margin-block: 5px;
  font-size: 1.4em;
  font-weight: bold;
}

.PricingCard-ac .card-price {
  margin-block: 5px;
  font-size: 1.4em;
  font-weight: bold;
}

.PricingCard header > .card-price1 {
  margin-block: 10px;
  font-size: 1.4em;
  font-weight: bold;
  color: white;
}

.PricingCard .card-webPlatform > * {
  padding-block: 10px;
  font-weight: bold;
}

.PricingCard .card-features > * {
  padding-block: 10px;
}

.PricingCard .card-features :last-child {
  margin-bottom: 2em;
}

.PricingCard .card-features-ac > * {
  padding-block: 0px;
}

.PricingCard .card-btn {
  cursor: pointer;
  padding: 1em;
  width: 100%;
  border-radius: 0.5em;
  background-color: var(--blue-color);
  outline: transparent;
  transition: 0.125s ease;
  color: white;
}

.PricingCard-ac .card-btn {
  cursor: pointer;
  padding: 1em;
  width: 100%;
  border-radius: 1em;
  background-color: var(--pink-color);
  outline: transparent;
  transition: 0.125s ease;
  color: white;
  font-weight: bold;
}

.PricingCard-advanced .card-btn {
  background-color: var(--pink-color);
}

.PricingCard-advanced .price-text {
  color: var(--primary-gray-color);
}

.PricingCard .card-btn:is(:focus-visible, :hover) {
  color: var(--blue-color);
  background: white;
}

.PricingCard-advanced .card-btn:is(:focus-visible, :hover) {
  color: white;
  background: var(--blue-color);
}

.PricingCard:hover {
  transform: scale(1.1);
}

.whats-included-tit {
  font-size: 14px;
  margin-bottom: 1px;
}

.whats-included {
  font-size: 14px;
  display: flex;
  margin-top: 1rem;
}

.whats-included-div {
  flex: 1;
  padding: 12px;
  margin-right: 10px;
  border: 2px solid var(--primary-gray-color);
  border-radius: 15px;
  text-align: center;
  background: white;
  color: var(--blue-color);
}

.table-container {
  max-width: auto;
}

@media (max-width: 1380px) {
  .PricingApp .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .PricingCard,
  .PricingCard2 {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .PricingApp .pricing-cards {
    flex-direction: column;
  }

  .card-title,
  .card-title1 {
    font-weight: 500;
    font-size: 30px !important;
  }

  .PricingCard header > .card-price1 {
    font-size: 1.1em;
  }

  .PricingCard header > .card-price {
    margin-block: 5px;
    font-size: 1.1em;
    font-weight: bold;
  }

  .PricingCard {
    width: 90%;
  }

  .div-whats-included {
    display: block;
  }
}

/*----------------------------
END PLANS
----------------------------*/

/*----------------------------
		LOGIN
----------------------------*/
.login-container {
  width: 600px;
  height: auto;
  margin: 50px auto 0;
  padding: 10px;
  background-attachment: fixed;
}

.login-title {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 35px;
  padding-bottom: 10px;
}

.reset-title {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 25px;
  padding-bottom: 10px;
}

.signin-container {
  margin: 1px;
  padding: 10px;
  background-image: linear-gradient(
    243deg,
    rgba(25, 25, 139, 0.7175245098039216) 0%,
    rgba(179, 26, 173, 0.6587009803921569) 100%
  );
  color: var(--navy-blue-gray-color);
  border: 2px solid var(--primary-gray-color);
  border-radius: 40px;
}

.no-login-container {
  margin: 280px;
}

.register-p {
  font-weight: 400;
  padding: 4px;
  font-size: 18px;
}

.checkbox-custom {
  display: none;
}

.checkbox-custom:checked + .checkbox-text::before {
  border: 2px solid var(--secondary-gray-color);
  background-color: var(--pink-color);
}

.checkbox-custom:checked + .checkbox-text::before {
  border: 2px solid var(--primary-gradient);
  background-color: var(--pink-color);
}

@media (max-width: 768px) {
  .login-container {
    width: 300px;
    height: auto;
    margin: 50px auto 0;
    padding: 5px;
    background-attachment: fixed;
  }

  .login-title {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 25px;
    padding-bottom: 10px;
  }

  .reset-title {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 10px;
  }
}

/*----------------------------
		END LOGIN
----------------------------*/

/*----------------------------
		ABOUT
----------------------------*/

/* Request failed styles*/
.request-failed {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin: 3rem 0; */
  /* height: 30vh; */
}

.request-failed h1 {
  font-size: 2rem;
}

.request-failed p {
  font-size: 1.25rem;
}

/* Alert Dismissible styles*/
.alert-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 60%;
  padding: 0.75rem 1.5rem;
  margin: 0rem auto;
  margin-bottom: 2rem;
}

.alert-content {
  font-size: 1rem;
  margin: 0;
}

.close-alert {
  font-size: 1.5rem;
}

.ReactModal__Overlay {
  z-index: 100000000;
}

.superposed-content {
  z-index: 2;
}

.download-actions {
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
}

.RegisterPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
}

.RegisterPopup .Modal.Header,
.RegisterPopup .Modal.Body,
.RegisterPopup .Modal.Footer {
  text-align: center;
}

/* ANIMATION LOGIN */

.modal-dialog-centered {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loading {
  border: 4px solid var(--pink-color);
  border-left-color: var(--primary-gray-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

.wrap-input100 select {
  font-size: 18px;
  color: var(--navy-blue-gray-color);
  margin: 10px;
  border-radius: 5px;
  box-sizing: border-box;
}

/*----------------------------
  Upgrade Plan 
/----------------------------*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.apply-popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(229, 229, 229);
  padding: 20px;
  border: 2px solid var(--secondary-gray-color);
  border-radius: 10px;
  min-width: 35rem;
  z-index: 9999;
}

.popup-upgrade {
  background-color: rgb(229, 229, 229);
  border: 2px solid var(--secondary-gray-color);
  padding: 20px;
  border-radius: 8px;
  width: 700px;
  position: relative;
}

.popup-upgrade form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.popup-upgrade form input {
  background-color: rgb(243, 241, 241);
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.popup-upgrade form select {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.popup-upgrade form button {
  margin-top: 10px;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.popup-upgrade form {
  display: flex;
  flex-direction: column;
}

.popup-upgrade form input,
.popup-upgrade form select {
  margin-bottom: 10px;
  padding: 8px;
}

/*----------------------------
 TRIAL AND BASIC APPLY PAGE 
----------------------------*/

.apply-txt {
  display: flex;
  flex-direction: row;
}

.apply-div h1 {
  font-size: 50px;
}

.apply-div h3 {
  font-size: 35px;
  font-weight: bold;
}

.apply-div h5,
.apply-div h6 {
  padding-top: 15px;
}

.apply-div h5 {
  font-size: 25px;
}

.apply-div h6 {
  font-size: 20px;
}

.form-apply {
  padding: 20px;
  margin-top: 5rem;
}

.form-apply-trial {
  margin-top: 18rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .form-apply {
    margin-top: 3rem; /* 48px */
  }
  
  .form-apply-trial {
    margin-top: 12rem; /* 192px */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .form-apply {
    margin-top: 1rem; /* 16px */
    padding: 15px;
  }
  
  .form-apply-trial {
    margin-top: 2rem; /* 32px */
  }
}

.form-apply-support {
  min-height: 60vh;
  height: fit-content;
  max-height: 100%;
}

.apply-popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(229, 229, 229);
  padding: 20px;
  border: 2px solid var(--secondary-gray-color);
  border-radius: 10px;
  min-width: 35rem;
  z-index: 9999;
}

.label-input {
  font-size: 20px;
  line-height: 1.5;
  padding: 1px;
  margin: 3px;
}

.line-input {
  width: 100%;
  position: relative;
  border: 1px solid #dbdbdb;
  background: transparent;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.form-input {
  display: block;
  width: 100%;
  background: white;
  font-size: 12px;
  padding: 7px;
  border-radius: 20px;
  border: 1px solid gray;
  text-align: left;
}

.form-q {
  width: 50%;
}

div.line-input select.select-input {
  display: block;
  width: calc(100% - 20px);
  background: transparent;
  font-size: 18px;
  padding: 7px;
  appearance: none;
}

div.line-input select.select-input option {
  color: black;
}

.apply-input-error {
  color: red;
  font-size: 10px;
  margin-left: 4px;
  margin-top: 2px;
  width: 90%;
  font-weight: 500;
  margin-bottom: 0;
}

.apply-popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(229, 229, 229);
  padding: 20px;
  border: 2px solid var(--secondary-gray-color);
  border-radius: 10px;
  min-width: 35rem;
  z-index: 9999;
}

.apply-title {
  text-align: center;
  font-weight: bold;
  font-size: 35px;
  color: white;
}

/* Media Queries */

@media (max-width: 1810px) {
  .apply-div h1 {
    font-size: 45px;
  }
}

@media (max-width: 1715px) {
  .apply-div h1 {
    font-size: 42px;
  }
}

@media (max-width: 1660px) {
  .apply-div {
    padding: 6rem 4rem 6rem 5rem;
  }
}

@media (max-width: 1515px) {
  .apply-div {
    padding: 5rem 1rem;
  }
}

@media (max-width: 1345px) {
  .apply-div {
    padding: 5rem 1rem;
  }

  .apply-div h1 {
    font-size: 35px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .trial-page {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .apply-div {
    order: 2;
    text-align: center;
    padding: 1.2rem;
  }

  .apply-txt {
    display: flex;
    flex-direction: column;
  }

  .apply-div h1 {
    font-size: 24px;
  }

  .apply-div h3 {
    font-size: 20px;
  }

  .apply-div h5,
  .apply-div h6 {
    font-size: 16px;
  }

  .apply-div img {
    display: none;
  }

  .apply-title {
    font-size: 24px;
  }

  .form-input {
    font-size: 16px;
  }
}

/* end Media Queries */

/*----------------------------
  TESTIMONY 
----------------------------*/
.testimony-div {
  padding: 2.5rem;
}

.testimony {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--tertiary-gray-color);
}

.testimony img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.testimony blockquote {
  width: 90rem;
  max-width: 90rem;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 20px;
  border-radius: 10px;
  position: relative;
  padding: 20px 50px 20px 50px;
  font-size: 0.8em;
  font-weight: 500;
  border-top: 2px #dfdfdf solid;
  border-bottom: 2px #dfdfdf solid;
}

.carousel-control {
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--secondary-gray-color);
  z-index: 1;
}

.carousel-control.prev {
  left: 0;
}

.carousel-control.next {
  right: 0;
}

.quote-left,
.quote-right {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}

.quote-right {
  text-align: right;
}

.testimony-info {
  margin-top: -20px;
  padding-left: 30px;
}

.testimony-info h6 {
  margin-bottom: 1px;
}

/* mobile */
@media (max-width: 768px) {
  .testimony {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .testimony blockquote {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
    padding: 10px;
    font-size: 0.7em;
    margin-bottom: 35px;
  }

  .testimony-info h6 {
    font-size: 12px;
  }

  .testimony-div {
    padding: 20px 0 0 0;
  }
}

/* BENEFITS */
.feature-home {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.benefits-content {
  margin: 20px;
  text-align: center;
  border-radius: 20px;
  border-color: black !important;
  padding: 10px;
  max-width: 300px;
}

.benefits-img img {
  padding: 55px;
  width: 350px;
  height: 250px;
}

.benefits-div {
  padding-top: 20px;
}

.benefits-tilte {
  color: var(--pink-color);
  text-align: left;
  font-size: 33px;
  font-weight: bold;
}

.benefits-text {
  color: var(--blue-color);
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 1025px) {
  .benefits-content {
    margin: 5px;
  }
}

@media (max-width: 768px) {
  /* .feature-home {
    min-width: unset
  } */

  .benefits-content {
    /* margin: 10px; */
    text-align: center;
    border-radius: 20px;
    border-color: black !important;
    padding: 10px;
    width: 250px;
    height: 300px;
  }

  .benefits-img img {
    padding: 15px;
    width: 220px;
    height: 140px;
  }

  .benefits-div {
    padding-top: 20px;
  }

  .benefits-tilte {
    color: var(--pink-color);
    text-align: left;
    font-size: 23px;
    font-weight: bold;
  }

  .benefits-text {
    color: var(--blue-color);
    text-align: left;
    font-size: 14px;
    font-weight: bold;
  }
}

/* PRIVACY POLICY DOWNLOAD */

@layer base {
  .pdf-mode .privacy-nav {
    display: none !important;
  }

  .pdf-mode .fa-print {
    display: none !important;
  }

  .pdf-mode h2 {
    color: #000 !important;
    background: transparent !important;
  }
}

/* FAQ */

.faq .card-faq .card-faq-header:hover {
  padding-left: 10px;
}

.card-faq-header {
  background: rgba(190, 0, 127, 0.135);
  padding-left: 10px;
}

.card-faq {
  border: 1px solid var(--primary-gray-color);
  border-radius: 10px;
}

.card-faq:focus {
  background: rgba(190, 0, 127, 0.135);
  padding-left: 10px;
}

.faq .card-faq .card-faq-header {
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 12px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.faq .card-faq .card-faq-header .badge {
  display: inline-block;
  width: 24px;
  height: 22px;
  line-height: 15px;
  border-radius: 100px;
  text-align: center;
  background: var(--pink-color);
  color: #fff;
  font-size: 14px;
  margin-right: 20px;
}

.faq .card-faq .card-faq-body {
  padding: 12px;
  color: var(--blue-color);
}

.faq .card-faq .card-faq-body p {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
}

.gradient-color {
  background-image: var(--gradient);
  color: transparent !important;
  background-clip: text;
  -webkit-background-clip: text;
  padding-bottom: 2px;
}

.faq-banner {
  display: block;
  margin: 0 auto;
  width: 50%;
  max-width: 100%;
  height: auto;
}

/* NAV HEADER*/

.menuNav {
  display: flex;
  align-items: center;
  margin-right: 20px;
  position: relative;
}

.custom-nav-menu {
  color: var(--blue-color);
}

.nav-link-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: var(--blue-color) !important;
  font-weight: bold;
}

.nav-link-item a:hover {
  color: var(--pink-color) !important;
}

@media (max-width: 1024px) {
  .slide {
    gap: 10px;
  }
}

@media (max-width: 992px) {
  html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Evitar que contenedores hagan la página más ancha que el viewport */
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown-menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    display: none;
    width: 92vw;
    max-width: 100vw !important;
    height: 100vh;
    min-height: 85vh;
    padding: 4rem 0 2rem;
    padding-top: 3.5rem;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
  }

  .dropdown-menu.open {
    display: block;
    border-radius: 0;
    padding: 4rem 0 2rem;
    padding-top: 3.5rem;
    margin: 0;
    width: 100% !important;
  }

  .nav-mobile-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--navy-blue-gray-color);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .nav-mobile-close-btn:hover {
    background: rgba(0, 0, 0, 0.12);
  }

  .nav-mobile-user-info {
    padding: 1rem 1.25rem;
    margin: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--tertiary-gray-color);
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    word-break: break-all;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-mobile-logout-btn {
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
    font-size: inherit;
    color: var(--pink-color);
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    display: block;
  }

  .nav-mobile-logout-btn:hover {
    background: rgba(0, 0, 0, 0.05);
  }
}

.form-success {
  font-size: 18px;
  font-weight: bold;
  color: var(--blue-color);
  text-align: center;
}

/* Desktop */
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }

  .nav-mobile-close-btn {
    display: none !important;
  }

  .dropdown-menu {
    position: static;
    display: flex !important;
    width: auto;
    background: transparent;
    max-width: 100vw !important;
  }

  .slide {
    flex-direction: row;
  }
}

/*----------------------------
  BLOG 
----------------------------*/

.archive-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.summary-list {
  display: block;
  font-weight: bold;
  color: var(--blue-color);
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 9.6px;
  margin-bottom: 15px;
}

.archive-posts li {
  width: 100%;
  height: auto;
}

.glide__slide {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background-image: linear-gradient(45deg, #58af881b 0%, #0d17601b 100%);
  border-radius: 24px;
  box-shadow: 1.6px 1.6px 8px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
  border: 1.6px solid var(--primary-gray-color);
  transform: perspective(0px) rotateX(0) rotateY(0);
}

.post-thumbnail {
  padding-bottom: 6.4px;
  background: var(--gradient);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.post-info {
  display: flex;
  align-items: center;
  margin: 24px 0;
  font-size: 12px;
}

.post-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.post-info a {
  color: var(--pink-color);
  font-weight: bold;
  margin-right: 8px;
}

.post-info a:hover {
  text-decoration: underline;
}

.h3-post {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 8px;
}

.p-post {
  font-size: 17.6px;
}

@media (max-width: 1024px) {
  .archive-posts {
    grid-template-columns: 1fr;
  }

  .glide__slide {
    padding: 16px;
    border-radius: 16px;
  }

  .post-thumbnail {
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .glide__slide {
    padding: 12px;
    border-radius: 12px;
  }

  .post-thumbnail {
    margin-bottom: 32px;
  }

  .slider-container {
    position: relative;
    overflow: hidden;
  }

  .h3-post {
    font-size: 16px;
  }
}

/* posts */
.blog-title {
  font-weight: bold;
  margin-bottom: 20px;
}

.blog-date {
  color: var(--blue-color);
  font-size: 16px;
  margin-bottom: 20px;
}

.blog-img {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.blog-img img {
  padding-bottom: 8px;
  background: var(--gradient);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.blog-paragraph {
  font-size: 16px;
  margin-bottom: 15px;
}

.blog-subtitle {
  color: var(--blue-color) !important;
  font-weight: bold;
  border-bottom: 1.6px solid #e4e4e4;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.blog-quote {
  font-style: italic;
  font-size: 16px;
  padding: 1rem;
  border-right: 1.5px #dfdfdf solid;
  border-bottom: 2px #dfdfdf solid;
  box-shadow: #dfdfdf 1px 1px 8px;
  background: rgb(190, 0, 128, 0.135);
  border-left: 4px rgb(190, 0, 128) solid;
}

.blog-home-card-img {
  width: 100%;
  height: 200px;
  object-fit: fill;
}

.blog-sub-subtitle {
  color: var(--pink-color) !important;
  font-weight: bold;
  padding-bottom: 5px;
}

.blog-list {
  margin: 0;
  padding: 0;
  list-style-type: disc;
  padding-left: 20px;
}

.blog-list li {
  margin-bottom: 10px;
}

.blog-link {
  color: var(--pink-color);
  font-weight: bold;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .blog-content {
    width: 95%;
  }

  .blog-title {
    font-size: 24px;
  }

  .blog-subtitle {
    font-size: 19.2px;
  }

  .blog-sub-subtitle {
    font-size: 16px;
  }
}

/* blog home */
.blog-home-container {
  position: relative;
  overflow: hidden;
}

.blog-home-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  columns: 1;
  gap: 20px;
  padding: 40px;
}

.blog-home-card {
  width: 430px;
  height: 600px;
  padding: 0;
  border-radius: 24px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
  display: flex;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.blog-home-card-content {
  padding: 30px;
}

.blog-home-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-home-card-description {
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1025px) {
  .blog-home-cards {
    padding: 10px;
    padding-bottom: 50px;
  }

  .blog-home-card {
    /* width: 90%; */
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .blog-home-card {
    width: 300px;
    height: 360px;
  }

  .blog-home-card-description {
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }
}

/*----------------------------
END BLOG 
----------------------------*/

/*----------------------------
		NOT FOUND PAGE
----------------------------*/

.notFoundPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 3rem;
}

.notFoundPage h1 {
  font-size: 10rem;
}

.notFoundPage h2 {
  font-size: 3rem;
}

.notFoundPage p {
  font-size: 1.5rem;
}

/* No Records Found */

.no-records {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
  height: 30vh;
}

.no-records h1 {
  font-size: 2rem;
}

.no-records p {
  font-size: 1.25rem;
}

/*----------------------------
  ADVANCED SEARCH 
----------------------------*/

.ms-radio-group {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.custom-radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.custom-radio-label input[type='radio'] {
  position: absolute;
  opacity: 0;
}

.custom-radio {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--primary-gray-color);
  background-color: #fff;
  margin: 6px;
  position: relative;
}

.custom-radio-label input[type='radio']:checked + .custom-radio {
  background-color: var(--pink-color);
  border-color: var(--pink-color);
}

.custom-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.ms-input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ms-text {
  color: var(--tertiary-gray-color);
  display: block;
  border: 2px solid #ccc;
  border-radius: 10px !important;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.ms-buttons {
  display: flex;
  padding-top: 10px;
}

.advanced-notfound-roll {
  max-height: 70px;
  max-width: 550px;
  overflow-y: auto;
  overflow-x: hidden;
}

.multiple-filters {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  padding: 20px;
  margin-left: 5%;
  border: 1px solid var(--secondary-gray-color);
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.search-filter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter-upload {
  padding: 10px 15px;
  margin: 10px 5px;
  background-color: var(--blue-color);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-labe {
  color: var(--pink-color);
}

.filter-input {
  color: var(--tertiary-gray-color);
  display: block;
  border: 1px solid #ccc;
  border-radius: 10px !important;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.filter-textarea {
  resize: none;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.suggestions-container {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background-color: white;
  z-index: 1000;
}

.suggestion-item {
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

.suggestions-table {
  max-height: 400px;
  width: 100%;
  overflow: auto;
  margin: 0 auto;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 10px;
}

/*----------------------------
  END ADVANCED SEARCH 
----------------------------*/

/*----------------------------
		TRIAL EXPIRED PAGE
----------------------------*/

.header-logo {
  display: flex;
  justify-content: space-between;
  padding: 10px 80px;
  align-items: center;
  background: rgb(245, 242, 242);
}

.custom-support {
  text-decoration: none;
  color: var(--tertiary-gray-color);
  font-size: 18px;
  font-weight: 500;
}

.trial-expired-container {
  justify-content: center;
  padding-top: 30px;
  padding: 0 20% 0 20%;
}

.breadcrumbs {
  margin: 20px auto;
  padding-left: 6%;
  font-size: 14px;
  color: var(--secondary-gray-color);
}

.steps-container {
  margin: 0 auto;
  min-width: 800px;
  max-width: 90%;
  max-height: 70vh;
  min-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 -4px 6px rgba(0, 0, 0, 0.1),
    4px 0 6px rgba(0, 0, 0, 0.1),
    -4px 0 6px rgba(0, 0, 0, 0.1);
}

.profile-selection {
  text-align: center;
  margin: 30px 0;
}

.profile-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.cards-container {
  justify-content: center;
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 3px solid var(--primary-gray-color);
  align-items: center;
  border-radius: 8px;
  margin: 20px;
  padding: 20px;
  text-align: center;
  width: 600px;
}

.footer-expired {
  width: 100%;
  height: 60px;
  position: fixed;
  bottom: 0;
  text-align: center;
  font-size: 14px;
  padding-top: 15px;
  background: rgb(245, 242, 242) !important;
}

/*----------------------------
   EXPIRED PAGE APPLY 
----------------------------*/

.academic-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
}

.form-header {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.form-subheader {
  font-size: 14px;
  color: var(--primary-gray-color);
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-group input::placeholder {
  color: #999;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-group textarea {
  height: 80px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

/*----------------------------
END EXPIRED PAGE APPLY 
----------------------------*/

.warning-message {
  background-color: rgba(255, 166, 0, 0.26);
  color: black;
  border: 1px solid orange;
  border-radius: 5px;
}

.score-slider {
  -webkit-appearance: none;
  appearance: none;
  background-color: #e5e7eb;
  height: 0.5rem;
  border-radius: 0.25rem;
}

.score-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  background-color: var(--pink-color);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.score-slider::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: var(--pink-color);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.score-modal {
  min-width: 56rem;
}

/*----------------------------
TANSTACK TABLE STYLES
----------------------------*/
.tanstack-grid-container {
  width: 90vw;
  max-width: 100%;
  min-height: 537px;
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.tanstack-grid-wrapper {
  flex: 1;
  overflow: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
}

.tanstack-grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.tanstack-grid thead {
  background-color: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 10;
}

.tanstack-grid thead th {
  position: sticky;
  top: 0;
  background-color: #f5f5f5;
  z-index: 10;
}

.tanstack-grid th {
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  border-right: 1px solid #f0f0f0;
  color: #333;
  white-space: nowrap;
  min-width: 100px;
  vertical-align: top;
  width: auto;
  overflow: hidden;
}

.tanstack-grid th:hover {
  z-index: 20;
}

.tanstack-grid th:last-child {
  border-right: none;
}

.sortable-header {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sortable-header:hover {
  color: #1976d2;
}

.sort-indicator {
  color: #1976d2;
  font-weight: bold;
}

.tanstack-grid tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.tanstack-grid tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

.tanstack-grid tbody tr:hover {
  background-color: #f0f8ff;
}

.tanstack-grid td {
  padding: 12px;
  border-right: 1px solid #f0f0f0;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
  width: auto;
}

.tanstack-grid td:last-child {
  border-right: none;
}

.tanstack-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid #e0e0e0;
  background-color: #fafafa;
  flex-wrap: wrap;
  gap: 12px;
}

.pagination-info {
  font-size: 13px;
  color: #666;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-controls button {
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
}

.pagination-controls button:hover:not(:disabled) {
  background-color: #f0f0f0;
  border-color: #1976d2;
}

.pagination-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  font-size: 13px;
  color: #666;
  padding: 0 8px;
}

.page-size-select {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  background: white;
}

.page-size-select:hover {
  border-color: #1976d2;
}

/* Links in cells */
.tanstack-grid a {
  color: #1976d2;
  text-decoration: none;
}

.tanstack-grid a:hover {
  text-decoration: underline;
}

/* Gene modal link container */
.geneModalLink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Tab links */
.tab-links {
  color: #1976d2;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}

.tab-links:hover {
  text-decoration: underline;
  color: #1565c0;
}

/* External link icon */
.fa-external-link {
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.7;
}

/* Loading State */
.tanstack-loading-state {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  max-width: 200px;
  pointer-events: none;
}

/* Empty State */
.tanstack-empty-state {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 400px;
  max-width: 500px;
  pointer-events: none;
}

.empty-state-icon {
  color: #bdbdbd;
  margin-bottom: 24px;
  animation: fadeIn 0.5s ease-in;
}

.empty-state-icon svg {
  width: 80px;
  height: 80px;
}

.empty-state-title {
  font-size: 20px;
  font-weight: 600;
  color: #424242;
  margin: 0 0 12px 0;
  animation: fadeIn 0.6s ease-in;
}

.empty-state-message {
  font-size: 14px;
  color: #757575;
  margin: 0;
  max-width: 400px;
  line-height: 1.6;
  animation: fadeIn 0.7s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loader */
.tanstack-grid-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.loader-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1976d2;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 12px;
}

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

.tanstack-grid-loader p {
  margin: 0;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

/* Column filters */
.column-filter {
  margin-top: 8px;
}

.filter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-input {
  width: 100%;
  padding: 8px 56px 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  box-sizing: border-box;
  background: white;
  transition: border-color 0.2s;
}

.filter-input:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.filter-input::placeholder {
  color: #999;
  font-size: 12px;
}

.filter-select {
  padding: 8px 32px 8px 10px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.filter-select:hover {
  border-color: #1976d2;
}

/* Hide number input spinners */
.filter-input[type='number']::-webkit-inner-spin-button,
.filter-input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.filter-clear-button {
  position: absolute;
  right: 20px;
  top: 40%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  font-size: 20px;
  color: #999;
  line-height: 1;
  border-radius: 3px;
  transition: all 0.2s;
}

.filter-clear-button:hover {
  background-color: #f0f0f0;
}

.filter-menu-wrapper {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.filter-menu-button {
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  line-height: 1;
  border-radius: 3px;
  transition: all 0.2s;
  margin-bottom: 8px;
}

.filter-menu-button:hover {
  background-color: #f0f0f0;
  color: #1976d2;
}

.filter-operator-menu {
  position: absolute;
  top: 100%;
  margin-top: 4px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 160px;
  overflow: hidden;
}

.filter-operator-menu.menu-left {
  right: 0;
}

.filter-operator-menu.menu-right {
  left: 0;
}

.filter-operator-option {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  transition: background-color 0.15s;
  white-space: nowrap;
}

.filter-operator-option:hover {
  background-color: #f5f5f5;
}

.filter-operator-option.active {
  background-color: #e3f2fd;
  color: #1976d2;
  font-weight: 500;
}

.filter-operator-option.active::before {
  content: '✓ ';
  margin-right: 6px;
}

/* Drag and Drop Styles */
.tanstack-grid th {
  position: relative;
  transition: background-color 0.2s;
}

.tanstack-grid th.dragging-column {
  opacity: 0.6;
  background-color: #e3f2fd;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.tanstack-grid th.drag-over-column {
  background-color: #f3e5f5;
  border-left: 3px solid #1976d2;
  transform: translateX(2px);
}

.tanstack-grid th:hover {
  background-color: #eeeeee;
}

.grid-header-content {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  cursor: grab;
  width: 100%;
  padding: 2px;
  border-radius: 3px;
  transition: all 0.2s;
}

.grid-header-content:hover {
  background-color: rgba(25, 118, 210, 0.05);
}

.grid-header-content:active {
  cursor: grabbing;
}

.drag-handle {
  color: #999;
  font-size: 14px;
  user-select: none;
  padding: 4px 2px;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
  cursor: grab;
  border-radius: 2px;
  transition: all 0.2s;
}

.drag-handle:hover {
  color: #1976d2;
  background-color: rgba(25, 118, 210, 0.1);
}

/* Column Resizing */
.resizer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: rgba(0, 0, 0, 0.1);
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}

.resizer:hover,
.resizer.isResizing {
  opacity: 1;
  background: #1976d2;
}

.tanstack-grid th:hover .resizer {
  opacity: 0.5;
}
/*----------------------------
END TANSTACK TABLE STYLES
----------------------------*/

/*----------------------------
HOME REDESIGN
----------------------------*/

.home-section-with-video-bg {
  position: relative;
  overflow: hidden;
}

.why-disgenet-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  pointer-events: none;
}

.why-disgenet-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(245, 245, 245) 0%,
    rgba(255, 255, 255, 0.78) 20%,
    rgba(255, 255, 255, 0.78) 80%,
    rgba(240, 240, 240) 100%
  );
  pointer-events: none;
}

.home-section-with-video-bg .home-section-inner {
  position: relative;
  z-index: 2;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}

.home-header-bar {
  padding: 0.75rem 2.5rem;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .home-header-bar {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .home-header-bar {
    padding: 0.5rem 1rem;
  }

  /* Navbar mobile: dropdown visible sobre el hero y bien usable */
  .home-header-bar .menuNav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  .home-header-bar nav.dropdown-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 92vw;
    max-width: 400px;
    height: 100vh;
    min-height: 85vh;
    margin: 0;
    padding: 4rem 0 2rem;
  }

  .home-header-bar .dropdown-menu.open {
    z-index: 1001;
    display: block;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    padding: 4rem 0 2rem;
  }

  .home-header-bar .dropdown-menu.open .slide {
    flex-direction: column;
    align-items: stretch;
  }

  .home-header-bar .dropdown-menu.open .slide li {
    padding: 0.6rem 1.25rem !important;
  }

  .home-header-bar .dropdown-menu.open .slide li a {
    justify-content: flex-start;
  }

  .home-header-bar .hamburger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
  }
}

.home-header-bar .header-content {
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.home-header-bar:not(.home-header-bar-scrolled) .logo,
.home-header-bar:not(.home-header-bar-scrolled) a,
.home-header-bar:not(.home-header-bar-scrolled) .custom-link,
.home-header-bar:not(.home-header-bar-scrolled) .nav-icon,
.home-header-bar:not(.home-header-bar-scrolled) .home-nav-desktop-list a {
  color: var(--navy-blue-gray-color) !important;
}

.home-header-bar:not(.home-header-bar-scrolled) .home-nav-desktop-signup {
  background: var(--pink-color);
  color: #fff !important;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.home-header-bar-scrolled .home-nav-desktop-list a {
  color: var(--navy-blue-gray-color) !important;
}

.home-header-bar-scrolled .home-nav-desktop-signup {
  background: var(--pink-color);
  color: #fff !important;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.home-nav-wrapper {
  display: flex;
  align-items: center;
}

.home-nav-desktop {
  display: none;
}

@media (min-width: 769px) {
  .home-nav-desktop {
    display: flex;
    align-items: center;
  }

  .home-nav-desktop-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .home-nav-desktop-list li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: opacity 0.2s;
  }

  .home-nav-desktop-list li a:hover {
    opacity: 0.9;
  }

  .home-nav-desktop-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .home-nav-desktop-login {
    color: inherit !important;
    font-weight: 500;
  }

  .home-nav-mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .home-nav-desktop {
    display: none !important;
  }
}

.home-header-bar:not(.home-header-bar-scrolled) .custom-link:hover,
.home-header-bar:not(.home-header-bar-scrolled) a:hover {
  color: var(--pink-color) !important;
}

.home-hero-content {
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-height: 0;
}

.home-hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-top {
  flex-shrink: 0;
}

.home-hero-center {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
  padding-top: 0.75rem;
}

.home-hero-content .home-stats-wrapper {
  flex-shrink: 0;
  margin-top: auto;
  padding-bottom: 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.home-hero-content-profile {
  width: 100%;
  max-width: 70vw;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero-content-support {
  width: 100%;
  max-width: 70vw;
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero-section {
  width: 100%;
}

.home-hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-color);
  margin-bottom: 1rem;
}

.home-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.home-hero-highlight {
  color: rgb(230, 100, 180);
}

.home-hero-subtitle {
  font-size: 1.15rem;
  color: var(--blue-color);
  margin-bottom: 1.5rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.home-hero-btn-explore {
  padding: 0.6rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.home-hero-btn-view-plans {
  padding: 0.6rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid var(--blue-color);
  background: transparent;
  color: var(--blue-color);
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  margin: 10px;
}

.home-hero-btn-view-plans:hover {
  background: var(--blue-color);
  color: #fff;
}

.home-hero-search-wrap {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
}

.home-hero-search .search-input input {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--navy-blue-gray-color);
}

.home-hero-discover {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.home-hero-link {
  color: var(--pink-color);
  font-weight: 600;
  text-decoration: underline;
}

.home-hero-link:hover {
  color: rgb(220, 80, 160);
}

/* Stats section */

.home-stats-container {
  width: 60vw;
  max-width: 60vw;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  padding: 1rem 4rem;
  padding-inline: 4rem;
  box-sizing: border-box;
}

.home-stats-container .swiper {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.home-stats-container .swiper-slide {
  min-height: 120px;
  display: flex;
  align-items: center;
}

.home-stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}

.home-stats-overlap {
  position: relative;
}

@media (max-width: 768px) {
  .home-stats-overlap {
    z-index: 0;
  }
}

.home-stats-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.home-stats-card-row {
  flex-direction: row;
  gap: 1rem;
  text-align: center;
}

.home-stats-card:hover {
  box-shadow: none;
}

.home-stats-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-stats-icon-wrap img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .home-stats-container .swiper-slide {
    min-height: 100px;
  }

  .home-stats-overlap {
    margin-top: 0;
  }

  .home-stats-container {
    width: 80%;
    max-width: 80%;
  }
}

@media (max-width: 1024px) {
  .home-stats-container .swiper-slide {
    min-height: 100px;
  }

  .home-stats-overlap {
    margin-top: 0;
  }

  .home-stats-container {
    width: 80%;
    max-width: 80%;
  }
}

@media (max-width: 780px) {
  .home-stats-container {
    padding: 1rem;
  }

  .home-stats-icon-wrap {
    width: 2rem;
    height: 2rem;
  }

  .home-stats-icon-wrap img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
  }
}

.home-stats-text {
  min-width: 0;
}

.home-stats-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 0.25rem;
}

.home-stats-label {
  font-size: 0.9rem;
  color: var(--tertiary-gray-color);
}

.home-stats-image-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Apply Trial Page: hero de fondo en toda la vista */
.apply-trial-page {
  position: relative;
  min-height: 100vh;
}

.apply-trial-hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.apply-trial-hero-bg .hero-static-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apply-trial-hero-bg .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.64) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.63) 80%,
    rgba(245, 245, 245, 1) 100%
  );
  pointer-events: none;
}

.apply-trial-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .apply-trial-hero-col-height {
    height: calc(100vh - 95px);
    margin: 1rem 1rem 3rem 0
  }
}

@media (max-width: 1024px) {
  .home-hero-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .home-hero-content {
    padding: 1rem;
    padding-top: 5rem;
    min-height: 100%;
    justify-content: center;
  }

  .home-hero-title {
    font-size: 1.5rem;
  }

  .home-hero-subtitle {
    font-size: 1rem;
  }

  .btn-home-hero {
    line-height: 2px;
    height: 50px;
    width: 50%;
    font-size: 1rem !important;
    font-weight: 500 !important;
  }

  .home-hero-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
  }

  .home-hero-content-profile {
    max-width: 100vw;
  }
}

/* Home sections (knowledge, precision, cta) */
.home-section {
  padding: 6rem 15rem;
}

@media (max-width: 1400px) {
  .home-section {
    padding: 5rem 8rem;
  }
}

@media (max-width: 1200px) {
  .home-section {
    padding: 4rem 4rem;
  }
}

@media (max-width: 1024px) {
  .home-section {
    padding: 3.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .home-section {
    padding: 2.5rem 1rem;
  }

  .home-section-title {
    font-size: 1.5rem;
  }

  .home-section-subtitle {
    margin-bottom: 1.5rem;
  }
}

.home-section-light {
  background: #f0f2f5;
}

.home-section-dark {
  background: linear-gradient(180deg, rgb(15, 25, 65) 0%, rgb(30, 40, 90) 100%);
  color: #fff;
}

.home-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.home-section-label-pink {
  background: var(--pink-color);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.home-section-label-light {
  color: var(--pink-color);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.home-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-blue-gray-color);
  margin-bottom: 1rem;
}

.home-section-title-center {
  text-align: center;
}

.home-section-title-light {
  color: #fff;
}

.home-section-subtitle {
  font-size: 1rem;
  color: var(--tertiary-gray-color);
  margin-bottom: 2rem;
  max-width: 700px;
}

.home-section-subtitle-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.home-cards-grid-precision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.home-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}

.home-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.home-card-elevated {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.home-card-elevated:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.home-section-muted {
  background: rgba(0, 0, 0, 0.02);
}

.home-card-usecase {
  position: relative;
}

.home-card-usecase-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.home-card-icon-accent {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-card-usecase-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink-color);
}

.home-card-heroicon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pink-color);
}

.home-card-heroicon-cyan {
  color: var(--pink-color);
}

.home-card-pink-icon .home-card-icon {
  color: var(--pink-color);
}

.home-card-pink-icon .home-card-heroicon,
.home-card-usecase-header .home-card-heroicon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.home-card-cyan-icon .home-card-icon {
  color: #0d9488;
}

.home-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 0.5rem;
}

.home-card-description {
  font-size: 0.9rem;
  color: var(--tertiary-gray-color);
  line-height: 1.5;
  margin: 0;
}

/* Testimonials dark section */
.home-testimonials .home-section-title {
  margin-bottom: 2rem;
}

.home-testimony-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.home-testimony-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.home-testimony-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.home-testimony-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--pink-color);
  margin-bottom: 1rem;
}

.home-testimony-card-elevated {
  border-radius: 1rem;
}

.home-testimony-quote {
  color: var(--pink-color);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
}

.home-testimony-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.home-testimony-author {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.25rem;
}

.home-testimony-author strong {
  color: #fff;
}

.home-testimony-article {
  color: var(--pink-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-testimony-article:hover {
  color: rgb(220, 80, 160);
}

/* Home testimony slider (variant cards) */
.home-testimony-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
}

.home-testimony-slider-track {
  min-height: 200px;
}

.home-testimony-slider-card {
  width: 100%;
}

.home-testimony-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.home-testimony-slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--pink-color);
}

.home-testimony-slider-prev {
  left: 0;
}

.home-testimony-slider-next {
  right: 0;
}

.home-testimony-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.home-testimony-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.home-testimony-slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.home-testimony-slider-dot.active {
  background: var(--pink-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .home-testimony-slider {
    padding: 0 2.5rem;
  }

  .home-testimony-slider-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
}

/* CTA section */
.home-cta-section .home-section-title {
  margin-bottom: 0.5rem;
}

.home-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.home-cta-subtitle {
  font-size: 1rem;
  color: var(--tertiary-gray-color);
  margin-bottom: 1.5rem;
}

.home-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-cta-link {
  color: var(--pink-color);
  font-weight: 600;
}

.home-cta-link:hover {
  text-decoration: underline;
  color: var(--pink-color);
}

.home-cta-btn-outline {
  padding: 0.6rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid var(--primary-gray-color);
  background: #fff;
  color: var(--navy-blue-gray-color);
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.home-cta-btn-outline:hover {
  background: var(--pink-color);
  color: #fff;
  border-color: var(--pink-color);
}

.home-cta-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.home-cta-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.home-cta-card-academic .home-cta-card-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(190, 0, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.home-cta-card-heroicon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pink-color);
}

.home-cta-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.home-cta-card-header .home-card-title {
  margin-bottom: 0;
}

.home-cta-card-btn {
  margin-top: 1rem;
}

.home-cta-card-btn-outline {
  background: #fff;
  color: var(--navy-blue-gray-color);
  font-weight: 600;
}

.home-cta-card-btn-outline:hover {
  background: var(--pink-color);
  color: #fff;
  border-color: var(--pink-color);
}

/* Blog section label and title */
.home-blog-section {
  padding-top: 1rem;
}

.home-blog-label {
  display: inline-block;
  background: var(--pink-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-blog-title {
  margin-bottom: 1.5rem;
}

.blog-home-read-more {
  color: var(--pink-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.blog-home-read-more:hover {
  text-decoration: underline;
}

.blog-home-cards-elevated .blog-home-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-home-card-modern .blog-home-card-header {
  height: 19rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-color) 0%, var(--blue-color) 100%);
  opacity: 0.9;
}

.blog-home-card-modern .blog-home-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-home-card-meta {
  font-size: 0.75rem;
  color: var(--secondary-gray-color);
  margin-top: 0.5rem;
}

.blog-home-card-meta .post-info {
  margin: 0;
}

/* Home footer */
.home-footer {
  background: var(--navy-blue-gray-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.home-footer-container {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.home-footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.home-footer-logo-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-footer-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.home-footer-social {
  display: flex;
  gap: 0.75rem;
}

.home-footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.home-footer-social a:hover {
  background: var(--pink-color);
}

.home-footer-social-icon {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

.home-footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.home-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer-links li {
  margin-bottom: 0.5rem;
}

.home-footer-links a {
  font-size: 0.875rem;
  color: inherit;
  transition: color 0.2s;
}

.home-footer-links a:hover {
  color: #fff;
}

.home-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .home-cards-grid,
  .home-cards-grid-precision {
    grid-template-columns: 1fr;
  }

  .home-cta-grid {
    grid-template-columns: 1fr;
  }

  .home-testimony-cards {
    grid-template-columns: 1fr;
  }

  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* .home-stats-card-row {
    gap: 0.2rem;
  } */

  .home-stats-value {
    font-size: 1.15rem;
  }

  .home-stats-label {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .home-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-footer-desc {
    text-align: center;
  }

  .home-main-content {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .home-main-content .container.home-features {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .home-section {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Scroll reveal: transiciones al hacer scroll */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.scroll-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger opcional para grids (los hijos se revelan con un ligero retraso) */
.scroll-reveal-stagger .home-cards-grid > *,
.scroll-reveal-stagger .home-cards-grid-precision > *,
.scroll-reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid > *:nth-child(1),
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid-precision > *:nth-child(1),
.scroll-reveal-stagger.scroll-reveal-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid > *:nth-child(2),
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid-precision > *:nth-child(2),
.scroll-reveal-stagger.scroll-reveal-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid > *:nth-child(3),
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid-precision > *:nth-child(3),
.scroll-reveal-stagger.scroll-reveal-visible > *:nth-child(3) {
  transition-delay: 0.15s;
}
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid > *:nth-child(4),
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid-precision > *:nth-child(4),
.scroll-reveal-stagger.scroll-reveal-visible > *:nth-child(4) {
  transition-delay: 0.2s;
}

.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid > *,
.scroll-reveal-stagger.scroll-reveal-visible .home-cards-grid-precision > *,
.scroll-reveal-stagger.scroll-reveal-visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal-stagger .home-cards-grid > *,
  .scroll-reveal-stagger .home-cards-grid-precision > *,
  .scroll-reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* User dropdown (desktop): Profile Data, Logout, user data */
.nav-user-dropdown-wrap {
  position: relative;
}

.nav-user-dropdown-trigger {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: inherit;
}

.nav-user-dropdown-trigger:hover {
  opacity: 0.9;
}

.nav-user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-user-dropdown-info {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--tertiary-gray-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  word-break: break-all;
}

.nav-user-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  color: var(--navy-blue-gray-color);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.15s;
}

.nav-user-dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-user-dropdown-logout {
  color: var(--pink-color);
  font-weight: 500;
}

/* OR Divider */
#or {
  position: relative;
  width: 100%;
  height: 50px;

  line-height: 50px;
  text-align: center;
}

#or::before,
#or::after {
  position: absolute;
  width: 45%;
  height: 1px;

  top: 24px;

  background-color: #aaa;

  content: '';
}

#or::before {
  left: 0;
}

#or::after {
  right: 0;
}

.divider {
  border-bottom: 1px solid #aaa;
}

.locked-overlay {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1px);
}

/* MEDIA QUERIES */
@media (min-width: 768px) and (max-width: 992px) {
  .react-dropdown-wrapper {
    width: 90vw;
  }

  .react-dropdown-container {
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
  }

  .home-features {
    padding-left: 0;
    padding-right: 0;
    margin-top: 2rem;
  }

  .search-results-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .Cabtabla {
    max-width: 98vw;
  }

  .tanstack-grid-container {
    width: 98vw;
  }
}

.home-blog-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-width: 30rem;
  margin: 0 auto;
}

.home-blog-loader-text {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-color);
  opacity: 0.8;
} 

.home-blog-loader-img {
  width: 15rem;
  height: auto;
  transform: translateX(28%);
}

#search-items-query-dropdown-panel {
  min-width: 40rem;
  max-width: 40rem;
}

@media (max-width: 768px) {
  #search-items-query-dropdown-panel {
    min-width: 90vw;
    max-width: 90vw;
    position: fixed;
    top: 11rem;
    min-height: auto;
    max-height: auto;
    overflow-y: scroll;
    right: .5rem;
  }
}

.tag-panel{
  border: var(--pink-color) 1px solid!important;
  background: rgb(190 0 128 / 6%);
}


