body{
  background: #f6f6f6;
  font-size: 0.8rem;
}

.header-logo{width: 100px;}
.card-title{
  color: #3bc9b0;
}
.card{
    border: none;
    box-shadow: 0px 1px 4px 0px #ccc;
}
.card-body{
  /* padding: .8rem 1rem; */
  padding: .8rem .6rem .8rem .4rem;
}
.list-group p{
  font-size: .7rem;

}
.list-group-item{
  padding: .6rem 1rem;
  border: 1px solid #ccc !important;
  border-radius: 5px;
  margin-top: 1rem;
  background: #f6f6f6;
}
.list-group-item:hover{
  background: #f6f6f6;  
}
/*.list-group-item:nth-child(even){
  background: #f6f6f6;
}*/
.btn-primary{
    color: #fff;
    background-color: #3bc9b0;
    border-color: #3bc9b0;
}
.btn-primary:hover{
    background-color: #3bc9b0;
    border-color: #3bc9b0;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #36b59f;
    /* border-color: #36b59f; */
    box-shadow: 0 0 0 0.2rem rgba(38, 255, 243, 0.5);
}
.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #3bc9b0;
    border-color: #3bc9b0;
    box-shadow: 0 0 0 0.2rem rgba(38, 255, 243, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #8fded0;
    border-color: #3bc9b0;
}
.middle-scrollbar{
  overflow: auto;
  height: 83vh;
}
.full-width{
  width: 100%;
}
.mr-12{
  margin-right: 12px;
}
.uppercase{
  text-transform: uppercase;
}
.camelCase{
  text-transform: capitalize;
}
.ml-7{
  margin-left: 7px !important;
}
h5{
  font-size: 1.2rem;
}
h6{
  font-size: 0.8rem;
}
.form-control{
  font-size: 0.8rem;
  font-weight: 300;
}
.btn{
  font-weight: 350;
  font-size: 0.9rem;
}
.elastic-textarea {
  resize: none;
  overflow: hidden;
  min-height: 200px;
}
.example-source-text {
  background-color: #ffffff !important;
  padding: 12px !important;
  border: 1px solid #ced4da !important;
  min-height: 198px !important;
}
.remove-ent{
  color: #ec6c5c !important;
  font-size: 14px !important;
  cursor: pointer;
}
.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 26px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

input:checked + .slider {
  background-color: #3bc9b0;
}

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

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

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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