

/*
  Place all the styles related to the matching controller here.
  They will automatically be included in application.css.
*/


body {
  font-family: "Josefin Sans", san-serif;
}

.bold-me {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.info-title {
  text-align: center;
}

.round-grey-border {

  border-color: rgb(229, 229, 229);
  border-style: solid;
  border-width: 1px;
  margin:2px;
  padding:2px;

}

/* leaflet changes */
.leaflet-container {
  font-family: "Source Sans Pro", san-serif;
}

.leaflet-popup-content {

  margin-top: 3px;
  margin-right: 1px;
  margin-bottom: 1px;
  margin-left: 1px;
}

.leaflet-popup-content-wrapper {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
/* end leaflet changes */

/* loader */

.loader {

  font-size: 10px;
  position: fixed;
  top: 140px;
  left: 50%;
  margin-left: -60px;
  z-index: 9999;
  text-indent: -9999em;  
  width: 1px;
  height: 1px;
  border-top: 60px solid rgba(4,51,255, 0.2);
  border-right: 40px solid rgba(4,51,255, 0.2);
  border-bottom: 60px solid rgba(4,51,255, 0.2);
  border-left: 40px solid #0433ff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

/* end loader */