/* selectores */

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
  background: hsl(0, 0%, 100%);
}

body a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: hsl(205, 100%, 35%);
  text-decoration: none;
  line-height: 25px;
  letter-spacing: 0.1px;
}

body a:hover {
  text-decoration: underline;
  color: hsl(205, 100%, 35%);
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: rgb(51, 51, 51);
  font-size: 2.25em;
  line-height: 42px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  margin-top: 0;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: rgb(51, 51, 51);
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: rgb(51, 51, 51);
}

h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.25px;
  color: rgb(51, 51, 51);
}

h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.5px;
  color: rgb(51, 51, 51);
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px !important;
  color: rgb(51, 51, 51);
}

ul {
  padding-left: 18px;
  margin-top: 25px;
}

ul li {
  font-family: "Poppins", sans-serif;
  color: rgb(51, 51, 51);
  font-weight: 400;
  font-size: 1em;
  line-height: 25px;
  letter-spacing: 0.1px;
}

ol li {
  font-family: "Poppins", sans-serif;
  color: rgb(51, 51, 51);
  font-weight: 400;
  font-size: 1em;
  line-height: 25px;
  letter-spacing: 0.25px;
}

strong {
  font-weight: 600;
}

input:focus {
  outline: -webkit-focus-ring-color auto 0px;
}

.btn-primary {
  background-color: transparent;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}

strong {
  font-weight: 600;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

.form-control:focus {
  border-color: hsl(210, 26%, 91%);
  box-shadow: 0 0 0 0rem rgb(0 0 0);
}

.ds-none-e {
  display: none;
}

.visibleMobile {
  display: none;
}

/* fin selectores */

/* Generales */

.linea_1a {
  background-color: rgb(51, 51, 51, 0.1);
  width: 100%;
  height: 1px;
}

.linea_b2 {
  background-color: rgb(51, 51, 51, 0.1);
  width: 1px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 12px;
}

.white-text {
  color: hsl(0, 0%, 100%) !important;
}

.img_text-vert-center {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.img_vert-center {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mrgbtn {
  margin-bottom: 20px;
}

/* Fin Generales */

/* separadores de espacios */

.separador-a {
  padding: 5px;
}

.separador-c {
  padding: 10px;
}

.separador-d {
  padding: 8px;
}

.separador-k {
  padding: 20px;
}

.separador-h {
  padding: 15px;
}

.separador-r {
  padding: 30px;
}

.separador-m {
  padding: 40px;
}

.separador-n {
  padding: 50px;
}

.separador-x {
  padding: 60px;
}

/* Fin separadores de espacios */

/* Tooltip */

.tooltipPro {
  position: absolute;
  top: 20px;
  right: 20px;
}

.tooltipPro [tooltip] {
  position: relative;
  background: rgb(255, 255, 255) url(../images/icoTooltip.svg) no-repeat center;
  background-size: 23px;
  color: transparent;
}

.tooltipPro [tooltip]::before,
.tooltipPro [tooltip]::after {
  text-transform: none;
  font-size: 0.9em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

.tooltipPro [tooltip]::before {
  content: "";
  border: 5px solid transparent;
  z-index: 1001;
}

.tooltipPro [tooltip]::after {
  content: attr(tooltip);
  font-family: Helvetica, sans-serif;
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;
}

.tooltipPro [tooltip]:hover::before,
.tooltipPro [tooltip]:hover::after {
  display: block;
}

.tooltipPro [tooltip=""]::before,
.tooltipPro [tooltip=""]::after {
  display: none !important;
}

.tooltipPro [tooltip]:not([flow])::before,
.tooltipPro [tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}

.tooltipPro [tooltip]:not([flow])::after,
.tooltipPro [tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}

.tooltipPro [tooltip]:not([flow])::before,
.tooltipPro [tooltip]:not([flow])::after,
.tooltipPro [tooltip][flow^="up"]::before,
.tooltipPro [tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

.tooltipPro [tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

.tooltipPro [tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}

.tooltipPro [tooltip][flow^="down"]::before,
.tooltipPro [tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

.tooltipPro [tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

.tooltipPro [tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

.tooltipPro [tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

.tooltipPro [tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}

.tooltipPro [tooltip]:not([flow]):hover::before,
.tooltipPro [tooltip]:not([flow]):hover::after,
.tooltipPro [tooltip][flow^="up"]:hover::before,
.tooltipPro [tooltip][flow^="up"]:hover::after,
.tooltipPro [tooltip][flow^="down"]:hover::before,
.tooltipPro [tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

.tooltipPro [tooltip][flow^="left"]:hover::before,
.tooltipPro [tooltip][flow^="left"]:hover::after,
.tooltipPro [tooltip][flow^="right"]:hover::before,
.tooltipPro [tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

/* Fin Tooltip */

/* Miga de pan */

.miga-de-pan .breadcrumb {
  background-color: transparent;
  position: absolute;
  top: 10px;
  left: 30px;
}

.miga-de-pan .breadcrumb a {
  color: hsl(0, 0%, 100%);
  font-weight: 300;
  font-size: 1rem;
}

.miga-de-pan .breadcrumb-item.active {
  color: hsl(0, 0%, 100%);
  font-weight: 400;
}

.miga-de-pan .breadcrumb-item + .breadcrumb-item::before {
  color: hsl(0, 0%, 100%);
}

/* FIN Miga de pan */

/* cabezote */

.cabezote {
  width: 100%;
  height: 70px;
  background-color: hsl(0, 0%, 100%);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10;
  filter: drop-shadow(0px 3px 13px hsl(210, 26%, 91%));
}

.cabezote img {
  width: 150px;
  position: absolute;
  left: 30px;
  top: 11px;
}

.acceso-prs_emp {
  position: absolute;
  left: 15%;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.acceso-prs_emp a.active {
  border-bottom: 6px solid #0067b1;
  padding-bottom: 21px;
}

.acceso-prs_emp .dat_personas {
  margin-right: 20px;
}

.acceso-prs_emp a:hover {
  text-decoration: none;
}

.btn_identificate {
  position: absolute;
  right: 9.375rem;
  top: 0.688rem;
}

.btn_identificate .cta {
  height: 48px;
  background-color: hsl(205, 100%, 35%);
  border-radius: 30px;
  border-color: hsl(205, 100%, 35%);
  padding: 11px 5px;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 100%);
  width: 155px;
}

.btn_identificate .cta:hover {
  background-color: transparent;
  color: hsl(205, 100%, 35%);
  border-color: 1px solid hsl(205, 100%, 35%);
  text-decoration: none;
}

.btn_identificate .cta:active {
  background-color: transparent;
  color: hsl(205, 100%, 35%);
  border-color: 1px solid hsl(205, 100%, 35%);
  text-decoration: none;
}

.usuarioBeneficios {
  position: absolute;
  right: 9.375rem;
  top: 0.6rem;
}

.usuarioBeneficios .beneficiosUsuario {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.usuarioBeneficios .beneficiosUsuario .textousuario .title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1rem;
  text-align: right;
  margin-bottom: 0;
}

.usuarioBeneficios .beneficiosUsuario .textousuario .text {
  font-weight: 400;
  font-size: 0.75rem;
  margin-top: -4px;
  text-align: right;
  margin-bottom: 3px;
  word-break: break-all;
  line-height: 13px !important;
  width: 190px;
}

.usuarioBeneficios .beneficiosUsuario .usuario span {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 46%);
  background-color: hsl(210, 26%, 91%);
  padding: 10px;
  border-radius: 40px;
}

.search_Pro {
  right: 22rem !important;
}

.search {
  width: auto;
  position: absolute;
  top: 1.5rem;
  right: 31rem;
  cursor: pointer;
}

.search .input-group > .form-control,
.input-group > .form-select {
  border: none;
}

.search .input-group-text {
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 100%);
  background-image: url(../images/ico-search.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.search .input-group {
  width: 100%;
}

.espacio_interna {
  padding-top: 70px;
}

/* Fin cabezote */

/* ------ PAGINA HOME TUS BENEFICIOS ------ */

/* slide */

/* slide */

.info-slide-home {
  /* position: absolute;
  left: 170px;
  top: 40%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); */
  position: absolute;
  left: 30%;
  top: 55%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

#divslideritems .info-slide-home {
  top: 50% !important;
}

#divslideritems .info-slide-home h1 {
  font-size: 2rem !important;
  line-height: 35px !important;
}

.boxbanner_one {
  width: 529px;
  height: 234px;
}

.slide_home-one {
  position: relative;
}

.slide_home-one .carousel-indicators .active {
  background-color: hsl(0, 0%, 100%);
  border-radius: 20px;
  width: 18px;
  height: 6px;
}

.slide_home-one .carousel-indicators li {
  background-color: hsl(0, 0%, 84%);
  border-radius: 20px;
  width: 6px;
  height: 6px;
}

.slide_home-one .carousel-indicators {
  align-items: center;
}

.slide_home-one .carousel-control-prev-icon {
  background-image: url(../images/flecha-next.svg);
  background-size: 12px;
}

.slide_home-one .carousel-control-next-icon {
  background-image: url(../images/flecha-prev.svg);
  background-size: 12px;
}

.slide_home-one .carousel-control-prev-icon,
.slide_home-one .carousel-control-next-icon {
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0px 3px 13px rgba(51, 51, 51, 0.1);
  -moz-border-radius: 77px;
  -webkit-border-radius: 77px;
  -o-border-radius: 77px;
  border-radius: 77px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  padding: initial;
  width: 48px;
  height: 48px;
}

.slide_home-one .carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  background-color: hsl(0, 0%, 84%);
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  border-top: none;
  border-bottom: none;
  opacity: 1;
}

.slide_home-one .carousel-indicators .active {
  width: 18px;
  height: 6px;
  background-color: hsl(205, 100%, 35%);
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}

.slide_home-one .carousel .slide {
  position: relative;
}

/* fin slide */

/* Caja slide info */

.box_slide-text-one {
  background: hsl(0, 0%, 100%, 0.95);
  padding: 2.5rem 2.188rem;
  position: relative;
}

.slide_home-one p {
  font-size: 0.875rem;
  line-height: 18px !important;
  margin-bottom: 15px;
}

.slide_home-one .cta {
  height: 48px;
  background-color: hsl(205, 100%, 35%);
  border-radius: 30px;
  border-color: hsl(205, 100%, 35%);
  padding: 0.5rem 4rem;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 100%);
}

.slide_home-one .cta:hover {
  background-color: transparent;
  color: hsl(205, 100%, 35%);
  border-color: 1px solid hsl(205, 100%, 35%);
  text-decoration: none;
}

.slide_home-one .cta:active {
  background-color: transparent;
  color: hsl(205, 100%, 35%);
  border-color: 1px solid hsl(205, 100%, 35%);
}

.franja_silde-one {
  width: 6px;
  background: hsl(49, 100%, 50%);
  position: absolute;
  left: 0px;
  top: 18%;
  height: 151.01px;
}

/* Fin Caja slide info */

/* fin slide */

.box_img-one {
  width: 100%;
  background-color: rgba(242, 120, 171, 0.25);
  position: relative;
  height: 266px;
}

.box_img-one img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.btn_conocenos .cta {
  height: 48px;
  background-color: hsl(205, 100%, 35%);
  border-radius: 30px;
  border-color: hsl(205, 100%, 35%);
  padding: 0.5rem 4rem;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 100%);
}

.btn_conocenos .cta:hover,
.btn_conocenos .cta:active,
.btn_conocenos .cta:focus {
  background-color: transparent;
  color: hsl(205, 100%, 35%);
  border-color: 1px solid hsl(205, 100%, 35%);
  text-decoration: none;
}

.titleTexlink {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.titleTexlink h2 {
  margin-bottom: 0;
}

.titleTexlink .texLink {
  background: rgb(255, 255, 255) url(../images/ArrowRight.svg) no-repeat right
    2px;
  background-size: 22px;
  padding-right: 1.875rem;
}

/* cards beneficios one */

.cards-beneficios-one a:hover {
  text-decoration: none;
}

.cards-beneficios-one .card {
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(210, 26%, 91%);
  box-sizing: border-box;
  border-radius: 3px;
  position: relative;
  width: 100%;
  min-height: 560px;
}

.cards-beneficios-one .card:hover {
  box-shadow: 0px 3px 13px hsl(210, 26%, 91%);
}

.cards-beneficios-one .card-body {
  padding: 1.875rem 1.25rem;
}

.cards-beneficios-one .card-sub-title_one {
  background: hsl(335, 85%, 47%);
  display: inline-block;
  border: 1px solid hsl(335, 85%, 47%);
  box-sizing: border-box;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px;
  letter-spacing: 2px;
  color: hsl(0, 0%, 100%);
  padding: 0.188rem 0.938rem;
}

.cards-beneficios-one .card-sub-title_two {
  border: 1px solid hsl(0, 0%, 46%);
  display: inline-block;
  box-sizing: border-box;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px;
  letter-spacing: 2px;
  color: hsl(0, 0%, 46%);
  padding: 0.188rem 0.938rem;
}

.cards-beneficios-one .card-title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: rgb(51, 51, 51);
  margin-bottom: 22px;
}

.cards-beneficios-one .card-text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px !important;
  color: hsl(0, 0%, 46%);
  margin-bottom: 2px;
}

.cards-beneficios-one .card-title-two {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: rgb(51, 51, 51);
  margin-bottom: 45px;
}

.cards-beneficios-one .text-link {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: hsl(205, 100%, 35%);
  position: absolute;
  bottom: 30px;
  background: url(../images/arrow-saber.svg) no-repeat center right;
  padding-right: 1.75rem;
}

/* Dots */

.cards-beneficios-one .owl-carousel button.owl-dot {
  position: relative;
  top: 20px;
  vertical-align: text-top;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  width: 18px;
  height: 6px;
  background: hsl(205, 100%, 35%);
}

.owl-theme .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  background: hsl(0, 0%, 84%);
}

.owl-theme .owl-nav.disabled + .owl-dots {
  position: relative;
  top: 20px;
}

/* .owl-theme .owl-nav {
    margin-top: -25px;
} */

/* Fin Dots */

.cards-beneficios-one .owl-next {
  display: block;
  width: 48px;
  height: 48px;
  background: hsl(0, 0%, 100%) ;
  border-radius: 77px ;
  border: none ;
  font-size: 0px ;
  right: -1.45rem;
  background-image: url(../images/flecha-next.svg) ;
  background-size: 10px;
  background-position: center ;
  background-repeat: no-repeat ;
  filter: drop-shadow(0px 3px 13px hsl(210, 26%, 91%));
}

.cards-beneficios-one .owl-prev {
  display: block;
  width: 48px;
  height: 48px;
  background: hsl(0, 0%, 100%) !important;
  border-radius: 77px !important;
  border: none !important;
  font-size: 0px !important;
  left: -1.45rem;
  background-image: url(../images/flecha-prev.svg) !important;
  background-size: 10px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: drop-shadow(0px 3px 13px hsl(210, 26%, 91%));
}

.cards-beneficios-one.owl-nav {
  top: 45%;
}

/* fin cards beneficios one */

/* Fin cards Tus beneficios Home */

.cardTusBenficiosHome a:hover {
  text-decoration: none;
}

.cardTusBenficiosHome .card {
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(210, 26%, 91%);
  box-sizing: border-box;
  border-radius: 3px;
  position: relative;
  width: 100%;
  min-height: 550px;
}

.cardTusBenficiosHome .tagPro {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgb(222, 18, 103);
  padding: 0.2rem 1.2rem;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.25px;
  color: rgb(255, 255, 255);
}

.cardTusBenficiosHome .spacePaddingOne {
  padding: 20px 60px;
}

.cardTusBenficiosHome .card:hover {
  box-shadow: 0px 3px 13px hsl(210, 26%, 91%);
}

.cardTusBenficiosHome .card-body {
  padding: 0.5rem 2rem 1rem 2rem;
}

.cardTusBenficiosHome .tag {
  background-color: transparent;
  border: 1px solid rgb(117, 117, 117);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 0.02rem 2.188rem;
  display: table;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgb(117, 117, 117);
  margin-bottom: 10px;
}

.cardTusBenficiosHome .card-title {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: rgb(51, 51, 51);
  margin-bottom: 15px;
}

.cardTusBenficiosHome .card-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px !important;
  color: hsl(0, 0%, 18%);
  margin-bottom: 15px;
}

.cardTusBenficiosHome .text-link {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: hsl(205, 100%, 35%);
  position: absolute;
  bottom: 30px;
}

.cardTusBenficiosHome .textLink {
  position: absolute;
  bottom: 20px;
}

/* .owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: block;
} */

.cardTusBenficiosHome .owl-nav button {
  background-color: rgb(0, 103, 177) !important;
  color: transparent !important;
  width: 48px;
  height: 48px;
  border-radius: 25px !important;
  line-height: 0 !important;
  margin: 0 !important;
  font-size: 0 !important;
}

.cardTusBenficiosHome .owl-nav {
  top: 45%;
}

.cardTusBenficiosHome .owl-prev {
  left: -1.45rem;
  background: rgb(255, 255, 255) url(../images/arrowOne.svg) no-repeat center !important;
  background-size: 10px !important;
}

.cardTusBenficiosHome .owl-next {
  right: -1.45rem;
  background: rgb(255, 255, 255) url(../images/arrrowTwo.svg) no-repeat center !important;
  background-size: 10px !important;
}

.cardTusBenficiosHome .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
}

/* Fin cards Tus beneficios Home */

.box_oferta {
  height: 221px;
  background: hsl(220, 43%, 99%);
  border-radius: 3px;
  padding: 1.875rem;
}

.box_oferta img {
  width: 30px;
  margin-bottom: 10px;
}

.box_oferta a {
  font-weight: normal;
  font-size: 1rem;
  line-height: 25px;
  color: hsl(205, 100%, 35%);
}

.box_oferta a:hover {
  color: hsl(205, 100%, 35%);
  text-decoration-line: underline;
}

.help .content-item .item .text a {
  color: hsl(205, 100%, 35%) !important;
}

/* ------ FIN PAGINA HOME TUS BENEFICIOS ------ */

/* ------ AGINA INTERNA TUS BENEFICIOS ------ */

/* SLIDE */

.bannerInternaTusBeneficios {
  position: relative;
}

/* Caja slide info */

.box_slide-text-one {
  background: hsl(0, 0%, 100%, 0.95);
  padding: 2.5rem 2.188rem;
  position: relative;
}

.bannerInternaTusBeneficios p {
  font-size: 0.875rem;
  line-height: 18px !important;
  margin-bottom: 15px;
}

.bannerInternaTusBeneficios .cta {
  height: 48px;
  background-color: hsl(205, 100%, 35%);
  border-radius: 30px;
  border-color: hsl(205, 100%, 35%);
  padding: 0.5rem 4rem;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 100%);
}

.bannerInternaTusBeneficios .cta:hover {
  background-color: transparent;
  color: hsl(205, 100%, 35%);
  border-color: 1px solid hsl(205, 100%, 35%);
  text-decoration: none;
}

.bannerInternaTusBeneficios .cta:active {
  background-color: transparent;
  color: hsl(205, 100%, 35%);
  border-color: 1px solid hsl(205, 100%, 35%);
}

.bannerInternaTusBeneficios .franja_silde-one {
  width: 6px;
  background: hsl(49, 100%, 50%);
  position: absolute;
  left: 0px;
  top: 16%;
  height: 130px;
}

/* Fin Caja slide info */

/* FIN SLIDE */

.seccionesPro .seccion h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 25px;
}

.seccionesPro .seccion ul {
  padding-left: 2.188rem;
  margin-top: 5px;
  margin-bottom: 30px;
}

.seccionesPro .seccion ul li {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
}

.boxContacto {
  width: 100%;
  height: auto;
  background: rgb(229, 246, 253);
  padding: 2.5rem 1.875rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.boxContacto h2 {
  margin-bottom: 25px;
}

.boxContacto .infoTexImg {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}

.boxContacto .infoTexImg img {
  width: 18px;
}

.boxContacto .infoTexImg p {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 20px !important;
}

.boxContacto .infoTexImg span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  word-break: break-all;
}

.boxContacto .infoTexImg span a {
  font-weight: 400;
  color: rgb(51, 51, 51);
  font-size: 1rem;
  line-height: 25px;
}

.galeria .owl-next {
  display: block;
  width: 48px;
  height: 48px;
  background: hsl(0, 0%, 100%) !important;
  border-radius: 77px !important;
  border: none !important;
  font-size: 0px !important;
  right: 1.45rem;
  background-image: url(../images/flecha-next.svg) !important;
  background-size: 10px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: drop-shadow(0px 3px 13px hsl(210, 26%, 91%));
}

.galeria .owl-prev {
  display: block;
  width: 48px;
  height: 48px;
  background: hsl(0, 0%, 100%) !important;
  border-radius: 77px !important;
  border: none !important;
  font-size: 0px !important;
  left: 1.45rem;
  background-image: url(../images/flecha-prev.svg) !important;
  background-size: 10px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: drop-shadow(0px 3px 13px hsl(210, 26%, 91%));
}

.galeria .owl-carousel button.owl-dot {
  position: relative;
  top: 20px;
  vertical-align: text-top;
}

/* ACORDEON */

.contenido-acordn-1 {
  margin-top: -11px;
}

.accordion {
  width: 100%;
  margin: 0 auto;
}

.accordion-item {
  position: relative;
  border: 1px solid hsl(0, 0%, 100%);
}

.accordion-item:first-child {
  position: relative;
  border-top: 1px solid rgb(51, 51, 51, 0.1);
  border-bottom: 1px solid rgb(51, 51, 51, 0.1);
}

.accordion-item.active .heading {
  font-weight: 400;
  color: rgb(0, 103, 177);
  border-top: 1px solid rgb(0, 103, 177);
  border-bottom: 1px solid rgb(0, 103, 177);
}

.accordion-item.active .heading:hover {
  color: rgb(0, 103, 177);
}

.accordion-item.active .headings {
  color: rgb(51, 51, 51);
}

.accordion-item.active .icon:after {
  width: 0;
}

.accordion-item .heading {
  display: block;
  text-decoration: none;
  color: rgb(51, 51, 51);
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  padding: 0.875rem 0 0.875rem 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid rgb(51, 51, 51, 0.1);
}

.accordion-item .headings {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(51, 51, 51);
  font-weight: 700;
  font-size: 16px;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.accordion-item .heading:hover {
  color: rgb(51, 51, 51);
}

.accordion-item .headings:hover {
  color: rgb(51, 51, 51);
}

.accordion-item .icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.accordion-item .icon:before,
.accordion-item .icon:after {
  content: "";
  width: 1.02rem;
  height: 0.1rem;
  background: rgb(0, 103, 177);
  position: absolute;
  border-radius: 3px;
  left: 50%;
  top: 50%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.accordion-item .icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: -1;
}

.accordion-item .accordion__content {
  display: none;
  margin-left: 0px;
  padding: 15px 0px;
  border-bottom: 1px solid rgb(51, 51, 51, 0.1);
}

.accordion-item .accordion__content p {
  margin-top: 0;
}

.link_acordeon-1 {
  color: rgb(0, 103, 177);
  font-size: 16px;
  line-height: 25px;
  text-decoration: underline;
}

.contenido-acordn-1 ul {
  margin-left: 20px;
}

.contenido-acordn-1 ul li {
  margin: 10px 0px;
}

.contenido-acordn-1 ul ul li {
  margin: 10px 0px;
}

.abierta_con_sub {
  display: block !important;
}

.ico-menu-flecha-1,
.ico-menu-flecha-2 {
  width: 15px;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  top: 8px;
  cursor: pointer;
}

/* FIN ACORDEON */

.boxBenefecio {
  width: 100%;
  height: auto;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 20px rgb(226, 232, 238);
  padding: 2.5rem 1.875rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  top: -6rem;
}

.boxBenefecio p,
.modal-custom-rediseno p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px !important;
  margin-bottom: 6px;
}

.boxBenefecio h3,
.modal-custom-rediseno h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 25px;
}

.boxBenefecio .titletag,
.modal-custom-rediseno .titletag {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.boxBenefecio .titletag h2,
.modal-custom-rediseno .titletag h2 {
  margin-bottom: 0;
}

.boxBenefecio .titletag .tag,
.modal-custom-rediseno .titletag .tag {
  width: 109.13px;
  height: 24px;
  background: rgb(222, 18, 103);
  border: 1px solid rgb(222, 18, 103);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px;
  text-align: center;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  display: block;
  padding: 0.1rem;
}

.boxBenefecio ul,
.modal-custom-rediseno ul {
  padding-left: 2.188rem;
  margin-top: 5px;
  margin-bottom: 30px;
}

.boxBenefecio ul li,
.modal-custom-rediseno ul li {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
}

.boxBenefecio .modal .modal-header .btn-close,
.modal-custom-rediseno .modal-header .btn-close {
  background: rgb(255, 255, 255) url(../images/cerrarModal.svg) no-repeat center;
  background-size: 12px;
  border-radius: 77px;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0px 3px 13px rgb(226, 232, 238));
  backdrop-filter: blur(21.7463px);
  border: none;
  opacity: 1;
}

.boxBenefecio .modal .modal-header img,
.modal-custom-rediseno .modal-header img {
  width: 48px;
  margin-top: 30px;
}

.boxBenefecio .modal .modal-header,
.modal-custom-rediseno .modal-header {
  border-bottom: none;
  padding: 1rem 1rem 0;
}

.boxBenefecio .modal .modal-body h3,
.modal-custom-rediseno .modal-body h3 {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 32px;
  letter-spacing: -0.5px;
}

.boxBenefecio .modal .modal-body p,
.modal-custom-rediseno .modal .modal-body p {
  margin-bottom: 0;
}

.boxBenefecio .modal .modal-footer,
.modal-custom-rediseno .modal .modal-footer {
  border-top: none;
}

.boxBenefecio [type="button"],
.modal-custom-rediseno [type="button"] {
  width: 100%;
  height: 56px;
  background-color: rgb(0, 103, 177);
  border: 1px solid rgb(0, 103, 177);
  border-radius: 32px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: -0.25px;
  color: rgb(255, 255, 255);
}

.boxBenefecio .modal .modal-body,
.modal-custom-rediseno .modal .modal-body {
  padding: 1rem 2rem 0;
}

.modal-content label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px;
  color: rgb(51, 51, 51);
}

.boxBenefecio [type="button"]:hover,
.boxBenefecio [type="button"]:active,
.boxBenefecio [type="button"]:focus,
.modal-custom-rediseno [type="button"]:hover,
.modal-custom-rediseno [type="button"]:active,
.modal-custom-rediseno [type="button"]:focus {
  background-color: hsl(205, 100%, 18%);
  border: 1px solid rgb(0, 103, 177);
  color: rgb(255, 255, 255);
}

.boxBenefecio .modal .modal-footer,
.modal-custom-rediseno .modal .modal-footer {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.75rem 0.75rem 1.4rem;
}

.boxBenefecio .modal .modal-footer .btnSolicitar .cta,
.modal-custom-rediseno .modal .modal-footer .btnSolicitar .cta {
  width: 100%;
  height: 48px;
  background-color: hsl(205, 100%, 35%);
  border-radius: 30px;
  border: 1px solid hsl(205, 100%, 35%);
  padding: 0.313rem 3.125rem;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 100%);
}

.boxBenefecio .modal .modal-footer .btnSolicitar .cta:hover,
.modal-custom-rediseno .modal .modal-footer .btnSolicitar .cta:hover {
  color: rgb(255, 255, 255) !important;
  background-color: rgb(0, 54, 92) !important;
  border: 1px solid rgb(0, 103, 177) !important;
  text-decoration: none !important;
}

.boxBenefecio .modal .modal-footer p,
.modal-custom-rediseno .modal .modal-footer p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px !important;
  text-align: center;
  color: rgb(117, 117, 117);
}

.boxBenefecio input[type="text"],
.boxBenefecio select,
.modal-custom-rediseno input[type="text"],
.modal-custom-rediseno select {
  width: 100%;
  height: 40px;
  background-color: rgb(255, 255, 255) F;
  border: 1px solid rgb(226, 232, 238);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.boxBenefecio .userReservas select,
.modal-custom-rediseno .userReservas select {
  background: url(../images/arrowSelect.svg) no-repeat 94% center;
  background-size: 18px;
}

.boxBenefecio .modal-backdrop.show,
.modal-custom-rediseno .modal-backdrop.show {
  opacity: 0.3 !important;
}

/* ------ FIN PAGINA INTERNA TUS BENEFICIOS ------ */

@media screen and (min-width: 992px) and (max-width: 1279px) {
  .separador-k {
    padding: 10px !important;
  }

  .cabezote img {
    width: 100px;
  }

  .cards-beneficios-one .card {
    min-height: 400px;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .search_Pro {
    right: 19rem !important;
  }

  p {
    font-size: 14px;
    line-height: 16px;
  }

  .cabezote img {
    width: 100px;
  }

  .acceso-prs_emp {
    left: 22%;
  }

  .acceso-prs_emp .dat_personas {
    margin-right: 10px;
  }

  .acceso-prs_emp a {
    font-size: 0.75rem;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .owl-theme .owl-dots {
    position: relative;
    top: 30px;
  }

  .cardTusBenficiosHome .owl-carousel button.owl-dot {
    position: relative;
    margin-top: 0;
  }

  .cards-beneficios-one .card-title-two {
    font-size: 1.25rem;
  }

  .boxFiltros .containerTag .tag span {
    font-size: 0.6rem !important;
  }
}

@media screen and (max-width: 500px) {
  .search {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .visibleDesktop {
    display: none;
  }

  .visibleMobile {
    display: block;
  }

  .acceso-prs_emp {
    display: none;
  }

  .btn_identificate {
    right: 86px;
  }
  .btn_identificate a.cta {
    font-size: 0.8rem;
    width: 100%;
    height: auto;
    padding: 10px 25px;
    margin: 5px 0;
  }

  .usuarioBeneficios {
    right: 5rem;
  }

  .search_Pro {
    display: none;
  }

  .usuarioBeneficios .beneficiosUsuario {
    gap: 5px;
  }

  .usuarioBeneficios .beneficiosUsuario .usuario span {
    font-size: 0.75rem;
    padding: 5px;
  }

  .usuarioBeneficios .beneficiosUsuario .textousuario .title {
    font-size: 0.75rem;
  }

  .usuarioBeneficios .beneficiosUsuario .textousuario .text {
    font-size: 0.65rem;
    margin-top: -10px;
  }

  .search {
    width: 150px;
    /*    right: 4rem;*/
    right: 150px !important;
  }

  h1 {
    font-size: 26px !important;
    line-height: 32px !important;
  }

  ul {
    padding-left: 20px;
  }

  .owl-nav button {
    width: 40px;
    height: 40px;
  }

  .owl-prev {
    left: -0.3rem;
  }

  .owl-next {
    right: -0.3rem;
  }

  .cabezote img {
    width: 80px;
    left: 20px;
    top: 22px;
  }

  .espacio_interna {
    padding-top: 70px;
  }

  /* ------ PAGINA HOME TUS BENEFICIOS ------ */

  .bannerInternaTusBeneficios .container {
    padding-right: 0px;
    padding-left: 0px;
  }

  .bannerInternaTusBeneficios .cta-slide_home {
    width: 100%;
  }

  .box_slide-text-one {
    background: hsl(0, 0%, 100%);
    padding: 25px;
    margin: auto;
    width: 90%;
    height: auto;
    position: relative;
    top: -35px;
  }

  .box_slide-text-one h1 {
    margin-right: auto;
    margin-bottom: 20px;
  }

  .carousel-control-prev {
    display: none;
  }

  .carousel-control-next {
    display: none;
  }

  .franja_silde-one {
    height: 8px !important;
    width: 100% !important;
    top: 0px !important;
  }

  .box-filtros-gs {
    margin-bottom: 20px;
  }

  .carousel-indicators {
    bottom: -20px;
  }

  .bannerInternaTusBeneficios .carousel-indicators li {
    background-color: hsl(0, 0%, 84%);
  }

  .bannerInternaTusBeneficios .carousel-indicators .active {
    background-color: hsl(205, 100%, 35%);
  }

  .bannerInternaTusBeneficios .cta {
    width: 100%;
  }

  .info-slide-home {
    display: contents;
  }

  .cardTusBenficiosHome .card {
    min-height: 485px;
    margin-bottom: 30px;
    width: 90%;
    margin: auto;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .titleTexlink {
    flex-direction: column;
    align-items: flex-start;
    min-height: 70px;
    margin-bottom: 20px;
  }

  .box_oferta {
    margin-bottom: 20px;
  }

  .btn_conocenos .cta {
    width: 100%;
  }

  .slide_home-one .cta {
    width: 100%;
    font-size: 1.125rem;
    line-height: 30px;
  }

  .owl-theme .owl-dots {
    position: relative;
    top: 30px;
  }

  .cardTusBenficiosHome .owl-carousel button.owl-dot {
    position: relative;
    margin-top: 0;
  }

  /* ------ FIN PAGINA HOME TUS BENEFICIOS ------ */

  /* ------ PAGINA INTERNA TUS BENEFICIOS ------ */

  .boxBenefecio {
    top: 0;
    margin-bottom: 50px;
  }

  .boxContacto {
    margin-top: 40px;
  }

  /* ------ FIN PAGINA INTERNA TUS BENEFICIOS ------ */
}

.userLogout {
  margin-top: -4px;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  text-align: right;
  display: block;
}

/* CSS MODALES NEWS */
@media (min-width: 650px) {
  .loadPersonaEmpresas .modal-dialog {
    max-width: 741px;
  }

  .personaEmpresas .modal-dialog {
    max-width: 425px;
  }

  .RegistroPersonaEmpresas .modal-dialog {
    max-width: 800px;
  }
}

.modal-backdrop.show {
  opacity: 0.8;
}

.loadPersonaEmpresas .modal-content {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.loadPersonaEmpresas .modal-body {
  background: url(../images/fondo-bienvenidos.jpg) no-repeat center right;
  background-size: cover;
  padding: 2rem 2.5rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.loadPersonaEmpresas .modal-header {
  height: 72px;
  border-bottom: none;
  box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
  z-index: 99;
}

.loadPersonaEmpresas .modal-header .logo-tus-beneficios {
  width: 143px;
}

.loadPersonaEmpresas .textModalpr {
  margin-bottom: 0;
}

.loadPersonaEmpresas .identificate {
  text-align: center;
  padding: 1rem;
}

.loadPersonaEmpresas .identificate h4 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 25px;
  text-align: center;
  color: hsl(0, 0%, 20%);
  margin-bottom: 0;
}

.loadPersonaEmpresas .cards-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.loadPersonaEmpresas .cards-body .content {
  width: 50%;
}

.loadPersonaEmpresas .cards-body a:hover {
  text-decoration: none;
}

.loadPersonaEmpresas .cards-body .card {
  width: 100%;
  min-height: 485px;
  position: relative;
  text-align: left;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(210, 26%, 91%);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.loadPersonaEmpresas .cards-body .card:hover {
  box-shadow: 0px 3px 13px hsl(210, 26%, 91%);
}

.loadPersonaEmpresas .cards-body .card .card-body {
  position: relative;
  padding: 1.563rem 1.25rem 0.938rem;
}

.loadPersonaEmpresas .icoCard {
  width: 60px;
  height: 60px;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0px 8px 6px rgb(226 232 238 / 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  float: right;
  margin-top: -3.5rem;
}

.loadPersonaEmpresas .icoCard img {
  width: 36px;
}

.loadPersonaEmpresas .cards-body .card .card-title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 20%);
}

.loadPersonaEmpresas .cards-body .card .textLink {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: hsl(205, 100%, 35%);
  background: url(../images/arrow-saber.svg) no-repeat center right;
  padding-right: 1.75rem;
  position: absolute;
  bottom: 30px;
}

.loadPersonaEmpresas .btn {
  padding: 0;
}

.loadPersonaEmpresas .btn-primary:hover,
.loadPersonaEmpresas .btn-primary:active,
.loadPersonaEmpresas .btn-primary:focus {
  color: transparent;
  background-color: transparent;
  border-color: transparent;
  box-shadow: 0 0 0 0 rgb(49 132 253 / 50%);
}

.personaEmpresas .modal-content,
.RegistroPersonaEmpresas .modal-content {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}

.personaEmpresas .modal-header,
.RegistroPersonaEmpresas .modal-header {
  height: 72px;
  border-bottom: none;
  box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
  z-index: 99;
}

.personaEmpresas .modal-header .logo-tus-beneficios,
.RegistroPersonaEmpresas .modal-header .logo-tus-beneficios {
  width: 143px;
}

.personaEmpresas .icoInicioSesion,
.RegistroPersonaEmpresas .icoInicioSesion {
  text-align: center;
  padding: 1rem 0;
}

.personaEmpresas .icoInicioSesion img,
.RegistroPersonaEmpresas .icoInicioSesion img {
  width: 36px;
}

.personaEmpresas .textInicioSesion,
.RegistroPersonaEmpresas .textInicioSesion {
  text-align: center;
}

.personaEmpresas .textInicioSesion h2,
.RegistroPersonaEmpresas .textInicioSesion h2 {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: hsl(0, 0%, 20%);
  margin-bottom: 4px;
}

.personaEmpresas .modal-body,
.RegistroPersonaEmpresas .modal-body {
  padding: 1.5rem 2rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.personaEmpresas label,
.RegistroPersonaEmpresas label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 18px;
  color: hsl(0, 0%, 20%);
}

.personaEmpresas input[type="text"],
.personaEmpresas select,
.RegistroPersonaEmpresas input[type="text"],
.RegistroPersonaEmpresas select {
  width: 100%;
  height: 40px;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: hsl(0, 0%, 46%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.personaEmpresas select,
.RegistroPersonaEmpresas select {
  background-image: url(../images/arrowSelectTwo.svg);
  background-repeat: no-repeat;
  background-position: 94% center;
  background-size: 11.26px;
}

.personaEmpresas option,
.RegistroPersonaEmpresas option {
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  color: hsl(0, 0%, 46%);
}

.personaEmpresas .btn-submit,
.RegistroPersonaEmpresas .btn-submit {
  text-align: center;
  margin: auto;
  display: table;
  padding: 1.5rem 0 1rem;
}

.personaEmpresas .btn-submit a.btn-primary,
.RegistroPersonaEmpresas .btn-submit a.btn-primary {
  width: 255.01px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  background-color: hsl(205, 100%, 35%);
  border: 1px solid hsl(205, 100%, 35%);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.25px;
  color: hsl(0, 0%, 100%);
}

.personaEmpresas .btn-submit a.btn-primary:hover,
.personaEmpresas .btn-submit a.btn-primary:active,
.personaEmpresas .btn-submit a.btn-primary:focus,
.RegistroPersonaEmpresas .btn-submit a.btn-primary:hover,
.RegistroPersonaEmpresas .btn-submit a.btn-primary:active,
.RegistroPersonaEmpresas .btn-submit a.btn-primary:focus {
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(205, 100%, 35%);
  color: hsl(205, 100%, 35%);
}

.personaEmpresas .registrado,
.RegistroPersonaEmpresas .registrado {
  text-align: center;
}

.personaEmpresas .registrado a,
.RegistroPersonaEmpresas .registrado a {
  color: hsl(205, 100%, 35%);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.personaEmpresas .registrado a:hover,
.RegistroPersonaEmpresas .registrado a:hover {
  text-decoration: underline;
}

.personaEmpresas .btn-back,
.RegistroPersonaEmpresas .btn-back {
  background: rgb(255, 255, 255) url(../images/arrowBack.svg) no-repeat center;
  background-size: 12px;
  border-radius: 77px;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0px 3px 13px rgb(226, 232, 238));
  backdrop-filter: blur(21.7463px);
  border: none;
  opacity: 1;
  position: absolute;
  top: 4%;
  left: 8%;
}

.personaEmpresas .modal .modal-header .btn-close,
.loadPersonaEmpresas .modal .modal-header .btn-close,
.RegistroPersonaEmpresas .modal .modal-header .btn-close {
  background: rgb(255, 255, 255) url(../images/cerrarModal.svg) no-repeat center;
  background-size: 12px;
  border-radius: 77px;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0px 3px 13px rgb(226, 232, 238));
  backdrop-filter: blur(21.7463px);
  border: none;
  opacity: 1;
}

.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  margin-bottom: 0;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: #0068b3;
  color: #fff;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #0068b3;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}

.stepper-item:last-child::after {
  content: none;
}

#listadoEmpresas {
  box-shadow: 2px 2px 8px 0 rgb(0 0 0 / 20%);
  position: absolute;
  top: 68px;
  z-index: 9999;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 300px;
  overflow-y: scroll;
}

#listadoEmpresas .item-element-empresa {
  background-color: #eeeeee;
  border-top: 1px solid #d6d4d4;
  cursor: pointer;
  padding: 8px 10px;
  width: 100%;
  float: left;
  line-height: 1.2;
  font-size: 0.9rem;
}

#listCategorySubMenuHeader {
  justify-content: center;
}

.section-menu-top {
  background-color: rgb(51, 51, 51);
  padding: 10px;
  z-index: 99;
  display: grid;
  place-items: center;
  position: fixed;
  width: 100%;
  height: 50px;
  top: 70px;
  left: 0;
  right: 0;
}

.section-menu-top a {
  text-decoration: none !important;
  color: #0067b1 !important;
}

.section-menu-top a:hover {
  background: #f6f7fc !important;
}

.section-menu-top .btn-group button {
  background-color: transparent !important;
  border-color: transparent !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: none !important;
  padding: 0 18px;
  font-weight: 400;
  display: block;
  line-height: 1;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  border-left: inherit;
  background: url(../images/img-version-2/iconos/ArrowMenu.svg) no-repeat 90% center;
}

.section-menu-top .dropdown-toggle::after {
  content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: inherit;
    border-top: inherit;
    border-right: inherit;
    border-bottom: 0;
    border-left: inherit;
    position: absolute;
    opacity: 0;
}

.single-beneficio .boxBenefecio .titletag {
  display: block;
  margin-bottom: 20px;
}

.single-beneficio .boxBenefecio .titletag .tag {
  width: auto;
  height: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 12px;
  text-align: center;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  display: inline-block;
  padding: 0.2rem 0.5em;
  margin-right: 8px;
}

.single-beneficio .boxBenefecio .titletag .tag:last-child {
  margin-right: 0 !important;
}

.single-beneficio .boxBenefecio .titletag .tag.tag-item-1 {
  background: #de1267 !important;
  border: 1px solid #de1267 !important;
  color: #fff !important;
}

.single-beneficio .boxBenefecio .titletag .tag.tag-item-2 {
  background: #fff !important;
  border: 1px solid #757575 !important;
  color: #757575 !important;
}

#accordionPanelsFilters .accordion-item .accordion-button {
  color: #0067b1;
  background-color: transparent !important;
  box-shadow: none !important;
  font-weight: 600;
  font-size: 1.2rem;
}

.wrapper-bar-ecommerce {
  width: auto;
  position: absolute;
  top: 1.5rem;
  right: 25.5rem;
  cursor: pointer;
  display: none;
  gap: 21px;
}

.wrapper-bar-ecommerce img {
  position: relative !important;
  width: auto !important;
  left: 0 !important;
  top: 0 !important;
}

.btn-actions-ofer {
  position: absolute;
  bottom: 48px;
  right: 2rem;
  z-index: 9;
}

.btn-actions-ofer span {
  width: 30px;
  height: 16px;
  display: inline-block;
  background-size: contain !important;
}

.btn-actions-ofer .ico-share {
  background: url(../images/icono-compartir.svg) no-repeat center;
}

.btn-actions-ofer .ico-favorite {
  background: url(../images/icono-favoritos.svg) no-repeat center;
}

.btn-actions-ofer .ico-favorite.check {
  background: url(../images/icono-favoritos-check.svg) no-repeat center;
}

.popuphc {
  display: none !important;
}

.singleHeaderRegister .stepper-item:last-child,
.singleHeaderRegister .stepper-item::after {
  display: none;
}

@media screen and (max-width: 650px) {
  .loadPersonaEmpresas .cards-body {
    display: block;
  }
  .loadPersonaEmpresas .cards-body .content {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .section-menu-top {
    height: auto;
  }
}

@media screen and (max-width: 1060px) {
  .hu42a-help.hu42a-help-container .square-wrapper {
    padding: 0 15px;
  }
}
