html,
body,
#page-load-overlay {
  margin: 0;
  width: 100%;
  height: 100%;
}

iframe#q-messenger-frame.hide-qualified-chat {
  visibility: hidden !important;
  display: none !important;
  opacity: 0 !important;
}
iframe#q-messenger-frame.full-screen {
  display: none !important;
}

#page-load-overlay {
  z-index: 999999;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  visibility: visible;
  opacity: 1;
}

#page-load-overlay.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 500ms linear;
}

#page-load-overlay .anticon-loading {
  color: black !important;
  opacity: 1;
  font-size: 20px;
}

.anticon {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.anticon > * {
  line-height: 1;
}

.anticon svg {
  display: inline-block;
}

.anticon::before {
  display: none;
}

.anticon .anticon-icon {
  display: block;
}

.anticon-spin::before,
.anticon-spin {
  display: inline-block;
  -webkit-animation: loadingCircle1 1s infinite linear;
  animation: loadingCircle1 1s infinite linear;
}

@-webkit-keyframes loadingCircle1 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loadingCircle1 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**
  * To override the default font ("Roboto"), you have to use use the following css rules to override the default font.
  * The following css rules are used to override the default font ("Roboto") with "Poppins" font.
**/

/* 
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root{
  --font-family: 'Poppins';
}
* {
  font-family: var(--font-family);
}
*/

/**********************************************************************************************/
/* or you can use the following css rules to override the default font. */
/* 
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlFd2JQEk.woff2) format('woff2');
}
:root{
  --font-family: 'Poppins';
}
* {
  font-family: var(--font-family);
} 
*/
