@font-face {
  font-family: 'NBA Action';
  src:  url('../font/ActionNBACond-Medium-Web.woff') format('woff'),
        url('../font/ActionNBACond-Medium-Web.woff2') format('woff2');
}

@font-face {
  font-family: 'NBA Action Light';
  src:  url('../font/ActionNBACond-Light-Web.woff') format('woff'),
        url('../font/ActionNBACond-Light-Web.woff2') format('woff2');
}

body {
  background-color: #eeeeee;
  font-family: "Roboto",Helvetica,Arial,sans-serif;
  font-size: 16px;
  margin: 0 auto;
  text-align: center;
}

input, select {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 85%;
  font-size: 16px;
  border: 1px solid rgb(29,66,138);
  border-radius: 2px;
  background-color: #ffffff;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
}

select {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: content-box;
  background-image: url('../img/dropdown.png');
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 28px;
  cursor: pointer;
}


/* NBA Header Styles */

.nba-header {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  background-color: #1D428A;
}

.nba-header .nav__logo {
  flex: 0 0 60px;
}

.nba-header .nav__logo-img {
  width: 100%;
}

.nba-header .nba-header-center {
  flex: 1 1 auto;
  display: none;
}

@media screen and (min-width: 800px) {
  .nba-header .nba-header-center {
    display: flex;
  }
}

.nba-header .nba-header-right {
  margin: auto;
  display: flex;
  flex: 1 0 auto;
  justify-content: flex-end;
}

.nba-header ul {
  list-style: none;
}

.nba-header .nav__menu {
  display: flex;  
  flex: 0 1 550px;
  justify-content: space-between;
  padding: 0;
  margin-left: 15px;
}

.nba-header .nav__right {
  display: flex;
  flex: 0 1 110px;
  justify-content: space-between;
}

.nba-header .nav__menu-item a {
  color: #ffffff;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all 0.5s linear;
}

.nba-header .nav__menu-item a:hover {
  border-bottom: 2px solid #ffffff;
}



/* Page Content Styles*/

.no-wrap {
  white-space: nowrap;
}

.content {
  background-color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image-container {
  width: 100%;
  background-color: #010a35;
}

.hero-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.cta-text {
  color: #010a35;
  max-width: 840px;
  margin: 0 auto;
  padding: 10px 10px 40px;
  border-bottom: 1px solid #cecece;
}

.no-border {
  border: none;
}

.cta-text.thank-you,
.cta-text.holding-page {
  font-size: 20px;
  padding-bottom: 0;
}

.cta-text.holding-page p {
  margin: 0;
}

.get-tickets-btn {
  padding: 15px 40px;
  margin: 20px auto;
  display: inline-block;
  font-weight: bold;
  background-color: #1D428A;
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
}

.cta-text__headline {
  font-family: 'NBA Action', Arial, sans-serif;
  font-size: 50px;
  font-weight: normal;
  line-height: 55px;
  margin: 20px auto;
  max-width: 600px;
  text-transform: uppercase;
}

@media screen and (max-width: 640px) {
  .cta-text__headline {
    font-size: 35px;
    line-height: 40px;
  }
}

.cta-text__gray {
  color: #555555;
  font-size: 20px;
  margin: 0;
}

.cta-text__hashtag {
  color: #c8102e;
  font-weight: bold;
  margin: 2px 0;
}

.registration-form {
  margin: 20px 0;
  padding: 0 20px;
}

.flex-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.form-field {
  flex: 0 1 45%;
}

@media screen and (max-width: 640px) {
  .form-field {
    flex-basis: 100%;
  }
}

.uppercase {
  text-transform: uppercase;
}

#R_DATE_OF_BIRTH {
  text-align: center;
}

.dob-error {
  display: none;
  color: #ff0000;
  font-weight: bold;
  font-size: 14px;
  margin-top: 0;
}

.dob-error.active {
  display: block;
}

.checkbox-container {
  display: flex;
  align-items: center;
  width: 85%;
  text-align: left;
  margin: 25px auto;
}

.checkbox-container input[type='checkbox'] {
  display: inline-block;
  flex: 0 0 40px;
  position: absolute;
  left: -9999px;
}

.checkbox-container label {
  flex: 0 1 auto;
  background-image: url(../img/signup_unchecked.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 33px;
  padding-bottom: 10px;
  padding-left: 40px;
}

.checkbox-container input[type='checkbox']:focus + label {
  border: 2px dotted rgb(29,66,138)}

.checkbox-container input[type='checkbox']:checked + label {
  background-image: url(../img/signup_checked.png);
}

.email-consent {
  font-size: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.email-consent-box {
  border: 1px solid rgb(29,66,138);
  padding: 5px;
}

input[type="submit"] {
  background-color: rgb(29,66,138);
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-family: 'NBA Action', Arial, sans-serif;
  font-size: 35px;
  letter-spacing: 2px;
  margin: 30px auto;
  padding: 5px 40px;
  width: auto;
  cursor: pointer;
}

form:invalid input[type="submit"] {
  opacity: 0.3;
}

.terms-text {
  margin: 0 auto;
  text-align: justify;
  width: 90%;
}

.nba-logoman {
  max-width: 50px;
  margin: 0 auto 15px;
}

.cta-text-bottom {
  color: #353535;
  display: inline-block;
  background-color: #f0f0f0;
  padding: 20px;
  margin: 20px 0;
  border-top: 1px solid #97999b;
  border-bottom: 1px solid #97999b;
}

.social-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 350px;
}

.social-link{
  margin-bottom: 10px;
}

.social-btn {
  max-width: 106px;
}

.button-link {
  background-color: #c8102e; 
  color: #fff;
  display: inline-block;
  font-family: 'NBA Action Light', Arial, sans-serif;
  font-size: 30px;
  padding: 5px 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-image {
  margin-top: 20px;
  max-width: 100%;
  width: 100%;
}

/* NBA Footer Styles */

.nba-footer {
  border-top: 0;
  color: #0a0a0a;
  font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  font-size: 9px;
  margin-bottom: rem-calc(10);
  padding: 10px 0;
  text-align: center;
}

.nba-footer hr {
  border-color: #333333;
  max-width: 100%;
}

.nba-footer p {
  font-size: 9px;
  margin-bottom: 0;
}

.nba-footer a {
  color: #2199e8;
  cursor: pointer;
  line-height: 1.5;
  text-decoration: none;
}

.nbaAdChoices {
  background: url("https://i2.cdn.turner.com/nba/nba/.element/img/2.0/sect/adChoices/logo_ad_choices_footer.png") right 1px no-repeat;
  cursor: default;
  display: inline-block;
  padding-right: 16px;
}

.nba-footer img {
  margin-top: 10px;
  max-width: 75px;
}