* {
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;   
}

*:focus {
    outline: none;
}

html,body{
    overflow-x: hidden;
    height: 100%;
    scroll-behavior: smooth;
    color:#40546d;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* width */
.nav-list::-webkit-scrollbar  {
    width: 1px !important;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 1px 1px 1px rgba(255,255,255,0.7); 
    border-radius: 10px;
}

/* Track */
.nav-list::-webkit-scrollbar-track {
    box-shadow: 1px 1px 1px rgba(255,255,255,0.7); 
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ecf0f1; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #bdc3c7; 
}


a{
    -webkit-touch-callout: none;           
    user-select: none;
    -webkit-user-select: none;
}

textarea, .input-group input{
    height: auto;
}

select.form-control{
    padding: 0 .75rem;
}

select.chosen-select{
    padding: 0 .75rem;
    height:25px;
}

input::-webkit-calendar-picker-indicator{
    display: none;
}

input[type="date"]::-webkit-input-placeholder{ 
    visibility: hidden !important;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
      display: none;
      -webkit-appearance: none;
  }

.card-full{
    height: 85vh;
}

.navbar-brand img{
    max-width: 100px;
}

.speech-wrapper {
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}

.speech-wrapper .bubble {
    min-width: 100px;
    height: auto;
    display: block;
    background: #f5f5f5;
    border-radius: 4px;
    position: relative;
    margin: 0 0 25px;
}

.speech-wrapper .bubble.alt {
    margin: 0 0 0 60px;
}

.speech-wrapper .bubble .txt {
    padding: 8px;
}

.speech-wrapper .bubble .txt .name {
    font-weight: 600;
    font-size: 12px;
    margin: 0 0 4px;
    color: #3498db;
}

.speech-wrapper .bubble .txt .name span {
    font-weight: normal;
    color: #b3b3b3;
}

.speech-wrapper .bubble .txt .name.alt {
    color: #2ecc71;
}

.speech-wrapper .bubble .txt .message {
    font-size: 12px;
    margin: 0;
    color: #2b2b2b;
    max-width: 60vw;
}

.speech-wrapper .bubble .txt .timestamp {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
}

.speech-wrapper .bubble .bubble-arrow {
    position: absolute;
    width: 0;
    bottom: 42px;
    left: -16px;
    height: 0;
}

.speech-wrapper .bubble.alt .bubble-arrow {
    right: -2px;
    bottom: 40px;
    left: auto;
}

.speech-wrapper .bubble .bubble-arrow:after {
    content: "";
    position: absolute;
    border: 0 solid transparent;
    border-top: 9px solid #f5f5f5;
    border-radius: 0 20px 0;
    width: 15px;
    height: 30px;
    transform: rotate(145deg);
}

.speech-wrapper .bubble.alt .bubble-arrow:after {
    transform: rotate(45deg) scaleY(-1);
}

.chosen-container{
    min-width: 100%;
}

.msg-status{
    font-size: 10px;
}

.text-justify{
    text-align: justify;
}

.counter-notification{
    color:#fff;
}

.icon-rating i {
    font-size: 22px;
    color: #f5ba00;
    display: inline-block;
    padding: 1px 2px;
    cursor: pointer;
}

.vh-90 {
    height: 90vh !important;
}

.vh-80 {
    height: 80vh !important;
}

.vh-75 {
    height: 75vh !important;
}

.vh-50 {
    height: 50vh !important;
}

.vh-25 {
    height: 25vh !important;
}
.h-85 {
    height: 85% !important;
}
.h-80 {
    height: 80% !important;
}

.mh-50{
    min-height: 50%;
}

.fs-7{
    font-size: 8px;
}

.crop-preview {
    overflow: hidden;
    width: 160px; 
    height: 160px;
    margin: 10px;
    border: 1px solid red;
}        

.crop-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    height: 0;
    transition: .5s ease;
    width: 100%;
}

#crop-return-image {
    display: block;
    max-width: 100%;
}

.nav-scroll {
    white-space: nowrap;
    display:block!important;
    flex-wrap: nowrap;
    max-width: 100%;            
    overflow: hidden;
    -webkit-overflow-scrolling: touch
}
.nav-scroll li {
    display: inline-block
}

.nav-scroll:hover {
    overflow-x: auto;
}

/* width */
.nav-scroll::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.nav-scroll::-webkit-scrollbar-track {
    box-shadow: inset 1px 1px 1px rgba(255,255,255,0.7); 
    border-radius: 10px;
}

/* Handle */
.nav-scroll::-webkit-scrollbar-thumb {
    background: #0d6efd; 
    border-radius: 10px;
}

/* Handle on hover */
.nav-scroll::-webkit-scrollbar-thumb:hover {
    background: #0035c9; 
}

/* MEDIA QUERY - RESPONSIVE LAYOUT
/*-------------------------------------------------------------*/
@media only screen and (max-width: 50em) {
    .card-full{
        min-height: 100px;
        height: 100%;
    }

    .speech-wrapper{
        max-height:100vh;
    }

    .speech-wrapper .bubble .txt .message {
        max-width: 80vw;
    }

    .nav-scroll {
        overflow-x: auto;
    }

}