.btn {
  display: inline-block;
  padding: 6px 20px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-transform:uppercase;
}

.btn-primary {
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color:#98A0A8;
  border: 1px solid #98A0A8;

}

.btn-default {
  color: #C1C8CE;
  background-color: #ffffff;
  border-color: #C1C8CE;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
  color: #ffffff;
} 
 
 
.btn-lg {
  padding: 12px 25px;
  font-size: 13px;
}




/* form controls */


::-webkit-input-placeholder {
   color: #ACB2B8;
}

:-moz-placeholder {
   color: #ACB2B8;  
}

::-moz-placeholder {  
   color: #ACB2B8;  
}

:-ms-input-placeholder {  
   color: #ACB2B8;  
}

.form-group {
  margin-bottom: 10px;
}


.form-control {
  font-family: "Open Sans", sans-serif;
  display: block;
  width: 100%;
  height: 37px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 21px;
  color: #4F4F4F;
  font-size:400;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #E7EBEF;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.0);
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.0);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}



.form-control:focus, .form-control:hover {
  outline: 0;
  border:1px solid #6B6B6B;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0), 0 0 0px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 0px 0px rgba(0,0,0,0), 0 0 0px rgba(102, 175, 233, 0.6);
}

label {
  display: inline-block;
  margin: 10px 0px 5px 0px;
  color: #404449;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform:uppercase;  
}

textarea.form-control {
  height: auto;
  min-height: 106px;
}


/* progress bar */

.skill p {
  margin-bottom:7px;

}

.progress {
  overflow: visible;
  height: 18px;
  margin-bottom: 10px;
  background-color: #FFF;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-bar {
  float: left;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  position:relative;
}

 .progress-bar-span { 
 opacity:1;
 position:absolute;
 top:-5px;
 background:#ACB2B8;
 padding:3px 10px;
 color:#FFF;
 border-radius: 0px;
 right:0px;
    -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; 
 }

.skill:hover .progress-bar-span {
  opacity:1;
    -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}


