/* banner header */
.curva-banner {
    fill: var(--bg-web-light);
    stroke: var(--bg-web-light);
    stroke-miterlimit: 10;
}

#curva-banner {
    position: absolute;
    bottom: 0;
    margin-bottom: -2px;
}
.header-web-checkout{
    height: 250px;
    background: linear-gradient(180deg, #E40044 50%, #19184A 154.13%);
}
/* ------pasos ---- */


.stepper-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
      font-size: 12px;
  }
}
.stepper-item .step-name{
  text-align: center;
  font-size: 14px;
  max-width: 80%;
  margin-top: 10px;
  color: var(--bg-web-light-blue);
}
.stepper-item.active .step-name{
  color: var( --bg-web-blue);
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #c6c6c6;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #c6c6c6;
  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: 45px;
  height: 45px;
  border-radius: 50%;
  background: #c6c6c6;
  margin-bottom: 6px;
  color: var(--light-color);
  transform: rotate(70deg);
  font-size: 30px;
  font-weight: bold;
}
.stepper-item.active .step-counter {
  border: solid 3px;
  border-left-color: var(--red-color);
  border-top-color:transparent ;
  border-right-color:var(--red-color);
  border-bottom-color:transparent ;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter, .stepper-item.active .step-counter{
    background: var(--bg-web-light-blue);
}

.stepper-item.completed .step-counter {
  background-color: var(--bg-web-light-blue);
  color: var(--light-color);
  transform: rotate(0deg);
}

.stepper-item.completed .step-counter span {
  display: none;
}
.stepper-item.active .step-counter span {
 color: var(--blue-dark-color);
}

.stepper-item .step-counter span {
  transform: rotate(-70deg);
}

.stepper-item.completed .step-counter::after {
  content: "✔";
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 3px solid var(--bg-web-light-blue);
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}

.stepper-item:last-child::after {
  content: none;
}

/* ---------------- */

/* buscador */
  .search-container {
    position: relative;
    width: 750px;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    box-shadow: 0px 1px 3px 0px #0000004D;
    background-color: white;

}

.search-container input {
    width: 100%;
    border: none;
    background-color: var(--bg-web-light);
    margin-left: 20px;
    background-color: white;
    outline: 0;
}

/* .results-container {
    margin-top: -20px;
    width: 100%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    z-index: 10;
    background-color: #fff;
} */

.result-item {
    position: relative;
    padding: 10px 40px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-web-light);
    z-index: 2;
    /*margin-bottom: -15px;*/
    background-color: white;

}

.result-item:last-child {
    border-bottom: none;
}

.hidden {
    display: none;
}

.step-movil{
  font-weight: 500;
}
.step-movil span{
  color: var(--red-color);
}



.dot {
  height: 7px;
  width: 7px;
  background-color: var(--bg-web-light-blue);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.dot.active {
  background-color: var(--red-color);
}

.result-item:hover {
    background-color: #f1f1f3;
    border-radius: 10px;
}
.iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* Para una proporción 16:9 */
    /*padding-bottom: 75%; !* Para una proporción 16:9 *!*/
    /*height: 0;*/
    height: 120vh;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.org-fav{
    cursor: pointer;
    padding: 10px;
}

.org-fav img{
    height:80px;
    background-color: white !important;
    border-radius: 15px;
    border: solid 1px #a9a9a9;
}
/* ------------------------- */
@media (max-width:992px){
  .search-container {
    width: 100% !important;
  }
    .container-lg{
        margin: 15px 0;
    }
}