#alerta {
    position: fixed;
    z-index: 1000;
    left: calc(50% - 150px);
    top: -300px;

    transition: 1s ease top;

    width: 300px;
    padding: 10px;

    background-color: white;
    border-radius: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0px 0px 1px black;
}

#alerta div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#alerta div img {
    width: 40px;
    margin-bottom: 8px;
}

#alerta div p {
    text-align: center;
    font-size: 16px;

    font-family: 'Inter', sans-serif;
    font-size: 18px;
}

#alerta button {
    margin-top: 10px;
    background-color: transparent;
    border: none;
    color: #363435;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
}

#alerta button:hover {
    color: #5c585a;
}