:root {
--goo-blob-colour3: #2c6fc5;
--goo-blob-colour1: #20426b;
--goo-blob-colour4: #aaceb0;
--goo-blob-colour2: #acdca0;
--goo-blob-colour0: #7b907e;}

 #conference-audio-indicator {
color: #aaaaaa !important;
}

 #home-content-call-button {
border-color: #2c6fc5 !important;
color: #2c6fc5 !important;
}

 #home-video-call-button {
background-color: #2c6fc5 !important;
border-color: #2c6fc5 !important;
}

 #home-video-call-text {
color: #2c6fc5 !important;
}

 #home-voice-call-button {
color: #2c6fc5 !important;
border-color: #2c6fc5 !important;
background-color: #fefefe !important;
}

 #home-voice-call-text {
color: #2c6fc5 !important;
}

 #home-mic-on-icon {
color: #acdca0 !important;
}

 #home-video-on-icon {
color: #acdca0 !important;
}

 #home-audio-icon {
color: #acdca0 !important;
}

 #gooBlob0 {
background: #7b907e !important;
}

 #gooBlob1 {
background: #20426b !important;
}

 #gooBlob2 {
background: #acdca0 !important;
}

 #gooBlob3 {
background: #2c6fc5 !important;
}

 #gooBlob4 {
background: #aaceb0 !important;
}

.autocomplete {
    position: relative;
    display: inline-block;
  }
  
  input {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
  }
  
  input[type=text] {
    background-color: #f1f1f1;
    width: 100%;
  }
  
  input[type=submit] {
    background-color: DodgerBlue;
    color: #fff;
    cursor: pointer;
  }
  
  .autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
  }
  
  .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
  }
  
  /*when hovering an item:*/
  .autocomplete-items div:hover {
    background-color: #e9e9e9; 
  }
  
  /*when navigating through the items using the arrow keys:*/
  .autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
  }