/* ! CREADO PARA SER USADO EN EL LAYOUT DE MICROSITE, DESPUÉS DEL CSS newStyle.css (PUESTO QUE SE USAN COSAS QUE SE DEFINEN EN ESE ARCHIVO). */

.searcher.tb {
    display: table;
    width: 100%;
}

.searcher.td {
    display: table-cell;
    vertical-align: middle;
}

input.searcher,
button.searcher {
    color: var(--af-red);
    font-family: Montserrat, 'Helvetica', 'Arial', sans-serif;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    outline: none;
}

#cover.searcher {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 0; */
    /* right: 0; */
    width: 100%;
    padding: 0.4em 0.7em 0.4em 0.7em;
    margin: 0 auto 0 auto;
    background-color: transparent;
    border: 3.5px var(--af-red) solid;
    border-radius: 20px;
    /* box-shadow: 0 10px 40px var(--af-red), 0 0 0 20px #fe5e5e05; */
    /* transform: scale(0.6);*/
}

input[type='text'].searcher {
    width: 100%;
    height: 1.8em;
    font-size: 1.5em;
    line-height: 1;
    padding-left: 0.3em;
}

input[type='text'].searcher::placeholder {
    color: #e16868;
}

#s-cover.searcher {
    width: 1px;
    padding-left: 35px;
}

button.searcher {
    position: relative;
    display: block;
    width: 2.5em;
    height: 3em;
    cursor: pointer;
    top: 0.23em;

    transition: 0.5s ease all;
}

#s-circle.searcher {
    position: relative;
    top: -8px;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    margin-top: 0;
    /* border-width: 5px; */
    border: 4px solid var(--af-red);
    background-color: transparent;
    border-radius: 50%;
    transition: 0.5s ease all;
}

button.searcher span.searcher {
    position: absolute;
    /* border: 10px; */
    top: 1.5em;
    left: 1em;
    display: block;
    width: 1em;
    height: 8px;
    background-color: transparent;
    border-radius: 10px;
    transform: rotateZ(52deg);
    transition: 0.5s ease all;
}

button.searcher span.searcher:before,
button.searcher span.searcher:after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    /* border: 50px; */
    width: 1em;
    height: 0.3em;
    background-color: var(--af-red);
    border-radius: 15px;
    transform: rotateZ(0);
    transition: 0.5s ease all;
}

#s-cover.searcher:hover #s-circle.searcher {
    top: -1px;
    left: 3px;
    width: 1.5em;
    height: 0.33em;
    border-width: 0;
    background-color: var(--af-red);
    border-radius: 20px;
}

#s-cover.searcher:hover span.searcher {
    top: 50%;
    left: 23px;
    width: 25px;
    margin-top: -6.5px;
    transform: rotateZ(0);
}

#s-cover.searcher:hover button.searcher span.searcher:before {
    bottom: 5px;
    transform: rotateZ(52deg);
}

#s-cover.searcher:hover button.searcher span.searcher:after {
    bottom: -5px;
    transform: rotateZ(-52deg);
}
#s-cover.searcher:hover button.searcher span.searcher:before,
#s-cover.searcher:hover button.searcher span.searcher:after {
    right: 19px;
    width: 1.1em;
    background-color: var(--af-red);
}

button.searcher:hover {
    top: 0.1em;
}