@media only screen and (min-width : 960px) {

  .container { width: 980px; } 

}

.nav-link { font-size: 0.85em !important; }

.navbar-nav.navbar-center {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}

.radio-group {
  /*display: block;*/
  position: relative;
  padding-left: 2em;
  margin: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  width: 28px;
  background-color: #eee;
  border-radius: 50%;
}

.radio-group:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-group input:checked ~ .checkmark {
  background-color: #fe5000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-group input:checked ~ .checkmark:after {
  display: block;
}

.radio-group .checkmark:after {
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}


input.form-control, textarea.form-control {
	font-size: 0.95em;
	padding: 1em;
	border: solid 0.2em #fe5000;
	border-radius: 0.75em;
  opacity: 0.5;
}

textarea.form-control { padding: 0.5em; }

.form-control:focus {
  border-color: #fe5000;
  box-shadow: none;
  opacity: 1;
}
