.max-h-30 {
    max-height: 30vh
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.opacity-30 {
    opacity: 30%;
}

.error {
    width: 100%;
    font-size: 80%;
    color: #dc3545;
}

#overlay {
    background: #000000;
    color: #ffffff;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
  }
  .spinner {
      margin: 0 auto;
      height: 64px;
      width: 64px;
      animation: rotate 0.8s infinite linear;
      border: 5px solid #ffffff;
      border-right-color: transparent;
      border-radius: 50%;
  }
  @keyframes rotate {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(360deg);
      }
  }

  .chat-online {
    color: #34ce57
}

.chat-offline {
    color: #e4606d
}

.chat-messages {
    display: flex;
    flex-direction: column;
    max-height: 88vh;
    overflow-y: scroll;
}

.chat-message-left,
.chat-message-right {
    /* display: flex; */
    flex-shrink: 0
}

.chat-message-left {
    margin-right: auto
}

.chat-message-right {
    flex-direction: row-reverse;
    margin-left: auto
}
.py-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
}
.px-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important;
}
.flex-grow-0 {
    flex-grow: 0!important;
}
.border-top {
    border-top: 1px solid #dee2e6!important;
}
.bg-light-green{
    background: #39c0ed33;
}
.bg-light-gray{
    background: #efefef;
}
.bg-light-red{
    background: #e29da4;
}
.copy-btn {
    font-size: 10px;
    padding: 2px;
    
}

.chat-header {
    position: sticky;
    top: 0;
    background: #54b4d3e6 !important;
    color: #ffffff;
    z-index: 9999;
}

.cursor-pointer {
    cursor: pointer;
}

.location-list {
    border: 1px solid #ced4da;
    padding-left: 0;
    max-height: 150px;
    overflow-y: scroll;
    position: absolute;
    width: 100%;
    border-radius: .25rem;
    padding: auto;
    background: #ffffff;
}

.ui-autocomplete-loading {
    background: white url(https://jqueryui.com/resources/demos/autocomplete/images/ui-anim_basic_16x16.gif) right center no-repeat;
}

li.gsLocationSelect {
    padding: 4px;
    border-bottom: 1px solid #ccc;
}
.check-box-size {
    width: 20px !important;
    height: 20px !important;
}
.skill-data {
    display: block;
}
.opted-option {
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background: transparent;
}

.fa-clock-o:before{
    content:"\f017"
}

.badge-font {
    font-size: 1rem;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .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: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 30px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .apeal-class {
    margin: 5px;
  }