.three-box{
    padding: 1em;
    margin-top: 6em;
    display: flex;
    justify-content: center;
}
.container_three-box{
    position: relative;
    width: calc(1em + 90vw);
    /* background-color: blue; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    /* gap: 1rem; */
}
.component_box{
    width: calc(1em + 70vh);
    /* flex-grow: 1; */
    /* background-color: green; */
}

.cta-input-container{
    font-size: calc(0.5em + 1vw);
    margin-top: 1em;
    /* background-color: red; */
    /* max-width: 500px; */
}
.input-wrapper{
    /* background-color: blue; */
    position: relative;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
}

  
  .shell {
    position: relative;
    line-height: 1;
  }
  .shell span {
    position: absolute;
    left: 28px;
    top: 19px;
    color: #ccc;
    pointer-events: none;
    z-index: -1;
  }
  .shell span i {
    font-style: normal;
    /* any of these 3 will work */
    color: transparent;
    opacity: 0;
    visibility: hidden;
  }
  
  input.masked,
  .shell span {
    font-size: 16px;
    font-family: monospace;
    /* padding-right: 10px; */
    background-color: transparent;
    text-transform: uppercase;
  }

  .input-wrapper{
    /* background-color: blue; */
    position: relative;
}
.w-button{
    font-size: calc(0.5em + 1vh);
    border-radius: 0 10px 10px 0;
    border: none;
    border-left: transparent;
    padding: 10px;
    background-color: var(--primary);
    color: white;
}


.w-button:hover{
    cursor: pointer;
}

.w-input{
    /* background-color: orange; */
    /* position: absolute; */
    /* width: 70%; */
    width: calc(1em + 35vh);
    border-radius: 10px 0 0 10px;
    border-right: transparent;
    padding: 10px;
    font-size: calc(0.5em + 1vh);
}

.box_select{
    /* min-width: 6vw; */
    /* width: calc(1em + 55vh); */
    /* width: 300px; */
    /* margin: 1em; */
    /* gap: 8em; */
    font-size: calc(0.8em + 0.5vw);
    padding: 1em;
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    position: relative;
    word-wrap: break-word;
    /* background-color: #F2F5F6; */
    /* grid-template-columns: repeat(auto-fill, minmax(min(100% , 20rem), 1fr)); */

    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    /* animation: move_box 6s ease-in-out infinite; */
    margin-bottom: 1rem;
    z-index: 5;
}
/* .box_select:hover{
    cursor: pointer;
} */

.img_three-box{
    /* width: 20%; */
    display: none;
    width: calc(1em + 70vh);
    object-fit: cover;
    text-align: end;
    /* background-color: orange;   */
}
.img_three-box img{
    width: 100%;
}

.img_three-show{
    display: block;
}

.box_select h2{
    font-size: calc(0.9em + 1vh);
}
.select-active h2{
    color: white;
}
.select-active span {
    color: black;
}
.select-active{
    background-color: var(--primary);
}
.select-active .list-banner p{
    color: white;
}



@media (max-width: 600px) {

    .w-button{
        border-radius: 10px;
        /* border-right: #ccc; */
        margin-top: 1rem;
    }

    .w-input{
        border-radius: 10px;
    }

}