md-sidenav,
md-sidenav.md-locked-open,
md-sidenav.md-closed.md-locked-open-add-active {
   min-width: 200px !important;
   width: 85vw !important;
   max-width: 500px !important;
}

#markerCounter {
   color: #555555;
   background: #FFFFFF;
   margin-top: -15px;
   position: absolute;
   z-index: 2;
   left: 40%;
   right: 40%;
   box-shadow: 1px 1px 2px #888;
   padding: 5px 0px;
}

.custom-md-label {
   color: gray;
   font-size: 12pt;
}

hr{
    color: lightgray;
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 90%;
}

img {
   image-orientation: from-image;
}

.preview {
  width: 250px;
  height: auto;
}

button .material-icons {
  margin-top: -12px;
}

.categoryFilter {
  margin-bottom: 24px;
}

.playBadge {
  position: absolute;
  top: 5px;
  right: 5px;
}

.copyright {
  font-size: 8pt;
  position: absolute;
  top: 2px;
  right: 20px;
}

.classified-info {
  margin-top: -15px;
}

.map {
  border: 1px solid rgba(50, 50, 50, 0.2);
}

.image {
  width: 100%;
}

/* ANIMATIONS */
.classified.ng-enter, .classified.ng-move {
  transition: 0.4s all;
  opacity: 0;
}

.classified.ng-enter.ng-enter-active, .classified.ng-move.ng-move-active {
  opacity: 1;
}

.classified.ng-leave {
  animation: 0.4s fade_classified;
}

@keyframes fade_classified {
  from {opacity: 1; }
  to {opacity: 0; }
}