@import "txp-font-face_v2.css";

/* font shorthand: style variant weight size/line-height family */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

:root {
  --nav-height: 74px;
  --gray-200: #ececec;
  --gray-300: #d7d7d7;
  --gray-400: #c4c4c4;
  --gray-500: #a0a0a0;
  --gray-600: #909090;
  --gray-700: #575757;
  --txmo-red: #f75a38;
}

body {
  font-family: "Ringside Regular", sans-serif;
  padding-top: var(--nav-height);
}

a {
  color: unset;
  text-decoration: none;
}

a:hover {
  color: unset;
}

h1 {
  font: 55px/48px "Grifinito M", serif;
}

.img-wrapper img {
  width: 100%;
}

.container {
  max-width: 100%;
}

.button {
  font: bold 14px/17px "Ringside Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 13px 44px;
  border: none;
  background-color: #000;
  transition: background-color 0.2s ease-in-out;
  color: #ffffff;
}

.button:hover {
  background-color: var(--txmo-red);
}

.text-link {
  font: bold 14px/17px "Ringside Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000000;
  padding: 0;
  background: none;
  border: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 0.2s ease-in-out;
}

.text-link:hover {
  color: var(--txmo-red);
}

/* HEADER */
.header {
  background-color: #000;
  position: relative;
  height: auto;
  max-height: var(--nav-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  overflow: hidden;
  transition: max-height 0.2s ease-in;
}

.header.nav-open {
  height: auto;
  max-height: 50vh;
}

.header__inner {
  background-color: #000;
  padding: 20px 0 16px 0;
  position: relative;
  height: inherit;
  z-index: 2;
}

.header__logo-container {
  text-align: center;
  max-width: 230px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  background-color: #000;
}

.nav-bar__toggler {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 47px;
  height: 47px;
  appearance: none;
  border: none;
  background: none;
}

.toggler-bar {
  position: absolute;
  left: 11px;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  transform: none;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease-in-out;
}

.toggler-bar--first {
  top: 18px;
}

.nav-open .toggler-bar--first {
  transform: translate(0, 6px) rotate(135deg);
}

.toggler-bar--second {
  top: 27px;
}

.nav-open .toggler-bar--second {
  transform: translate(0, -3px) rotate(-135deg);
}

.nav-bar__list {
  list-style-type: none;
  padding: 0 22px 20px 22px;
  margin: 0;
  color: #ffffff;
}

.nav-bar__link {
  font: 11px/11px "Ringside Wide";
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  transition: color 0.2s ease-in-out;
}

.nav-bar__link:hover {
  color: var(--txmo-red);
}

.nav-bar__link--back-to-tm {
  color: var(--gray-400);
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (min-width: 768px) {
  body {
    padding-top: 0;
  }

  .header {
    position: relative;
    max-height: none;
    transition: none;
    padding: 40px 0 25px 0;
  }

  .header__inner {
    padding: 0;
    margin-bottom: 15px;
  }

  .nav-bar__toggler,
  .nav-bar__link--back-to-tm {
    display: none;
  }

  .nav-bar__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 25px;
    padding: 0;
    text-align: center;
  }

  .nav-bar__list > li:last-child {
    flex-basis: 100%;
  }

  .header__logo-container:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 18px;
    z-index: -1;
  }
}

@media (min-width: 960px) {
  .nav-bar__list {
    column-gap: 40px;
  }
}

/* END HEADER */

/* HERO */
.hero__content {
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
  padding: 35px 22px 0 22px;
  margin-bottom: 40px;
}

.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 360px;
  z-index: 0;
}

.hero__img img {
  object-fit: cover;
  object-position: 50% 50%;
  user-select: none;
  width: inherit;
  height: inherit;
}

@media (min-width: 768px) {
  h1 {
    font: 80px/70px "Grifinito M", serif;
    margin-bottom: 20px;
  }

  .hero {
    margin-bottom: 60px;
  }

  .hero__dek {
    font: 18px/19.5px "Ringside Regular";
  }

  .hero__img {
    max-height: 530px;
  }

  .hero__img img {
    object-position: 50% 25%;
  }
}

/* CARD CONTAINER */
.card-container {
  padding: 0 22px;
  row-gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-container--main-offers {
  position: relative;
  z-index: 2;
}

.card-container--more-options {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* CARDS */

.card {
  width: 100%;
  min-height: 305px;
  transition: transform 1s;
  transform-style: preserve-3d;
  position: relative;
  background-color: transparent;
  transform: translateZ(0);
  border: none;
  /* max-height: 100%;
  transition: max-height 0.2s ease-in-out; */
}

.card--has-ribbon {
  min-height: calc(305px + 22px);
}

.card--no-flip {
  border: 1px solid var(--gray-500);
  border-radius: 5px;
  background-color: #ffffff;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
}

.card--horizontal {
  border-radius: 5px;
  background-color: #ffffff;
  text-align: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  position: relative;
}

.card__face {
  border: 1px solid var(--gray-500);
  border-radius: 5px;
  background-color: #ffffff;
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 22px;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform ease-in-out 600ms;
}

.card__face--front {
  text-align: center;
}

.card__face--back {
  transform: rotateY(-180deg);
  justify-content: flex-start;
  row-gap: 20px;
}

.card--horizontal .card__face--front {
  justify-content: center;
}

.card.is-flipped {
  transform: rotateY(180deg);
}

.card.show-perks {
  min-height: 0;
  max-height: 1000px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}

.card__ribbon {
  padding: 4px;
  font: bold 12px/14px "Ringside Wide";
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--txmo-red);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.card__title {
  font: 55px/48px "Grifinito M", serif;
}

.card--has-ribbon .card__title {
  margin-top: 20px;
}

.card--no-flip .card__title {
  font: 42px/38px "Grifinito M", serif;
}

.card__price {
  font: 18px/22px "Ringside Narrow", sans-serif;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card__text {
  font: 16px/19px "Ringside Regular", sans-serif;
}

.card__button {
  display: block;
  margin: 0 auto 16px auto;
}

.card__perks-list {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.card__perks-list > li {
  border-bottom: 1px solid var(--gray-300);
  padding: 12px 0;
  font: 16px/19px "Ringside Regular", sans-serif;
  color: var(--gray-700);
}

.card__perks-list > li:last-child {
  border-bottom: none;
}

.show-perks .card__face {
  height: auto;
}

.show-perks .card__perks-list {
  visibility: visible;
  max-height: none;
}

.show-perks .card__face--front {
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card__close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 5px;
  top: 5px;
  background: none;
  border: none;
  outline: none;
  overflow: hidden;
  text-indent: -1000px;
  padding: 0;
}

.card__close--bar {
  width: 25px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  background-color: #000000;
  display: block;
  position: absolute;
  top: 14px;
  left: 2px;
}

.card__close--bar.bar-two {
  transform: rotate(-45deg);
}

.card__offer-header {
  font: 12px/14px "Ringside Wide";
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.card__term-length-container {
  width: 100%;
  max-width: 200px;
  position: relative;
}

.card__term-length-container label {
  font: bold 14px/17px "Ringside Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 13px;
  width: 100%;
  border: none;
  background-color: #000;
  transition: background-color 0.2s ease-in-out;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.card__term-length-input:checked ~ label,
.card__term-length-container label:hover {
  background-color: var(--txmo-red);
}

.card__term-length-input {
  visibility: hidden;
  height: 0;
  width: 0;
  position: absolute;
}

.renew-sub-container {
  text-align: center;
}

.card--horizontal__back {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
}

.offers-flipped .card--horizontal__back {
  visibility: visible;
}

.offers-flipped .js-view-offers-horizontal {
  visibility: hidden;
}

@media (min-width: 768px) {
  .card-container {
    row-gap: 25px;
    column-gap: 30px;
    flex-direction: row;
    min-height: 390px;
    align-items: initial;
  }

  .card-container--main-offers {
    justify-content: center;
  }

  .card-container--more-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3.5%;
  }

  .card__face {
    padding-top: 55px;
    padding-bottom: 40px;
  }

  .card__face--front {
    justify-content: space-between;
    transition: box-shadow 0.2s ease-in-out;
  }

  .card--with-flip {
    max-width: 275px;
    min-height: 390px;
  }

  .card--horizontal {
    grid-column: 1 / -1;
    text-align: left;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    min-height: 0;
    padding: 0;
  }

  .card--horizontal.is-flipped {
    transform: none;
  }

  .card--horizontal .card__face--front {
    position: relative;
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
  }

  .card--horizontal .card__face--back {
    transform: none;
    position: absolute;
    top: 15px;
    right: 5px;
    padding: 0;
    border: none;
    width: 320px;
    height: auto;
    visibility: hidden;
    display: none;
    row-gap: 15px;
    background-color: none;
  }

  .card--horizontal .card__face--back .card__offer-header {
    display: none;
  }

  .card--horizontal.is-flipped .card__face--back {
    visibility: visible;
    display: flex;
  }

  .card--horizontal .card__face--back .card__close {
    right: 10px;
  }

  .card__left-side {
    flex-basis: 50%;
  }

  .card__right-side {
    flex-basis: auto;
    text-align: center;
    align-self: center;
  }

  .card--no-flip .card__title {
    font: 32px/32px "Grifinito M", serif;
  }

  .card--has-ribbon .card__title {
    margin-top: 0;
  }

  .show-perks .card__face--front {
    position: absolute;
  }

  .renew-sub-container {
    grid-column: 1 / -1;
  }
}

.more-sub-opts-header {
  font: 18px/18px "Ringside Regular", sans-serif;
  text-align: center;
  color: var(--gray-700);
  position: relative;
  margin: 25px 0;
}

.more-sub-opts-header span {
  background-color: #ffffff;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.more-sub-opts-header:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--gray-500);
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 0;
}

@media (min-width: 768px) {
  .more-sub-opts-header {
    margin-bottom: 50px;
  }
}

/* About TM Section */
.about-txmo {
  max-width: 900px;
  padding: 30px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.about-txmo h3 {
  font: 42px/38px "Grifinito M", serif;
  align-self: center;
}

.about-txmo h4 {
  font: 23px/24px "Grifo S", serif;
  margin-bottom: 3px;
}

.about-txmo p {
  font: 18px/19.5px "Ringside Regular", sans-serif;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.about-txmo .img-wrapper {
  flex-basis: 60%;
  max-width: 200px;
}

.about-txmo__title-img-container {
  display: flex;
  column-gap: 20px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .about-txmo {
    margin-top: 3.5%;
    margin-bottom: 3.5%;
  }

  .about-txmo__title-img-container {
    display: initial;
    margin-bottom: 0;
  }

  .about-txmo .img-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    max-width: 340px;
  }

  .about-txmo h3 {
    font: 60px/53px "Grifinito M", serif;
    align-self: initial;
    margin-bottom: 15px;
  }

  .about-txmo h3,
  .about-txmo h4,
  .about-txmo p {
    padding-left: calc(40% + 34px);
  }
}

/* BBQ CLUB */
.bbq-club {
  background-color: var(--gray-200);
  padding: 40px 30px 50px 30px;
}

.bbq-club__content {
  border: 1px solid #000000;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 25px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.bbq-club__logo {
  max-width: 210px;
  margin: 0 auto 8px auto;
}

.bbq-club__merch {
  max-width: 60%;
  margin: 0 auto 12px auto;
}

.bbq-club__header {
  font: bold 18px/19.5px "Ringside Extra Wide", sans-serif;
  margin-bottom: 12px;
}

.bbq-club__perks-list {
  font: 18px/19.5px "Ringside Regular", sans-serif;
  color: var(--gray-700);
  list-style-type: none;
  padding: 0;
  margin: 0 0 5px 0;
}

.bbq-club__perks-list li {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .bbq-club__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 380px;
    justify-content: space-between;
  }

  .bbq-club__header {
    font: bold 32px/32px "Ringside Extra Wide", sans-serif;
    margin-bottom: 40px;
    order: 1;
  }

  .bbq-club__merch {
    max-width: 280px;
    position: absolute;
    margin: 0;
    right: 25px;
    top: 70px;
  }

  .bbq-club__logo {
    order: 3;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .bbq-club__perks-list {
    order: 4;
    margin-bottom: 10px;
    padding-right: 310px;
  }

  .bbq-club__button {
    order: 5;
    margin-left: 0;
  }
}

/* 
.bg-contr {
  background-image: url(GettyImages-1202626856-2.jpg);
  width: 100vw;
  display: flex;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 607px;
  padding-top: 63px;
}
.bg-contr p {
  font-family: "Ringside Narrow", sans-serif;
  color: #fff;
  font-size: 1.125rem;
  max-width: 645px;
  line-height: 24px;
} */

/* Offers */
.offer-container {
  border: 1px solid #cfcfc5;
  max-width: 360px;
  max-height: 784px;
  min-height: 784px;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.bxs-cnt {
  max-width: 1152px;
  margin: 0 auto -280px;
  transform: translate(0px, -327px);
}
.offer-image {
  padding-top: 40px;
}
.offer-image img {
  max-height: 124px;
}
.gft-txt {
  font-size: 0.875rem;
  font-family: "Ringside Narrow", sans-serif;
  font-weight: 600;
  color: #f75a38;
  margin-top: 34px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.offer-title {
  font-family: "Grifinito M", serif;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 7px;
}
.offer-price {
  font-family: "Ringside Narrow", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.offer-button button {
  font-family: "Ringside Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  background-color: #000;
  border: none;
  width: 78%;
  height: 52px;
  font-size: 0.875rem;
}
.offer-benefits {
  padding: 0 2rem;
}
.offer-benefits li {
  font-family: "Ringside";
  list-style-type: none;
  color: #909090;
  line-height: 19.52px;
  padding: 15px 0;
  border-bottom: 1px solid #cfcfc5;
}
.offer-benefits li:last-child {
  border: none;
}
.offer-benefits ul {
  margin: 15px auto 0;
  max-width: 300px;
  padding: 0;
}
.tile-ribbon {
  position: absolute;
  width: 9rem;
  height: 9rem;
  overflow: hidden;
  backface-visibility: hidden;
}
.tile-ribbon span {
  background-color: #f75a38;
  color: #fff;
  font-family: "Ringside Wide", sans-serif;
  font-weight: 600;
  display: block;
  transform: rotate(-45deg);
  text-transform: uppercase;
  font-size: 0.813rem;
  letter-spacing: 0.15em;
  padding: 0.5rem;
  position: relative;
  left: -63px;
  top: 34px;
  width: 240px;
}
.offer-container:hover {
  border-color: #c4c4c4;
  border-color: rgba(196, 196, 196);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.offer-container:hover .offer-button > button {
  background-color: #f75a38;
  background-color: rgba(247, 90, 56);
  transition: 0.5s;
}
.offer-container:hover .offer-title,
.offer-container:hover .offer-price {
  color: #f75a38;
  color: rgba(247, 90, 56);
  transition: 0.5s;
}
.offer-box-labels {
  display: block;
}
.offer-container input[type="radio"],
.extra-offers input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.selected {
  border-color: #c4c4c4 !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.btn-selected {
  background-color: #f75a38 !important;
}
.text-selected {
  color: #f75a38;
}

/* Arrow buttons - mobile only */

.arrow-button.up .arrow-button__arrow {
  transform: translate3d(0, 5px, 0) rotate(-45deg) rotateX(180deg);
}

.arrow-button {
  overflow: hidden;
  position: relative;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-color: rgb(0, 0, 0);
  color: #fff;
  color: rgb(255, 255, 255);
  text-indent: -1000px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  margin-bottom: 40px;
}

.arrow-button__arrow {
  position: absolute;
  border-color: #000;
  border-color: rgb(0, 0, 0);
  border-style: solid;
  border-width: 0 2px 2px 0;
  transform: translate3d(0, -3px, 0) rotate(45deg) rotateX(0deg);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  top: calc(50% - 10px);
  left: calc(50% - 9px);
}

/* Hide form and other elements when page first loaded. */
.wrapper-hidden {
  display: none;
  padding-top: 20px;
}

/* FOOTER */
footer {
  background-color: #f3f3f3;
}
footer a {
  color: #f75a38;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s, box-shadow 0.2s;
  -webkit-transition: color 0.2s, -webkit-box-shadow 0.2s;
}
footer a:hover {
  color: #000;
}
.ftr-cnt {
  max-width: 1153px;
  margin: 0;
  padding: 20px;
  font-size: 0.75rem;
  color: #626262;
  align-items: center;
  height: 100%;
}

@media (min-width: 768px) {
  .ftr-cnt {
    margin: 50px auto 0 auto;
  }
}

/* form area */
.frm-cnt {
  max-width: 1024px;
  margin: 0 auto;
}
.checkout-heading {
  font-family: "Grifinito M", serif;
  font-size: 3rem;
  display: flex;
  align-items: baseline;
}
.checkout-heading::after {
  content: "";
  border-bottom: 3px solid black;
  flex-grow: 1;
  margin-left: 1.875rem;
}
.email-text {
  font-size: 12px;
  color: #626262;
  margin-top: 15px;
}
.form-floating > label,
.form-select {
  color: #626262;
  font-size: 14px;
  font-family: "Ringside Narrow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.form-control,
.form-select {
  height: 59px !important;
  border-radius: 0;
  border: 1px solid #cfcfc5;
}
.add-sub {
  margin-bottom: 20px;
}
button[type="submit"]:hover {
  background-color: #f75a38;
  background-color: rgba(247, 90, 56);
  transition: 0.5s;
}

/* Add gift */
.add-gift {
  text-align: center;
  border: 1px solid #cfcfc5;
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.add-gift-title {
  font-family: "Grifinito M", sans-serif;
  font-size: 2rem;
  transform: translateY(20px);
  background-color: #fff;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}
.offer-button.gft > button {
  width: 90%;
}
.more-gfts-txt {
  color: #626262;
  margin: 35px 0 42px;
}
.ar {
  font-size: 0.75rem;
  color: #626262;
  margin: 21px 0;
}

/* sticky step menu */
.stickThis {
  width: 100%;
}
.stickThis.stick {
  margin-top: 0;
  position: fixed;
  top: 0;
  z-index: 9999;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* Order Summary */
#summary {
  font-family: "Ringside Narrow", sans-serif;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  #summary {
    margin-top: 9px;
    max-width: 301px;
    margin-left: 80px;
    margin-bottom: 0;
  }
}
#conf {
  font-family: "Ringside Narrow", sans-serif;
}
#conf p {
  border-bottom: 1px solid #cfcfc5;
  padding-bottom: 20px;
}
#conf p:last-of-type {
  border-bottom: none;
}
button.white {
  background-color: white;
  color: #000;
  border: 1px solid black;
}
.acct-setup {
  max-width: 500px;
  margin-right: 80px;
}
.summary-head {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #626262;
  letter-spacing: 0.1em;
}
.summary-line {
  height: 3px !important;
  color: #000;
  opacity: 100;
}
.summary-line.thin {
  height: 1px !important;
}
.total {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.ordered-item-price,
.dnr-ordered-item-price {
  font-size: 0.875rem;
  color: #000;
  font-weight: 600;
  text-align: right;
}
.total-price {
  font-family: "Ringside", sans-serif;
  font-weight: 600;
  text-align: right;
}
.total-price span.tax {
  font-size: 12px;
  color: #626262;
  display: block;
  font-weight: normal;
}
.promo {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
}
#summary.stickThis.stick {
  margin-top: 80px;
}
.print-summ,
.pd-summ,
.dig-summ,
.dig-summ-mth,
.dig-summ-yr {
  display: none;
}
#summary ul {
  list-style-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7675 0.287841C12.4106 -0.095947 11.8316 -0.095947 11.4747 0.287841L4.4523 9.8048L1.56026 6.67773C1.20336 6.29395 0.624598 6.29395 0.2677 6.67773C-0.089198 7.06152 -0.089198 7.68389 0.2677 8.06768L3.80613 11.8898C3.98458 12.0817 4.21855 12.1778 4.45253 12.1778C4.6865 12.1778 4.92024 12.0817 5.09892 11.8898L12.7677 1.67778C13.1242 1.29375 13.1242 0.671629 12.7675 0.287841Z' fill='%23F75A38'/%3E%3C/svg%3E");
  padding-left: 1.313rem;
}
#summary li {
  font-family: "Ringside", sans-serif;
  color: #626262;
  line-height: 1.25rem;
  padding: 15px 0;
  position: relative;
}

#summary li:not(:last-of-type)::after {
  content: "";
  height: 1px;
  width: calc(100% + 1.313rem);
  background-color: #cfcfc5;
  position: absolute;
  left: -1.313rem;
  bottom: 0;
}

#summary li:last-child {
  border-bottom: none;
}

/* Custom checkbox */
.add-sub input[type="checkbox"] {
  display: none;
}
.add-sub label {
  padding-left: 30px;
}

.add-sub input + label {
  display: inline-block;
  width: auto;
  height: 24px;
  cursor: pointer;
  background-image: url(unchecked.png);
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.add-sub input[type="checkbox"]:checked + label {
  background-image: url(checked.png);
}

/* CARD FLIP  */

.absolute {
  position: absolute;
}
.mh-500 {
  min-height: 500px;
}
.h-auto {
  min-height: auto;
}
/* Card back offers */
.close-container {
  text-align: right;
  position: relative;
  right: 20px;
  top: 11px;
}
.back-container h4 {
  font-family: "Grifinito M", sans-serif;
  font-size: 50px;
  /* margin-top: 127px; */
}
.back-container hr {
  max-width: 277px;
  margin: 18px auto 30px;
}
.back-container label,
.back-container input {
  display: block;
  max-width: 277px;
  height: 52px;
  margin: 0 auto;
  background-color: #000;
  color: #fff;
}

.back-container input[type="radio"]:checked + label,
.Checked + label {
  background: #fff;
  color: #f75a38;
}

.back-container label {
  text-align: left;
  border: 1px solid #ccc;
  cursor: pointer;
  font-family: "Ringside Narrow", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
}

/* Extra offers */
.extra-offers-cnt {
  padding: 13px;
}
.md {
  display: flex;
  align-items: center;
}
.extra-offers {
  margin: 0 auto 25px;
  border: 1px solid #cfcfc5;
  padding: 2rem;
  max-width: 1128px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.extra-offers:hover {
  border-color: #c4c4c4;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.extra-offers h4 {
  font-family: "Ringside Narrow", sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.extra-offers:hover .extra-select {
  color: #f75a38;
  border-color: #f75a38 !important;
}
.extra-select {
  border-bottom: 2px solid black;
  display: inline;
}

/* BBQ CLUB */
#BBQ .bg-contr {
  background-image: url("BBQ-Club-Hero.jpg");
  min-height: inherit;
  margin-bottom: 60px;
  padding: 40px 15px;
}
#BBQ h1 {
  font-family: "Ringside Extra Wide", sans-serif;
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-weight: normal;
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}
#BBQ .bg-contr p {
  font-family: "Ringside Wide", sans-serif;
  max-width: 739px;
}

/* Student/Educator */
#StuEdu .bg-contr {
  min-height: 304px;
  margin-bottom: 60px;
}

/* International */
#Int .card_face-front label,
#Int .card_face-front input {
  display: block;
  max-width: 78%;
  height: 52px;
  margin: 0 auto;
  background-color: #000;
  color: #fff;
}

#Int .card_face-front input[type="radio"]:checked + label,
#Int .Checked + label {
  background: #f75a38;
  color: #fff;
}
#Int .card_face-front label {
  text-align: left;
  cursor: pointer;
  font-family: "Ringside Narrow", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.15em;
}
#Int .offer-container:hover label {
  background-color: #f75a38;
  background-color: rgba(247, 90, 56);
  transition: 0.5s;
}
