/* css for login modal popup dialog */
label, input { display:block; }
input.text { margin-bottom:12px; width:95%; padding: .4em; }
fieldset { padding:0; border:0; margin-top:25px; }
h1 { font-size: 1.2em; margin: .6em 0; }                
.ui-dialog .ui-state-error { padding: .3em; }
.validateTips { border: 1px solid transparent; padding: 0.3em; }
.ui-dialog-titlebar-close {
    visibility: hidden;
}

/* custome y grid line for spline/timeseries c3 charts */
.c3-ygrid-line.threshold line {
    stroke: #FF0000;
}

/* Alert styles */
#alertDiv {
    box-sizing: border-box;
    /* width: 1000px; */
  }
  
  #alertDiv ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  #alertDiv ul li {
    border: 1px solid #ddd;
    margin-top: -1px; /* Prevent double borders */
    background-color: #ddd;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: #EA4858;
    display: block;
    position: relative;
    text-align: center;
    font-family: 'Nunito', sans-serif;    
  }
  
  #alertDiv ul li:hover {
    background-color: #f8d7da;
    color: black;
  }
  
  #alertDiv .close {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0%;
    padding: 12px 16px;
    transform: translate(0%, -50%);
  }
  
  #alertDiv .close:hover {background: #bbb;}
  /* End of Alert styles*/