@font-face {
  font-family: 'AzoSans-Regular';
  src: url('../../font/AzoSans/AzoSans.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AzoSans-Medium';
  src: url('../../font/AzoSans/AzoSans-Medium.otf');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'AzoSans-Thin';
  src: url('../../font/AzoSans/AzoSans-Thin.otf');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'AzoSans-Bold';
  src: url('../../font/AzoSans/AzoSans-Bold.otf');
  font-weight: normal;
  font-style: normal;
}

@-webkit-keyframes repaint {
  from {
    width: 99.999%
  }
  to {
    width: 100%
  }
}

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

.spin {
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transition-timing-function: ease-out;
}

.loading,
.error,
img[src='Error.src'] {
  opacity: 0;
  filter: alpha(opacity=0);
}
.img.loading, .img.error {
  opacity: 0;
  filter: alpha(opacity=0);
}
.img {
  opacity: 1;
  filter: alpha(opacity=100);
  transition: all .8s ease;
}
.location-marker {}
.place-marker {
  border: 1px solid #fff;
  background: #66afff;
  border-radius: 50%;
}
* {
  -webkit-font-smoothing: antialiased;
}

html, body {
  font-family: 'AzoSans-Regular';
  text-rendering: optimizeLegibility;
  font-size: 0.98em;
}

body {
  background-color: #e7e7e7;
  padding-top: 5px;
  padding-bottom: 56px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'AzoSans-Regular';
  color: #1c1c1c;
}

a {
  color: #5C68A4;

  transition: color .4s ease;
}
a:hover,
a:active,
a:focus {
  color: #454F81;

  text-decoration: none;
}
.controls a,
.controls a:hover,
.controls a:active,
.controls a:focus {
  color: #fff;
}
.panel-controls a.active,
.controls a.active:hover,
.controls a.active:active,
.controls a.active:focus,

.panel-controls a.active.disabled {
  color: #c1c1c1;
  cursor: not-allowed;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: transparent;
  box-shadow: none;
  background-image: none;
  background: transparent;
  -webkit-filter: none;
  filter: none;
  outline: 0 none;
  outline: 0 !important;
  -webkit-appearance: none;
}
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover
{
    outline: 0 !important;
    -webkit-appearance: none;
}

.flash-container {
  margin: 0 auto;
  width: 1024px;
}

.clickable {
  cursor: pointer;
}

.alert {
  padding: 0;
  font-size: 0.85em;
  line-height: 0;
  position: relative;
  border: 0px solid transparent;
  border-radius: 8px;
  transition: none;
  margin: 0 auto;
  height: 0;
  padding-bottom: 0;
  padding-top: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.alert.fade.in {
  height: auto;
  margin-bottom: 15px;
  line-height: .8em;
  padding: 20px;
  margin-top: 15px;
  margin-bottom: 8px;
}
.alert .alert-message {
  float: left;
}
.alert.fade.in .alert-message {
  float: none;
  clear: both;
}
.alert-warn,
.alert-warning {
  font-family: 'AzoSans-Regular';
  color: #777;
  background-color: #fff4d0;
  border: none;
}
.alert a {
  font-family: 'AzoSans-Regular';
}
.alert .close,
.alert .close:hover,
.alert .close:focus {
  color: #777;
  position: relative;
  top: -4px;
  right: 0;
  line-height: 20px;
}
.alert-flash {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: none;
  border: 0 solid transparent;
}

.alert.fade.in.flash-message-container {
  margin-bottom: -20px;
}

.alert a.flash-text {
  font-family: 'AzoSans-Regular';
  font-size: 15.3664px;
}

.content-view {
  padding-top: 22px;
}
.content-form {
  margin-top: 58px;
}

/* Override angular-loading-bar styling */
#loading-bar {
  z-index: 1090;
}
#loading-bar .bar {
  background:transparent url('../img/loader-gradient.png') left top repeat-x;
}
#loading-bar .peg {
  display: none;
}

.form-control {
  color: #000;
}
.form-control::-webkit-input-placeholder { /* WebKit browsers */
  color: #999;
}
.form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #999;
  opacity: 1;
}
.form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #999;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #000000 !important;
}

.animate:focus {
  transition: height 0.4s ease-out;
}

.container {
  max-width: 810px;
}

.btn-default,
.btn-success,
.btn-danger {
  text-shadow: none;
  box-shadow: none;
}

.btn-default {
  color: rgba(119, 119, 119, 1.0);
  background-color: transparent;
  border: 1px solid rgba(119, 119, 119, .5);
}
.btn-default:active {
  box-shadow: none;
}

.btn {
  border-radius: 24px;
  background-color: transparent;
  padding: 0.4em 1.5em 0.4em;
}

.dropdown {
  border-radius: 8px;
  background-color: #ffffff;
}

/* Breadcrumb */
.breadcrumb {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}

.block-button {
  display: block;
  text-align: center;
  background-color: #f2f2f2;
  padding: 40px 30px 30px 30px;
  border-radius: 8px;
  font-size: 30px;
}
