/* Base colours */
/* Gray and brand colors for use across the Alcohol Engine. */
/* Flat Colours */
/* Blues */
/* Purple */
/* Green */
/* Orange */
/* Red */
/* Additional Grays  - As if there wasn't already enough */
/* Brand Colors */
/* Component Variabes */
@font-face {
  font-family: Ostrich;
  src: url("/fonts/ostrich-sans.sans-black.ttf") format("truetype");
}
body {
  background-color: inherit;
  min-width: auto;
  color: rgb(0, 0, 0);
  font: 12px Lucida Grande Helvetica Arial, sans-serif;
}

a, .link {
  cursor: pointer;
  text-align: center;
  color: rgb(0, 0, 0);
  transition: 100ms ease-in;
}
a:hover, .link:hover {
  color: rgb(85, 85, 85);
}
a .forgotPasswordLink, .link .forgotPasswordLink {
  margin: 0 auto;
}

h2 {
  font-weight: bold;
}

.logo {
  text-align: center;
  padding: 0 0 15px;
}

.brandName {
  font-family: Ostrich;
  color: rgb(0, 0, 0);
  padding: 0 0 10px;
  font-weight: bold;
}

.form-control {
  border: 0;
  box-shadow: none;
}

.controls {
  margin: 10px 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0 0 white inset;
}

.input-group {
  border-bottom: 1px solid rgb(0, 0, 0);
  width: 100%;
}
.input-group.loginField {
  margin: 0 0 10px 0;
}
.input-group input {
  float: left;
}
.input-group input[type=email], .input-group input[type=password] {
  width: 90%;
}
.input-group input[type=email]::-webkit-input-placeholder, .input-group input[type=password]::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}
.input-group input[type=email]::-moz-placeholder, .input-group input[type=password]::-moz-placeholder {
  color: rgb(0, 0, 0);
}
.input-group input[type=email]:-ms-input-placeholder, .input-group input[type=password]:-ms-input-placeholder {
  color: rgb(0, 0, 0);
}
.input-group input[type=email]:-moz-placeholder, .input-group input[type=password]:-moz-placeholder {
  color: rgb(0, 0, 0);
}
.input-group .glyphicon {
  font-size: 20px;
}
.input-group .glyphicon.glyphicon-ok {
  color: greenyellow;
  padding: 5px 0 0 5px;
  float: left;
}
.input-group .glyphicon.glyphicon-remove {
  color: orangered;
  padding: 5px 0 0 5px;
  float: left;
}
.input-group .form-control {
  color: rgb(0, 0, 0);
  background: transparent;
}
.input-group .login-icon {
  font-size: 2em;
  padding: 2px;
  float: left;
  text-align: center;
  width: 5%;
}
.input-group .login-icon i {
  color: rgb(0, 0, 0);
}

.glyphicon, .fa {
  color: rgb(0, 0, 0);
}

.checkbox label {
  padding: 0 0 0 3px;
  cursor: pointer;
  color: rgb(0, 0, 0);
}
.checkbox label i {
  font-size: 24px;
  padding: 0 5px 0 0;
  float: left;
}
.checkbox label span {
  float: left;
  margin: 6px;
}

.buttonGroup {
  margin: 20px 0;
  overflow: auto;
  clear: both;
}
.buttonGroup button {
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  border-radius: 0;
}
.buttonGroup button:hover {
  background-color: rgb(85, 85, 85);
  border-color: rgb(85, 85, 85);
}
.buttonGroup.noMargin {
  margin: 0;
}

.legend .required {
  color: #af2121;
}

.alert {
  border-radius: 3px;
  padding: 5px;
  margin: 10px 0;
  transition: opacity 0.35s ease-out;
  opacity: 1;
}
.alert.ng-hide {
  opacity: 0;
}
.alert.banner {
  background-color: #EEEE8F;
}
.alert.failure {
  background-color: #D3A9B1;
  color: #111;
  font-weight: bold;
}
.alert.info {
  background-color: #A9CCD3;
}
.alert.success {
  background-color: #B1C79D;
}

.marginContainer {
  margin-top: 140px;
}

.flip.windowActive {
  height: 370px;
}

.invite.windowActive {
  height: 460px;
}

.flip, .invite {
  transition: opacity 0.35s ease-out;
  -ms-perspective: 600px;
  perspective: 600px;
  opacity: 0;
  visibility: hidden;
}
.flip.windowActive, .invite.windowActive {
  transition: opacity 0.35s ease-out;
  opacity: 1;
  visibility: visible;
}
.flip.windowActive.ng-hide, .invite.windowActive.ng-hide {
  opacity: 0;
  height: 0;
}
.flip.hideInviteForm, .invite.hideInviteForm {
  display: none;
}
.flip .card1, .invite .card1 {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.5s;
}
.flip .card1.flipped, .invite .card1.flipped {
  transform: rotateY(-180deg);
}
.flip .card1 .face, .invite .card1 .face {
  transform-style: preserve-3d;
  transition: 0.5s;
  width: 100%;
  position: absolute;
  backface-visibility: hidden;
  z-index: 2;
}
.flip .card1 .face.front, .invite .card1 .face.front {
  z-index: 1;
}
.flip .card1 .face.back, .invite .card1 .face.back {
  transform: rotateY(-180deg);
}
.flip p, .invite p {
  text-align: center;
  font-size: 18px;
}

.forgotPassword {
  transition: opacity 0.35s ease-out;
  opacity: 0;
  visibility: hidden;
  height: 500px;
}
.forgotPassword.forgotPasswordActive, .forgotPassword.windowActive {
  transition: opacity 0.35s ease-out;
  opacity: 1;
  visibility: visible;
}
.forgotPassword.forgotPasswordActive.ng-hide, .forgotPassword.windowActive.ng-hide {
  opacity: 0;
  height: 0;
}
.forgotPassword p {
  text-align: center;
  font-size: 18px;
}

.loginDetails {
  text-align: center;
  margin: 10px 0;
}
.loginDetails div {
  padding: 2px 0;
}

.homeURL {
  cursor: pointer;
  color: rgb(0, 0, 0);
  transition: 100ms ease-in;
}
.homeURL:hover {
  color: rgb(85, 85, 85);
}

.spinnerContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1005;
}

.styleGuide header {
  background: transparent;
  position: relative;
  z-index: auto;
  width: auto;
  height: auto;
  border: none;
  box-shadow: none;
}
.styleGuide nav {
  margin: 0 0 10px;
}
.styleGuide section {
  margin: 10px 0;
}
.styleGuide section span {
  display: block;
  padding: 10px;
}
.styleGuide section span.styleName {
  background: rgb(124, 124, 124);
  font-weight: bold;
  font-size: 1.5em;
  color: white;
}
.styleGuide section span.className {
  color: white;
  background: rgba(124, 124, 124, 0.7);
}
.styleGuide section span.className i {
  padding: 0 5px 0 0;
}
.styleGuide section .example {
  color: rgb(51, 51, 51);
  border: 1px solid rgb(124, 124, 124);
  border-top: none;
  padding: 10px;
  overflow: auto;
}
.styleGuide section .example .glyphicons > div {
  padding: 5px 0;
}
.styleGuide section .example .glyphicons span {
  display: inline;
}
.styleGuide section ul.swatch {
  margin: 0;
  padding: 0;
}
.styleGuide section ul.swatch li {
  float: left;
  width: 24%;
  margin-right: 11px;
  list-style-type: none;
  font-size: 0.8em;
  line-height: 1.2em;
  margin-bottom: 1em;
  background-color: #fff;
  height: 13em;
  border-radius: 3px;
}
.styleGuide section ul.swatch li .preview {
  height: 9em;
  border-radius: 3px 3px 0 0;
}
.styleGuide section ul.swatch li .details {
  color: #999;
  font-size: 12px;
  padding: 8px;
}

body.notLoggedIn {
  background-color: #f6f6f6;
  background-image: url("images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
}

.logo-padding {
  padding-bottom: 22px;
}

.buttonGroup button {
  background-color: #31a8e0 !important;
  border-color: #31a8e0 !important;
  border-radius: 0 !important;
}

.input-group .login-icon i {
  color: #31a8e0 !important;
}

.input-group .glyphicon.glyphicon-ok {
  color: #3faae3;
}