@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600");
/* VARS */
/* MIXINS */
/* STYLE THE HTML ELEMENTS (INCLUDES RESETS FOR THE DEFAULT FIELDSET AND LEGEND STYLES) */
/* line 28, membership.scss */
fieldset {
  margin: 0;
  padding: 2rem;
  box-sizing: border-box;
  display: block;
  border: none;
  min-width: 0;
  background-color: #FFF;
}
/* line 34, membership.scss */
fieldset legend {
  margin: 0 0 1.5rem;
  padding: 0;
  width: 100%;
  float: left;
  display: table;
  font-size: 1.5rem;
  line-height: 140%;
  font-weight: 600;
  color: #333;
}
/* line 38, membership.scss */
fieldset legend + * {
  clear: both;
}

/* line 41, membership.scss */
body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}

/* TOGGLE STYLING */
/* line 44, membership.scss */
.toggle {
  margin: 0 0 1.5rem;
  box-sizing: border-box;
  font-size: 0;
  justify-content: flex-start;
  align-items: stretch;
}
/* line 49, membership.scss */
.toggle input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
/* line 50, membership.scss */
.toggle input + label {
  margin: 0;
  padding: .75rem 4rem;
  box-sizing: border-box;
  color: #64D44C;
  position: relative;
  display: inline-block;
  border: solid 1px #CFD3D3;
  background-color: #FFF;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
}
/* line 58, membership.scss */
.toggle input + label:first-of-type {
  border-radius: 3px 0 0 3px;
  border-right: none;
}
/* line 59, membership.scss */
.toggle input + label:last-of-type {
  border-radius: 0 3px 3px 0;
  border-left: none;
}
/* line 61, membership.scss */
.toggle label {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
/* line 64, membership.scss */
.toggle input:hover + label {
  border-color: #647878;
}
/* line 65, membership.scss */
.toggle input:checked + label {
  background-color: #64D44C;
  color: #FFF;
  border-color: #64D44C;
  z-index: 1;
}
/* line 71, membership.scss */
.toggle input:focus + label {
  outline-offset: .45rem;
}
@media (max-width: 800px) {
  /* line 74, membership.scss */
  .toggle input + label {
    padding: .75rem .25rem;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
