

.left-bar{
    width: 260px;
    height: 100vh;
    background-color: #313a46;
    position: fixed;
    overflow-x: hidden;
}

.left-bar:hover{
    overflow-y: scroll;
}

.left-bar::-webkit-scrollbar {
    width: 1px;
}
  
  /* Track */
.left-bar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
   
  /* Handle */
.left-bar::-webkit-scrollbar-thumb {
    background: transparent; 
}
  
  /* Handle on hover */
/* .left-bar::-webkit-scrollbar-thumb:hover {
    background: #555; 
} */

.left-bar .logo{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-top: 25px;
}

.left-bar .logo img{
    height: 20px;
    margin-top: -5px;
}

.left-bar .slogan{
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-right: -98px;
}

.left-bar ul{
    margin-left: 35px;
    margin-right: 35px;
}

.left-bar ul li{
    margin-bottom: 15px;
}

.left-bar ul li i{
    width: 30px;
}

.left-bar ul li a{
    color: #8391a2;
    font-weight: bold;
}

.left-bar ul li a:hover{
    color: #89a0bd;
    text-decoration: none;
}

.left-bar ul .active a{
    color: #fff;
    font-weight: bold;
}

.left-bar ul .active a:hover{
    color: #fff;
}


.right-bar{
    margin-left: 260px;
}

.search-input .form-control{
    border: none;
    height: 38px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f1f3fa;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.search-input .btn-primary{
    border-radius: 2px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: #727cf5 !important;
}

.search-input .btn-primary:hover{
    background-color: #4e5bf2 !important;
}

.navbar{
    padding: 1rem 1rem;
}

.cus-item .nav-link{
    font-size: 18px !important;
    margin-right: 30px;
}

.card{
    border: 0 !important
}

.form-bar{
    width: 50%;
    height: 100vh;
    background-color: #fff;
    right: -50%;
    z-index: 999;
    position: fixed;
    overflow: scroll;
    overflow-x: hidden;

    transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
}

.show-form-bar{
    right: 0;
}

.form-bar-overlay{
    width: 50%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    left: -50%;
    z-index: 999;
    position: fixed;

    transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
}

.show-form-bar-overlay{
    left: 0;
}

.form-control{
    border-radius: 2px !important;
}

.btn-primary{
    border-radius: 2px;
    background-color: #727cf5 !important;
}

.btn-primary:hover{
    background-color: #4e5bf2 !important;
}

.table thead th {
    border-bottom: 0 !important;
}

.table td, .table th {
    border-top: 0 !important;
    padding: 0.95rem;
}

.table td, .table tr {
    border-bottom: 1px solid #dee2e6;
}

.booking-general-details i{
    width: 30px;
}

.lds-dual-ring {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #00000091;
    display:none;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
  }
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* datatable custom buttons and filters */
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

tfoot input {
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
}

/* th, td {
    white-space: nowrap;
} */

div.dataTables_wrapper {
    width: 100%;
    margin: 0 auto;
}

/* div.ColVis {
    float: left;
} */

.dataTables_filter{
    width: 50%;
    float: right;
    text-align: right !important;
}

.dataTables_length {
    width: 50%;
    float: left;
    text-align: left !important;
}

.dataTables_length select{
    display: block;
    width: 100%;
    height: calc(1.6em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 5px;
}

.dataTables_filter input{
    display: block;
    width: 100%;
    height: calc(1.6em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

div.dataTables_wrapper div.dataTables_paginate {    
    margin-top: 15px !important;
}

div.dataTables_wrapper div.dataTables_paginate > span > a {
	display:inline-block;
    position: relative;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #3490dc;
    background-color: #fff;
    border: 1px solid #dee2e6;
    cursor: pointer;
}

div.dataTables_wrapper div.dataTables_paginate > span > a:hover {
    z-index: 3;
    color: #fff;
    background-color: #3490dc;
    border-color: #3490dc;
}

div.dataTables_wrapper div.dataTables_paginate > span > .current {
    z-index: 3;
    color: #fff;
    background-color: #3490dc;
    border-color: #3490dc;
}


div.dataTables_wrapper div.dataTables_paginate > a  {
    display:inline-block;
    position: relative;
    padding: .5rem .75rem;
    line-height: 1.25;
    color: #3490dc;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

div.dataTables_wrapper div.dataTables_paginate > .next{
    border-left: 0px !important
}

.open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
  }
  
  /* The popup chat - hidden by default */
  .chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 1px solid #f1f1f1;
    z-index: 9;
  }
  
  /* Add styles to the form container */
  .form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
  }
  
  /* Full-width textarea */
  .form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 200px;
  }
  
  /* When the textarea gets focus, do something */
  .form-container textarea:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for the submit/send button */
  .form-container .btn {
    background-color: #4c6faf;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.9;
  }
  
  /* Add a red background color to the cancel button */
  .form-container .cancel {
    background-color: rgba(255, 0, 0, 0.986);
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }


  .dataTables_processing {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #00000091;
    display:none;
  }
  .dataTables_processing:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: dataTables_processing 1.2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
  }
@keyframes dataTables_processing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
