.selectpicker {
  border-color: #555555 !important;
}
@media print {
  .print-no {
    display: none !important;
    margin: 0px !important;
    padding: 0px !important;
  }
}

.list-group-item.active {
  background-color: #e4e4ee !important;
  border-color: #cccccc !important;
}

.min-content { white-space: nowrap; width: 1%; }
.max-content { width: max-content !important; }

.text-primary {
  color: rgb(16,103,150) !important;
}
.btn-primary {
  background-color: rgb(16,103,150) !important;
}

.wrapper-login-page {
  margin: 7.5% auto;
  width: 520px;
  position: relative;
}

 #wrapper {
    overflow-x: hidden;
 }

#sidebar-wrapper {
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
  margin-top: 80px;
  z-index: 500;
  border-right: #cccccc solid 1px;
}
#topbar {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
#menu-toggle {
  width: 40px;
  height: 40px;
  margin: 20px;
  border-width: 0px;
  border-radius: 50%;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  margin-top: 80px;
  padding-left: 10px;
  padding-right: 10px;
  min-height: 90vh;
  background-color: #f0f0f0;
    width: 100%;
}
#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -60px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #3498db;
    border-bottom: 12px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loading {
  position: fixed;
  display: block;
  width: 214px;
  height: 138px;
  top: 50%;
  left: 50%;
  margin-top: -69px;
  margin-left: -107px;
  background-color: #fff;
  z-index: 1000;
}

#loading-image {
  width: 214px;
  height: 138px;
  z-index: 1000;
}

/* For Modal Zoom in of Images */
/* The Modal (background) */
.abPictureModal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1500; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.abPictureModalContent {
  margin: auto;
  display: block;
  width: 80%;
/*  max-width: 700px; */
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
.abPictureModalCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.abPictureModalContent, .abPictureModalCaption { 
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0.5)} 
  to {-webkit-transform:scale(1)}
}
@keyframes zoom {
  from {transform:scale(0.5)} 
  to {transform:scale(1)}
}

/* The Close Button */
.abPictureModalClose {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.abPictureModalClose:hover,
.abPictureModalClose:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .abPictureModalContent {
      width: 100%;
  }
}
/* For Modal Zoom in of Images */
