﻿@-moz-keyframes rotate {
  /* Safari and Chrome */
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes rotate {
  /* Safari and Chrome */
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  /* Safari and Chrome */
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotate {
  position: relative;
}
.rotate:after {
  -moz-animation: rotate 0.5s infinite linear;
  -o-animation: rotate 0.5s infinite linear;
  -webkit-animation: rotate 0.5s infinite linear;
  animation: rotate 0.5s infinite linear;
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  bottom: 2px;
  right: 0px;
  border: 3px solid #58A688;
  border-left-color: #1B7351;
  border-radius: 50%;
}
.btn-lg .rotate:after {
  border: 3px solid #ffffff;
  border-left-color: #1B7351;
}
.spinner {
  border: 1px solid #ffffff;
  border-left-color: transparent;
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -moz-animation: rotate 0.5s infinite linear;
  -o-animation: rotate 0.5s infinite linear;
  -webkit-animation: rotate 0.5s infinite linear;
  animation: rotate 0.5s infinite linear;
}
#alert {
  z-index: 1501;
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  color: white;
}
#alert #status-message {
  border-radius: 8px;
  position: absolute;
  background: #222222;
  top: 50%;
  left: 50%;
  width: 250px;
  padding: 30px;
  text-align: center;
  margin: -125px 0 0 -125px;
}
#no-needs #general-fund-info {
  background-image: url(/content/images/baseball.jpg);
}
#no-needs #general-fund-info #general-fund-icon {
  border: 2px solid #ffffff;
  position: relative;
}
#no-needs #general-fund-info #general-fund-icon:before,
#no-needs #general-fund-info #general-fund-icon:after {
  width: 70%;
  content: '';
  height: 2px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0px;
  margin: 0 15%;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#no-needs #general-fund-info #general-fund-icon:after {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#no-needs #general-fund-info #general-fund-icon:hover {
  background-color: rgba(0, 0, 0, 0.35);
}
#no-needs #general-fund-info #general-fund-icon:hover:before,
#no-needs #general-fund-info #general-fund-icon:hover:after {
  width: 35%;
  margin: 0 40%;
  top: 62%;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#no-needs #general-fund-info #general-fund-icon:hover:after {
  top: 38%;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#no-needs #general-fund-info #general-fund-icon:active {
  background-color: rgba(0, 0, 0, 0.55);
}
@media (min-width: 768px) {
  .supported-item #general-fund-info {
    height: 500px;
    overflow: hidden;
  }
}
.default-indicator {
  text-align: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 8px;
  background: #58A688;
}
@media (max-width: 767px) {
  .default-indicator {
    height: 20px;
    width: 20px;
    bottom: -2px;
    right: -2px;
    padding: 3px 2px;
  }
}
.detail {
  padding: 14px 0;
  text-align: center;
}
.detail .qr-code-container {
  display: block;
  margin: 0 0 14px 0;
}
.detail .qr-code-container .qr-code {
  height: 200px;
  width: 200px;
  display: inline-block;
}
@media (min-width: 768px) {
  .detail .qr-code-container .qr-code {
    height: 100px;
    width: 100px;
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider *:focus {
  outline: none;
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  zoom: 1;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
.direction {
  position: fixed;
  bottom: 1px;
  color: #222222;
  padding: 7px;
  opacity: 0.55;
  font-size: 24px;
  cursor: pointer;
  z-index: 1500;
}
@media (min-width: 768px) {
  .direction {
    position: absolute;
    top: 230px;
    bottom: auto;
    height: 0px;
    font-size: 36px;
    color: #ffffff;
  }
}
.direction:hover {
  opacity: 1;
}
.direction.direction-next {
  right: 0px;
}
.direction.slick-disabled {
  display: none !important;
}
.slick-dots {
  position: fixed;
  list-style: none;
  font-size: 0px;
  line-height: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background: #ffffff;
  margin: 0px;
  padding: 14px 0;
  text-align: center;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 768px) {
  .slick-dots {
    position: absolute;
    top: 460px;
    bottom: auto !important;
    background: transparent;
  }
}
.slick-dots li {
  display: inline-block;
  margin: 3px;
}
.slick-dots li button {
  color: transparent;
  display: block;
  border-radius: 50%;
  background: #bfbfbf;
  height: 5px;
  width: 5px;
  cursor: pointer;
  outline: none;
  padding: 0px;
  border: 0;
}
@media (min-width: 768px) {
  .slick-dots li button {
    background: #ffffff;
    height: 10px;
    width: 10px;
    opacity: 0.55;
  }
}
.slick-dots li.slick-active button {
  background: #555555;
}
@media (min-width: 768px) {
  .slick-dots li.slick-active button {
    background: #ffffff;
    opacity: 1;
  }
}
.cause-list {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .cause-list aside {
    padding-right: 0;
  }
}
.cause-list a {
  color: #222222;
  display: block;
}
.cause-list a:hover {
  text-decoration: none;
  background: #eeeeee;
}
.cause-list a:active {
  background: #bfbfbf;
}
.cause-list a.disabled {
  opacity: 0.5;
}
.registration-message {
  margin-bottom: 20px;
}
.back-to-orgs-link {
  margin-top: 20px;
  display: inline-block;
}
.btn-lg span[class*="pe-7"] {
  vertical-align: middle;
  font-size: 30px;
  margin-left: 10px;
}
#general-fund-info {
  background-position: center center;
  text-align: center;
  min-height: 0px;
}
@media (max-width: 767px) {
  #general-fund-info {
    padding: 14px 0 0 0;
  }
}
@media (min-width: 768px) {
  #general-fund-info {
    text-align: left;
  }
}
@media (min-width: 768px) {
  #general-fund-info #general-fund-data {
    float: left;
    position: absolute;
  }
}
#general-fund-info .need-icon-container {
  position: relative;
  display: inline-block;
}
@media (min-width: 768px) {
  #general-fund-info .need-icon-container {
    margin-bottom: 40px;
  }
}
#general-fund-info #general-fund-icon {
  height: 63.33333333px;
  width: 63.33333333px;
}
@media (min-width: 768px) {
  #general-fund-info #general-fund-icon {
    height: 190px;
    width: 190px;
  }
}
#general-fund-info .support-indicator {
  color: #5cb85c;
  font-size: 30px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
#general-fund-info .general-fund-indicator {
  position: absolute;
  max-height: 30px;
  bottom: 10px;
  right: 10px;
  height: 30px;
  min-width: 30px;
  padding: 5px;
  display: block;
  text-align: center;
  background: #5cb85c;
  border-radius: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  #general-fund-info .general-fund-indicator {
    max-height: 20px;
    bottom: -1px;
    right: -1px;
    height: 20px;
    min-width: 20px;
    padding: 0px;
  }
}
#general-fund-info #general-fund-description {
  margin-left: 0;
}
#general-fund-info #general-fund-description #one-need,
#general-fund-info #general-fund-description #general-add-user,
#general-fund-info #general-fund-description #general-registration-link,
#general-fund-info #general-fund-description #general-manage-needs,
#general-fund-info #general-fund-description #general-update-org {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #general-fund-info #general-fund-description {
    margin-left: 220px;
  }
}
@media (max-width: 767px) {
  #general-fund-info #general-fund-description h1 {
    font-size: 24px;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #general-fund-info #general-fund-description .lead + h1 {
    margin: 0;
    padding: 0 0 7px 0;
  }
}
#general-fund-info #general-fund-description p .indicator {
  vertical-align: middle;
  font-size: 30px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  #general-fund-info #general-fund-description .lead {
    font-size: 14px;
    margin: 7px 0 0 0;
    font-weight: 700;
  }
}
#general-fund-info #general-fund-description .lead span[class*="pe-7"] {
  vertical-align: middle;
  font-size: 30px;
  margin-left: 10px;
}
#general-fund-info #general-fund-description .lead .indicator {
  margin-right: 10px;
}
@media (max-width: 767px) {
  #general-fund-info #general-fund-description h1 + .lead {
    margin: 14px 0;
    font-weight: 700;
  }
}
#general-fund-info #general-fund-need-count,
#general-fund-info #general-fund-meta {
  display: none;
}
@media (min-width: 768px) {
  #general-fund-info #general-fund-need-count,
  #general-fund-info #general-fund-meta {
    display: block;
  }
}
.need {
  min-height: 115px;
}
.need,
.business,
.affiliate,
.territory {
  padding-top: 10px;
  position: relative;
  padding-bottom: 10px;
  border-top: 1px solid #eeeeee;
}
.need a,
.business a,
.affiliate a,
.territory a {
  color: #222222;
}
@media (max-width: 767px) {
  .need.supported:before,
  .business.supported:before,
  .affiliate.supported:before,
  .territory.supported:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    top: 0px;
    left: 0px;
    width: 5px;
    background: #5cb85c;
  }
  .need.has-error:before,
  .business.has-error:before,
  .affiliate.has-error:before,
  .territory.has-error:before {
    background: #d9534f;
  }
  .need .need-info .has-error,
  .business .need-info .has-error,
  .affiliate .need-info .has-error,
  .territory .need-info .has-error {
    color: #d9534f;
  }
}
.need .need-action,
.business .need-action,
.affiliate .need-action,
.territory .need-action {
  overflow: visible;
}
.need .need-action *,
.business .need-action *,
.affiliate .need-action *,
.territory .need-action * {
  z-index: 1;
  color: #bfbfbf;
  font-size: 30px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.need .need-action *:hover,
.business .need-action *:hover,
.affiliate .need-action *:hover,
.territory .need-action *:hover {
  color: #777777;
}
@media (max-width: 767px) {
  .need .need-action,
  .business .need-action,
  .affiliate .need-action,
  .territory .need-action {
    padding-right: 0%;
    padding-left: 5%;
  }
}
.need .need-action .btn-link,
.business .need-action .btn-link,
.affiliate .need-action .btn-link,
.territory .need-action .btn-link {
  text-decoration: none;
  padding: 0;
}
.need.general,
.business.general,
.affiliate.general,
.territory.general {
  background: #222222;
  color: #ffffff;
}
.need.general .need-action:hover,
.business.general .need-action:hover,
.affiliate.general .need-action:hover,
.territory.general .need-action:hover {
  color: #ffffff;
}
.need:first-child,
.business:first-child,
.affiliate:first-child,
.territory:first-child {
  border-top: none;
}
.need .need-icon-container,
.business .need-icon-container,
.affiliate .need-icon-container,
.territory .need-icon-container {
  height: 95px;
  width: 95px;
  position: absolute;
}
@media (max-width: 767px) {
  .need .need-icon-container,
  .business .need-icon-container,
  .affiliate .need-icon-container,
  .territory .need-icon-container {
    display: none;
  }
}
.need .need-icon-container .need-icon,
.business .need-icon-container .need-icon,
.affiliate .need-icon-container .need-icon,
.territory .need-icon-container .need-icon {
  height: 100%;
  width: 100%;
  border: 1px solid #eeeeee;
}
.need .need-icon-container .support-indicator,
.business .need-icon-container .support-indicator,
.affiliate .need-icon-container .support-indicator,
.territory .need-icon-container .support-indicator {
  color: #5cb85c;
  font-size: 30px;
  position: absolute;
  left: 75px;
  bottom: -3px;
  white-space: nowrap;
}
.need .need-icon-container .support-indicator.is-supported,
.business .need-icon-container .support-indicator.is-supported,
.affiliate .need-icon-container .support-indicator.is-supported,
.territory .need-icon-container .support-indicator.is-supported {
  color: #5cb85c;
}
.need .need-icon-container .support-indicator.has-error,
.business .need-icon-container .support-indicator.has-error,
.affiliate .need-icon-container .support-indicator.has-error,
.territory .need-icon-container .support-indicator.has-error {
  color: #d9534f;
}
.need .need-icon-container .support-indicator .error-message,
.business .need-icon-container .support-indicator .error-message,
.affiliate .need-icon-container .support-indicator .error-message,
.territory .need-icon-container .support-indicator .error-message {
  font-size: 14px;
  position: relative;
  left: -8px;
}
.need .need-info > .row,
.business .need-info > .row,
.affiliate .need-info > .row,
.territory .need-info > .row {
  margin-left: 95px;
}
@media (max-width: 767px) {
  .need .need-info > .row,
  .business .need-info > .row,
  .affiliate .need-info > .row,
  .territory .need-info > .row {
    margin-left: 0px;
  }
}
.need .need-info > .row .need-name,
.business .need-info > .row .need-name,
.affiliate .need-info > .row .need-name,
.territory .need-info > .row .need-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.need .need-info > .row .need-name.has-end-date,
.business .need-info > .row .need-name.has-end-date,
.affiliate .need-info > .row .need-name.has-end-date,
.territory .need-info > .row .need-name.has-end-date {
  margin-right: 120px;
}
.need .need-info > .row .end-date-container,
.business .need-info > .row .end-date-container,
.affiliate .need-info > .row .end-date-container,
.territory .need-info > .row .end-date-container {
  position: absolute;
  top: 0px;
  right: 0px;
  margin-right: 15px;
}
.need .need-info > .row .goal-container,
.business .need-info > .row .goal-container,
.affiliate .need-info > .row .goal-container,
.territory .need-info > .row .goal-container {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .need .need-info > .row .goal-container,
  .business .need-info > .row .goal-container,
  .affiliate .need-info > .row .goal-container,
  .territory .need-info > .row .goal-container {
    text-align: left;
  }
}