/* Main Styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body{
  /* background: linear-gradient(180deg, #1643A3 8%, #2E1170 90%); */
  background: rgba(233, 241, 255, 0.5);
  color: #000;
  font-family: 'Muli', sans-serif;
  font-size: 14px;
}
a, a:hover{
  text-decoration: none;
}
b, strong {
  font-weight: 600;
}

/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#mapcanvas {
  min-height: 615px;
  width: 100%;
}

.map-control {
  background: none rgb(255, 255, 255);
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  margin: 10px;
  padding: 5px 10px 0px;
  /* Hide the control initially, to prevent it from appearing
     before the map loads. */
  display: none;
}
/* Display the control once it is inside the map. */
#mapcanvas .map-control { display: block; }

.selector-control {
  font-size: 14px;
  line-height: 30px;
  vertical-align: baseline;
}

#mapfilters {
  font-family: 'Muli', sans-serif;
  background: none rgb(255, 255, 255);
  border: 0px;
  border-radius: 2px;
  margin: 10px;
  padding: 10px;
  overflow: hidden;
  user-select: none;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
}

.infoWindowContent{
  font-family: 'Muli', sans-serif;
}

header,
header a,
header a:hover,
header a:focus{
    color: #fff;
}
header h5,
header p{
  margin: 0;
}
.back{
  display: inline;
  font-size: 18px;
}

/* Navbar */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,1);
  font-size: 12px;
}

/* Brand */
.brand a,
.brand a:hover {
  color: #007bff;
  text-decoration: none;
}
.brand h1{
  font-family: 'Outer Zone';
  font-size: 1.6rem;
  margin: 0 0 .5rem;
}
.navbar-brand.brand h1{
  margin: 0;
}

/* Wrapper */
.wrapper{
  margin-top: 1rem;
}

/* Auth Wrapper */
.auth-wrapper{
  margin: 100px auto 0;
  max-width: 450px;
}
.auth-wrapper .card-body{
  text-align: left;
}

/* Sidebar */
.sidebar .card{
  text-align: left;
}

/* Card */
.card {
  border: none;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
          box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}
.card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 1rem;
  position: relative;
  -webkit-box-shadow: 0px 1px 20px 0px rgba(69, 90, 100, 0.08);
          box-shadow: 0px 1px 20px 0px rgba(69, 90, 100, 0.08);
}
.card .card-header h4 {
  color: #37474f;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.card .card-header h5 {
  color: #37474f;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 0;
}
.card .card-body {
  padding: 1rem;
}
.card .card-body p:last-child {
  margin: 0;
}

/* Footer */
footer{
  bottom: 2px;
  font-size: 12px;
  position: fixed;
  text-align: center;
  width: 100%;
}
footer p{
  background: #fff;
  display: inline;
  font-size: 10px;
  margin: 0;
  padding: 2px;
}

/* Select2 */
.select2-container{
  width: 100%!important;
}
.select2-container .select2-selection--single{
  border: 1px solid #ced4da;
  height: auto;
  padding: .375rem .75rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
  right: 5px;
}

/* Ripple */
.monitor{
  right: 10px;
  padding: 4px;
  background: #ff5252;
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
}
.monitor:after, 
.monitor:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: inset 0 0 20px 5px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 20px 5px rgba(255, 255, 255, 0.4);
}
.monitor:before {
  -webkit-animation: not-blink 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
          animation: not-blink 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}
.monitor:after {
  -webkit-animation: not-blink 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
          animation: not-blink 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
@-webkit-keyframes not-blink {
  0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
  }
  100% {
      -webkit-transform: scale(4);
              transform: scale(4);
      opacity: 0;
  }
}

@keyframes not-blink {
  0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
  }
  100% {
      -webkit-transform: scale(4);
              transform: scale(4);
      opacity: 0;
  }
}

.fixscrollbar{
  position:fixed;
  left: 0;
  top: 30%;
  width: 50px;
  min-height: 30px;
  padding: 0;
  background-color:#fff;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  z-index: 2001
}
.fixscrollbar ul{
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fixscrollbar ul>li{
  cursor: pointer;
  padding: 10px;
  position:relative;
  border-right: solid 3px #fff;
  border-bottom: solid 1px #dcdcdc;
  transition: all .2s ease-in-out;
  text-align: center;
}
.fixscrollbar ul>li:last-child{
  border-bottom: none
}
.fixscrollbar ul>li a{
  color: #007bff;
}

.fixscrollbar ul>li a:hover,
.fixscrollbar ul>li:hover a{
  color: #fff;
}
.fixscrollbar ul>li.active,
.fixscrollbar ul>li:hover{
  width: 50px;
  background-color:#007bff;
  border-right:solid 3px #fba510;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px
}

/* This is where you plug in the CSS for marker animations */
#markerLayer img {
  animation: pulse .5s infinite alternate;
  -webkit-animation: pulse .5s infinite alternate;
  transform-origin: center;
  -webkit-transform-origin: center;
}
/* Animaitons */
@keyframes pulse{
  to { 
    transform: scale(0.7);
    -webkit-transform: scale(0.7);  
  }
}
@-webkit-keyframes pulse{
  to { 
    transform: scale(0.7);
    -webkit-transform: scale(0.7);  
  }
}
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes flicker {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flicker {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}