.button-warning-container {
    display: inline-block;
    position: relative;
}

.button-warning-container .button-pop-over-warning-info-ga1 {
    background-color: #fcc302;
    padding: 0 5px 3px 5px;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.5s;
}

.button-warning-container .button-pop-over-warning-info-ga1-content {
    font-size: 0.85rem;
    background-color: rgba(255,255,255,1); 
    color: rgba(0,0,0,0.75);
    padding: 0.35rem;
    position: absolute;
    top: -28px;
    left: 40px;
    min-width: 195px;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    z-index: 2;
}

.button-warning-container .button-pop-over-warning-info-ga1-content p {
    margin: 0;
    padding: 0;
}

.button-warning-container .button-pop-over-warning-info-ga1-content:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    left: 0;
    top: 30%;
    transform: rotate(45deg); 
    z-index: -1;
}

.button-pop-over-warning-info-ga1.show + .button-pop-over-warning-info-ga1-content  {
    visibility: visible;
    opacity: 1;
}

/*
    Dispositivos móviles
*/
@media (max-width: 576px) { 
    .button-warning-container .button-pop-over-warning-info-ga1 {
        padding: 0 2px 0px 2px;
    }

    .button-warning-container .button-pop-over-warning-info-ga1-content {
        left: calc(26px - 185px);
        top: 2.5em;
        font-size: 0.72rem;
        padding: 0.15rem;
    }

    .button-warning-container .button-pop-over-warning-info-ga1-content:before {
        top: 0;
        right: 5%;
        left: auto;
    }
}

/*
    Pantallas grandes
*/
@media (min-width: 577px) and (max-width: 1299px) {
    .button-warning-container .button-pop-over-warning-info-ga1-content {
        top: auto;
        left: auto;
        right: 0;
        bottom: calc(0.85em + 25px);
    }

    .button-warning-container .button-pop-over-warning-info-ga1-content:before {
        left: auto;
        top: auto;
        right: 5px;
        bottom: 0;
    }
}