#loaderDiv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1234;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #1CC88A;
  border-radius: 50%;
  border-top: 16px solid white;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
  text-align: center;
}
.page-link {
    color: #17A673 !important;
    border-color: #17A673 !important;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff !important;
    background-color: #17A673 !important;
    border-color: #17A673 !important;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  float:left;
  margin: 5px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* 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.default:checked + .slider {
  background-color: #444;
}
input.primary:checked + .slider {
  background-color: #2196F3;
}
input.success:checked + .slider {
  background-color: #159366;
}
input.info:checked + .slider {
  background-color: #3de0f5;
}
input.warning:checked + .slider {
  background-color: #FFC107;
}
input.danger:checked + .slider {
  background-color: #f44336;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

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%;
}
.bootstrap-select[class*=col-] .dropdown-toggle {
    background-color: white !important;
}


/* 3. Change option's color when the select menu is opened? */
.bootstrap-select .dropdown-menu>li>a {
    color: grey !important;
  background-color: white !important;
}

/* 4. Change color when option on hover when select menu is opened? */
.bootstrap-select .dropdown-menu>li>a:hover:not(:focus) {
    color: grey !important;
  background-color: #1CC588 !important;
}

/* 5. Change background color of the whole select menu when is opened? */
.bootstrap-select .dropdown-menu {
  background-color: white !important;
}

.bootstrap-select .dropdown-menu li:not(.disabled) > a:hover small,
.bootstrap-select .dropdown-menu li:not(.disabled) > a:focus small,
.bootstrap-select .dropdown-menu li.active:not(.disabled) > a small {
    color: #1CC588 !important;
}
		
.row_gallery > .column_gallery {
  padding: 0 8px;
}

.row_gallery:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column_gallery {
  float: left;
  width: 20%;
}

/* The Modal (background) */
.modal_gallery {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content_gallery {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close_gallery {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close_gallery:hover,
.close_gallery:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides_gallery {
  display: none;
}

/* Next & previous buttons */
.prev_gallery,
.next_gallery {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next_gallery {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev_gallery:hover,
.next_gallery:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext_gallery {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container_gallery {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo_gallery {
  opacity: 0.6;
}

.active_gallery,
.demo_gallery:hover {
  opacity: 1;
}

img.hover-shadow_gallery {
  transition: 0.3s;
}

.hover-shadow_gallery:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.switch_activity {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  float:left;
  margin: 0px;
}
.switch_activity input {display:none;}

/* The slider */
.slider_activity {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider_activity:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input.default:checked + .slider_activity {
  background-color: #444;
}
input.primary:checked + .slider_activity {
  background-color: #2196F3;
}
input.success:checked + .slider_activity {
  background-color: #159366;
}
input.info:checked + .slider_activity {
  background-color: #3de0f5;
}
input.warning:checked + .slider_activity {
  background-color: #FFC107;
}
input.danger:checked + .slider_activity {
  background-color: #f44336;
}

input:focus + .slider_activity {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider_activity:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider_activity.round {
  border-radius: 17px;
}

.slider_activity.round:before {
  border-radius: 50%;
}

.onHoverBg:hover{
  background-color: #13895F !important;
  color: white !important;
}


.activeDate{
  background-color: #1CC88A !important;
  color: white !important;
}

.deactiveDate{
  background-color: transparent !important;
  color: #AAB61E !important;
}

.overTimeDate{
  background-color: #E74A3B !important;
  color: white !important;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: white;
  text-decoration: none;
  background-color: #1cc88a;
}