.imgl{
    width: 70px;
    height: 58px;
    padding: 3px;
    border: solid 2px #15B9D6;
    background-color:#C6F0FF;
    border-radius: 5px;
}
.icon-down{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #15B9D6;
    width: 2vw;
    height: 4vh;
    color: white;
    font-size: large;
    border-radius: 50px;
    cursor: pointer;
    transform: rotate(180deg);
}

.transition {
    cursor: pointer;
    max-height: 90px;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    z-index: 11;
}
.transition:hover {
    transform: scale(1.01);
    background-color: white;
    box-shadow: -12px -9px 9px 0px #ffffff7d, 6px 6px 16px #00000066;
    z-index: 11;
}
.action {
    animation: card 0.5s forwards;
    cursor: auto;
}
@keyframes card {
    0% {
        max-height: 83px;
    }
    100% {
        max-height: 400px;
    }
  }

.reverse-animation {
    background-color: #ffffffb4;
    transform: translateX(3px) scale(0.99);
    animation: card-reverse 0.3s forwards;
    box-shadow: -1px 2px 9px #00000066;
    z-index: 10;
}

@keyframes card-reverse {
0% {
    max-height: 400px;
}
100% {
    max-height: 83px;
}
}
  

.bg-color-2{
    background-color:#C6F0FF;
    border: none;
}
.bg-color-1{
    background-color:#E5FBFF;
    border: none;
}
/* ================================================== UPLOAD DE IMAGE ========================================================== */

.img-up{
    width: 140px;
    height: 100px;
    padding: 3px;
    border: solid 2px #15B9D6;
    background-color:#C6F0FF;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.img-up:hover,.icon-add:hover{
    background-color:#13a6c1;

}
.icon-add{
    position: relative;
    padding: 7px 11px;
    top: 34px;
    left: -36px;
    background-color: #15B9D6;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    z-index: 80;
    color: white;
    box-shadow: 0 0 0 3px white;
    cursor: pointer;
    
}
