/* O fundo do pop-up */
#popup {
    position: fixed; 
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.579);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* O conteúdo do pop-up */

@media (min-width: 494px) {
    #popup-content {
        width: 460px;
    }
}

#popup-content {
    max-width: 90%; /* Limita o tamanho da imagem */
    position: relative;
}

/* O botão fechar */
#popup-close {
    z-index: 3;
    color: rgb(255, 255, 255);
    position: absolute;
    top: -19px;
    right: 10px;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

#popup-close:hover {
    color: #ffffff95;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.liquidity-img {
    transition: transform 0s ease-in-out;
    transform: scale(1);
}

img:hover,
img:active {
  transform: scale(1); 
  
}