:root {
    --roboto-condensed: Roboto Condensed;
    --primary: #2a407e;
    --secondary: #0085ff;
    --gray: #373737;
    --lightgray: #d9d9d9;
    --white: #ffffff;
    --lightgrey: #f8f8f8;
    --bg-primary: #182858;
    --active-lightgrey: #b9deff99;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
  }

  a:hover {
    color: #006cd8;
    text-decoration: none;
  }

  ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  label,
  p {
    margin: 0;
  }

  body {
    font-family: var(--roboto-condensed);
    font-size: 16px;
    line-height: 1;
  }
  
		

	  .slidedestacados-portlet {
	    background-color: #f8f8f8;
	  }
	
	  .planes_cards_slider {
	    overflow: hidden;
	    position: relative;
	    padding: 13px 1px 1px 1px;
	    width: 100%;
	  }
	
	  .producto_interes_cards {
	    display: flex;
	  }
	
	  .planesDetalle_otrosPlanes_slider {
	    display: flex;
	    align-items: center;
	    gap: 16px;
	    justify-content: flex-end;
	  }
	
	  .planesDetalle_otrosPlanes_link {
	    border: 1px solid var(--secondary);
	    padding: 13px 15px;
	    border-radius: 8px;
	    color: var(--secondary);
	    margin: 19px 0px 24px 0px;
	    cursor: pointer;
	  }
	
	  .planesDetalle_otrosPlanes_link:hover {
	    background-color: #006cd8;
	    color: var(--white);
	  }
	
	  .planesDetalle_otrosPlanes_link i {
	    display: block;
	  }
	
	  .planesDetalle_otrosPlanes_link.prev-btn i {
	    transform: rotate(180deg);
	  }
	
	  .planes_cards_select {
	    padding: 13px 22px;
	    background-color: var(--secondary);
	    color: var(--white);
	    font-weight: 600;
	    text-align: center;
	    border: 1px solid transparent;
	    margin: 19px 0px 24px 0px;
	    border-radius: 8px;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	  }
	
	  .planes_cards_select:hover {
	    color: var(--white);
	    background-color: #006cd8;
	    border: 1px solid #006cd8;
	  }
	
	  .planes_cards_select:hover i {
	    animation: moveArrowRight 0.6s linear;
	  }
	
	  .planes_cards_icon {
	    margin-left: 7px;
	    display: inline-block;
	    font-size: 16px;
	    font-weight: 700;
	  }
	
	  .swiper-button-disabled {
	    opacity: 0.4;
  		pointer-events: none;
	  }
	
	  @keyframes moveArrowRight {
	    0% {
	      transform: translatex(0);
	    }
	
	    50% {
	      transform: translatex(4px);
	    }
	
	    100% {
	      transform: translateY(0);
	    }
	  }
	
	  @media (max-width: 992px) {
	    .planesDetalle_otrosPlanes_slider {
	      justify-content: center;
	    }
	
	    .planesDetalle_otrosPlanes_link {
	      display: none;
	    }
	
	    .planes_cards_select {
	      padding: 13px 96px;
	    }
	  }
	
	  @media (max-width: 767px) {
	    .planes_cards_select {
	      padding: 13px 22px;
	      background-color: var(--white);
	      color: var(--secondary);
	      border: 2px solid var(--secondary);
	      width: 100%;
	      display: flex;
	      justify-content: center;
	      align-items: center;
	    }
	  }
	  
	  