$gc-red: #981b1e;
$gc-green: #9ab73c;
$gc-red-dark: #641314;
$gc-red-darker: #44080a;

.go-volunteer {
  background-color: #000;
  min-height: 100vh;
}

.go-volunteer{
  &.img-background{
    //Firefox does not support background-position-x and background-position-y so we're including this fall back
    background-position: center top;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: 190%;

    @media (min-width: $screen-sm-min) {
      background-size: 100%;
    }
  }

  h1 {
    font-size: 2.4em;
  }
  .btn-primary-gc {
    @include button-variant(#fff, $gc-red, $gc-red);
  }

  .navbar {
    margin-top: 20px;
    min-height: 70px;
    .logo {
      height: 70px;
      width: 70px;
      overflow: hidden;
      left: 0;
      right: 0;
      position: absolute;
      height: auto;
      margin-left: auto;
      margin-right: auto;
      z-index: $zindex-navbar + 1;
      transition: all 0.5s ease;
      &:hover {
        transform: rotate(10deg);
      }
    }

    .logo img {
      width: 70px;
      height: 70px;
    }
    .hamburger-menu {
      z-index: $zindex-navbar + 2;
    }
    .back-btn {
      margin-top: 20px;
      margin-left: -7px;
      display: none;
    }
  }

  .gv-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding-top: 130px;
    z-index: $zindex-navbar - 1;
    li {
      @extend h1;
      margin-bottom: 0;
      margin-top: 0;
      @extend .brand-font;
      font-size: 2.4em;
    }
    li a {
      color: #ffffff
    }
  }
  .animated {
    animation-duration: .5s;
  }
  .dropdown-menu > .active > a {
    background-color: $gc-red;
  }
  .progress {
    height: 3px;
    margin-bottom: 0;
  }
  .progress-bar {
    background-color: $gray;
  }
  .card-item {
    border-left: 5px solid $gray-light;
    margin-bottom: 16px;

    &.disabled {
      border-left: 5px solid $gray;

      .group-details {
        opacity: 0;
      }
    }
  }

  .add-text-input-row {
    opacity: .7;

    &:hover {
      opacity: 1;
    }
  }

  .terms-box {
    background: rgba(255,255,255,.2);
  }
  h-number label.form-control {
    background: transparent;
    color: white;
    border: none;
    text-align: center;
  }

  .media-card-link .disabled-reason span {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    color: $white;
    border: 2px solid $white;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
  }
}

.site-image-filter {
  position: relative;

  img {
    filter: grayscale(1);
  }

  &:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 56, 100, 0.65);
    background-blend-mode: multiply;
    display: block;
    margin: $line-height-computed/2;
    border-radius: 50%;
  }

  &.arch-yellow-filter {
    &:after {
      background: rgba(83, 92, 11, 0.62);
    }
  }
}

.gc-step {
  position: relative;

  .gc-step-number {
    font-size: 2.1rem;
    font-weight: bold;
    position: absolute;
    background: rgba(0,0,0,.3);
    width: 60px;
    height: 60px;
    line-height: 60px;
    top: -$line-height-computed/2;
    text-align: center;
    border-radius: 50%;
    left: -$line-height-computed*2;
    z-index: 1;
  }

  p {
    z-index: 2;
    position: relative;
  }
}
