#global-reminder-container {
    position: relative;
}
#global-reminder-icon{
    width: 14px !important;
    border-radius: unset!important;
    border: unset !important;
}
#global-reminder-container input, #global-reminder-container textarea{
    /*margin: 0 !important;*/
    padding: unset !important;
    height: unset !important;
    width: 100% !important;
}
#global-reminder-container label{
    font-size: 14px;
}
#global-reminder-alert-container {
    width: 100%;
    height: 100%;
    /*background-color: rgba(10,10,10,.45);*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
#global-reminder-alert {
    width: 50%;
    height: auto;
    background-color: #fefefe;
    padding: 5px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 0 20px 10px #989898;
}
#global-reminder-content{
    position: absolute;
    top: 2px;
    right: 12px;
    background-color: #fafafa;
    border: 1px solid rgba(100, 100, 100, .4);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    -o-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    overflow: visible;
    width: 300px;
    display: none;
    border-radius: 2px;
    z-index: 99;
    /* min-height: 75px; */
}
#global-reminder-content h5 {
    text-align: center;
    background-color: #3e6f8d;
    margin: 0;
    padding: 5px;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    box-shadow: 0 0 black;
}
#global-reminder-content p {
    font-size: 0.8em;
    margin: 0;
    padding: 5px;
    border-bottom: 1px solid #888;
}
#global-reminder-content a{
    font-size: 0.8em;
    margin: 0;
    padding: 5px;
    color: dodgerblue;
}
#global-reminder-list{
    margin: 0 !important;
}
#global-reminder-list li{
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.7em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #fff;
}
#global-reminder-list li:hover{
    background: #f4f4f4;
}