.wpstack-icon,
.wpstack-icon svg {
    width: 100%;
    height: auto
}

#wpadminbar .wpstack-status .ab-item {
    text-transform: uppercase;
    background: rgb(0, 0, 0);
}

#wpadminbar .wpstack-status.wpstack-env-production .ab-item {
    background: rgb(29, 255, 0);
    color: black;
}

#wpadminbar .wpstack-status.wpstack-env-development .ab-item {
    background: rgb(255, 190, 0);
    color: black;
}

#wpadminbar .wpstack-status-hide-notifications .wpstack-icon svg {
    width: 17px !important;
    fill: white;
}

.wpstack-notifications-hidden.wpstack-notifications-detected .wpstack-status-hide-notifications svg {
    fill: rgb(255, 186, 0) !important;
}

.wpstack-notifications-hidden.wpstack-notifications-detected .wpstack-status-hide-notifications:hover svg {
    fill: rgb(247, 255, 0) !important;
}

#wpadminbar .wpstack-status-hide-notifications .wpstack-icon,
#wpadminbar .wpstack-status-hide-notifications .ab-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

html body.wpstack-notifications-hidden .wpstack-notification-detected {
    display: none !important;
    opacity: 0 !important;
    position: absolute !important;
}


/* Tooltip */


/*

<div class="wpstack-tooltip">
        <span class="wpstack-tooltip-title">'.$title.'</span>
        <span class="wpstack-tooltip-msg">'.$msg.'</span>
    </div>

    */

.v-detected .wpstack-tooltip-title {
    background: rgb(124, 0, 0);
    padding: 5px;
    display: inline-block;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.v-detected {
    display: inline-block;
}

.wpstack-tooltip .wpstack-tooltip-msg {
    display: block;
    position: absolute;
    max-width: 250px;
    z-index: 20;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.33);
    font-size: 10px;
}

.wpstack-tooltip .wpstack-tooltip-msg:after {
    content: "";
    position: absolute;
    top: 0%;
    left: 20px;
    margin-left: -5px;
    width: 0;
    height: 0;
    transform: translateY(-100%) rotate(180deg);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
}

.wpstack-tooltip .wpstack-tooltip-msg {
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.wpstack-tooltip .wpstack-tooltip-msg:hover,
.wpstack-tooltip:hover .wpstack-tooltip-msg {
    opacity: 1;
    pointer-events: unset;
}