@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');

.dropdown {
    position: relative;
    width: 90%;

}

.dropdown img {
    width: 100px;
    height: auto;
}

.dropdown__trigger {
    cursor: pointer;
}

.botonA {
    padding-top: 0px;
}

.botonA img {
    width: 30px;
    height: auto;
}

.botonA p {
    padding-top: 4px;
    font-family: 'League Gothic', sans-serif;
    font-size: 1.3rem;
    color: #414951;
    font-weight: 500;
    letter-spacing: 1px;
}


/* Hide the dropdown's content by default */
.dropdown__content {
    display: none;



    /* Position it right below the trigger element */
    left: 0;
    padding-top: 0.35rem;
    position: absolute;
    top: 70px;



    /* It should be on the top of other elements */
    /* background-color: transparent; */
    padding: 7px;
    text-align: left;
    background-color: rgba(113, 117, 93, 0.1);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    z-index: 9999;
}

.dropdown__content H4 {
    font-size: 0.6rem;
    font-weight: 200;
    letter-spacing: 2px;
}

/* Show the content when hover on the container */
.dropdown:hover .dropdown__content {
    display: block;


}