/*
    Original version: http://www.bootply.com/128062
    
    This version adds support for IE 10+ and Firefox.
*/

.glyphicon-rotate-animate {
    -animation: spin .7s infinite linear;
    -ms-animation: spin .7s infinite linear;
    -webkit-animation: spinw .7s infinite linear;
    -moz-animation: spinm .7s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}
  
@-webkit-keyframes spinw {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@-moz-keyframes spinm {
    from { -moz-transform: rotate(0deg);}
    to { -moz-transform: rotate(360deg);}
}

.glyphicon-grow-animate {
    -animation: grow .7s infinite linear;
    -ms-animation: grow .7s infinite linear;
    -webkit-animation: groww .7s infinite linear;
    -moz-animation: growm .7s infinite linear;
}

@keyframes grow {
    0% { transform: scale(0.8);}
    50% { transform: scale(1.2);}
    100% { transform: scale(0.8);}
}
  
@-webkit-keyframes groww {
    0% { -webkit-transform: scale(0.8);}
    50% { -webkit-transform: scale(1.2);}
    100% { -webkit-transform: scale(0.8);}
}

@-moz-keyframes growm {
    0% { -moz-transform: scale(0.8);}
    50% { -moz-transform: scale(1.2);}
    100% { -moz-transform: scale(0.8);}
}

.dashboard-huge {
  font-size: 70px;
  padding-top: 20px;
  text-align: center;
  color: #ffffff;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-btn {
  border: 2px solid gray;
  color: gray;
  background-color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

