.modal {   
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px) saturate(30%);
    -webkit-backdrop-filter: blur(10px) saturate(80%);
    -moz-filter: blur(10px) saturate(80%);
    transition: all 0.3s ease-in-out;
    overflow: scroll;
        overflow-x: scroll;
    align-items: center;
    display: flex;
    overflow-x: auto;
} 
body.open-modal-search,
body.open-modal-languaje {
    overflow: hidden;
}
body.open-modal-search #modal-search,
body.open-modal-languaje #modal-languaje  {
    visibility: visible; 
    opacity: 1; 
    transition: all 0.3s ease-in-out;
}  
.modal div.modal-close {
    position: fixed;
    width: 100%;
    height: 100%;
}
.modal div.modal-content { 
    display: flex;
    margin: auto;
    padding: 10px 20px;
    width: 600px;
    align-items: center;
    height: 140px;
    border-radius: 10px;
    z-index: 100;
} 
.modal div.modal-content > div {
    flex-grow: 1; 
    position: relative;
}
.modal div.modal-content a.close-modal {
    position: absolute;
    right: 20px;
    top: 40px;
    background: #FFF;
} 
/* Languaje modal */
#modal-languaje div.modal-content {
    width: 300px;
    height: 210px;
    background: #FFF; 
    box-shadow: 0 0px 20px rgba(0,0,0,1);
}
.modal .lang {
    margin: 15px 0 0 0;
}
.modal .lang a{
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 15px 0;
    text-transform: capitalize;
    text-align: center;
    color: #333;
}
.modal .lang li:last-child a {
    border-bottom: none;
} 
/* Busacador */
#modal-search .modal-content div img {
    width: 270px;
    margin: auto;
    padding-bottom: 30px;
    display: block;
} 
form#search-form {
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(0,0,0,0.1);
}
form#search-form input {
    padding: 15px 30px;
    width: 100%;
    font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
    font-size: 16px;
    border: 0;
    background: #FFF;
    transition: 1s ease box-shadow;
}
form#search-form button {
    padding: 15px;
    display: block;
    background: #FFF;
    color: #555;
    font-size: 18px;
    right: 27px;
} 