/* province-based content; default = ON (anytime it is not explicitly BC)
  alternative selectors:
  body:not([nfl]) .gc:not(.on),                       -- missing attr     = ON
  body[nfl=''] .gc:not(.on),                          -- empty attr       = ON
  body[nfl='ON'] .gc:not(.on),                        -- ON               = ON
  body:not([nfl="ON"]):not([nfl="BC"]) .gc:not(.on),  -- neither ON or BC = ON
*/
body:not([nfl="BC"]) .gc:not(.on),
body[nfl='BC'] .gc:not(.bc) {
  display: none !important;
}

#location_container {
  justify-content: center;
  align-items: center;
}

#location_body {
  padding: 32px 24px;
  margin: 0;
  border-radius: 8px;
  max-width: 588px;
  text-align: center;
}

#location_body .close_popup_x {
  border: unset;
  background-color: unset;
  padding: 0;
}

#location_body h1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 16px;
  letter-spacing: normal;
}

#location_body p {
  color: #4F4F4F;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

#location_body .province_button {
  height: 44px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

#location_body .province_button:hover {
  color: #FFFFFF;
  background-color: #D64547;
}

@media (min-width: 960px) {
  #location_body h1 {
    font-size: 24px;
  }
}