.dot_grey {
  height: 15px;
  width: 15px;
  background-color: rgba(0,0,0,0.1);
  border-radius: 50%;
  display: inline-block;
}

.dot_blue {
  height: 15px;
  width: 15px;
  background-color: rgba(0,0,255,0.5);
  border-radius: 50%;
  display: inline-block;
}

.dot_red {
  height: 15px;
  width: 15px;
  background-color: rgba(255,0,0,0.95);
  border-radius: 50%;
  display: inline-block;
}

.dot_red_blinking {
  height: 15px;
  width: 100px;
  background-color: rgba(255,0,0,0.95);
  border-radius: 10%;
  display: inline-block;
}

.dot_orange {
  height: 15px;
  width: 15px;
  background-color: rgba(255,128,0,0.95);
  border-radius: 50%;
  display: inline-block;
}

.dot_green {
  height: 15px;
  width: 15px;
  background-color: rgba(0,255,0,0.7);
  border-radius: 50%;
  display: inline-block;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

.dot_grey {
  height: 15px;
  width: 15px;
  background-color: rgba(0,0,0,0.1);
  border-radius: 50%;
  display: inline-block;
}

.dot_blue {
  height: 15px;
  width: 15px;
  background-color: rgba(0,0,255,0.5);
  border-radius: 50%;
  display: inline-block;
}

.dot_red {
  height: 15px;
  width: 15px;
  background-color: rgba(255,0,0,0.95);
  border-radius: 50%;
  display: inline-block;
}

.dot_red_blinking {
  height: 15px;
  width: 100px;
  background-color: rgba(255,0,0,0.95);
  border-radius: 10%;
  display: inline-block;
}

.dot_orange {
  height: 15px;
  width: 15px;
  background-color: rgba(255,128,0,0.95);
  border-radius: 50%;
  display: inline-block;
}

.dot_green {
  height: 15px;
  width: 15px;
  background-color: rgba(0,255,0,0.7);
  border-radius: 50%;
  display: inline-block;
}

.dot_small {
  height: 6px;
  width: 6px;	
}


.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.shadow {
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    3px 3px 5px 6px #ccc;  /* Firefox 3.5 - 3.6 */
  box-shadow:         3px 3px 5px 6px #ccc;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

/* login form */
.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* icon filter */
.iconwhite{
	-webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(103deg) brightness(105%) contrast(105%);
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(103deg) brightness(105%) contrast(105%);
}