/*
 * Required helpers
 */
/*
 * Styles
 */
.overlay.initialized, .overlay.active-on-load {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100vh;
  overflow-x: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 350;
}
.overlay.initialized .close-filter, .overlay.active-on-load .close-filter {
  display: inline-block !important;
}
.overlay.active-on-load {
  display: block;
}
.overlay ul.tabs {
  -ms-flex-align: flex-end !important;
  align-items: flex-end !important;
  display: -ms-flexbox !important;
  display: flex !important;
  font-size: 0;
  padding: 0;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .overlay ul.tabs {
    margin-top: 30px;
  }
}
.overlay ul.tabs li {
  background-color: #c5e6cd;
  border: 1px solid #c5e6cd;
  border-bottom: 0;
  color: #3ead5a;
  cursor: pointer;
  display: inline-block;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  list-style-type: none;
  margin: 0 -5px;
  padding: 10px;
}
.overlay ul.tabs li:first-of-type {
  margin-right: 0;
}
.overlay ul.tabs li:last-of-type {
  margin-left: 0;
}
.overlay ul.tabs li.active {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #FFF;
  border-color: #3ead5a;
  border-width: 2px;
  font-size: 18px;
  padding: 12px 10px;
  position: relative;
}
.overlay ul.tabs li.active:first-of-type {
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topright: 0;
  border-top-right-radius: 0;
}
.overlay ul.tabs li.active:last-of-type {
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
}
@media screen and (min-width: 768px) {
  .overlay ul.tabs li {
    max-width: 250px;
  }
}
.overlay ul.tabs + .modal {
  margin-top: 0 !important;
}
.overlay .modal {
  background-color: #FFF;
  -moz-box-shadow: 0 0 5pxrgba 0, 0, 0, 0.5;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border: 2px solid #3ead5a;
  padding: 20px 0;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .overlay .modal {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .overlay .modal {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .overlay .modal {
    max-width: 1140px;
  }
}
@media screen and (max-width: 767px) {
  .overlay .modal {
    margin-top: 30px;
  }
}
.overlay .modal .modal-title-container {
  display: -ms-flexbox !important;
  display: flex !important;
  margin-bottom: 30px;
}
.overlay .modal .modal-title-container h2 {
  display: inline-block;
  flex: 1;
}
.overlay .modal .loading {
  background-color: rgba(255, 255, 255, 0.75);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.overlay .modal .loading .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.overlay .modal .close-filter {
  cursor: pointer;
  display: none;
  height: 20px;
  padding: 8px 0 8px 0;
  position: relative;
  vertical-align: middle;
  width: 25px;
}
@media screen and (min-width: 992px) {
  .overlay .modal .close-filter {
    margin-top: 10px;
  }
}
.overlay .modal .close-filter span,
.overlay .modal .close-filter span:before,
.overlay .modal .close-filter span:after {
  background: #23214c;
  border-radius: 2px;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  width: 100%;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.overlay .modal .close-filter span {
  background-color: transparent;
}
.overlay .modal .close-filter span:before,
.overlay .modal .close-filter span:after {
  top: 0;
}
.overlay .modal .close-filter span:before {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.overlay .modal .close-filter span:after {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.overlay .modal ul.steps {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px 0;
  font-size: 0;
  -ms-flex-pack: justify;
  list-style-type: none;
  justify-content: space-between;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .overlay .modal ul.steps {
    margin: 0 0 30px 0;
  }
}
.overlay .modal ul.steps li {
  flex: 0;
}
.overlay .modal ul.steps li.line {
  background-color: rgba(62, 173, 90, 0.3);
  flex: 1;
  height: 2px;
}
.overlay .modal ul.steps li.completed span, .overlay .modal ul.steps li.active span {
  border-color: #3ead5a;
  color: #3ead5a;
}
.overlay .modal ul.steps li.completed span {
  background-image: url("../images/icons/step-completed-secondary.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #FFF;
  cursor: pointer;
  font-size: 0;
}
.overlay .modal ul.steps li.completed + .line {
  background-color: #3ead5a;
}
.overlay .modal ul.steps li span {
  background-color: #FFF;
  border: 2px solid rgba(62, 173, 90, 0.3);
  border-radius: 50%;
  color: rgba(62, 173, 90, 0.3);
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-size: 25px;
  font-weight: 700;
  line-height: 45px;
  height: 45px;
  justify-content: center;
  list-style-type: none;
  padding-top: 5px;
  position: relative;
  width: 45px;
}
.overlay .modal .share-today {
  margin: 0;
  padding: 0;
}
.overlay .modal .share-today li {
  list-style-type: none;
  margin-bottom: 10px;
}
.overlay .modal .share-today li a {
  border: 1px solid #3ead5a;
  color: #23214c;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .overlay .modal .share-today li a:hover {
    background-color: #23214c;
    border-color: #23214c;
    color: #FFF;
  }
}
.overlay .modal .share-today li a span {
  vertical-align: middle;
  margin-right: 15px;
}
.overlay .modal .share-today li a i,
.overlay .modal .share-today li a svg {
  font-size: 18px;
  vertical-align: middle;
}
.overlay .modal .accordion {
  margin-bottom: 5px;
}
.overlay .modal .accordion h3.label {
  background-color: rgba(62, 173, 90, 0.15);
  color: #3ead5a;
  cursor: pointer;
  margin: 0 -15px 15px -15px;
  padding: 10px 15px 8px 15px;
}
.overlay .modal .accordion h3.label span {
  vertical-align: middle;
}
.overlay .modal .accordion h3.label i,
.overlay .modal .accordion h3.label svg {
  margin-left: 15px;
  vertical-align: middle;
}
.overlay .modal .accordion .content {
  margin-bottom: 30px;
}
.overlay .modal .accordion.open h3.label {
  background-color: #3ead5a;
  color: #FFF;
}
.overlay .modal .accordion.initialized .content {
  display: none;
}
.overlay .modal .tab-content {
  display: none;
}
.overlay .modal .tab-content.active {
  display: block;
}
.overlay#petition-signatures .modal {
  min-height: 140px;
}
.overlay#petition-signatures .modal .loading {
  display: block;
}
.overlay#petition-signatures .modal .close-filter {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999;
}

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