.title {
  font-size: 1rem;
  font-weight: bold;
}

.user {
  color: #0373fc;
  font-size: 0.8rem;
  font-weight: bold;
}

.chatbox {
  display: flex;
}

.search {
  display: flex;
  justify-content: center;
}

.search__input {
  background-color: #f3f3f5;
  color: #777;
  border: none;
  border-radius: 3rem;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  margin: 1rem;
  width: 85%;
  transition: all 0.4s;
}

.search__input:focus {
  outline: none;
  width: 100%;
}

.search__input::-webkit-input-placeholder {
  font-weight: 100;
  color: #ccc;
}

.chat-user {
  background-color: #f0eeee;
  border-bottom: 1px solid #f0eeee;
  padding: 0.4rem;
  display: flex;
  align-content: flex-end;
  align-items: center;
}

.chat-user__img_div {
  width: 40px;
  height: 40px;
}

.chat-user__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.chat-user__name {
  margin-left: 1rem;
  font-size: 1rem;
  color: #000000c7;
  font-weight: 500;
}

.chat-user__link:hover {
  text-decoration: none;
}

.whole_chat {
  height: 100%;
  bottom: 0;
}

.chatroom_container,
.msg_container {
  height: 66vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 5px;
}

.user-card:hover {
  background-color: #f3f3f5;
}

#active {
  background-color: #9abce8;
}

.card-img {
  width: 60;
  height: 60;
  border-radius: 50%;
}

.user-card {
  height: 80px !important;
}

.user-card > .row {
  padding: 0.5rem;
}

.message {
  font-size: 0.9rem;
}

.message__span {
  margin-bottom: 0.5rem;
}

.message__date {
  font-size: 11px;
  color: #777;
  font-weight: 500;
}

.message__admin {
  color: 50505;
  background-color: #e4e6eb;
  padding: 8px 10px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-top-left-radius: 18px;
  width: auto;
  display: inline-block;
}

.message__user {
  text-align: left;
  color: white;
  background-color: #0373fc;
  padding: 8px 10px;
  border-bottom-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 18px;
  width: auto;
  display: inline-block;
}

.message__user-name {
  text-align: right;
  font-size: 10px;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-dropdown a {
  color: inherit;
}

.modal-content {
  background: #fff !important;
}

.sub-icon {
  margin-right: 8px;
}

.select2-selection__rendered {
  line-height: 32px !important;
}

.select2-selection__arrow {
  height: 33px !important;
}

.select2-container .select2-selection--single {
  padding: 0 !important;
  height: 35px !important;
}

.card-header.note-toolbar {
  padding: 2px !important;
  background: #f0f0f0 !important;
}

.select2-search > input::-webkit-input-placeholder {
  font-size: 13px;
  color: #a9a9a9;
  padding-left: 5px;
}

.navbar-laravel {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.form-label {
  font-size: 0.875rem;
  line-height: 1;
  vertical-align: top;
  margin-bottom: 0.5rem;
}

.btn-fixed {
  position: fixed;
  bottom: 47px;
  right: 57px;
}

/* Switch */

.reconfig {
  border-radius: 0px !important;
  margin-left: 0px;
  width: 900px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

