html, body {
  margin: 0px;
  padding: 0px;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
}

.splash {
  position: relative;
  height: 100vh;
  background-color: #5278c7;
}
.splash #content {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.splash #content img {
  text-align: center;
  width: 169px;
  display: block;
  margin: auto;
  margin-bottom: 50px;
}
.splash #content .buttons {
  text-align: center;
  box-sizing: content-box;
}
.splash #content #loader-box {
  position: relative;
  top: -90px;
}
.splash #content #loader-box span.loader {
  position: absolute;
  margin-left: -28px;
}

.btn {
  font-weight: 700;
  display: block;
  width: 100%;
  padding: 18px;
  border: 0px;
  border-radius: 5px;
  margin-top: 13px;
  font-size: 16px;
  color: #525252;
}
.btn.btn-default {
  background-color: #3E5A94;
  color: #fff;
}
.btn.btn-white {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  border: 1px solid white;
}
.btn.btn-nobg {
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid gray;
}

.chat .header {
  background-color: #F9F9F9;
  padding: 14px;
  text-align: center;
}
.chat .userinputbox {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background-color: #F8F8F8;
  box-shadow: 1px -1px 5px 0px rgba(0, 0, 0, 0.0901960784);
}
.chat .userinputbox input {
  border: 0px;
  outline: 0px;
  width: 90%;
  background-color: rgba(248, 248, 248, 0);
  font-family: "circular";
  /* padding: 0px 0px; */
  padding: 17px;
  font-size: 15px;
}
.chat div#_listening {
  text-align: center;
  padding: 16px;
  color: gray;
  background: white;
}
.chat .chatlist {
  padding-bottom: 100px;
}
.chat .chatlist .message {
  width: 96%;
  padding: 2px 1px;
  margin-top: 4px;
  padding-left: 7px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}
.chat .chatlist .message.user {
  border-left: 3px solid #15CDCD;
  color: rgba(51, 51, 51, 0.78);
}
.chat .chatlist .message.bot {
  border-left: 4px solid #0d85b9;
  color: #333;
  background-color: rgba(252, 252, 252, 0.5019607843);
}

.footer {
  position: fixed;
  bottom: 16px;
  color: white;
  text-align: center;
  font-size: 10px;
  width: 100%;
}
.footer a {
  color: white;
}

@keyframes blink {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
#_insertionP {
  animation: blink 0.5s infinite;
}

.loader {
  animation: rotate 1.5s infinite;
  height: 50px;
  width: 50px;
}

.loader:before,
.loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}

.loader:before {
  animation: ball1 2s infinite;
  background-color: #fff;
  box-shadow: 30px 0 0 #ffffff;
  margin-bottom: 10px;
}

.loader:after {
  animation: ball2 2s infinite;
  background-color: #ffffff;
  box-shadow: 30px 0 0 #fff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 #ffffff;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #ffffff;
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #fff;
  }
  50% {
    box-shadow: 0 0 0 #fff;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #fff;
    margin-top: 0;
  }
}
.abcRioButtonBlue {
  width: 100% !important;
}

.hide {
  display: none !important;
}

pre {
  font-family: "circular";
  white-space: break-spaces;
  word-wrap: break-word;
}

.noborder {
  border: 0px !important;
}

.settings-modal {
  position: fixed;
  top: 0px;
  z-index: 10000;
  width: 100%;
  overflow: auto;
  height: 100%;
  box-sizing: content-box;
}
.settings-modal .setting-box {
  background-color: white;
  width: 91%;
  margin: auto;
  border-radius: 5px;
  /* height: 575px; */
  padding: 10px 10px;
  margin-top: 16px;
}
.settings-modal .setting-box .setting-section {
  border-top: 2px solid rgba(63, 63, 63, 0.03);
  margin-top: 22px;
}
.settings-modal .setting-box .setting-section p {
  color: #5B5B5B;
  font-weight: 500;
}
.settings-modal .setting-box .setting-section div {
  font-size: 19px;
}
.settings-modal .setting-box .setting-section div a {
  color: #2196F3;
  font-size: 15px;
}
.settings-modal .setting-box .setting-section select {
  width: 100%;
  padding: 18px;
  border: 2px solid gray;
  border-radius: 5px;
}
.settings-modal .setting-box .setting-section textarea {
  width: 100%;
  padding: 9px;
  border: 0px;
  background-color: #F0F0F0;
  border-radius: 5px;
  resize: none;
  height: 150px;
  box-sizing: border-box;
  font-size: 15px;
  font-family: "circular";
  line-height: 1.5;
}

.darkmode {
  background-color: #424242;
}
.darkmode .splash {
  background-color: #344c7e;
}
.darkmode .settings-modal .setting-box {
  background-color: #424242;
  color: white;
}
.darkmode .settings-modal .setting-box .setting-section {
  border-top: 2px solid rgba(217, 217, 217, 0.02);
}
.darkmode .settings-modal .setting-box .setting-section p {
  color: #d9d9d9;
}
.darkmode .settings-modal .setting-box .setting-section div {
  font-size: 19px;
}
.darkmode .settings-modal .setting-box .setting-section div a {
  color: #2196F3;
}
.darkmode .settings-modal .setting-box .setting-section select {
  border: 2px solid gray;
  color: white;
  background-color: gray;
}
.darkmode .settings-modal .setting-box .setting-section textarea::-moz-placeholder {
  color: white;
}
.darkmode .settings-modal .setting-box .setting-section textarea::placeholder {
  color: white;
}
.darkmode .settings-modal .setting-box .setting-section textarea {
  background-color: #808080;
  color: white;
}
.darkmode .btn {
  background-color: #2d2d2d;
  color: white;
}
.darkmode .btn.btn-default {
  background-color: #3E5A94;
  color: #fff;
}
.darkmode .btn.btn-white {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  border: 1px solid white;
}
.darkmode .btn.btn-nobg {
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #fdfdfd;
  color: white;
}
.darkmode .chat .header {
  background-color: #292929;
  color: white;
}
.darkmode .chat .userinputbox {
  background-color: #515151;
  box-shadow: 1px -1px 5px 0px rgba(0, 0, 0, 0.0901960784);
}
.darkmode .chat .userinputbox input {
  background-color: rgba(248, 248, 248, 0);
  color: white;
}
.darkmode .chat .userinputbox input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.darkmode .chat .userinputbox input::placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.darkmode .chat div#_listening {
  background-color: rgba(248, 248, 248, 0);
  color: white;
}
.darkmode .chat .chatlist .message {
  color: #333;
}
.darkmode .chat .chatlist .message.user {
  border-left: 3px solid #15CDCD;
  color: rgba(255, 255, 255, 0.7);
}
.darkmode .chat .chatlist .message.bot {
  border-left: 4px solid #0d85b9;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.03);
}

div#toast {
  position: fixed;
  top: 10px;
  max-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 1000000000;
  left: 50%;
  font-size: 17px;
  transition: visibility 0.5s, opacity 0.5s;
  transform: translateX(-50%);
}/*# sourceMappingURL=styles.css.map */