﻿.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5); /*dim the background*/
  overflow-y: hidden;
}

.side-drawer {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10001;
  top: 0;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: 0.5s;
  color: #000;
}
.side-drawer.right {
  right: 0;
}
.side-drawer.left {
  left: 0;
}
.side-drawer.open {
  width: 584px;
}
.side-drawer section {
  position: absolute;
  top: 57px;
  bottom: 0;
  overflow-y: scroll;
  width: 100%;
}
.side-drawer section .drawer-footer {
  position: fixed;
  right: 17px;
  bottom: 0;
  width: 567px;
  z-index: 10002;
  background-color: #ffffff;
}
.side-drawer section .drawer-footer + div {
  margin-bottom: 55px;
}

@media screen and (max-height: 450px) {
  .side-drawer {
    padding-top: 15px;
  }
}
.notarise-loaders {
  z-index: 20002;
}
.notarise-loaders .pre-text {
  margin: 0 0 20px 0;
}
.notarise-loaders .progress {
  box-shadow: none;
  overflow: visible;
  height: 22px;
  margin-top: 8px;
  border-radius: 0;
  background-color: #ccc;
}
.notarise-loaders .progress-bar {
  background-color: #27AE60;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-name: progressing;
}

#notEncrypt .progress-bar {
  animation-duration: 1.5s;
}

#notHash .progress-bar {
  animation-duration: 2s;
}

#notTime .progress-bar {
  animation-duration: 2.5s;
}

#notKey .progress-bar {
  animation-duration: 3s;
}

#notarizeResult {
  padding: 20px;
  /*background: url('/images/fileupload/logo.png') no-repeat right top;*/
}
#notarizeResult .pre-text {
  text-align: center;
  margin: 30px 0 70px;
}
#notarizeResult .form-group {
  margin-bottom: 4px;
  font-size: 17px;
}
#notarizeResult .form-group label {
  font-weight: 700;
}

.multiselect {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  min-height: 36px;
}
.multiselect .tag {
  background: #f7f7f9;
  border-radius: 0.25rem;
  color: #464a4c;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  cursor: default;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.multiselect .tag .action {
  text-align: center;
  color: #000;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  width: 40px;
}
.multiselect .tag .action:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
}
.multiselect .tag .image {
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  text-align: left;
  background: #fff;
  border-right: 3px solid #fff;
}
.multiselect .tag .image img {
  max-width: 80px;
  max-height: 50px;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  outline: none;
}
.multiselect .spinner {
  min-height: 14px;
  padding: 23px 5px 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
}
.multiselect .spinner:after,
.multiselect .spinner:before {
  position: absolute;
  content: "";
  margin: -15px 0 0 -7px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 2px solid transparent;
  border-top-color: #41b883;
  box-shadow: 0 0 0 1px transparent;
}
.multiselect .spinner:before {
  -webkit-animation: a 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation: a 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.multiselect .spinner:after {
  -webkit-animation: a 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  animation: a 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes a {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(2turn);
    transform: rotate(2turn);
  }
}
@keyframes a {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(2turn);
    transform: rotate(2turn);
  }
}
.multiselect .multiselect-dropdown-list {
  max-height: 250px;
  overflow: auto;
  z-index: 2000;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
  position: absolute;
}
.multiselect li.list-group-item {
  cursor: pointer;
}
.multiselect li.list-group-item img {
  max-width: 80px;
  max-height: 50px;
}
.multiselect li .image {
  width: 80px;
  text-align: center;
}
.multiselect li.hover {
  color: #464a4c !important;
  text-decoration: none !important;
  background-color: #f7f7f9 !important;
}
.multiselect .stub {
  cursor: default;
}

.fixedAlert {
  z-index: 99999;
  position: fixed;
  top: 10px;
  margin: 0 auto; /* Will not center vertically and won't work in IE6/7. */
  left: 0;
  right: 0;
  width: 870px;
  max-width: 100%;
}
.fixedAlert.alert-success {
  border: 2px solid #39B54A;
  background-color: #fff;
  color: #39B54A;
}
.fixedAlert.alert-warning {
  border: 2px solid #856404;
  background-color: #fff;
  color: #856404;
}
.fixedAlert.alert-danger {
  border: 2px solid #721c24;
  background-color: #fff;
  color: #721c24;
}

small, .small {
  font-size: 0.75em !important;
}
small.character-count, .small.character-count {
  float: right;
  margin-right: 36px;
}

.input-group-append {
  text-align: center;
  width: 36px;
}

html {
  --app-height: 100vh;
}
html.login-page #sideMenu {
  display: none;
}
html.login-page #userMenu {
  display: none;
}

.vue-app {
  height: 100vh;
  height: var(--app-height);
  display: flex;
  flex-direction: column;
}

body {
  background-color: #EAEAEA;
  font-family: "Roboto Flex";
}

.loading-full-screen {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #742F8B transparent #742F8B transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

.page-container {
  position: relative;
  min-height: 100vh;
}

.footer {
  font-size: 12px;
  font-weight: 600;
  bottom: 0;
  width: 100%;
}

.global-footer {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  padding: 0.5rem 0;
  width: 100%;
}

.global-header {
  background-color: #fff;
  height: 60px;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}

.global-content {
  padding-top: 74px;
  padding-left: 32px;
  padding-bottom: 24px;
  min-height: 95vh;
}

.site-logo {
  display: block;
  padding: 13px;
  width: 200px;
  text-align: center;
}

.site-logo img {
  width: 127px;
  aspect-ratio: 217/58;
  padding: 0;
}

.site-title {
  display: block;
  padding: 13px 32px;
}

.global-nav {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 10px;
  display: flex;
  color: white;
  text-decoration: none;
}

.global-nav a:hover {
  color: red;
}

.global-aside-nav-title {
  display: flex;
  padding: 18px 20px;
  font-weight: 700;
}

.global-nav-link {
  display: block;
  padding: 0 15px;
  height: 53px;
  line-height: 53px;
  color: #fff;
  text-decoration: none;
}

.global-nav-link.active {
  background-color: grey;
}

.router-link-active {
  background-color: #F5F5F5;
  border-color: black !important;
}

.global-aside {
  background-color: #fff;
  z-index: 1000;
  position: fixed;
  top: 60px;
  width: 200px;
  height: 100%;
}

.global-aside-nav {
  max-height: calc(100vh - 60px);
}

.global-aside-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.global-aside-nav a {
  color: #000;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
  border-left: 6px solid transparent;
  text-decoration: none;
  font-size: 14px;
}

.global-aside-nav a i {
  margin-right: 6px;
  display: block;
  font-size: 20px;
}

.global-aside-nav a i:hover {
  background-color: #F6F6F6;
  border-color: #CF3339;
  text-decoration: none;
}

.user-profile {
  padding: 0 20px;
  font-size: 12px;
}

.user-name {
  margin-left: 8px;
  line-height: 1.2;
  font-size: 12px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 68px;
  text-align: left;
}

.global-aside-top {
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
}

.global-aside-logo {
  background-color: transparent;
  border: none;
  padding: 0;
}

.fixedAlert {
  z-index: 99999;
  position: fixed;
  top: 10px;
  margin: 0 auto; /* Will not center vertically and won't work in IE6/7. */
  left: 0;
  right: 0;
  width: 870px;
  max-width: 100%;
}

.fixedAlert.alert-success {
  border: 2px solid #39B54A;
  background-color: #fff;
  color: #39B54A;
}

.fixedAlert.alert-warning {
  border: 2px solid #856404;
  background-color: #fff;
  color: #856404;
}

.fixedAlert.alert-danger {
  border: 2px solid #721c24;
  background-color: #fff;
  color: #721c24;
}

.bot-info-card {
  height: 84px;
  border-radius: 8px;
  border: none;
}

.bouncing-dots {
  line-height: 0.05;
}

.search-dot-green {
  background-color: limegreen;
  display: inline-block;
  border-radius: 50%;
  height: 1em;
  width: 1em;
  margin-bottom: -2px;
}

.search-dot-red {
  background-color: orangered;
  display: inline-block;
  border-radius: 50%;
  height: 1em;
  width: 1em;
  margin-bottom: -2px;
}

.bg-lightest {
  background-color: #3F3F46 !important;
  color: #fff;
}

.bg-lightest.form-control::placeholder {
  color: white;
  opacity: 1;
}

.bg-darkgray {
  background-color: #4D5257 !important;
  color: #fff;
}

.bg-darkest {
  background-color: #272727 !important;
  color: #fff;
}

.bg-lightest-1 {
  background-color: #333337 !important;
  color: #fff;
}

.bg-lightest-2 {
  background-color: #2D2D30 !important;
  color: #fff;
}

.bg-lightest-3 {
  background-color: #252526 !important;
  color: #fff;
}

.bg-dark {
  background-color: #424242 !important;
  color: #fff;
}

.bg-black {
  background-color: #000;
  color: #fff;
}

.bg-darkwhite {
  background-color: #F5F5F5;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray {
  background-color: #adb5bd;
}

img.h1 {
  height: 28px;
  margin: 6px 0;
}

.directorsCard {
  max-height: 400px;
  padding-left: 0;
  padding-right: 0;
}

.tableScroll {
  overflow-x: hidden;
  overflow-y: auto;
}

.table-header {
  margin-left: 0;
  margin-right: 0;
}

.cursor-pointer {
  cursor: pointer;
}

.modal-footer {
  padding-top: 20px;
  border-top: 0;
}

.card-body:has(.chat-box) {
  padding-right: 0px;
  padding-bottom: 0px;
}

.chat-box-shadow {
  -moz-box-shadow: inset 0 -10px 10px -10px #272727;
  -webkit-box-shadow: inset 0 -10px 10px -10px #272727;
  box-shadow: inset 0 -10px 10px -10px #272727;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.chat-box {
  min-height: 69vh;
  max-height: 69vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-left: 8px;
  padding-right: 14px;
}

.chat-box-small {
  min-height: 48vh;
  max-height: 48vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-left: 8px;
  padding-right: 14px;
}

.dotsCard {
  padding-top: 14px;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 18px;
}

.dot {
  display: inline-block;
  animation-name: bouncing;
  animation-duration: 700ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  font-size: 50px;
}

.dot:nth-child(2) {
  animation-delay: 125ms;
}

.dot:nth-child(3) {
  animation-delay: 250ms;
}

@keyframes bouncing {
  0% {
    transform: none;
  }
  33% {
    transform: translateY(-0.25em);
  }
  66% {
    transform: none;
  }
}
.activeTab {
  background-color: #808080;
}

.clickable {
  cursor: pointer;
  color: black;
}

.nav {
  color: white;
}

@keyframes zoomInVersion2 {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  70% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes fileDropActive {
  from {
    background-position: center 30px;
  }
  25% {
    background-position: center 45px;
  }
  50% {
    background-position: center 30px;
  }
  75% {
    background-position: center 45px;
  }
}
@keyframes progressing {
  from {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.zoomInVersion2 {
  animation-name: zoomInVersion2;
}

#modalUploadFile .fa-info-circle {
  color: #c00;
}

#modalUploadFile .modal-footer .btn {
  display: none;
}

#modalUploadFile.completed .modal-footer .btn {
  display: inline-block;
}

#modalUploadFile.completed .upload-info-text {
  display: none;
}

#modalUploadFile .modal-dialog {
  width: 840px;
  max-width: 100%;
}

#modalUploadFile .modal-body {
  padding: 0;
}

#modalUploadFile .modal-header {
  background-color: #ccc;
  border: none;
  border-radius: 0;
}

#modalUploadFile .close {
  font-size: 40px;
}

#modalUploadFile .close-modal {
  position: absolute;
  right: 15px;
  top: 8px;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 30px;
}

#modalUploadFile .modal-footer {
  border: none;
}

#modalUploadFile .modal-content {
  background-color: #F5F3F3;
  border: 3px solid #ccc;
  border-top: none;
  border-radius: 0;
}

#modalUploadFile .pre-text {
  font-size: 20px;
  text-align: center;
}

#modalUploadFile .qq-upload-button {
  padding: 0;
  border: none;
}

#modalUploadFile .modal-title {
  font-size: 25px;
}

#modalUploadFile .modal-title.has-icon {
  background: url("/images/fileupload/arrow.png") left center no-repeat;
  padding-left: 40px;
  font-weight: 600;
  font-size: 20px;
}

#modalUploadFile #fileModalInput {
  padding: 20px;
}

#modalUploadFile #fileFineUploader {
  background-color: #66cf75;
  width: 360px;
  margin: 0 auto 20px;
  padding: 30px;
  animation-duration: 0.5s;
}

#modalUploadFile #fileFineUploader > .qq-uploader {
  border: 30px solid #4bc65c;
  animation-delay: 0.1s;
  animation-duration: 0.5s;
}

#modalUploadFile #fileFineUploader .qq-upload-button {
  width: auto !important;
  background-color: #39B54A !important;
  height: 100%;
}

#modalUploadFile #fileFineUploader .qq-upload-button-focus {
  background-color: #33a242 !important;
}

#modalUploadFile #fileFineUploader .qq-upload-drop-area {
  background-color: #33a242 !important;
  color: #fff !important;
}

#modalUploadFile #fileFineUploader .qq-upload-drop-area .file-upload-text {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: fileDropActive;
}

#modalUploadFile .file-upload-text {
  background: url("/images/fileupload/laptop.png") no-repeat center 30px;
  height: 100%;
  font-size: 18px;
  text-align: center;
  padding: 110px 10px 10px;
}

#modalUploadFile .ptools-note img {
  width: 120px;
}

#modalUploadFile .upload-info-text {
  text-align: left;
  padding-left: 30px;
  background: url("/images/fileupload//i_icon.png") no-repeat left center;
}

#notarizeDetails {
  padding: 20px;
}

#notarizeDetails .pre-text {
  margin: 30px 0 40px;
}

#notarizeDetails .progress {
  box-shadow: none;
  overflow: visible;
  height: 6px;
  margin-top: 8px;
  border: 2px solid #777;
  background-color: transparent;
}

#notarizeDetails .progress-bar {
  background-color: #8EB455;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-name: progressing;
  box-shadow: 0 0 8px 3px #8EB455;
}

#notEncrypt .progress-bar {
  animation-duration: 1s;
}

#notHash .progress-bar {
  animation-duration: 1.3s;
}

#notTime .progress-bar {
  animation-duration: 1.5s;
}

#notKey .progress-bar {
  animation-duration: 2s;
}

#notarizeResult {
  padding: 20px;
  /*background: url('/images/fileupload/logo.png') no-repeat right top;*/
}

#notarizeResult .pre-text {
  text-align: center;
  margin: 30px 0 70px;
}

#notarizeResult .form-group {
  margin-bottom: 4px;
  font-size: 17px;
}

#notarizeResult .form-group label {
  font-weight: 700;
}

.done .uploaded {
  opacity: 1;
}

.uploaded {
  transition: ease-in-out opacity 0.1s;
  opacity: 0;
  text-align: right;
}

.uploaded .fa {
  color: #8EB455;
}

.qq-upload-list {
  display: none !important;
}

.notarise-loaders {
  z-index: 20002;
}

.notarise-loaders .pre-text {
  margin: 0 0 20px 0;
}

.notarise-loaders .progress {
  box-shadow: none;
  overflow: visible;
  height: 22px;
  margin-top: 8px;
  border-radius: 0;
  background-color: #ccc;
}

.notarise-loaders .progress-bar {
  background-color: #27AE60;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-name: progressing;
}

.uploaded-file-container .remove-this {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 10px;
}

.uploaded-file-container .question {
  cursor: default;
  position: absolute;
  right: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background-color: #2a8451;
  color: #fff;
  font-style: normal;
}

.uploaded-file-container .question i {
  color: #fff;
  font-size: 14px;
}

.uploaded-file {
  position: relative;
  margin-bottom: 10px;
  background-color: #F5F5F5;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.uploaded-file > div {
  background-color: transparent;
  padding: 10px;
}

.upload-file-name {
  margin-bottom: 10px;
}

.upload-file-name > span {
  text-decoration: underline;
}

.upload-file-detail {
  font-size: 14px;
  font-size: 10px;
  font-weight: 700;
}

.remove-this {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  padding: 0 !important;
  border: none;
  width: 18px;
  height: 18px;
  line-height: 13px !important;
  text-align: center;
  border-radius: 50%;
  background-color: #C70827;
  color: #fff;
}

.remove-this i {
  color: #fff !important;
  font-size: 13px !important;
  line-height: 17px !important;
}

.applications hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

.applications h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.applications .btns {
  text-align: right;
}

.applications .btns .btn {
  min-width: 130px;
}

.applications .btns .btn + .btn {
  margin-left: 7px;
}

.btn-view {
  padding: 0;
}

.form-controls {
  /*select.form-control:not([size]):not([multiple]) {
        height: 42px;
    }*/
}

.form-controls label {
  font-weight: 700;
}

.form-controls .row {
  margin-left: -7px;
  margin-right: -7px;
}

.form-controls .row > div {
  padding-left: 7px;
  padding-right: 7px;
}

.applications .form-control {
  border: 1px solid #8C8C8C;
  border-radius: 0;
}

.applications .form-control:focus {
  border-color: #c00;
  box-shadow: none;
}

.table-custom th {
  background-color: #ddd;
}

.table-custom th.status {
  width: 60px;
}

.table-custom td {
  background-color: #fff;
}

.table-custom th, .table-custom td {
  vertical-align: middle;
}

.table-custom .btn-pdf {
  cursor: pointer;
  background-color: #D60000;
  color: #fff;
  border: none;
}

.table-custom .btn-zip {
  cursor: pointer;
  background-color: #ECC849;
  color: #000;
  border: none;
}

.table-custom .custom-checkbox {
  width: 20px;
  height: 20px;
  position: relative;
  margin: auto;
}

.table-custom .custom-checkbox input[type=checkbox] {
  opacity: 0;
  width: 20px;
  height: 20px;
}

.table-custom .custom-checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.table-custom .custom-checkbox input[type=checkbox] + label {
  pointer-events: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #666;
  margin: 0;
}

.table-custom .custom-checkbox input[type=checkbox] + label:after {
  content: "";
  width: 13px;
  height: 9px;
  position: absolute;
  top: 2px;
  left: 3px;
  border: 3px solid #666;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  transform: rotate(-45deg);
}

.table-custom .custom-checkbox input[type=checkbox]:not(:checked) + label:hover::after {
  opacity: 0.1;
}

.table-custom .btn-view {
  font-size: 35px;
  font-weight: 100;
  color: #666;
}

.modal-backdrop {
  opacity: 50%;
}

.modal-header {
  padding: 10px 32px;
  font-weight: 900;
  background-color: #fff;
  z-index: 20001;
}

.modal-header .close {
  padding: 0;
  border: 0;
  background: none;
  font-weight: bold;
  font-size: 30px;
}

.modal-body {
  padding: 0 32px;
}

.modal-body .modal-content {
  border: none !important;
  border-radius: 0;
}

.modal-footer {
  padding: 1rem 2rem;
}

.modal-footer > * {
  margin: 0;
}

.uploader-btn {
  padding: 0;
  border: none;
  background-color: #fff;
  border: dashed 1px black !important;
}

.uploader-btn:hover {
  background-color: #fff !important;
}

.uploader-btn .uploader-drop {
  padding: 24px;
  border: none;
  background-color: #fff;
}

.icon-loader-container-microphone span {
  position: relative;
  border-radius: 50%;
  left: 54%;
  margin: 0;
}

.icon-loader-container-microphone .stop-icon {
  position: relative;
  transform: translate(0, -15%);
  font-size: 20px;
}

.btn-add-another {
  text-align: center;
  font-weight: 400;
  background-color: #fff;
  border: dashed 1px black;
  width: 100%;
  color: black !important;
}

.btn-add-another div .icon-loader-container span {
  margin-top: -20px;
  margin-bottom: 8px;
  border-radius: 50%;
  background-color: #e0e0e0;
  height: 5.5rem;
  width: 5.5rem;
}

.btn-add-another div .icon-loader-container img {
  position: absolute;
  top: 44%;
  right: 47.8%;
  font-size: 46px;
  margin-top: -34px;
  margin-bottom: 0;
}

.btn-add-another div img {
  font-size: 46px;
  margin-bottom: 16px;
}

.btn-link {
  padding: 0;
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
}

.btn-link:hover {
  color: inherit;
  text-decoration: none;
}

.btn-md-sm {
  padding: 5px 10px;
  font-size: 18px;
}

.btn-wide {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.icon-plus {
  position: relative;
  display: inline-block;
  width: 74px;
  height: 74px;
}

.icon-plus:before, .icon-plus:after {
  position: absolute;
  content: "";
  background-color: #CDCDCD;
  border-radius: 4px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.icon-plus:before {
  width: 74px;
  height: 10px;
}

.icon-plus:after {
  width: 10px;
  height: 74px;
}

.btn-lg {
  font-weight: 700;
  font-size: 32px;
}

.btn-block {
  display: block;
  width: 100%;
}

.slide-left-leave-active,
.slide-left-enter-active,
.slide-right-leave-active,
.slide-right-enter-active {
  transition: 0.3s;
}

.slide-left-enter,
.slide-left-leave-to {
  transform: translate(100%, 0);
}

.slide-right-enter,
.slide-right-leave-to {
  transform: translate(-100%, 0);
}

.expand-enter, .expand-leave-to {
  transform: scale(0.1);
}

.expand-enter-active, .expand-leave-active {
  transition: transform 0.5s;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  vertical-align: text-bottom;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}
@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
  animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.lds-ellipsis {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.message-tail-left {
  position: absolute;
  left: -8px;
  top: -8px;
  display: block;
  width: 8px;
  height: 13px;
}

.message-tail-left svg {
  color: #3F3F46;
}

.message-tail-right {
  position: absolute;
  right: -8px;
  top: -8px;
  display: block;
  width: 8px;
  height: 13px;
}

.message-tail-right svg {
  color: #adb5bd;
}

.rounded-top-left-0 {
  border-top-left-radius: 0px !important;
}

.rounded-top-right-0 {
  border-top-right-radius: 0px !important;
}

.form-control.bg-lightest:focus {
  box-shadow: 0 0 0 0.25rem rgba(63, 63, 70, 0.25);
}

.pagination .page-item .page-link {
  color: #fff !important;
  background: #333337 !important;
  border-color: #212529 !important;
  outline: none;
  box-shadow: none;
}

.pagination .page-item.active .page-link {
  color: #fff !important;
  background: #212529 !important;
  border-color: #212529 !important;
  outline: none;
  box-shadow: none;
}

.audio-big {
  height: 96px;
  width: 96px;
  font-size: 38px;
  padding: 20px 0;
}

.speechCircle {
  height: 105px;
  width: 105px;
}

.spinner-border-speech {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

.centered-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.icon-loader-container-microphone-speech span {
  border-radius: 50%;
  margin: 0;
}

.icon-loader-container-microphone-speech .stop-icon-speech {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.navSpeech {
  margin-top: 10px;
}

.navSpeech::before {
  font-size: 30px;
}

#visualControls {
  position: absolute;
  right: 14px;
  top: 72px;
}

#visualControls form-check {
  background-color: #333337 !important; /* Bootstrap blue for checked state */
  border-color: #333337 !important;
}

#visualControls .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  border-color: #333337 !important;
}

canvas {
  display: block;
}

.slideRight-enter-active,
.slideRight-leave-active {
  transition: all 0.3s ease-out;
  overflow: hidden;
}

.slideRight-enter, .slideRight-leave-to {
  left: -200px;
}

.slideRight-enter-to,
.slideRight-leave {
  left: 0px;
}

.form-switch .form-check-input:focus {
  border-color: rgba(0, 0, 0, 0.25);
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(0,0,0,0.25)'/></svg>");
}

.form-switch .form-check-input:checked {
  background-color: #6c757d;
  border-color: #6c757d;
  border: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,1.0)'/></svg>");
}

.form-checkbox {
  border-color: #6c757d !important;
}

.form-checkbox.form-check-input:checked[type=checkbox] {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
