#AlertsDropdown {
    min-width: 50px;
    background: rgba(255, 0, 0, 0.3);
    height: 51px !important;
    font-size: 0px;
    vertical-align: bottom;
    color: rgba(0, 0, 0, 0.6);
    display: none !important;
}
#AlertsDropdown .dropbtn {
    text-align: center;
    padding: 0px;
    margin: 0px;
    height: 100%;
    color: inherit;
}
#AlertsDropdown .alertsUIEntry {
    display: block;
    font-size: 16px;
}
#AlertsDropdown .alertsUIEntry b {
    color: rgba(255, 0, 0, 0.6);
}
#AlertsDropdown .dropdown-content {
    background: inherit;
    width: 400px;
    right: 0;
}
#AlertsDropdown .dropdown-content a {
    background: inherit;
}
#AlertsDropdown:focus-within .dropdown-content {
    display: block !important;
}
#AlertsDropdown:focus-within,
#AlertsDropdown:focus-within #AlertsDropdown .dropbtn {
    color: rgba(0, 0, 0, 0.5) !important;
    background: rgba(255, 0, 0, 0.6);
}
#AlertsDropdown:hover, #AlertsDropdown:hover .dropbtn {
    color: rgba(0, 0, 0, 0.7);
    background: rgba(255, 0, 0, 0.6);
}

#AlertsDropdown .fa-exclamation-triangle {
    color: rgba(255, 0, 0, 0.6);
}
#AlertsDropdown .fa-info-circle {
    color: #00CCFF;
}

/** Mobile Portrait **/
@media all and (min-width: 600px) and (orientation: portrait) 
{
    #AlertsDropdown .alertsUIEntry {
        font-size: 3rem;
        width: 100%;
    }
    #AlertsDropdown {
        min-width: 6rem !important;
        height: 6rem !important;
        vertical-align: middle;
        border-radius: 1rem;
    }
    #AlertsDropdown .dropdown-content {
        width: 100% !important;
        max-width: 100%;
        position: fixed;
    }
    #AlertsDropdown .dropbtn i {
        font-size: 3rem;
    }
}