html,body{
    color: #616366;
    font-size: 15px;
    height: 100%;
    background-color: rgb(245, 245, 245);
}

.card{
    border: none;
}



p{
    line-height: 1.8rem;
}

*{
    border-radius: 3px;
    font-family: "Segoe UI", Arial, sans-serif !important;
}

.page{
    height: 100%;
    overflow-y: auto; 
}

.sided-page{
    height: 100%;
    overflow-y: auto;
    padding: 20px;
}

@media only screen and (min-width: 1366px){
    .sided-page{
        margin-left: 260px;  
    }
}

.small,small{
    line-height: 0.5rem;
}


.btn{
    padding: 6px 20px;
    margin-top: 5px;
    border-radius: 4px;
}

.btn-light{
    color: #555;
}
.btn-light:hover{
    color: #555;
}

.form-control{
    font-size: 0.95rem;
    padding-top: 3px;
    padding-bottom: 3px;
}


label{
    font-weight: 700;
    font-size: 12px;
    line-height: 19px;
    color: #6a6c6f;
}

.progress-bar{
    background-color: var(--success);
}


.card.primary .card-body{
    border-top: 2px solid var(--primary);
}
.card.success .card-body{
    border-top: 2px solid #4fb420;
}
.card.danger .card-body{
    border-top: 2px solid var(--danger);
}
.card.info .card-body{
    border-top: 2px solid var(--info);
}
.card.warning .card-body{
    border-top: 2px solid var(--warning);
}



.panel{
   position: relative;
   height: 100%;
  
}


.panel.loose{
    height: auto;
}

.panel .panel-head{
    font-size: 0.9rem;
    font-weight: 600;
    color: #6a6c6f;
    line-height: 19px;
    position: relative;
}

.panel .panel-actions{
    position: absolute;
    right: 0;
    top:0;
}


.panel.primary{
    border-top: 2px solid var(--primary);
}
.panel.success {
    border-top: 2px solid #4fb420;
}
.panel.danger{
    border-top: 2px solid var(--danger);
}
.panel.info {
    border-top: 2px solid var(--info);
}
.panel.warning{
    border-top: 2px solid var(--warning);
}

.card.primary{
    border-top: 2px solid var(--primary);
}
.card.success{
    border-top: 2px solid #4fb420;
}
.card.danger{
    border-top: 2px solid var(--danger);
}
.card.info{
    border-top: 2px solid var(--info);
}
.card.warning{
    border-top: 2px solid var(--warning);
}

.tableau_wrapper{
    width: 100% !important;
}
.tableau_wrapper .row{
    width: 100% !important;
}
.panel .panel-body{
    padding: 20px;
    background-color: #fff;
    /* border: 1px solid #ddd; */
    border-radius: 0;
    height: calc(100% - 0px);
    width: 100%;
    overflow-x: auto;
}

.panel .panel-footer{
    background-color: var(--light);
    height: 40px;
    padding: 10px 20px;
    font-size: 0.8rem;
    color: #6a6c6f;
    line-height: 1rem;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0px 4px 4px;
}

.panel .stats-icon{
    position: absolute;
    top: 15px;
    right: 20px;
}

.list .list-item-container{
    padding-bottom: 20px;
}

.list .list-item{
    overflow-x: hidden;
    position: relative;
    width: 100%;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #eaeaea;
}

/* 
.dt-table tr{
    border : 1px solid #ddd;
}
.dt-table th{
    border : 1px solid rgb(180, 180, 180) !important;
    background-color: #efefef;
}
.dt-table tr:hover{
   background-color: #f9f9f9;
   cursor: pointer;
}
.dt-table td{
    border : 1px solid #ddd;
}

.dt-input{
   border: 1px solid #ccc;
   outline: none;
   box-shadow: none;
} */

/* This CSS was inspired by the blue pulsing dot in Grammarly */

  .bus{
    width: 45px;
    height: 35px;
  }

  .leaflet-div-icon{
    background-color: transparent !important;
    border: none !important;
  }
  
  .center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .pulse {
    position: relative;
    border: 5px solid var(--green);
    width: var(--pulseSize) !important;
    height: var(--pulseSize) !important;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 var(--green);
    animation: pulsing 2s infinite;
    transition: all 0.2s;
    cursor: pointer;
  }
  .pulse::before{
    position: absolute;
    content: ' ';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: translateX(-50%);
    top: -7px;
    left: 50%;
    background-color: #a0e680;
}

  .pulse:hover {
    --blue: rgba(209, 167, 160,.65);
    --transparentBlue: rgba(209, 167, 160,0);
  }
  
  .pulse:active {
    transform: scale(2.8);
  }
  
  @keyframes pulsing {
    from {
      box-shadow: 0 0 0 0 var(--green);
    }
    70% {
      box-shadow: 0 0 0 var(--pulseSize) var(--transparentGreen);
    }
    to {
      box-shadow: 0 0 0 0 var(--transparentGreen);
    }
  }