h3.title {
    margin-bottom: .5rem;
}

button {
    background-color: #888;
    border: none;
    border-radius: .25rem;
    cursor: pointer;
    opacity: .7;
    font-size: 1rem;
    transition: .5s;
}

button:hover {
    opacity: 1;
}


#btnOpenModal {
    position: fixed;
    font-size: .9rem;
    /* height: 40px;
    width: 180px; */
    padding: 0.6rem 1.2rem;
    align-items: center;
    background-color: orange;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 5px;
    bottom: 4px;
    left: 8px;
}

.ico-contribution {
    position: absolute;
    top:-12px;
    left:-2px;
    font-size: 22px;
}

#fade,
#modal {
    transition: 1.2s;
    opacity: 1;
    pointer-events: all;
}

#modal {
    position: fixed;
    left: 50%;
    top: 50%;
    background-color: #fff;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    padding: 1.2rem;
    border-radius: .5rem;
}

#btnCloseModal {
    padding: .5rem .7rem;
    border-radius: .5rem;
    font-size: .8rem;

}

#fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;

}


.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.modal-description {
    margin-bottom: .8rem;
}

.modal-content {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
    /* display: grid;
    column-gap: 5px;
    grid-template-columns: auto auto auto; */

}

.modal-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: .2rem;
    background-color: orange; 
    min-width: 6rem;
    max-width: 90%;
    height: 22rem;
    width: 18rem;
    border-radius: .5rem;
    border: 1px solid orange;
    transition: 1.2s;
    opacity: 1;
}


.pix-image{
    margin-top: 30px;
}

.pix-content {
    display: flex;
    flex-direction: row;
    margin-top: .4rem;
    padding-bottom:  .6rem;
    padding-right: .6rem;
    padding-left: .6rem;
    justify-content: space-around;
    align-items: center;
    font-size: .8rem;
    border: 1px solid orange ;
    border-radius: .3rem;
    cursor: pointer;
    transition: .9s;
}

.pix-content:hover {
    border: 1px solid black;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    
}

.pix-value {
    margin-top: 8px;
    padding: .2rem;
}

#modal.hide,
#fade.hide {
    opacity: 0;
    pointer-events: none;
}

#modal.hide {
    top: 150%;
}

.messageCopyPix {
    position: relative;
    font-size: 0.8rem;
    border-radius: .3rem;
    border-left: 7px solid green;
    background-color: white;
    color: black;
    padding: .4rem .8rem;
    opacity: 1;
    transition: 1.2s;
    top: 0px;
}

.messageCopyPix.hide {
    opacity: 0;
    top: 5%;
    transition: .9s;
}