[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}
.modal.fade.in {
    opacity: 1;
  }
  .modal.in .modal-dialog {
    transform: translate(0, 0);
  }
  .modal-backdrop.in {
    opacity: 0.5;
    /* opacity: $modal-backdrop-opacity; (SCSS) */
  }

  .angular-mapbox-gls {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  
  .angular-mapbox-marker {
    width: 20px;
    height: 20px;
    background: #e06729;
    border-radius: 50%;
    display: block;
  }
  
  .angular-mapbox-hidden {
    position: fixed;
    top: -1px;
    left: -1px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* Absolute Center Spinner */
  .loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }

  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }

  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(51, 85, 235, 0.75) 1.5em 0 0 0, rgba(51, 85, 235, 0.75) 1.1em 1.1em 0 0, rgba(51, 85, 235, 0.75) 0 1.5em 0 0, rgba(51, 85, 235, 0.75) -1.1em 1.1em 0 0, rgba(51, 85, 235, 0.5) -1.5em 0 0 0, rgba(51, 85, 235, 0.5) -1.1em -1.1em 0 0, rgba(51, 85, 235, 0.75) 0 -1.5em 0 0, rgba(51, 85, 235, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(51, 85, 235, 0.75) 1.5em 0 0 0, rgba(51, 85, 235, 0.75) 1.1em 1.1em 0 0, rgba(51, 85, 235, 0.75) 0 1.5em 0 0, rgba(51, 85, 235, 0.75) -1.1em 1.1em 0 0, rgba(51, 85, 235, 0.75) -1.5em 0 0 0, rgba(51, 85, 235, 0.75) -1.1em -1.1em 0 0, rgba(51, 85, 235, 0.75) 0 -1.5em 0 0, rgba(51, 85, 235, 0.75) 1.1em -1.1em 0 0;
  }

  /* Animation */

  @-webkit-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @-moz-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @-o-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }


  /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* 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: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #f80c0c;
}

input:focus + .slider {
  box-shadow: 0 0 1px #f80c0c;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.fc-time {
  display: none !important;
}

.form-group {
  margin-bottom: 5px;
}

table.jambo_table {
  border: 1px solid rgba(221, 221, 221, .78)
}

table.jambo_table thead {
  background: rgba(52, 73, 94, .94);
  color: #ECF0F1
}

table.jambo_table tfoot {
  background: rgba(52, 73, 94, .94);
  color: #ECF0F1
}
table.jambo_table tbody tr:hover td {
  background: rgba(38, 185, 154, .07);
  border-top: 1px solid rgba(38, 185, 154, .11);
  border-bottom: 1px solid rgba(38, 185, 154, .11)
}

table.jambo_table tbody tr.selected {
  background: rgba(38, 185, 154, .16)
}

table.jambo_table tbody tr.selected td {
  border-top: 1px solid rgba(38, 185, 154, .4);
  border-bottom: 1px solid rgba(38, 185, 154, .4)
}


.line {
  width: 100%;
  height: 2px;
  margin: 10px 0;
  overflow: hidden;
  font-size: 0;
}

.line-xs {
  margin: 0;
}

.line-lg {
  margin-top: 15px;
  margin-bottom: 15px;
}

.line-dashed {
  background-color: transparent;
  border-style: dashed !important;
  border-width: 0;
}

 


tr.detail-row {
  display: none;
}
tr.detail-row.open {
  display: block;
  display: table-row;
}
tr.detail-row>td {
  background-color: #f1f6f8;
  border-top: 3px solid #d1e1ea!important;
}
.table-detail {
  background-color: #fff;
  border: 1px solid #dcebf7;
  width: 100%;
  padding: 12px;
}
.table-detail td>.profile-user-info {
  width: 100%}

  .profile-user-info {
    display: table;
    width: 98%;
    width: calc(100% - 24px);
    margin: 0 auto;
}
.profile-info-row {
    display: table-row;
}
.profile-info-name, .profile-info-value {
    display: table-cell;
    border-top: 1px dotted #D5E4F1;
}
.profile-info-name {
    text-align: right;
    padding: 6px 10px 6px 4px;
    font-weight: 400;
    color: #667E99;
    background-color: transparent;
    width: 110px;
    vertical-align: middle;
}
.profile-info-value {
    padding: 6px 4px 6px 6px;
}
.profile-info-value>span+span:before {
    display: inline;
    content: ", ";
    margin-left: 1px;
    margin-right: 3px;
    color: #666;
    border-bottom: 1px solid #FFF;
}
.profile-info-value>span+span.editable-container:before {
    display: none;
}
.profile-info-row:first-child .profile-info-name, .profile-info-row:first-child .profile-info-value {
    border-top: none;
}
.profile-user-info-striped {
    border: 1px solid #DCEBF7;
}
.profile-user-info-striped .profile-info-name {
    color: #336199;
    background-color: #EDF3F4;
    border-top: 1px solid #F7FBFF;
}
.profile-user-info-striped .profile-info-value {
    border-top: 1px dotted #DCEBF7;
    padding-left: 12px;
}
.profile-picture {
    border: 1px solid #CCC;
    background-color: #FFF;
    padding: 4px;
    display: inline-block;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .15);
}


.content-wrapper {
  min-height: calc(100vh - 101px);
  background-color: #ffffff;
  z-index: 800;
}

.form-control:focus {
  border-color: #e06729;
  box-shadow: none;
}

.box {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  border-top: 3px solid #d2d6de;
  margin-bottom: 20px;
  width: 100%;
  box-shadow:none;
}

.box-inside .img-responsive {margin:0 auto;height: 300px;}


.panel-empty {
            width: 100%;
            height: 400px; /* for demo only */
            }
            .panel-empty-inside {
/*            display: table-cell; */
/*            text-align: center; */
              vertical-align: middle;
            }
            .box-inside {
                
/*             display: inline-block; */
            vertical-align: top;
            }

