.select_pais{
    width: 434px;
    min-width: 434px;
    height: 52px;
    flex-direction: row;
    align-items: center;
    margin-top: 34px;
    margin-bottom: 61px;
    position: relative;
    border: solid 1px rgb(0, 0, 0, 0.1);
    border-radius: 16px;
    pointer-events: all;
}

.icono_select_pais{
    width: 25px;
    height: 25px;
    margin-left: 7px;
}

.input_select_pais{
    width: 100%;
    height: auto;
    flex-direction: column;
    border: none;
    outline: none;
    font-size: 22px;
    margin-left: 25px;
    margin-right: 7px;
}

.lista_paises{
    width: 100%;
    height: auto;
    max-height: 260px;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    margin-top: 50px;
    background: #ffffff;
    z-index: 7;
    box-shadow: 0px 1px 2.5px rgba(0, 0, 0, 0.19), 0px 1px 3px rgba(0, 0, 0, 0.43);
    border-radius: 0px 0px 16px 16px;
    overflow-y: scroll;
    -ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
	scrollbar-width: none;
}

.item_select_pais{
    width: 100%;
    height: 52px;
    min-height: 52px;
    flex-direction: row;
    align-items: center;
    padding: 7px;
    cursor: pointer;
    transition: all 0.5s;
}

.item_select_pais:hover{
    background: rgb(0, 0, 0, 0.025);
}

.icono_pais{
    width: 25px;
    height: 25px;
    pointer-events: none;
}

.p_pais{
    width: 100%;
    height: auto;
    font-size: 22px;
    margin-left: 25px;
    pointer-events: none;
}

@media screen and (max-width:502px){
    .select_pais{
        width: 100%;
        min-width: 100%;
    }   
}