﻿/* general stuff */
.c4g-animation-spin {
  -webkit-animation: icon-spin 2s infinite linear;
  animation: icon-spin 2s infinite linear;
}
.c4g-animation-spin-pulse {
  -webkit-animation: icon-spin 1s infinite steps(8);
  animation: icon-spin 1s infinite steps(8);
}
@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}



.ol-overviewmap-box,
.c4g-layertree a,
.c4g-layertree li,
.c4g-layertree ul,
.c4g-layertree span,
.c4g-baselayertree a {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
