.productName { color: #002048; }
.workspaceSubHeader { color: #00476f; }
a:link { color: #0000ff; }
a:visited { color: #0000ff; }
a:hover { color: #ff0000; }

/* settings for Next Gen UI*/

body {
       background-color: transparent;
       background-image: url("../img/D1B_LoginBackgroundImage_960x1280.png");
}

.chat-footer{
    position: fixed;
    bottom: 0;
    right: 20px;              /* move to right */
    width: 260px;             /* reduced width */
    background-color: #2f4585;
    color: white;
    padding: 14px 18px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
}

.chat-footer i{
    font-size: 26px;
}

.chat-footer:hover{
    background-color:#263a70;
}

.modal {
  display: none; 
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  margin: 15% auto;
  padding: 20px;
  width: 40%;
  border-radius: 8px;
}

.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

