/* Admin Tabs
-------------------------------------------------- */
.adminTabs {
  margin-top: 60px;
  background: rgb(255, 119, 77);
  background: -moz-linear-gradient(21deg, rgb(255, 119, 77) 0%, rgb(255, 166, 138) 100%);
  background: -webkit-linear-gradient(21deg, rgb(255, 119, 77) 0%, rgb(255, 166, 138) 100%);
  background: linear-gradient(21deg, rgb(255, 119, 77) 0%, rgb(255, 166, 138) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff774d",endColorstr="#ffa68a",GradientType=1);
  min-height: 40px;
  width: 100%;
  padding: 0;
  margin: 0;
  font-weight: 400;
  border: none;
}
.adminTabs ul {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 40px;
}
.adminTabs ul li {
  display: block;
  width: 100%;
}
.adminTabs ul li a {
  border: none;
  display: inline-block;
  background-color: transparent;
  font-size: 0.875em;
  color: white;
  margin: 0;
}
.adminTabs ul li a:hover, .adminTabs ul li a.is-active {
  background-color: rgba(255, 255, 255, 0.65);
  border: none;
  color: #ff774d;
}

@media screen and (min-width: 680px) {
  .adminTabs ul li {
    display: inline;
    width: auto;
  }
  .adminTabs ul li a {
    padding: 0 24px;
  }
}
/* Messages
-------------------------------------------------- */
.message {
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 4px solid #00a1e1;
  background: #f8f8f8;
  margin-bottom: 36px;
  padding: 30px;
  font-weight: normal;
}
.message.alert {
  border-bottom: 4px solid #e9094a;
}

.form-required {
  color: #e9094a;
}

.form-item input.error {
  border: 1px dotted #e9094a !important;
  padding: 10px;
}

/* :::  3 ::: Maintenance Page
-------------------------------------------------- */
.maintenance header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
}

.maintenance #logo {
  margin: 0;
  padding: 0;
}

.maintenance #page {
  width: 90%;
  max-width: 1200px;
  margin: 4em auto;
  padding: 10%;
  color: #666;
  font-size: 18px;
  line-height: 140%;
  background-color: #f6f7f8;
}

.maintenance #page p,
.maintenance #page a,
.maintenance #page h1,
.maintenance #page h2 {
  color: #666;
}

/* :::  4 ::: Back to top
-------------------------------------------------- */
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgb(0, 0, 0) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  /*
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  */
}

/* .cd-top.cd-is-visible,
.cd-top.cd-fade-out, 
.no-touch .cd-top:hover
*/
.cd-top:hover {
  /*
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
  */
  background-color: #45ad65;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible 
  opacity: .5;
  */
}

.no-touch .cd-top:hover {
  background-color: rgb(0, 0, 0);
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/*# sourceMappingURL=admin.css.map */
