/* Metodo de Pesquisa */

.xfind_pesquisa {
    cursor: pointer;
}

.xfind_area_busca {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 1);
    overflow-y: auto;
    z-index: 999999;
    text-align: center;
    overflow: hidden;
    transition: .2s;
}

.xfind_area_busca, .xfind_area_busca * {
    box-sizing: border-box;
}

.xfind_area_busca_show {
    visibility: visible;
    opacity: 1;
}

.xfind_cont_busca {
    position: relative;
    top: 35%;
    max-width: 800px;
    margin: auto;
    transform: scale(0);
    transition: .4s cubic-bezier(0.37, -0.31, 0.33, 1.29);
}

.xfind_area_busca_show .xfind_cont_busca {
    transform: scale(1);
}

.xfind_area_busca .xfind_cont_busca .xfind_campo_busca {
    position: relative;
    margin-top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 80px;
    background: #fff;
    border: none;
    border-radius: 50px;
    color: #444;
    font-size: 22px;
    padding: 0 35px;
}

.xfind_area_busca .xfind_cont_busca .xfind_btn_busca {
    position: absolute;
    right: 16px;
    top: 10px;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #454b57;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.xfind_area_busca .xfind_cont_busca .xfind_btn_busca:hover {
    background: #14A44D;
}

.xfind_area_busca .xfind_cont_busca .xfind_btn_busca span {
    color: #fff
}

.xfind_area_busca .xfind_btn_fechar {
    background-image: linear-gradient(to right, rgb(47, 188, 47), rgb(0, 203, 169));
    position: absolute;
    right: 10%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
}

.xfind_area_busca .xfind_btn_fechar:hover {
    background: #ff0000;
}
