/* CSS for sdc-activity.html */

/* Formatting for buttons */
.radar-button {
    width:50px;
}

/* Make buttons in the calendar match their backgrounds */
.year-btn, .mnt-btn, #calendar-previous-month-btn, #calendar-next-month-btn, #calender-year-select-btn, #calender-month-select-btn, #previous-day-btn, #next-day-btn {
	background-color: #FFF;
	border-color: #FFF;
	color: #555;
    font-size: 1.5em;
}
/* Button Animation -'click' */
/* webkit for chrome */
/* keyframes only for others*/
/* Adapted for non-commercial use from ILDS https://ianlunn.co.uk*/
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Button animation - 'grow' */
/* Button increases in size by 20% */
/* and is brought to the from*/
.grow {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  position: relative;
  z-index: 700;
}
/* Button animation - 'push' on hover */
/* button appears to make a 'clicked' movement */
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

/* Button animation - 'grow' on hover */
/* Button appears to grow when hovered over */
/* Used in conjunction with 'grow' above */
/* Includes addition of a text shadow to make it pop */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-white:hover, .hvr-white:focus, .hvr-white:active {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  font-size: 10px !important;
  padding: 0;
  color: #ffffff !important;
  position: relative;
  z-index: 800;
}
.hvr-grey:hover, .hvr-grey:focus, .hvr-grey:active {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  font-size: 10px !important;
  padding: 0;
  color: #555555 !important;
  position: relative;
  z-index: 800;
}
/* Make something be infront of everything else */
.infront {
    z-index:999 !important;
}

  .loader {
  		border: 5px solid #f3f3f3;
  		border-radius: 50%;
  		border-top: 5px solid #D90000;
  		width: 50px;
  		height: 50px;
  		-webkit-animation: spin 2s linear infinite; /* Safari */
  		animation: spin 3s 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); }
		}
