.sbf-badge {
  letter-spacing: normal;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.28571;
}

.sbf-badge[data-badge-theme="blue"] {
  --sbf-badge-bg: var(--sbf-palette-blue-100);
  --sbf-badge-text: var(--sbf-palette-blue-500);
}

.sbf-badge[data-badge-theme="green"] {
  --sbf-badge-bg: var(--sbf-palette-green-200);
  --sbf-badge-text: var(--sbf-palette-green-700);
}

.sbf-badge[data-badge-theme="yellow"] {
  --sbf-badge-bg: var(--sbf-palette-yellow-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge[data-badge-theme="pink"] {
  --sbf-badge-bg: var(--sbf-palette-pink-100);
  --sbf-badge-text: var(--sbf-palette-pink-400);
}

.sbf-badge[data-badge-theme="purple"] {
  --sbf-badge-bg: var(--sbf-palette-purple-100);
  --sbf-badge-text: var(--sbf-palette-purple-400);
}

.sbf-badge[data-badge-theme="orange"] {
  --sbf-badge-bg: var(--sbf-palette-orange-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge[data-badge-theme="red"] {
  --sbf-badge-bg: var(--sbf-palette-red-100);
  --sbf-badge-text: var(--sbf-palette-red-200);
}

.sbf-badge[data-badge-theme="gold"] {
  --sbf-badge-bg: var(--sbf-palette-gold-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge[data-badge-theme="gray"] {
  --sbf-badge-bg: var(--sbf-palette-gray-200);
  --sbf-badge-text: var(--sbf-palette-black);
}

.sbf-badge {
  border-radius: var(--sbf-border-radius-4);
  padding: var(--sbf-space-4) var(--sbf-space-8);
  font-weight: var(--sbf-font-weight-700);
  letter-spacing: var(--sbf-letter-spacing-xl);
  text-transform: uppercase;
  background: var(--sbf-badge-bg, var(--sbf-palette-gray-300));
  color: var(--sbf-badge-text, var(--sbf-palette-black));
  text-decoration: none;
}

.sbf-badge:has(.sbf-badge__icon) {
  justify-content: center;
  align-items: center;
  gap: var(--sbf-space-4);
  display: flex;
}

.sbf-badge .sbf-badge__icon {
  width: 16px;
  height: 16px;
}

.sbf-toggletip__close-button, .sbf-tooltip-button, .sbf-toggletip-button {
  cursor: pointer;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
  text-decoration: none;
}

.sbf-toggletip__close-button svg, .sbf-tooltip-button svg, .sbf-toggletip-button svg {
  width: 100%;
  height: 100%;
}

.sbf-toggletip__close-button:focus, .sbf-tooltip-button:focus, .sbf-toggletip-button:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.sbf-tooltip, .sbf-toggletip {
  cursor: pointer;
  -webkit-text-decoration-color: var(--sbf-palette-blue-500);
  text-decoration-color: var(--sbf-palette-blue-500);
  text-underline-offset: 18%;
  text-decoration-thickness: calc(1em / 10);
  display: inline-block;
  position: relative;
  text-decoration-line: underline !important;
  text-decoration-style: dotted !important;
}

.sbf-tooltip.sbf-badge, .sbf-toggletip.sbf-badge {
  text-underline-offset: 0 !important;
  text-decoration: none !important;
}

.sbf-tooltip-button, .sbf-toggletip-button {
  background: none;
}

.sbf-tooltip-link, .sbf-toggletip-link {
  font-weight: var(--sbf-font-weight-600);
}

.sbf-tooltip-link--blue-500, .sbf-toggletip-link--blue-500 {
  color: #005595;
}

.sbf-tooltip-link--blue-500:hover, .sbf-toggletip-link--blue-500:hover, .sbf-tooltip-link--blue-500:active, .sbf-toggletip-link--blue-500:active {
  color: #002949;
}

.sbf-tooltip-link--yellow-200, .sbf-toggletip-link--yellow-200 {
  color: #f3d36e;
}

.sbf-tooltip-link--yellow-200:hover, .sbf-toggletip-link--yellow-200:hover, .sbf-tooltip-link--yellow-200:active, .sbf-toggletip-link--yellow-200:active {
  color: #edbe27;
}

.sbf-tooltip__element, .sbf-toggletip__element {
  padding: var(--sbf-space-16);
  text-align: left;
  border-radius: var(--sbf-border-radius-8);
  z-index: 10003;
  cursor: auto;
  background-color: var(--tooltip-bg);
  width: max-content;
  max-width: 320px;
  color: var(--tooltip-text);
  flex-direction: column;
  font-weight: normal;
  display: flex;
  position: absolute;
  box-shadow: 0 4px 12px #00000026;
}

@media (min-width: 480px) {
  .sbf-tooltip__element, .sbf-toggletip__element {
    max-width: 350px;
  }
}

.sbf-tooltip__element--light, .sbf-toggletip__element--light {
  --tooltip-bg: #fff;
  --tooltip-text: #353535;
  --tooltip-link-color: #005595;
  --tooltip-link-hover-color: #002949;
  --tooltip-btn-bg: #e5e5e5;
  --tooltip-btn-hover: #ccc;
  --tooltip-arrow-color: #fff;
}

.sbf-tooltip__element--dark, .sbf-toggletip__element--dark {
  --tooltip-bg: #353535;
  --tooltip-text: #fff;
  --tooltip-link-color: #f3d36e;
  --tooltip-link-hover-color: #edbe27;
  --tooltip-btn-bg: #6e6e6e;
  --tooltip-btn-hover: #555;
  --tooltip-arrow-color: #353535;
}

.sbf-tooltip__element a, .sbf-toggletip__element a {
  color: var(--tooltip-link-color);
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-tooltip__element a:hover, .sbf-tooltip__element a:active, .sbf-tooltip__element a:focus, .sbf-toggletip__element a:hover, .sbf-toggletip__element a:active, .sbf-toggletip__element a:focus {
  color: var(--tooltip-link-hover-color);
}

.sbf-tooltip__element ul, .sbf-toggletip__element ul {
  margin: 0;
  list-style: none;
}

.sbf-tooltip__element .sbf-tooltip__element-arrow, .sbf-tooltip__element .sbf-toggletip__element-arrow, .sbf-toggletip__element .sbf-tooltip__element-arrow, .sbf-toggletip__element .sbf-toggletip__element-arrow {
  z-index: 10003;
  background-color: var(--tooltip-arrow-color);
  width: 12px;
  height: 12px;
  position: absolute;
  transform: rotate(45deg);
}

.sbf-tooltip__content, .sbf-toggletip__content {
  letter-spacing: normal;
  gap: var(--sbf-space-4);
  flex-direction: column;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.28571;
  display: flex;
}

.sbf-tooltip__content a, .sbf-toggletip__content a {
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-tooltip__copy, .sbf-toggletip__copy {
  margin: 0;
}

.sbf-tooltip__content {
  gap: var(--sbf-space-8);
}

.sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link {
  color: var(--tooltip-link-color);
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link:hover, .sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link:active, .sbf-toggletip__element .sbf-toggletip__content .sbf-toggletip__content__link:focus {
  color: var(--tooltip-link-hover-color);
}

.sbf-toggletip__element .sbf-toggletip__footer a {
  color: var(--tooltip-link-color);
  font-weight: var(--sbf-font-weight-600);
  text-decoration: underline;
}

.sbf-toggletip__element .sbf-toggletip__footer a:hover, .sbf-toggletip__element .sbf-toggletip__footer a:active, .sbf-toggletip__element .sbf-toggletip__footer a:focus {
  color: var(--tooltip-link-hover-color);
}

.sbf-toggletip__heading {
  letter-spacing: -.008em;
  margin: 0 0 8px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.33333;
}

.sbf-toggletip__heading:has(.sbf-toggletip__close-button) {
  justify-content: space-between;
  align-items: center;
  gap: var(--sbf-space-24);
  display: flex;
}

.sbf-toggletip__footer {
  margin: var(--sbf-space-16) 0 0 0;
}

.sbf-toggletip__footer a {
  gap: var(--sbf-space-4);
  align-items: center;
  display: flex;
}

.sbf-toggletip__footer a svg {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0 0 0 var(--sbf-space-4);
}

.sbf-toggletip__close-button {
  background: var(--tooltip-btn-bg);
  border-radius: var(--sbf-border-radius-4);
}

.sbf-toggletip__close-button:hover {
  background: var(--tooltip-btn-hover);
}

.sbf-toggletip__element, .sbf-tooltip-template {
  display: none;
}

body {
  background-color: #63883d;
}

body.sbf-ce-editor .sbf-ce-section.sbf-ce-section {
  outline: 1px dotted #353535;
}

body ::selection {
  background: #005595;
}

main {
  background-color: #fff;
}

@media (min-width: 1130px) {
  main {
    background-color: #0000;
  }
}

.flex {
  flex-direction: row;
  justify-content: space-evenly;
  display: flex;
}

@media (min-width: 1130px) {
  .flex {
    display: block;
  }
}

.inline-input {
  font-family: var(--sbf-font-family-sans);
  cursor: text;
  margin: 0 12px 0 0;
  padding: 12px 0;
  font-size: 1em;
  font-weight: normal;
  line-height: normal;
  display: inline-block;
  position: relative;
}

.inline-input input, .inline-input textarea, .inline-input select {
  width: 100%;
  font-size: 1em;
  font-family: var(--sbf-font-family-sans);
  color: var(--sbf-palette-black);
  border-radius: var(--sbf-border-radius-4);
  background: var(--sbf-palette-white);
  border: 1px solid var(--sbf-palette-gray-400);
  box-shadow: none;
  appearance: none;
  padding: 1em;
}

.inline-input input[type="number"], .inline-input textarea[type="number"], .inline-input select[type="number"] {
  appearance: none;
  -moz-appearance: textfield;
}

.inline-input input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.inline-input input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.inline-input textarea[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.inline-input textarea[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.inline-input select[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.inline-input select[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.inline-input input:focus, .inline-input textarea:focus, .inline-input select:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.inline-input select {
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='7'%20viewBox='0%200%2014%207'%20fill='none'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14%200L7.2807%207L0%200L14%200Z'%20fill='%23979797'/%3e%3c/svg%3e") right 1rem center / .6rem no-repeat;
  background-color: var(--sbf-palette-white);
  cursor: pointer;
}

.inline-input input, .inline-input select {
  height: 54px;
  min-height: 54px;
}

.inline-input label {
  font-size: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
  cursor: text;
  transform-origin: 0;
  pointer-events: none;
  transition: transform .2s ease-out;
  position: absolute;
  top: 1.75em;
  left: 1em;
  transform: scale(.8) translate(-1em, -3em);
}

.inline-input.empty label {
  color: var(--sbf-palette-gray-500);
  transform: none;
}

.inline-input.currency-usd input {
  padding: 10px 63px 10px 30px;
}

.inline-input.currency-usd input::-webkit-input-placeholder {
  color: var(--sbf-palette-blue-500);
}

.inline-input.currency-usd input::placeholder {
  color: var(--sbf-palette-blue-500);
}

.inline-input.currency-usd input:placeholder-shown {
  color: var(--sbf-palette-blue-500);
}

.inline-input.currency-usd input:-ms-placeholder-shown {
  color: var(--sbf-palette-blue-500);
}

.inline-input.currency-usd label {
  padding-left: 0;
}

.inline-input.empty.currency-usd label {
  padding-left: .4em;
}

.inline-input.invalid input, .inline-input.invalid select {
  border: 1px solid var(--sbf-palette-red-200);
}

.inline-input.invalid.empty label {
  color: var(--sbf-palette-red-200);
  padding-left: 24px;
}

.inline-input.invalid.empty label:before {
  content: "!";
  background-color: var(--sbf-palette-red-200);
  color: var(--sbf-palette-white);
  border-radius: var(--sbf-border-radius-round);
  width: 15px;
  line-height: 15px;
  font-weight: var(--sbf-font-weight-700);
  text-align: center;
  font-size: 12px;
  display: block;
  position: absolute;
  top: 3px;
  left: 2px;
}

.inline-input .email-checker {
  z-index: 1002;
  white-space: nowrap;
  background-color: #fff;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.inline-input .email-checker__label {
  display: flex;
  overflow: hidden;
}

.inline-input .email-checker__result {
  cursor: pointer;
  text-overflow: ellipsis;
  font-weight: var(--sbf-font-weight-600);
  direction: rtl;
  margin-left: .2em;
  padding: 0;
  text-decoration: underline;
  overflow: hidden;
}

.inline-input .email-checker__result:focus-visible {
  outline-offset: -2px;
}

.inline-input .email-checker__close {
  cursor: pointer;
  height: 14px;
  margin-top: 2px;
  margin-left: 3px;
  padding: 0;
  display: inline-block;
}

.inline-input .icon {
  color: var(--sbf-palette-gray-500);
}

.inline-input ::-webkit-input-placeholder {
  color: var(--sbf-palette-gray-500);
}

.inline-input :-moz-placeholder-shown {
  color: var(--sbf-palette-gray-500);
}

.inline-input ::-moz-placeholder {
  color: var(--sbf-palette-gray-500);
}

.inline-input :-ms-placeholder-shown {
  color: var(--sbf-palette-gray-500);
}

.inline-input .inline-input__button {
  background: none;
  border: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 18px;
  right: 0;
}

.inline-input .inline-input__button .inline-input__button-search-icon {
  width: 17px;
  height: 17px;
}

.tk-header {
  max-width: 1200px;
  margin: 0;
}

.tk-header .old-header__right-block {
  padding: 0 60px 0 0;
  right: 0;
}

.tk-header .old-header__right-block .old-header__links {
  color: #f5f5f5;
}

.tk-header .fb-nav {
  padding-right: 60px;
}

.logo-container {
  z-index: 999;
}

a {
  color: #005595;
}

a:hover, a:active {
  color: #002949;
}

a {
  text-decoration: underline;
}

.community__stats {
  color: #fff;
  text-align: center;
  background-size: cover;
  padding: 38px 0 34px;
}

.community__stats h1, .community__stats .stat-value {
  text-shadow: 0 2px #00000080;
}

.community__stats h1 {
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.125;
}

.community__stats .stat--big {
  padding-bottom: 16px;
}

.community__stats .stat-label {
  letter-spacing: -.008em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.33333;
}

.community__stats .stat-value {
  letter-spacing: -.015em;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.16667;
}

.community__stats .hide-label, .community__stats .icon {
  display: none;
}

.community__stats-chicago {
  background: #2b4763 url("/fa/min/assets/medium-cover-171164fd.jpg") center no-repeat;
}

.community__stats-las-vegas {
  background: #2b4763 url("/fa/min/assets/lasvegas-t-m-c3435f9e.jpg") center / cover no-repeat;
}

.community__stats-cleveland {
  background: #2b4763 url("/fa/min/assets/cleveland-t-m-3459e1bc.jpg") center / cover no-repeat;
}

.community__stats-new-york {
  background: #2b4763 url("/fa/min/assets/newyork-t-m-6420f74b.jpg") center / cover no-repeat;
}

.community__stats-st-louis {
  background: #2b4763 url("/fa/min/assets/stlouis-t-m-20d06b20.jpg") 0 0 / cover no-repeat;
}

.community__stats-boston {
  background: #2b4763 url("/fa/min/assets/boston-t-8b7d9ef8.jpg") 0 0 / cover no-repeat;
}

.community__stats-atlanta {
  background: #294262 url("/fa/min/assets/atlanta-t-7e5f84fa.jpg") center / cover no-repeat;
}

.community__stats-philadelphia {
  background: #5183b4 url("/fa/min/assets/philadelphia-t-d35958b6.jpg") center / cover no-repeat;
}

.community__stats-denver {
  background: #5183b4 url("/fa/min/assets/denver-t-80d3e1fe.jpg") center / cover no-repeat;
}

.community__stats-rtp {
  background: #5183b4 url("/fa/min/assets/rtp-t-e45d92fe.jpg") center / cover no-repeat;
}

.community__info {
  padding: 40px 0 1em;
}

.community__info .inner {
  padding: 0 20px 110px;
}

.community__info h2 {
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.16667;
}

.community__info p:not(.lead) {
  letter-spacing: normal;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.4;
}

.community__info .strong {
  font-weight: bold;
}

.radius-search {
  float: none;
  width: 90%;
  max-width: none;
  margin: 10px 0;
  position: absolute;
  bottom: 0;
  left: 5%;
}

.radius-search h3 {
  letter-spacing: .21em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  background: #353535;
  border-radius: 4px 4px 0 0;
  margin: 0;
  padding: 10px 20px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .75em;
  font-weight: normal;
  line-height: 1.5;
}

.radius-search form {
  height: 56px;
}

.radius-search .inline-input {
  width: 100%;
  top: -12px;
}

.radius-search .inline-input label {
  margin-bottom: 0;
}

.radius-search .bottom-input {
  width: 100%;
  height: 100%;
  box-shadow: none;
  border: 1px solid #353535;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.radius-search .inline-input:not(.empty) label {
  display: none;
}

.radius-search .small-round {
  color: #979797;
  background: none;
  border: 1px solid #979797;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  padding: 0;
  line-height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
}

.radius-search .small-round .icon-arrow {
  width: 12px;
  height: 12px;
  top: -1px;
  left: 2px;
  transform: rotate(-90deg);
}

.community__events {
  padding-bottom: 42px;
}

.community__events .inner {
  text-align: center;
  padding: 0 20px;
}

.community__events .flex {
  display: block;
}

.community__events h2 {
  letter-spacing: normal;
  text-transform: uppercase;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.375;
}

.community__events h2 span {
  color: #6e6e6e;
  font-weight: normal;
}

.community__events .sort-events {
  width: 200px;
}

.community--event-list {
  margin-left: 0;
  list-style: none;
}

.community--event-list > li:before, .community--event-list > li:after {
  content: " ";
  display: table;
}

.community--event-list > li:after {
  clear: both;
}

.community--event-list > li {
  text-align: left;
  border-top: 1px solid #d8d8d8;
  margin-top: 30px;
  padding-top: 30px;
  padding-left: 56px;
}

.community--event-list > li .event-rank {
  letter-spacing: -.015em;
  color: #ccc;
  text-align: center;
  width: 56px;
  margin-top: 14px;
  margin-bottom: 24px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 120px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 760px) {
  .community--event-list > li .event-rank {
    margin-top: 22px;
  }
}

.community--event-list li:nth-child(n+51) {
  display: none;
}

.community--event-list.show-all li:nth-child(n+51) {
  display: block;
}

.community--event-list.no-rank > li {
  padding-left: 0;
}

.community--event-list.no-rank > li:before {
  content: none;
}

.community--event-list .info {
  width: 100%;
  padding-left: 110px;
  display: block;
}

.community--event-list .name {
  letter-spacing: -.015em;
  width: 83%;
  margin: 4px 0 8px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.16667;
  display: block;
}

.community--event-list .name a {
  color: #005595;
}

.community--event-list .name a:hover, .community--event-list .name a:active {
  color: #002949;
}

.community--event-list .name a {
  text-decoration: underline;
}

.community--event-list .date {
  white-space: nowrap;
}

.community--event-list .meta {
  letter-spacing: normal;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.375;
  list-style: none;
}

.community--event-list .meta > li {
  padding: 0 0 4px 20px;
}

.community--event-list .icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 2px;
  left: 0;
}

.community--event-list .photo {
  float: left;
  margin-bottom: 6px;
}

.community--event-list .photo .photo-wrapper {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 85px;
  max-width: 85px;
  height: 85px;
  max-height: 85px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 0 1px #ccc;
}

.community--event-list .photo .photo-wrapper img {
  max-width: 85px;
  max-height: 85px;
}

.community--event-list .actions {
  float: left;
  clear: left;
  max-width: 100px;
}

.community--event-list .sbf-button.join-us {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #005595;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #005595;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.community--event-list .sbf-button.join-us:hover, .community--event-list .sbf-button.join-us:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #003862;
  border-color: #003862;
}

.community--event-list .sbf-button.join-us:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.community--event-list .sbf-button.join-us.disabled, .community--event-list .sbf-button.join-us[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.community--event-list .sbf-button.join-us.disabled:hover, .community--event-list .sbf-button.join-us.disabled:focus, .community--event-list .sbf-button.join-us[disabled]:hover, .community--event-list .sbf-button.join-us[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #005595;
  border-color: #005595;
}

.community--event-list .sbf-button.join-us {
  font-size: var(--sbf-font-size-16);
  min-width: initial;
  min-width: 85px;
  max-width: 85px;
  margin: 0 0 8px;
  padding: 12px;
  line-height: 1.15em;
}

.community--event-list .sbf-button.join-us.sbf-button--disabled, .community--event-list .sbf-button.join-us.sbf-button--disabled:hover {
  color: #6e6e6e;
  cursor: default;
  background: #d8d8d8;
  border-color: #d8d8d8;
}

.community--event-list .sbf-button.donate {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #1c6b3d;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #1c6b3d;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.community--event-list .sbf-button.donate:hover, .community--event-list .sbf-button.donate:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #114326;
  border-color: #114326;
}

.community--event-list .sbf-button.donate:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.community--event-list .sbf-button.donate.disabled, .community--event-list .sbf-button.donate[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.community--event-list .sbf-button.donate.disabled:hover, .community--event-list .sbf-button.donate.disabled:focus, .community--event-list .sbf-button.donate[disabled]:hover, .community--event-list .sbf-button.donate[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #1c6b3d;
  border-color: #1c6b3d;
}

.community--event-list .sbf-button.donate {
  font-size: var(--sbf-font-size-16);
  min-width: initial;
  min-width: 85px;
  max-width: 85px;
  padding: 12px;
  line-height: 1.15em;
}

.view-more {
  cursor: pointer;
  padding: 24px 0;
  display: inline-block;
}

.view-more h2 {
  background: #fff;
  padding: 0 10px;
  display: inline-block;
}

.view-more:before {
  content: "";
  background-color: #d8d8d8;
  width: 150px;
  height: 1px;
  display: block;
  position: relative;
  top: 14px;
}

@media (min-width: 480px) {
  .tk-header .old-header__right-block, .tk-header .fb-nav {
    padding: 0 2% 0 0;
  }
}

@media (min-width: 600px) {
  .community__info .inner {
    padding-bottom: 0;
  }

  .radius-search {
    float: right;
    z-index: 1;
    width: 100%;
    max-width: 270px;
    margin: 0 0 0 16px;
    position: relative;
    bottom: auto;
    left: auto;
  }
}

@media (min-width: 760px) {
  .tk-header {
    margin-bottom: 0;
  }

  .community__stats {
    padding-bottom: 16px;
  }

  .community__stats h1 {
    letter-spacing: -.035em;
    margin-top: 0;
    margin-bottom: 24px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 3.75em;
    font-weight: 700;
    line-height: 1.08333;
  }

  .community__stats .stat-value {
    margin-bottom: 24px;
  }

  .community__stats .hide-label.mobile-only {
    display: inline;
  }

  .community__info p:not(.lead) {
    letter-spacing: normal;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 1.375;
  }

  .community__info .lead {
    letter-spacing: normal;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    line-height: 1.33333;
  }

  .radius-search {
    margin: 0 0 16px 16px;
  }

  .community--event-list > li {
    padding-left: 82px;
  }

  .community--event-list > li .event-rank {
    width: 82px;
    font-size: 40px;
  }
}

@media (min-width: 960px) {
  .community__events .flex {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .community__events h2 {
    margin-bottom: 0;
  }

  .community__events .sort-events {
    margin: 0;
    padding: 0;
  }

  .community--event-list .photo {
    float: none;
    width: 100%;
    position: absolute;
    inset: 0;
  }

  .community--event-list .photo .photo-wrapper {
    width: 100px;
    max-width: 100px;
    height: 100px;
    max-height: 100px;
  }

  .community--event-list .photo .photo-wrapper img {
    max-width: 100px;
    max-height: 100px;
  }

  .community--event-list .actions {
    z-index: 1;
    width: 200px;
    max-width: 999px;
    position: absolute;
    right: 0;
  }

  .community--event-list .sbf-button {
    text-align: center;
  }

  .community--event-list .sbf-button.join-us {
    border-radius: var(--sbf-border-radius-4);
    color: #fff;
    font-family: var(--sbf-font-family-sans);
    font-weight: var(--sbf-font-weight-700);
    border-color: #005595;
    border-width: var(--sbf-border-width-2);
    cursor: pointer;
    white-space: nowrap;
    z-index: 2;
    letter-spacing: -.005em;
    text-align: center;
    background-color: #005595;
    border-style: solid;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
    display: inline-block;
  }

  .community--event-list .sbf-button.join-us:hover, .community--event-list .sbf-button.join-us:focus {
    color: #f5f5f5;
    border-bottom-width: var(--sbf-border-width-2);
    background-color: #003862;
    border-color: #003862;
  }

  .community--event-list .sbf-button.join-us:focus {
    outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
    outline-offset: var(--sbf-border-width-2);
  }

  .community--event-list .sbf-button.join-us.disabled, .community--event-list .sbf-button.join-us[disabled] {
    opacity: var(--sbf-opacity-50);
    pointer-events: none;
  }

  .community--event-list .sbf-button.join-us.disabled:hover, .community--event-list .sbf-button.join-us.disabled:focus, .community--event-list .sbf-button.join-us[disabled]:hover, .community--event-list .sbf-button.join-us[disabled]:focus {
    color: #fff;
    border-bottom-width: var(--sbf-border-width-2);
    background-color: #005595;
    border-color: #005595;
  }

  .community--event-list .sbf-button.join-us {
    font-size: var(--sbf-font-size-18);
    min-width: 200px;
    padding: 16px;
    line-height: 1.15em;
  }

  .community--event-list .sbf-button.donate {
    border-radius: var(--sbf-border-radius-4);
    color: #fff;
    font-family: var(--sbf-font-family-sans);
    font-weight: var(--sbf-font-weight-700);
    border-color: #1c6b3d;
    border-width: var(--sbf-border-width-2);
    cursor: pointer;
    white-space: nowrap;
    z-index: 2;
    letter-spacing: -.005em;
    text-align: center;
    background-color: #1c6b3d;
    border-style: solid;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
    display: inline-block;
  }

  .community--event-list .sbf-button.donate:hover, .community--event-list .sbf-button.donate:focus {
    color: #f5f5f5;
    border-bottom-width: var(--sbf-border-width-2);
    background-color: #114326;
    border-color: #114326;
  }

  .community--event-list .sbf-button.donate:focus {
    outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
    outline-offset: var(--sbf-border-width-2);
  }

  .community--event-list .sbf-button.donate.disabled, .community--event-list .sbf-button.donate[disabled] {
    opacity: var(--sbf-opacity-50);
    pointer-events: none;
  }

  .community--event-list .sbf-button.donate.disabled:hover, .community--event-list .sbf-button.donate.disabled:focus, .community--event-list .sbf-button.donate[disabled]:hover, .community--event-list .sbf-button.donate[disabled]:focus {
    color: #fff;
    border-bottom-width: var(--sbf-border-width-2);
    background-color: #1c6b3d;
    border-color: #1c6b3d;
  }

  .community--event-list .sbf-button.donate {
    font-size: var(--sbf-font-size-18);
    min-width: 200px;
    padding: 16px;
    line-height: 1.15em;
  }

  .community--event-list .info {
    max-width: 80%;
    padding-left: 125px;
  }

  .community--event-list .meta > li {
    letter-spacing: normal;
    float: left;
    width: 43%;
    margin: 0 12px 4px 0;
    padding-left: 24px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    line-height: 1.33333;
  }

  .community--event-list .icon {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1130px) {
  body {
    background: #fff;
  }

  .tk-header {
    background: none;
    border-bottom: 0;
    max-width: 1550px;
    height: 148px;
  }

  .tk-header .old-header__right-block {
    top: 14px;
  }

  .tk-header > * {
    max-width: 100%;
  }

  .tk-header:before {
    background: none;
  }

  .tk-header .sbf-button.sbf-button {
    display: none;
  }

  .tk-header.old-header .logo-img.logo-img {
    width: 270px;
    position: fixed;
    top: 40px;
    left: 36px;
  }

  .tk-header .primary-nav.primary-nav {
    width: 100%;
    box-shadow: none;
    background: none;
    border-top: none;
    border-bottom: 0;
    margin-top: 15px;
  }

  .tk-header .primary-nav.primary-nav .nav {
    width: auto;
    margin-left: 285px;
  }

  .tk-header .primary-nav.primary-nav .nav > li {
    padding: 0 0 17px;
  }

  .tk-header .primary-nav.primary-nav .nav a {
    padding: 12px 10px;
  }

  .tk-header .primary-nav.primary-nav ul:nth-child(2) {
    top: 58px;
  }

  .tk-header.old-header .primary-nav.primary-nav ul:nth-child(2) {
    top: 64px;
  }

  .community--large-bg {
    z-index: -2;
    background-repeat: no-repeat;
    background-size: initial;
    position: fixed;
    inset: 0;
  }

  .community--large-bg-chicago {
    background-color: #72a4c7;
    background-image: url("/fa/min/assets/large-cover-e3b7cd46.jpg"), linear-gradient(#72a4c7 0% 33%, #fff 34% 100%);
    background-position: 0 0;
  }

  .community--large-bg-las-vegas {
    background-image: url("/fa/min/assets/lasvegas-d-a0ab2f43.jpg");
    background-position: 100%;
    background-size: cover;
  }

  .community--large-bg-cleveland {
    background-image: url("/fa/min/assets/cleveland-d-7b6778c9.jpg");
    background-size: cover;
  }

  .community--large-bg-new-york {
    background-image: url("/fa/min/assets/newyork-d-33f73470.jpg");
    background-position: 100%;
    background-size: cover;
  }

  .community--large-bg-st-louis {
    background-image: url("/fa/min/assets/stlouis-d-7c19265a.jpg");
    background-position: 100%;
    background-size: cover;
  }

  .community--large-bg-boston {
    background-image: url("/fa/min/assets/boston-d-7972e266.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .community--large-bg-atlanta {
    background-image: url("/fa/min/assets/atlanta-d-ed78158f.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .community--large-bg-philadelphia {
    background-image: url("/fa/min/assets/philadelphia-d-2185dd1a.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .community--large-bg-denver {
    background-image: url("/fa/min/assets/denver-d-b52866b9.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .community--large-bg-rtp {
    background-image: url("/fa/min/assets/rtp-d-ad8f19da.jpg");
    background-position: 0 0;
    background-size: cover;
  }

  .main-content {
    background: #fff;
    margin-left: 350px;
  }

  .main-content a {
    color: #005595;
  }

  .main-content a:hover, .main-content a:active {
    color: #002949;
  }

  .main-content a {
    border: none;
    font-weight: 600;
    text-decoration: underline;
  }

  .main-content .inner {
    max-width: 1200px;
    padding: 0 60px;
  }

  .community__stats {
    z-index: 1;
    background: none;
    width: 350px;
    margin: 0;
    padding: 0 20px;
    position: fixed;
    top: 148px;
    left: 0;
  }

  .community__stats .inner {
    border-top: 1px solid #fff3;
  }

  .community__stats .icon {
    margin: 53px 0 5px;
    font-size: 26px;
    line-height: 42px;
    display: inline-block;
  }

  .community__stats h1 {
    margin-bottom: 30px;
  }

  .community__stats .stat--big, .community__stats .stat {
    padding-bottom: 24px;
  }

  .community__stats .stat-value, .community__stats .stats-label {
    letter-spacing: -.025em;
    margin-top: 0;
    margin-bottom: 24px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.125;
  }

  .community__stats .hide-label {
    display: inline;
  }

  .community__info {
    border-top: 3px solid #b4975a;
  }

  .community__info h2 {
    letter-spacing: -.025em;
    margin-top: 0;
    margin-bottom: 24px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.125;
  }

  .tk-footer {
    color: #005595;
    background: #fff;
    border-top: 3px solid #b4975a;
    margin-left: 350px;
  }

  .tk-footer .inner {
    max-width: 1200px;
    margin: 0;
  }

  .tk-footer .footer--nav a {
    color: #005595;
  }

  .tk-footer .footer--nav a:hover {
    color: #3588c8;
  }

  .tk-footer .footer__interact a {
    color: #005595;
  }

  .tk-footer .footer__interact a:hover {
    color: #3588c8;
  }

  .tk-footer .footer--fine-print, .tk-footer .sbf-on-fb .icon, .tk-footer .twitter .icon, .tk-footer .youtube .icon, .tk-footer .linkedin .icon, .tk-footer .instagram .icon, .tk-footer .icon.footer--logo {
    color: #005595;
  }

  .tk-footer address a, .tk-footer .footer--fine-print a {
    border-bottom-color: #005595;
  }

  .tk-footer address a:hover, .tk-footer .footer--fine-print a:hover {
    color: #3588c8;
  }
}

@media (min-width: 1130px) and (max-width: 1300px) {
  .community--event-list .actions {
    max-width: 100px;
  }

  .community--event-list .actions .sbf-button.join-us, .community--event-list .actions .sbf-button.donate {
    min-width: 90px;
  }

  .tk-footer .footer--nav {
    text-align: center;
    flex: none;
    width: 100%;
  }

  .tk-footer .footer__interact {
    text-align: center;
    flex: none;
    width: 100%;
    margin: 0 0 0 3%;
    position: absolute;
    top: 50px;
    left: 0;
  }

  .tk-footer .home {
    margin-top: 35px;
  }

  .tk-footer address span {
    display: block;
  }

  .tk-footer .address-line:before {
    content: none;
  }

  .tk-footer .dot {
    display: inline;
  }

  .tk-footer .footer--fine-print {
    width: 450px;
    margin-top: 18px;
  }
}
