@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');


* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'segoe ui', roboto, oxygen,
    ubuntu, cantarell, 'fira sans', 'droid sans', 'helvetica neue', Arial,
    sans-serif;
}
body {
  background-color: #fefcfd;
}
.login {
  background-color: #fefcfd;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 100px auto;
  border-radius: 15px;
}

*:focus,
*:focus-visible {
  outline: none;
}

button:active {
  outline: none;
  border: none;
}

.login h1 {
  text-align: center;
  color: #5b6574;
  font-size: 24px;
  /* padding: 20px 0 20px 0; */
  border-bottom: 1px solid #dee0e4;
}
.login form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}
.login form label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #ce1111;
  color: #ffffff;
  margin-right: 0%;
  border-radius: 15px;
}
.login form input[type='password'],
.login form input[type='text'] {
  max-width: 400px;
  height: 50px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 0 15px;
  margin-right: 0%;
}
.login form input[type='submit'] {
  width: 90%;
  padding: 15px;
  margin-top: 20px;
  background-color: #ce1111;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #fefcfd;
  transition: background-color 0.2s;
  border-radius: 15px;
}
.login form input[type='submit']:hover {
  background-color: #ce1111;
  transition: background-color 0.2s;
}

.login form input[type='loginsubmit'] {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #ce1111;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #fefcfd;
  transition: background-color 0.2s;
}
.login form input[type='loginsubmit']:hover {
  background-color: #ce1111;
  transition: background-color 0.2s;
}

.menu-button {
  color: white;
}

.navbar-bc {
  background-color: #ce1111;
}

.navbar-bc a {
  color: #ffffff;
}

.logo {
  width: 12em;
}

select {
  width: 100%;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #ce1111;
  border-bottom: 16px solid #ce1111;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

.miniloader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #ce1111;
  border-bottom: 8px solid #ce1111;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

.chatloader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #6941c7;
  border-bottom: 16px solid #6941c7;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}



@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* .direct-chat .box-body {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  overflow-x: hidden;
  padding: 0;
} */

.box-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px;
}
.box-header:before, .box-body:before, .box-footer:before, .box-header:after, .box-body:after, .box-footer:after {
  content: " ";
  display: table;
}

.direct-chat-messages {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  padding: 10px;
  height: 250px;
  overflow: auto;
}

.direct-chat-messages, .direct-chat-contacts {
  -webkit-transition: -webkit-transform .5s ease-in-out;
  -moz-transition: -moz-transform .5s ease-in-out;
  -o-transition: -o-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
}



.direct-chat-msg {
  margin-bottom: 10px;
}

.direct-chat-msg, .direct-chat-text {
  display: block;
}

.direct-chat-text-left {
  border-radius: 5px;
  position: relative;
  padding: 10px;
  background: #d2d6de;
  border-radius: 5px;
  color: #6941c7;
}

.direct-chat-text-right {
  border-radius: 5px;
  position: relative;
  padding: 10px;
  background: #6941c7;
  border-radius: 5px;
  color: #ffffff;
}

.dropup .hide-toggle.dropdown-toggle::after {
  display: none !important;
}

.direct-chat-info {
  margin-bottom: 2px;
  font-size: 12px;
}
.direct-chat-info-right {
  margin-bottom: 2px;
  font-size: 12px;
  text-align: right;
}

.right .direct-chat-img {
  float: right;
}

/* .direct-chat-warning .right>.direct-chat-text {
  background: #434141;
  border-color: #434141;
  color: #fff;
} */


.direct-chat-text:after, .direct-chat-text:before {
  position: absolute;
  right: 100%;
  top: 15px;
  border: solid transparent;
  border-right-color: #d2d6de;
  content: ' ';
  height: 0;
  width: 0;
  pointer-events: none;
}

.card-body-chat::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.card-body-chat {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar {
  display: none;
}

.servicecard {
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 3px;
}

.btn:focus, 
.btn:active:focus, 
.btn.active:focus 
{ 
  outline: none;
  outline-style: none;
  box-shadow: none;
 }