.webui-popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1800;
  display: none;
  width: 276px;
  min-height: 32px;
  padding: 0;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #e4eaec;
  border: 1px solid rgba(204, 213, 219, .8);
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
          box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}
.webui-popover.top,
.webui-popover.top-left,
.webui-popover.top-right {
  margin-top: -8px;
}
.webui-popover.right,
.webui-popover.right-top,
.webui-popover.right-bottom {
  margin-left: 8px;
}
.webui-popover.bottom,
.webui-popover.bottom-left,
.webui-popover.bottom-right {
  margin-top: 8px;
}
.webui-popover.left,
.webui-popover.left-top,
.webui-popover.left-bottom {
  margin-left: -8px;
}
.webui-popover.pop {
  -webkit-transition: -webkit-transform .15s cubic-bezier(.3, 0, 0, 1.5);
       -o-transition:      -o-transform .15s cubic-bezier(.3, 0, 0, 1.5);
          transition:         transform .15s cubic-bezier(.3, 0, 0, 1.5);
  -webkit-transform: scale(.8);
      -ms-transform: scale(.8);
       -o-transform: scale(.8);
          transform: scale(.8);
}
.webui-popover.fade {
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.webui-popover.in {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
.webui-popover-inner .close {
  float: right;
  margin: 5px 10px 0 0;
  font-family: arial;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.webui-popover-inner .close:hover,
.webui-popover-inner .close:focus {
  filter: alpha(opacity=50);
  opacity: .5;
}
.webui-popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f3f7f9;
  border-bottom: 1px solid #e2ecf1;
  border-radius: 3px 3px 0 0;
}
.webui-popover-content {
  padding: 20px;
  overflow: auto;
}
.webui-no-padding .webui-popover-content {
  padding: 0;
}
.webui-no-padding .list-group-item {
  border-right: none;
  border-left: none;
}
.webui-no-padding .list-group-item:first-child {
  border-top: 0;
}
.webui-no-padding .list-group-item:last-child {
  border-bottom: 0;
}
.webui-popover > .arrow,
.webui-popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.webui-popover > .arrow {
  border-width: 9px;
}
.webui-popover > .arrow:after {
  content: "";
  border-width: 8px;
}
.webui-popover.top > .arrow,
.webui-popover.top-right > .arrow,
.webui-popover.top-left > .arrow {
  bottom: -9px;
  left: 50%;
  margin-left: -9px;
  border-top-color: #a8bbc2;
  border-top-color: rgba(204, 213, 219, .85);
  border-bottom-width: 0;
}
.webui-popover.top > .arrow:after,
.webui-popover.top-right > .arrow:after,
.webui-popover.top-left > .arrow:after {
  bottom: 1px;
  margin-left: -8px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.webui-popover.right > .arrow,
.webui-popover.right-top > .arrow,
.webui-popover.right-bottom > .arrow {
  top: 50%;
  left: -9px;
  margin-top: -9px;
  border-right-color: #a8bbc2;
  border-right-color: rgba(204, 213, 219, .85);
  border-left-width: 0;
}
.webui-popover.right > .arrow:after,
.webui-popover.right-top > .arrow:after,
.webui-popover.right-bottom > .arrow:after {
  bottom: -8px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.webui-popover.bottom > .arrow,
.webui-popover.bottom-right > .arrow,
.webui-popover.bottom-left > .arrow {
  top: -9px;
  left: 50%;
  margin-left: -9px;
  border-top-width: 0;
  border-bottom-color: #a8bbc2;
  border-bottom-color: rgba(204, 213, 219, .85);
}
.webui-popover.bottom > .arrow:after,
.webui-popover.bottom-right > .arrow:after,
.webui-popover.bottom-left > .arrow:after {
  top: 1px;
  margin-left: -8px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.webui-popover.left > .arrow,
.webui-popover.left-top > .arrow,
.webui-popover.left-bottom > .arrow {
  top: 50%;
  right: -9px;
  margin-top: -9px;
  border-right-width: 0;
  border-left-color: #a8bbc2;
  border-left-color: rgba(204, 213, 219, .85);
}
.webui-popover.left > .arrow:after,
.webui-popover.left-top > .arrow:after,
.webui-popover.left-bottom > .arrow:after {
  right: 1px;
  bottom: -8px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.webui-popover-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1799;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .65);
}
.webui-popover-primary .webui-popover-title {
  color: #fff;
  background-color: #62a8ea;
  border-color: #62a8ea;
}
.webui-popover-primary.bottom .arrow {
  border-bottom-color: #62a8ea;
}
.webui-popover-primary.bottom .arrow:after {
  border-bottom-color: #62a8ea;
}
.webui-popover-success .webui-popover-title {
  color: #fff;
  background-color: #46be8a;
  border-color: #46be8a;
}
.webui-popover-success.bottom .arrow {
  border-bottom-color: #46be8a;
}
.webui-popover-success.bottom .arrow:after {
  border-bottom-color: #46be8a;
}
.webui-popover-info .webui-popover-title {
  color: #fff;
  background-color: #57c7d4;
  border-color: #57c7d4;
}
.webui-popover-info.bottom .arrow {
  border-bottom-color: #57c7d4;
}
.webui-popover-info.bottom .arrow:after {
  border-bottom-color: #57c7d4;
}
.webui-popover-warning .webui-popover-title {
  color: #fff;
  background-color: #f2a654;
  border-color: #f2a654;
}
.webui-popover-warning.bottom .arrow {
  border-bottom-color: #f2a654;
}
.webui-popover-warning.bottom .arrow:after {
  border-bottom-color: #f2a654;
}
.webui-popover-danger .webui-popover-title {
  color: #fff;
  background-color: #f96868;
  border-color: #f96868;
}
.webui-popover-danger.bottom .arrow {
  border-bottom-color: #f96868;
}
.webui-popover-danger.bottom .arrow:after {
  border-bottom-color: #f96868;
}

#activity-parent { width: 100%;}

/* #activity-stream {
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    text-align: left;
} */

.activity-log { height: 50vh;}

#activity-stream #stream-error-msg {
    color: rgb(230, 29, 29);
    width: 100%;
    display: block;
    text-align: center;
}

#activity-stream li {
    white-space: normal;
    font-size: 14px;
    margin-bottom: 0;
    position: relative;
    padding: 4px 0px;
}

#activity-stream li >div.list-text::first-line {font-weight: 400;}

#activity-stream li:hover {
    background-color: #f3f3f3 !important;
    color:#454545;
}
#activity-stream li:hover:after {
    background-color: transparent;
}
#activity-stream li:after {
    content: ' ';
    position: relative;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #eaeaeb;
    display: block;
}
#activity-stream li .list-label {
    top: 0;
    left: 0;
    width: 18px;
    height: 100%;
    position: absolute;
}
#activity-stream li.historical {
    opacity: 0.8;
}
.page-aside .list-group-item .icon,  #activity-stream .list-group-item:hover .icon{
    color: #7d7d7d !important;
}
/* #activity-stream li .icon {
    font-size: 18px;
    transform: translateY(50%);
    float: left;
    padding-bottom: 10px;
    padding-left: 17px;
} */

#activity-stream.timeline .timeline-content {
    padding-left: 17px;padding-right:6px;
}

#activity-stream.timeline li .timeline-dot { transform: translateY(22%);right:8px; left:unset; margin:0}

#activity-stream li .fas {
    color: #fff !important;
}
#activity-stream li div.info {
    color: #4dadf7 !important;
}
#activity-stream li div.default {
    color: #949494 !important;
}
#activity-stream li div.danger {
    color: #f96868 !important;
}
#activity-stream li div.warning {
    color: #f0ad4e !important;
}
#activity-stream li div.critical {
    color: #f96868 !important;
    animation: alertFlash 0.5s infinite;
}
@keyframes alertFlash {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
#activity-stream .label-success {
    background-color: #4CAF50 !important;
}

/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 * version: 1.18.3
 * https://github.com/wenzhixin/bootstrap-table/
 */
 .bootstrap-table .fixed-table-toolbar::after {
    content: "";
    display: block;
    clear: both;
  }
  
  .bootstrap-table .fixed-table-toolbar .bs-bars,
  .bootstrap-table .fixed-table-toolbar .search,
  .bootstrap-table .fixed-table-toolbar .columns {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group {
    display: inline-block;
    margin-left: -1px !important;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group > .btn {
    border-radius: 0;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group:first-child > .btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns .btn-group > .btn-group:last-child > .btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns .dropdown-menu {
    text-align: left;
    max-height: 300px;
    overflow: auto;
    -ms-overflow-style: scrollbar;
    z-index: 1001;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns label {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns-left {
    margin-right: 5px;
  }
  
  .bootstrap-table .fixed-table-toolbar .columns-right {
    margin-left: 5px;
  }
  
  .bootstrap-table .fixed-table-toolbar .pull-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  
  .bootstrap-table .fixed-table-container {
    position: relative;
    clear: both;
  }
  
  .bootstrap-table .fixed-table-container .table {
    width: 100%;
    margin-bottom: 0 !important;
  }
  
  .bootstrap-table .fixed-table-container .table th,
  .bootstrap-table .fixed-table-container .table td {
    vertical-align: middle;
    box-sizing: border-box;
  }
  
  .bootstrap-table .fixed-table-container .table thead th {
    vertical-align: bottom;
    padding: 0;
    margin: 0;
  }
  
  .bootstrap-table .fixed-table-container .table thead th:focus {
    outline: 0 solid transparent;
  }
  
  .bootstrap-table .fixed-table-container .table thead th.detail {
    width: 30px;
  }
  
  .bootstrap-table .fixed-table-container .table thead th .th-inner {
    padding: 0.75rem;
    vertical-align: bottom;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .bootstrap-table .fixed-table-container .table thead th .sortable {
    cursor: pointer;
    background-position: right;
    background-repeat: no-repeat;
    padding-right: 30px !important;
  }
  
  .bootstrap-table .fixed-table-container .table thead th .both {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7X QMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC");
  }
  
  .bootstrap-table .fixed-table-container .table thead th .asc {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==");
  }
  
  .bootstrap-table .fixed-table-container .table thead th .desc {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII= ");
  }
  
  .bootstrap-table .fixed-table-container .table tbody tr.selected td {
    background-color: rgba(0, 0, 0, 0.075);
  }
  
  .bootstrap-table .fixed-table-container .table tbody tr.no-records-found td {
    text-align: center;
  }
  
  .bootstrap-table .fixed-table-container .table tbody tr .card-view {
    display: flex;
  }
  
  .bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-title {
    font-weight: bold;
    display: inline-block;
    min-width: 30%;
    width: auto !important;
    text-align: left !important;
  }
  
  .bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-value {
    width: 100% !important;
  }
  
  .bootstrap-table .fixed-table-container .table .bs-checkbox {
    text-align: center;
  }
  
  .bootstrap-table .fixed-table-container .table .bs-checkbox label {
    margin-bottom: 0;
  }
  
  .bootstrap-table .fixed-table-container .table .bs-checkbox label input[type="radio"],
  .bootstrap-table .fixed-table-container .table .bs-checkbox label input[type="checkbox"] {
    margin: 0 auto !important;
  }
  
  .bootstrap-table .fixed-table-container .table.table-sm .th-inner {
    padding: 0.3rem;
  }
  
  .bootstrap-table .fixed-table-container.fixed-height:not(.has-footer) {
    border-bottom: 1px solid #dee2e6;
  }
  
  .bootstrap-table .fixed-table-container.fixed-height.has-card-view {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
  }
  
  .bootstrap-table .fixed-table-container.fixed-height .fixed-table-border {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
  }
  
  .bootstrap-table .fixed-table-container.fixed-height .table thead th {
    border-bottom: 1px solid #dee2e6;
  }
  
  .bootstrap-table .fixed-table-container.fixed-height .table-dark thead th {
    border-bottom: 1px solid #32383e;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-header {
    overflow: hidden;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body {
    overflow-x: auto;
    overflow-y: auto;
    height: 100%;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading {
    align-items: center;
    background: #fff;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    transition: visibility 0s, opacity 0.15s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.open {
    visibility: visible;
    opacity: 1;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap {
    align-items: baseline;
    display: flex;
    justify-content: center;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .loading-text {
    margin-right: 6px;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot,
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after,
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::before {
    content: "";
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: LOADING;
    background: #212529;
    border-radius: 50%;
    display: block;
    height: 5px;
    margin: 0 4px;
    opacity: 0;
    width: 5px;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-dot {
    animation-delay: 0.3s;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading .loading-wrap .animation-wrap::after {
    animation-delay: 0.6s;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark {
    background: #212529;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark .animation-dot,
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark .animation-wrap::after,
  .bootstrap-table .fixed-table-container .fixed-table-body .fixed-table-loading.table-dark .animation-wrap::before {
    background: #fff;
  }
  
  .bootstrap-table .fixed-table-container .fixed-table-footer {
    overflow: hidden;
  }
  
  .bootstrap-table .fixed-table-pagination::after {
    content: "";
    display: block;
    clear: both;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination-detail,
  .bootstrap-table .fixed-table-pagination > .pagination {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination-detail .pagination-info {
    line-height: 34px;
    margin-right: 5px;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list {
    display: inline-block;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group {
    position: relative;
    display: inline-block;
    vertical-align: middle;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination-detail .page-list .btn-group .dropdown-menu {
    margin-bottom: 0;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination ul.pagination {
    margin: 0;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a {
    color: #c8c8c8;
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a::before {
    content: '\2B05';
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.page-intermediate a::after {
    content: '\27A1';
  }
  
  .bootstrap-table .fixed-table-pagination > .pagination ul.pagination li.disabled a {
    pointer-events: none;
    cursor: default;
  }
  
  .bootstrap-table.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100% !important;
    background: #fff;
    height: calc(100vh);
    overflow-y: scroll;
  }
  
  .bootstrap-table.bootstrap4 .pagination-lg .page-link, .bootstrap-table.bootstrap5 .pagination-lg .page-link {
    padding: .5rem 1rem;
  }
  
  .bootstrap-table.bootstrap5 .float-left {
    float: left;
  }
  
  .bootstrap-table.bootstrap5 .float-right {
    float: right;
  }
  
  /* calculate scrollbar width */
  div.fixed-table-scroll-inner {
    width: 100%;
    height: 200px;
  }
  
  div.fixed-table-scroll-outer {
    top: 0;
    left: 0;
    visibility: hidden;
    width: 200px;
    height: 150px;
    overflow: hidden;
  }
  
  @keyframes LOADING {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
/*!
 * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */

 .datepicker {
  padding: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: -moz-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -ms-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
  background-image: -webkit-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: -moz-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -ms-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
  background-image: -webkit-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: -o-linear-gradient(to bottom, #b3b3b3, #808080);
  background-image: linear-gradient(to bottom, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
  background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
  background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
  background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  margin-top: 3px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
/*# sourceMappingURL=bootstrap-datepicker.css.map */