::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #0000004d;
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px #0000004d;
  background-color: #b2b2b2;
}

.modal-dialog {
  margin: 0;
  width: 336px;
  right: 2rem;
}

.widget_minimize {
  color: #ffffff;
  font-weight: bolder;
  font-size: 1.5rem;
  cursor: pointer;
}

.arrow::before,
.arrow::after {
  left: -50px;
}

.dialog-open {
  position: fixed;
  transition: bottom 0.75s ease-in-out;
  bottom: -1px;
}

.dialog-hidden {
  position: fixed;
  transition: bottom 0.75s ease-in-out;
  bottom: -382px;
}

.modal-content {
  border-left: 2px solid #922825;
  border-right: 2px solid #922825;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* .material-symbols-sharp {
    font-variation-settings:
      'FILL' 0,
      'wght' 400,
      'GRAD' 0,
      'opsz' 40
  } */

.modal-btn {
  font-size: 18px;
}

.modal-footer {
  vertical-align: baseline;
  display: inline-block;
  padding: auto;
  height: 20px;
  background-color: #922825;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  padding: 5px 0 4px;
  line-height: 1;
  font-size: 10px;
  justify-content: center;
  letter-spacing: normal;
  font-weight: normal;
}

.modal-footer a {
  color: #fff;
  opacity: .8;
}

.leadia_widget_send_arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -6px;
  border-right: 2px solid white;
  border-top: 2px solid white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  -moz-transition: opacity .2s;
  transition: opacity .2s;
}

.dialog-input {
  padding-left: 1rem;
  padding-right: 1rem;
}

.msg-input-border {
  border-left: 1px solid #6c757d;
  border-top: 1px solid #6c757d;
  border-right: none;
  border-bottom: 1px solid #6c757d;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 0;
}

.msg-button-border {
  border-left: none;
  border-top: 1px solid #6c757d;
  border-right: 1px solid #6c757d;
  border-bottom: 1px solid #6c757d;
  border-top-left-radius: 0;
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 1.5rem;
}

.msg-button-send {
  background-color: #922825;
  border-color: rgb(146, 40, 37);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 24px;
  height: 24px;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border-top: 2px solid #922825;
  border-right: 2px solid transparent;
  animation: spinner .6s linear infinite;
}