#monedaButton {
    cursor: pointer;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    align-self: center;
    gap: 5px;
}

@media (max-width: 900px) {
    #monedaButton.monedaButton_header {
        display: none;
    }
}

#monedaButton img{
    width: 40%;
}

.monedaContainer {
    position: absolute;
    top: 0;
    left: 80%;
    z-index: 10000;
    background-color: #FFF;
    width: 10%;
    padding: 1% 1.5% 1% 1.5%;
    border-radius: 10px;
    -webkit-box-shadow: 3px 4px 15px -5px rgba(0, 0, 0, 0.69);
    box-shadow: 3px 4px 15px -5px rgba(0, 0, 0, 0.69);
    display: none;
    text-align: right;
    font-size: var(--FONT_SIZE_PRIMARY);
}

.monedaSelection:hover {
    color: var(--color_company_5);
    font-weight: 600;
    cursor: pointer;
}

@media screen and (min-width: 2000px) {
    .monedaContainer {
        left: 75%;
    }
}