/* IMPORT ROBOTO FROM GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* GLOBAL VARIABLES */
:root {
  --red: #C8102E;
  --red-dark: #A50021;
  --black: #000000;
  --dark-footer: #1A1A1A;
  --white: #FFFFFF;
  --gray-text: #666666;
  --light-bg: #F5F5F5;
  --font: 'Roboto', sans-serif;
  --bodyBG: #1A1A1A;
  --ink: #111111;
  --muted: #8a8a8a;
  --line: #e4e4e4;
  --line-strong: #111;
  --bg: #ffffff;
  --soft: #f4f1ed;
  --tag-bg: #111;
  --tag-fg: #fff;
}

.asta-spons-root {
  --asta-spons-red: #e1252b;
  --asta-spons-red-dark: #b81c20;
  --asta-spons-ink: #111111;
  --asta-spons-muted: #7a7a7a;
  --asta-spons-line: #e4e4e4;
  --asta-spons-bg: #ffffff;
  --asta-spons-soft: #f4f1ed;
  --asta-spons-black: #1A1A1A;

  color: var(--asta-spons-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* BASE RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font) !important;
  /* font-size: 18px !important;
  font-weight: 400 !important; */
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-text) !important;
  /* line-height: 24px !important; */
  line-height: 110% !important;
  background: var(--bodyBG) !important;
}

body .zonePlace {
  padding: 0px;
}

a,
.dropdown.-wa-add-event-to-calendar-dropdown>.text,
.dropdown.-wa-add-event-to-calendar-dropdown>.icon,
.infoRegistrationIsClosed,
.WaGadgetLoginForm .loginPasswordForgot a {
  color: var(--red);
  transition: all 0.3s;
  text-decoration: none;
}

a:hover,
.WaGadgetLoginForm .loginPasswordForgot a:hover {
  color: var(--red-dark);
}

.bgOffWhite {
  background: #efefef;
}

.bgWhite {
  background: var(--white);
}

.bgRed,
.FTBlock.bgRed,
.WaGadgetLoginForm .loginContainer.loginContainer .loginLink,
.WaGadgetLoginForm .loginContainer.loginContainer .loginLink:hover {
  background: var(--red);
}

.redColor {
  color: var(--red);
}

.garyColor {
  color: var(--gray-text);
}

.whiteColor,
.cartOnly .OnlineStoreCart_content_container {
  color: var(--white);
}

.yellowColor {
  color: #ffc105;
}

.bgLightBlack,
.WaGadgetFirst.WaGadgetEventsStateDetails,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer .boxBodyInfoContainer,
.pxContainer,
.pt160Container,
.cartOnly .OnlineStoreCart_content_container,
.WaGadgetOnlineStoreCartCheckout .OnlineStoreCheckout_content_container {
  background: var(--dark-footer);
}

form.standardForm textarea {
  width: 100%;
  background: transparent;
  border-radius: 8px;
}

.WaGadgetOnlineStoreCartCheckout .storeCartContent h2,
form.standardForm h2 {
  margin-bottom: 20px;
}

/* Site container */
body .WaPlaceHolder {
  width: calc(100% - 0px);
  max-width: calc(100% - 0px);
}

.colorBlack {
  color: rgba(0, 0, 0, 1);
}

/* common button */
.asta-btn {
  --hover-gradient: linear-gradient(transparent, transparent);
  --initial-background-position: right;
  --hover-background-position: left;
  -webkit-appearance: none;
  appearance: none;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.54px;
  text-shadow: none;
  text-align: center;
  cursor: pointer;
  border-radius: 0;
  background-color: #0000;
  background-size: 101% 101%, 0 101%;
  background-position: right;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  padding: 14px 18px;
  transition: background-size .45s cubic-bezier(.785, .135, .15, .86), background-position .45s step-end, color .45s cubic-bezier(.785, .135, .15, .86), border .45s cubic-bezier(.785, .135, .15, .86);
  display: inline-flex;
  position: relative;
  font-family: var(--font);
  font-weight: 400;
  text-decoration: none;
}

.asta-btn.btnSmall {
  column-gap: 8px;
  padding: 12px 16px;
  font-size: 14px !important;
}

.asta-btn.btnSmall span {
  font-size: 14px !important;
  line-height: 110% !important;
}

.asta-btn.btnSmall img {
  min-width: 10px;
  max-width: 10px;
  min-height: 10px;
  max-height: 10px;
}

.asta-btn.btn-red {
  color: rgb(255, 255, 255);
  --initial-gradient: linear-gradient(rgba(204, 31, 45, 1), rgba(204, 31, 45, 1));
  border: 2px solid rgba(204, 31, 45, 1);
  background-image: linear-gradient(rgba(204, 31, 45, 1), rgba(204, 31, 45, 1)), linear-gradient(transparent, transparent);
}

.asta-btn.btn-red:hover {
  color: rgba(255, 255, 255, 1);
  background-position: left;
  background-size: 0 101%, 101% 101%;
}

.asta-btn.btn-white {
  color: rgb(204, 31, 45);
  --initial-gradient: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  border: 2px solid rgba(255, 255, 255, 1);
  background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), linear-gradient(transparent, transparent);
}

.asta-btn.btn-white:hover {
  color: rgba(255, 255, 255, 1);
  background-position: left;
  background-size: 0 101%, 101% 101%;
}

.asta-btn.btn-red.textRed:hover {
  color: rgb(204, 31, 45);
}

.asta-btn.normalBtn {
  padding: 0;
  color: #fff;
}

.asta-btn img {
  min-width: 12px;
  max-width: 12px;
  min-height: 12px;
  max-height: 12px;
  display: flex;
  transition: all 0.3s;
}

.asta-btn:hover img {
  transform: rotate(45deg);
  transition: all 0.3s;
}

.asta-btn.btn-white:hover img {
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}

.asta-btn.btn-red.textRed:hover img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(83%) saturate(5150%) hue-rotate(345deg) brightness(92%) contrast(95%);
  transition: all 0.3s;
}

/* common button */

.d-none,
.WaGadgetMobilePanel .mobilePanel {
  display: none;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

/* HEADINGS */
.h1,
h1,
h1 font,
.h1 span,
h1 span {
  font-family: var(--font) !important;
  font-size: 82px !important;
  font-weight: 900 !important;
  line-height: 87px !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  margin: 0;
  padding: 0;
}

.h2,
h2,
h2 font,
.h2 span,
h2 span {
  font-family: var(--font) !important;
  font-size: 52px !important;
  font-weight: 700 !important;
  line-height: 110% !important;
  margin: 0;
  padding: 0;
}

.h3,
h3,
h3 font,
.h3 span,
h3 span {
  font-family: var(--font) !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  line-height: 44px !important;
  margin: 0;
  padding: 0;
}

.h4,
h4,
h4 font,
.h4 span,
h4 span {
  font-family: var(--font) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  margin: 0;
  padding: 0;
}

.h5,
h5,
h5 font,
.h6,
h6,
h6 font,
.h5 span,
h5 span,
.h6 span,
h6 span {
  font-family: var(--font) !important;
  font-weight: 700 !important;
  margin: 0;
  padding: 0;
}

/* PARAGRAPHS & BODY TEXT */
.p,
p,
p font,
li,
li font,
td,
span,
div {
  font-family: var(--font) !important;
  /* font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 24px !important; */
  font-size: 16px;
  font-weight: 400;
  line-height: 122%;
}

/*  Site container */
.asta-hdr__inner,
.asta-ftr__inner,
body .siteContainer {
  width: calc(100% - 142px);
  max-width: calc(100% - 142px);
  margin: 0 auto;
}

.pxContainer {
  padding: 80px 0;
}

/*-- Header style --*/

/* OUTER HEADER */
body .siteHeader {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

body .siteHeader:has(.asta-hdr.stayFixed) {
  background: rgba(26, 26, 26, 1);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.asta-hdr {
  background: transparent;
  width: 100%;
  height: auto;
  font-family: 'Roboto', sans-serif;
  position: relative;
  z-index: 99999;
  overflow: visible !important;
  margin: 0;
  padding: 0 0 10px 0;
}

/* INNER WRAPPER */
.asta-hdr__inner {
  margin: 0 auto;
  padding: 0px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible !important;
}

/* LOGO */
.asta-hdr__logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* NAV LIST */
.asta-hdr__nav {
  display: flex;
  align-items: center;
  list-style: none;
  height: 70px;
  gap: 0;
  overflow: visible !important;
}

.asta-hdr__nav>li {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  overflow: visible !important;
}

/* TOP LEVEL LINKS */
.asta-hdr__nav>li>a {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0 13px;
  height: 70px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: opacity 0.2s;
  background: transparent;
}

.asta-hdr__nav>li>a:hover {
  opacity: 0.65;
  color: #ffffff;
  text-decoration: none;
}

/* DROPDOWN ARROW */
/* .asta-hdr__nav>li.has-drop>a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #ffffff;
  margin-left: 6px;
  opacity: 0.75;
} */

/* DROPDOWN MENU — uses fixed positioning via JS */
.asta-drop {
  display: none;
  position: fixed;
  background: #C8102E;
  min-width: 260px;
  list-style: none;
  z-index: 999999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.asta-drop li a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 22px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.15s, padding-left 0.15s;
  line-height: 1.3;
  background: #C8102E;
}

.asta-drop li:last-child a {
  border-bottom: none;
}

.asta-drop li a:hover {
  background: #A50021 !important;
  padding-left: 30px;
  color: #ffffff;
  text-decoration: none;
}

/* RIGHT SIDE */
.asta-hdr__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LOGIN BUTTON */
.asta-login-btn,
.membersFormSection .astaMembershipForm input[type="submit"],
.membersFormSection .astaMembershipForm input[type="button"],
.WaGadgetLoginForm .loginButton,
.generalFieldsContainer input.typeButton,
.generalFieldsContainer input[type=submit],
.WaGadgetOnlineStoreProduct .OnlineStoreProduct_aside .OnlineStoreButton .OnlineStoreProduct_addToCartButton,
.functionalButton,
.WaGadgetUnsubscribeFromEmails form input[type=submit],
a.buttonStyle001,
a:link.buttonStyle001,
.formFieldContainer input[type=text],
.formFieldContainer input[type=phone],
.WaGadgetContactProfile .topButtonsOuterContainer input.typeButton,
.navigationOuterContainer input.nextButton,
.navigationOuterContainer input.typeButton,
.navigationOuterContainer input[type=submit],
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer .boxBodyInfoContainer .boxActionContainer input.typeButton,
.WaGadgetEventsStateList .boxOuterContainer .boxBodyOuterContainer .boxBodyInfoOuterContainer .boxActionContainer input.typeButton,
.commonMessageBox .cww-co .buttons input[type="submit"],
.commonMessageBox .cww-co .buttons input.typeButton,
.WaGadgetAuthorizationRequired .loginPageTable input.loginButton,
.WaGadgetLast.WaGadgetTermsOfUse .login-role-actions input[type="submit"] {
  font-family: 'Roboto', sans-serif;
  font-size: 12px !important;
  font-weight: 700;
  color: #ffffff;
  background: #C8102E;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  line-height: 24px;
}

.WaGadgetLoginForm .loginContainer.loginContainer .loginPanel .profileBox a,
.WaGadgetLoginForm .loginContainer.loginContainer .loginPanel .profileBox input[type="submit"] {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  background: #cc1f2d;
}

.formFieldContainer input[type=text] {
  text-transform: unset;
}

.asta-login-btn:hover,
.membersFormSection .astaMembershipForm input[type="submit"]:hover,
.membersFormSection .astaMembershipForm input[type="button"]:hover,
.WaGadgetLoginForm .loginButton:hover,
.generalFieldsContainer input.typeButton:hover,
.generalFieldsContainer input[type=submit]:hover,
.WaGadgetOnlineStoreProduct .OnlineStoreProduct_aside .OnlineStoreButton .OnlineStoreProduct_addToCartButton:hover,
.functionalButton:hover,
.WaGadgetUnsubscribeFromEmails form input[type=submit]:hover,
a.buttonStyle001:hover,
a:link.buttonStyle001:hover,
.WaGadgetContactProfile .topButtonsOuterContainer input.typeButton:hover,
.navigationOuterContainer input.nextButton:hover,
.navigationOuterContainer input.typeButton:hover,
.navigationOuterContainer input[type=submit]:hover,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer .boxBodyInfoContainer .boxActionContainer input.typeButton:hover,
.WaGadgetEventsStateList .boxOuterContainer .boxBodyOuterContainer .boxBodyInfoOuterContainer .boxActionContainer input.typeButton:hover,
.commonMessageBox .cww-co .buttons input[type="submit"]:hover,
.commonMessageBox .cww-co .buttons input.typeButton:hover,
.WaGadgetAuthorizationRequired .loginPageTable input.loginButton:hover,
.WaGadgetLoginForm .loginContainer.loginContainer .loginPanel .profileBox a:hover,
.WaGadgetLoginForm .loginContainer.loginContainer .loginPanel .profileBox input[type="submit"]:hover,
.WaGadgetLast.WaGadgetTermsOfUse .login-role-actions input[type="submit"]:hover {
  background: #A50021;
  color: #ffffff;
  text-decoration: none;
}

.WaGadgetLoginForm.loginForm.gadgetStyleNone a.loginLink {
  top: -50px;
}

.WaGadgetLoginForm.loginForm.gadgetStyleNone .loginContainerForm.oAuthIstrue {
  padding-top: 25px;
}

.WaGadgetContactProfile.myProfile .fieldSubContainer>.fieldLabel {
  text-align: left;
}

/* CART ICON */
.asta-cart-btn {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.asta-cart-btn:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* MOBILE HAMBURGER */
.asta-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.asta-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

/*-- Header style --*/

/*-- Footer style --*/
.asta-ftr * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* OUTER FOOTER */
.asta-ftr {
  background: #1A1A1A;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

.asta-ftr__inner {
  margin: 0 auto;
  padding: 60px 0px 40px;
}

/* TOP ROW — 2 columns */
.asta-ftr__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* LEFT COLUMN */
.asta-ftr__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
}

/* LOGO */
.asta-ftr__logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* DESCRIPTION */
.asta-ftr__desc {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* PAYMENT ICONS ROW */
.asta-ftr__payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.asta-ftr__payments .pay-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* RIGHT COLUMN — NEWSLETTER */
.asta-ftr__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 400px;
  max-width: 480px;
}

.asta-ftr__nl-title {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.asta-ftr__nl-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* EMAIL INPUT + BUTTON ROW */
.asta-ftr__nl-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 4px;
}

.asta-ftr__nl-input,
input[type=password],
input[type=text],
select,
textarea,
.WaGadgetSiteSearchResults .siteSearchResults .searchControls .searchBoxField,
.formFieldContainer input[type=text],
.formFieldContainer input[type=phone],
.formFieldContainer input[type=text][disabled],
.formFieldContainer input[type=phone][disabled],
.formFieldContainer select[disabled],
.formFieldContainer textarea[disabled],
.quantitySnippet input {
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 44px 16px 24px;
  outline: none;
  transition: border-color 0.2s;
  height: auto;
  line-height: 120%;
}

.formFieldContainer input[type=text][disabled],
.formFieldContainer input[type=phone][disabled],
.formFieldContainer select[disabled],
.formFieldContainer textarea[disabled] {
  opacity: 0.5;
}

.asta-ftr__nl-input {
  border-right: none;
}

.asta-ftr__nl-input::placeholder,
input[type=password]::placeholder,
input[type=text]::placeholder,
select::placeholder,
textarea::placeholder,
.WaGadgetSiteSearchResults .siteSearchResults .searchControls .searchBoxField::placeholder,
.formFieldContainer input[type=text]::placeholder,
.formFieldContainer input[type=phone]::placeholder,
.formFieldContainer input[type=text][disabled]::placeholder,
.formFieldContainer input[type=phone][disabled]::placeholder,
.formFieldContainer select[disabled]::placeholder,
.formFieldContainer textarea[disabled]::placeholder,
.quantitySnippet input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.asta-ftr__nl-input:focus,
input[type=password]:focus,
input[type=text]:focus,
select:focus,
textarea:focus,
.WaGadgetSiteSearchResults .siteSearchResults .searchControls .searchBoxField:focus,
.formFieldContainer input[type=text]:focus,
.formFieldContainer input[type=phone]:focus,
.formFieldContainer input[type=text][disabled]:focus,
.formFieldContainer input[type=phone][disabled]:focus,
.formFieldContainer select[disabled]:focus,
.formFieldContainer textarea[disabled]:focus,
.quantitySnippet input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.WaGadgetOnlineStoreProduct .OnlineStoreProduct_aside .OnlineStoreProduct_optionsSelect,
.quantitySnippet input[type=number] {
  padding: 7px 14px;
  min-width: 70px;
}

.asta-ftr__nl-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #C8102E;
  border: none;
  padding: 13px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.asta-ftr__nl-btn:hover {
  background: #A50021;
}

/* BOTTOM ROW — copyright + address */
.asta-ftr__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.asta-ftr__copy {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.asta-ftr__address {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  line-height: 1.5;
}

/*-- Footer style --*/

/* Home banner */
.homeBannerSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px;
  background-size: cover !important;
  background-position: center !important;
  image-rendering: -webkit-optimize-contrast !important;
}

.homeBannerSection .WaLayoutTable {
  height: 100vh !important;
}

.homeBannerSection tr.WaLayoutRow td.WaLayoutItem {
  vertical-align: bottom;
}

.homeBannerSection tr.WaLayoutRow td.WaLayoutItem h1 {
  margin: 0;
}

/* CTA block */
.siteCTABlock {
  padding: 60px 0px;
}

.rigthCTABlock .gadgetStyleBody {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.rigthCTABlock::after,
.gadgetStyleBody::after {
  content: none;
}

.rigthCTABlock {
  width: 100%;
  display: flex;
}

/* Partners block */
.partnersBlock {
  width: 100%;
  padding: 0;
}

.partnersBlock .img_horizontal img {
  width: 100%;
  object-fit: contain;
}

.partnersLogoSlider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 100px 0;
}

.slider-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

.slide img {
  max-width: 180px;
  height: auto;
}

.partnersLogoSlider .arrow {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 60%, rgb(255 255 255 / 30%) 100%);
  border: none;
  cursor: pointer;
  z-index: 2;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
}

.slideNav {
  width: 20px;
}

.partnersLogoSlider .arrow.right {
  transform: rotate(180deg);
  right: 0;
  left: auto;
}

/* Explore ASTA Block */
.secTopHeading {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}

.exploreASTABlock {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.exploreASTABlock .placeHolderContainer,
.exploreASTABlock .placeHolderContainer>div {
  width: 100%;
  height: 100%;
  display: flex;
}

.exploreASTABlock .exploreASTA .gadgetStyleBody {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 50px;
  position: relative;
  overflow: hidden;
  padding-top: 256px !important;
}

.exploreASTABlock .exploreASTA .gadgetStyleBody::after {
  position: absolute;
  background: linear-gradient(180deg, rgba(165, 20, 34, 0.2) 0%, #A51422 100%);
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  display: flex;
  visibility: visible;
  z-index: 1;
}

.gadgetStyleBody .titleAndDescription,
.gadgetStyleBody .linkInit {
  position: relative;
  z-index: 2;
}

.gadgetStyleBody .titleAndDescription {
  color: #fff;
  display: flex;
  flex-direction: column;
}

.gadgetStyleBody .titleAndDescription h3 {
  margin-bottom: 26px;
}

.exploreASTABlock tr.WaLayoutRow {
  width: 100%;
  display: flex;
}

/* Home page product block */
.homeProductBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* padding-top: 35%; */
  padding-top: 30%;
  padding-bottom: 5.3%;
}

/* Image with content */
.imageWithContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0 20px 0;
}

.imageWithContent .btnBlock {
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}

/* Partners Link Block */
.partnersLinkBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.partnersInit {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.partnersInit .partnerLink {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnersInit .partnerLink img {
  width: auto;
  max-width: 180px;
}

/* Home product block */
.productBlock {
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  align-items: center;
}

.productBlock .btnBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Expo Page Style */
.expo2026 {
  display: flex;
  height: 100vh;
  position: relative;
  align-items: center;
  justify-content: center;
}

.WaLayoutContainerFirst.sponsorshipTopBanner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.siteContainer .bannercontent .cta-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 30px;
}

.WaLayoutContainerFirst.sponsorshipTopBanner::after,
.expo2026::after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  content: "";
  z-index: 1;
}

.siteContainer .bannercontent {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  row-gap: 24px;
}

.WaLayoutContainerFirst.expo2026 .btnBlock,
.counterBlock {
  width: 100%;
  position: relative;
  z-index: 2;
}

.WaLayoutContainerFirst.expo2026 .btnBlock {
  padding-top: 20px;
}

/* Timer Count*/
.timer-wrap {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.timer-units {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(8px, 2vw, 32px);
  flex-wrap: wrap;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.unit-val {
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  min-width: clamp(64px, 13vw, 140px);
  text-align: center;
}

.unit-label {
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sep {
  font-weight: 900;
  font-size: clamp(40px, 8vw, 80px);
  color: #444;
  line-height: 1;
  padding-top: 6px;
}

/* Automotive Technology section */
.automotiveTechnology,
.imageWithContent.memberNetworkSection,
.membersFormSection,
.asta-spons-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 150px 0 100px 0;
}

section.asta-spons-section.asta-spons-section--soft {
  padding-top: 100px;
}

.automotiveTechnology .textBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 24px;
  padding: 0 80px 0 0;
}

.automotiveTechnology .imageBlock,
.imageWithContent .imageBlock,
.membersFormSection .imageBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: 450px 0 0 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.automotiveTechnology .imageBlock .gadgetStyleBody,
.automotiveTechnology .imageBlock .gadgetStyleBody p,
.automotiveTechnology .imageBlock .gadgetStyleBody img,
.imageWithContent .imageBlock .gadgetStyleBody,
.imageWithContent .imageBlock .gadgetStyleBody p,
.imageWithContent .imageBlock .gadgetStyleBody img,
.membersFormSection .imageBlock img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.membersFormSection .imageBlock {
  margin-top: 30px;
}

.automotiveTechnology .bottomBoxes {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  padding: 40px 0;
  flex-wrap: wrap;
}

.automotiveTechnology .bottomBoxes .box {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #cfcfcf;
  border-radius: 4px;
  padding: 20px;
  min-width: 180px;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.automotiveTechnology .bottomBoxes .box h3 {
  color: #282828;
}

/* Featured Trainers Section */
.featuredTrainers,
.faqHeadingBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 0 100px 0;
}

.featuredTrainers .sectionTitle,
.faqHeadingBlock .sectionTitle .heading,
.imageWithContent.valuesSection .textBlock .heading,
.automotiveTechnology .textBlock h2,
.automotiveTechnology .textBlock h2 font,
.memberNetworkSection .textBlock .heading,
.headingOnly.allPlansHeading .textBlock .heading,
.WaLayoutContainerLast.sponsorshipCTABlock .cta-block h2 {
  color: #1A1A1A !important;
}

.featuredTrainersBlocks {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  padding: 60px 0;
}

.featuredTrainersBlocks .FTBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  width: calc(25% - 24px);
  min-height: 180px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.FTBlock {
  background: #1A1A1A;
}

.FTBlock .text {
  text-transform: uppercase;
}


/* Marquee section */
.marquee-outer {
  background: #c8102e;
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex !important;
  animation: marquee-scroll 90s linear infinite;
}

.marquee-item {
  font-weight: 900 !important;
  font-size: 34px !important;
  color: #fff !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 0 8px !important;
  white-space: nowrap !important;
  line-height: normal !important;
}

.marquee-dot {
  color: #fff !important;
  font-size: 34px !important;
  line-height: normal !important;
  vertical-align: middle;
  padding: 0 16px !important;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Events Section */
.eventsSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0 40px 0;
}

.eventsSection .WaLayoutItem {
  padding: 0;
  position: relative;
  background: transparent;
}

.eventsSection .WaLayoutItem .WaLayoutPlaceHolder {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.eventsSection .eventSingleBlock {
  width: 100%;
  flex-flow: column;
  row-gap: 16px;
  color: #ffffffb3;
  padding: 0;
  border-radius: 6px;
  height: 24rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background-size: 100% 100% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: background-size 0.5s ease !important;
  position: relative;
  overflow: hidden;
}

.eventsSection .eventSingleBlock:hover,
.memberBenefitsListing .WaGadgetOnly:hover {
  background-size: 110% 110% !important;
  transition: background-size 0.5s ease !important;
}

.eventsSection .eventSingleBlock a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 30px 24px;
  align-items: flex-start;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  text-decoration: none;
  color: #ffffffb3;
}


/* Power to Advance */
.powerToAdvanc {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 80px 0 100px 0;
}

.powerToAdvanc .textBlock {
  padding-left: 80px;
  color: #ffffffb3;
}

/* Venue Section */
.headingOnly.venueSection {
  padding: 140px 0;
  position: relative;
}

.locationInit,
.headingOnly.allPlansHeading .textBlock,
.plansListing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.headingOnly.venueSection .siteContainer,
.headingOnly.venueSection .btnBlock {
  position: relative;
  z-index: 2;
}

.headingOnly.venueSection .btnBlock {
  margin: 40px 0 0 0;
}

.headingOnly.venueSection .sectionTitle {
  color: #ffffffb3;
  text-transform: none;
  max-width: 900px;
  margin: 0 auto;
}

/* Faq section */
.faqHeadingBlock .sectionTitle .Heading,
.faqHeadingBlock .sectionTitle .subHeading {
  text-transform: uppercase;
}

.faq-wrap {
  max-width: 740px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  background: #fff;
  transition: all 0.3s;
  font-weight: 700;
}

.faq-question {
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #111111;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #555;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-icon.open {
  transform: rotate(180deg);
}

.faq-body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 14px 20px 18px;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  border-top: 1px solid #eeeeee;
}

.faq-btn:hover,
.faq-btn:hover:hover .faq-question,
.faq-btn[aria-expanded="true"] .faq-question {
  color: #C8102E;
}

.faq-btn:hover .faq-icon svg,
.faq-btn[aria-expanded="true"] .faq-icon svg {
  stroke: #C8102E;
}

.faqInit {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0 0 100px 0;
}

/* Inner pages top banner */
.pageTopBanner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  position: relative;
  height: 100vh;
}

.pageTopBanner .siteContainer,
.headingOnly.industrySucceedSection .siteContainer {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  position: relative;
  z-index: 2;
}

.pageTopBanner .siteContainer .bannercontent p {
  max-width: 63%;
}

.pageTopBanner .siteContainer .bannercontent p,
.memberBenefitsListing .WaGadgetOnly .gadgetStyleBody .textBlock,
.membersFormSection .textBlock {
  color: #f2f2f2b3;
}

.headingOnly.venueSection::after,
.eventsSection .eventSingleBlock::after,
.pageTopBanner::after,
.memberBenefitsListing .WaGadgetOnly .gadgetStyleBody::after,
.homeBannerSection.sectionOverlay::after {
  z-index: 1;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  visibility: visible;
}

.homeBannerSection.sectionOverlay table {
  position: relative;
  z-index: 2;
}

/* About values Section */
.imageWithContent.valuesSection,
.imageWithContent.ourGoalsSection,
.headingOnly.industrySucceedSection,
.expo-scheduleSection {
  padding: 100px 0;
}

.imageWithContent .textBlock ul,
.planBlock ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.imageWithContent .textBlock ul li,
.planBlock ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.imageWithContent.valuesSection .textBlock ul li img,
.planBlock ul li img {
  min-width: 26px;
  max-width: 26px;
}

.planBlock ul li img {
  min-width: 20px;
  max-width: 20px;
}

.headingOnly.industrySucceedSection .textBlock,
.headingOnly.industrySucceedSection .btnBlock,
.headingOnly.ourHistoryheadingInit .textBlock {
  align-items: center;
  max-width: 63%;
  margin: 0 auto;
  text-align: center;
}

.headingOnly.industrySucceedSection .textBlock {
  color: #fff;
}


.headingOnly.ourHistoryheadingInit {
  margin: 0;
}

.headingOnly.ourHistoryheadingInit .textBlock {
  color: #f2f2f299;
}

/* About history section */
.ourHistoryBlocks {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 40px 0 100px 0;
}

.historyBlockSingle {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  color: #f2f2f299;
  border: 1px solid #f2f2f299;
  border-radius: 4px;
  padding: 30px;
  transition: all 0.3s;
}

.historyBlockSingle:hover {
  border-color: #C8102E;
  transition: all 0.3s;
}

.historyBlockSingle .topHeading {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}


.memberNetworkSection .contentBlock .gadgetStyleBody {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}

.memberNetworkSection .contentBlock .gadgetStyleBody::after,
.memberNetworkSection .contentBlock .gadgetStyleBody::before {
  content: none;
}

.memberBenefitsListing {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0px 0 100px 0;
}

.memberBenefitsListing .WaGadgetOnly .gadgetStyleBody,
.textBlock {
  position: relative;
}

.memberBenefitsListing .WaGadgetOnly .gadgetStyleBody .textBlock {
  z-index: 2;
}

.memberBenefitsListing .WaGadgetOnly {
  background-size: 100% 100% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: background-size 0.5s ease !important;
  border: 2px solid rgb(255 255 255 / 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.memberBenefitsListing .WaGadgetOnly:hover {
  border-color: rgb(204 0 0 / 0.5);
  transition: background-size 0.5s ease !important;
}

.memberBenefitsListing tr.WaLayoutRow,
.memberBenefitsListing td.WaLayoutItem {
  display: flex;
}

.memberBenefitsListing td.WaLayoutItem div {
  height: 100%;
}

.memberBenefitsListing .textBlock .asta-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.memberBenefitsListing .textBlock {
  padding: 30px 30px 98px 30px;
}

.planBlock {
  border: 1px solid #0000001a;
  border-radius: 6px;
  overflow: hidden;
  padding: 30px 30px 30px 30px;
  background: #1a1a1a;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.plansListing .WaLayoutItem {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.plansListing .WaLayoutItem:hover {
  transform: translate(0, 0) rotate(0deg) skew(0deg, 0deg) scale(1.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.plansListing {
  padding: 20px 0 100px 0;
}

.planBlock .btnBlock {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
}

.planBlock .priceandTitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.planBlock .priceandTitle .price {
  margin-top: 20px;
  color: rgba(204, 31, 45, 1);
}

.planBlock:hover .priceandTitle .price {
  color: #1a1a1a;
}

.planBlock ul li span {
  font-size: 16px !important;
}

.planBlock ul {
  color: #fff;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #ffffff1a;
  border-bottom: 1px solid #ffffff1a;
  row-gap: 8px;
}

.planBlock:hover {
  background: #cc1f2d;
}

.membersFormSection .astaMembershipForm {
  padding: 0;
  background: transparent;
  font-family: var(--font) !important;
}

.membersFormSection .astaMembershipForm .radioGroupContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.membersFormSection .astaMembershipForm .radioGroupContainer .fieldLabel {
  text-align: left;
  padding: 0;
}

.membersFormSection .astaMembershipForm .levelProperties .labelTitle,
.membersFormSection .astaMembershipForm .levelProperties strong.labelSubTitle {
  color: #C8102E;
}

.membersFormSection .astaMembershipForm .infoOuterContainer {
  margin: 0 0 20px 0;
  padding: 20px;
  color: #fff;
  border-radius: 6px;
}

.membersFormSection .astaMembershipForm .infoOuterContainer,
.membersFormSection .confirmWindowInfo.messageBox,
.membersFormSection .confirmWindowInfo .cww-inner {
  /* background-color: #c8102e; */
  background-color: transparent;
  border-color: #c8102e;
  border-radius: 6px;
  color: #fff !important;
}

.membersFormSection .confirmWindowInfo.messageBox {
  padding: 20px;
}

.genericListTable,
.membersTable {
  background: transparent !important;
}

.membersFormSection .confirmWindowInfo .cww1,
.membersFormSection .confirmWindowInfo .cww2 {
  background-color: #c8102e;
  border-color: #c8102e;
}

.membersFormSection .infoOuterContainer .infoSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  row-gap: 10px;
}

.membersFormSection .infoOuterContainer .infoSection .infoTitle {
  text-align: left;
  font-weight: 700 !important;
  font-family: var(--font) !important;
}

.infoOuterContainer .infoSection .infoTitle,
.infoOuterContainer .infoSection .infoText {
  width: auto;
}

.WaGadgetOnly.WaGadgetMembershipApplication,
.WaGadgetOnly.WaGadgetMembershipApplication .infoOuterContainer {
  background: transparent;
  padding: 0;
}

.membersFormSection .p,
.membersFormSection p,
.membersFormSection p font,
.membersFormSection li,
.membersFormSection li font,
.membersFormSection td,
.membersFormSection span,
.membersFormSection div {
  font-family: var(--font) !important;
  color: #fff;
}

.membersFormSection .fieldSubContainer>table .left,
.membersFormSection .fieldSubContainer>.fieldLabel {
  text-align: left;
}

.membersFormSection .fieldContainer input.subjectTextBox,
.membersFormSection .fieldContainer input.typeText,
.membersFormSection .fieldContainer input[type=text] {
  width: 100%;
  padding: 0;
  height: auto;
  font-size: 16px;
  line-height: 110%;
  padding: 12px 22px;
  border-radius: 6px;
  border: 2px solid #ffffff1a;
  outline: none;
  box-shadow: none;
}

.eventCalander,
.WaGadgetFirst.WaGadgetEventsStateDetails,
.WaGadgetLoginForm.loginForm,
.pt160Container,
.WaLayoutContainerOnly.membershipSignup {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 160px 0 100px 0;
}

.WaGadgetLoginForm.loginForm {
  padding-bottom: 50px;
}

.formOuterContainer .fieldSubContainer input {
  width: 100%;
}

.pt160Container {
  padding-bottom: 0;
}

.WaGadgetEventsStateList .pastEventsOuterContainer table.pastEventsList td.left,
.WaGadgetEventsStateList .pastEventsOuterContainer table.pastEventsList td.left+td {
  padding: 10px 0;
}

.WaGadgetEventsStateList .pastEventsOuterContainer table.pastEventsList td.left {
  padding-right: 24px;
}

.WaGadgetFirst.WaGadgetEventsStateDetails .pageViewSwitcherContainer .semantic-ui {
  display: flex;
  position: relative;
}

.inner.gadgetEventEditableArea p,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer label.regTypeLiLabel,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer li.eventInfoStartTime,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer li.eventInfoEndTime,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer .boxBodyInfoContainer .registrationInfoContainer ul.registrationInfo li {
  margin: 0 0 14px 0;
  line-height: 140%;
}

.inner.gadgetEventEditableArea p,
.inner.gadgetEventEditableArea p strong,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer label.regTypeLiLabel,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer strong,
.WaGadgetEventsStateDetails .boxOuterContainer .boxBodyInfoOuterContainer .boxBodyInfoContainer .boxInfoContainer,
.inner.gadgetEventEditableArea li,
.productDetail,
.pt160Container,
.pxContainer {
  color: var(--white);
}

.WaGadgetLoginForm.loginForm .loginContainerInner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.WaGadgetLoginForm.loginForm .loginContainerInner .loginPanel,
.WaGadgetResetPasswordRequest form {
  align-items: center;
  display: flex !important;
  opacity: 1 !important;
  position: static !important;
  visibility: visible !important;
  border-radius: 1rem;
  overflow: hidden;
  border: none;
  padding: 2.5rem;
  width: auto;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  margin: 27px 0 0 0;
  flex-direction: column;
  gap: 14px;
  color: #fff;
}

.WaGadgetResetPasswordRequest form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.WaGadgetLoginForm.loginForm .loginContainerInner .loginPanel::after,
.WaGadgetLoginForm.loginForm .loginContainerInner .loginPanel::before {
  content: none;
}

.WaGadgetLoginForm .loginPanel .oAuthIstrue,
.WaGadgetLoginForm .loginPanel .loginContainerFormInner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.WaGadgetLoginForm .openAuthFormContainer,
.WaGadgetLoginForm .openAuthFormContainer form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.WaGadgetLoginForm .openAuthFormContainer form .oAuthButtonsContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.WaGadgetLoginForm .loginPanel .loginContainerFormInner form.generalLoginBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin: 30px 0 0 0;
}

.WaGadgetLoginForm .loginPanel input[type=text],
.WaGadgetLoginForm .loginPanel input[type=password] {
  padding: 20px 44px;
  border-radius: 8px;
  height: auto;
  font-size: 16px;
  background: #24242499;
  border: 1px solid #c8102e;
  min-width: 320px;
}

.WaGadgetLoginForm .loginUserNameTextBox:before,
.WaGadgetLoginForm .loginPasswordTextBox:before,
.WaGadgetLoginForm .password-wrapper:before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 14px;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  margin-top: -7px;
}

.toggle-password {
  position: relative;
  top: 50%;
  right: 37px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  z-index: 2;
  font-size: 14px;
}


.WaGadgetLoginForm .loginContainer.loginContainer .loginLink {
  border-radius: 8px;
  cursor: auto;
  animation: float 4s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 6;
  line-height: normal;
  font-size: 0;
}

.WaGadgetResetPasswordRequest {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.fieldContainer.textFieldContainer tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
}

.membersFormSection .fieldSubContainer tr table tr {
  display: unset;
}

#idReCaptchaContainer .fieldLabel {
  display: none;
}

.fieldContainer.textFieldContainer tr td {
  width: 100%;
  text-align: left;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.WaGadgetOnlineStoreCatalog ul.OnlineStoreCatalog_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
}

.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item,
.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item_outOfStock {
  position: relative;
  display: flex;
  width: auto;
  margin: 0;
  list-style: none outside;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 14px;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  background: var(--red);
  padding: 20px;
  color: var(--white);
  transition: transform .3s;
}

.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item:hover,
.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item_outOfStock:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -12px var(--red)
}

.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item a,
.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item_outOfStock a,
.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item a:hover,
.WaGadgetOnlineStoreCatalog .OnlineStoreCatalog_list .OnlineStoreCatalog_list_item_outOfStock a:hover {
  color: var(--white);
}

.productDetail .OnlineStoreProduct_content_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  padding-top: 5rem;
}

.productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_gallery,
.productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_aside {
  margin: 0;
  padding: 24px;
}

.productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_gallery {
  min-width: calc(60% - 34px);
  max-width: calc(60% - 34px);
}

.productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_aside {
  min-width: calc(40% - 34px);
  max-width: calc(40% - 34px);
}

.productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_information {
  min-width: 100%;
  max-width: 100%;
}

.productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_description {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_description div {
  line-height: 130%;
}

.WaGadgetOnlineStoreCartCheckout .emptyCartIcon2 {
  background-size: contain;
  margin-bottom: 30px;
}

.WaLayoutContainerOnly.vanderPartners {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.WaLayoutContainerOnly.membershipSignup .WaGadgetOnly.WaGadgetMembershipApplication {
  background: transparent;
  padding: 0;
}

.signupBtnBlock .gadgetStyleBody {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

.groupContainer .fieldItem span.label .textLine {
  font-weight: bold;
  font-style: normal;
}

.groupContainer .fieldItem span.label .textLine strong.labelTitle,
.groupContainer .fieldItem span.label .textLine strong.labelTitle span {
  font-size: 25px;
  font-weight: bold;
}

.groupContainer .fieldItem span.label .textLine.extraInfo.typeInstruction {
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: 400 !important;
  font-style: italic;
}

.groupContainer .fieldItem {
  margin-bottom: 40px;
}

.WaGadgetEventsStateList .boxOuterContainer .boxBodyOuterContainer .boxBodyInfoOuterContainer .boxBodyInfoContainer,
body .infoOuterContainer {
  background: transparent;
}

.WaGadgetEvents .boxInfoContainer ul.boxInfo li,
.WaGadgetEventsStateList .boxOuterContainer .boxBodyOuterContainer .boxBodyInfoOuterContainer .boxInfoContainer {
  color: #fff;
}

/*--  Header top bar  --*/
.asta-top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #c8102e;
  color: #ffffff !important;
  text-align: center;
  padding: 8px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none !important;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.25s ease;
  cursor: pointer;
}

.asta-top-bar:hover {
  background-color: #A50021;
  color: #ffffff !important;
  text-decoration: none !important;
}

.asta-top-bar__icon {
  font-size: 16px;
  line-height: 1;
}

.asta-top-bar__text {
  color: #ffffff !important;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 14px !important;
}

.asta-top-bar__arrow {
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease;
  line-height: 1;
}

.asta-top-bar:hover .asta-top-bar__arrow {
  transform: translateX(4px);
}

.asta-top-bar .slides-container {
  display: inline-block;
  width: 80%;
  font-size: 14px;
}

@keyframes astaFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.asta-hdr svg {
  width: 20px;
}

/*--  Header top bar  --*/

.WaGadgetLast.WaGadgetSlideshow.customSlider.gadgetStyleNone {
  overflow: hidden;
}

.headingOnly,
.raleighConventionSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0 40px 0;
  margin: 0;
}

.headingOnly .sectionTitle .subHeading,
.headingOnly .sectionTitle .heading {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sectionTitle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  row-gap: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.textBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 24px;
}

.textBlock .iconBox {
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 8px;
}

.textBlock .iconBox.redbgShade {
  background: #dc282826;
}

.btnBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.WaGadgetEventsStateDetails .boxBodyContainer .boxBodyInfoOuterContainer.boxBodyInfoViewFill {
  width: 100%;
}

/* ===================================== */
.promoSec {
  margin: 0 0 60px;
}

.promoSec .promo-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.promoSec .promo-images {
  position: relative;
  flex: 1;
}

.promoSec .img-main {
  width: calc(100% - 200px);
  border-radius: 4px;
  display: block;
}

.promoSec .img-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 280px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Content */
.promoSec .promo-content {
  flex: 1;
  max-width: 500px;
}

.promoSec .promo-content h2 {
  font-size: 32px !important;
  margin-bottom: 20px;
  color: #111;
}

.promoSec .promo-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.newBanner {
  min-height: 80vh;
  color: #fff;
}

.newBanner span {
  font-size: inherit !important;
  font-weight: inherit;
}

.membersFormSection .DES_CalHeader span {
  color: #000;
  font-size: 14px;
  line-height: normal;
}

.membersFormSection table.DES_CalWeekRowsTable,
.membersFormSection table.DES_CalWeekRowsTable tr,
.membersFormSection table.DES_CalWeekRowsTable td {
  color: #000;
  line-height: normal;
}

.generalFormContainer .inner:first-child {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.generalFormContainer .inner:first-child .fieldContainer {
  width: calc(50% - 12px);
  margin: 0;
}

.generalFormContainer .inner:first-child .fieldContainer tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.generalFormContainer .inner:first-child .fieldContainer .DES_CalControl tr {
  display: unset;
}

.formTitleOuterContainer,
.formTitleOuterContainer .formTitleContainer,
.navigationOuterContainer.nonPrintable .navigationContainer,
.navigationOuterContainer,
.navigationOuterContainer .navigationContainer,
.navigationOuterContainer .d1,
.navigationOuterContainer .d2,
.navigationOuterContainer .d3,
.navigationOuterContainer .d4,
.navigationOuterContainer .d5,
.navigationOuterContainer .d6,
.navigationOuterContainer .d7,
.navigationOuterContainer .d8,
.navigationOuterContainer .d9,
.navigationOuterContainer .navigationContainer .inner {
  width: 100%;
}

.formTitleOuterContainer .formTitleContainer .inner {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.formTitleOuterContainer .formTitleContainer .inner::after {
  content: none;
}

.navigationOuterContainer.nonPrintable {
  width: 100%;
}

.navigationTopContainer .navigationContainer .inner,
.navigationOuterContainer.nonPrintable .navigationContainer .inner {
  justify-content: space-between;
}

.navigationOuterContainer.nonPrintable .navigationContainer .inner .clearEndContainer:empty,
.topButtonsContainer .inner .clearEndContainer {
  display: none;
}

.navigationTopContainer,
.navigationTopContainer .navigationContainer,
.topButtonsContainer .inner,
.functionalPageContentContainer .inner form#idProfileTopForm {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.membersFormSection .confirmWindowInfo .cww-inner .header {
  color: #fff !important;
}

#FunctionalBlock1_ctl00_ctl00_memberDetailsPanel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.WaGadgetContactProfile .topButtonsOuterContainer,
.generalFormContainer .inner .navigationTopContainer .navigationOuterContainer {
  width: 100%;
}

.WaGadgetContactProfile .memberDetailsTabsOuterContainer {
  margin: 0 30px 0px 0;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  padding: 0 30px 0 0;
  border-right: 4px solid #bd102e;
}

.memberDetailsTabsOuterContainer .memberDetailsTabsContainer ul.memberDetailsTabMenu li a:hover {
  color: #fff;
}

#idMemberProfileContainer .generalFieldsContainer .profileMainContainer .inner .commonMessageBox,
#idMemberProfileContainer .generalFieldsContainer .inner .genericListHeaderContainer table,
#idMemberProfileContainer .generalFieldsContainer .inner .genericListHeaderContainer table td select,
#idMemberProfileContainer .generalFieldsContainer .inner .genericListHeaderContainer table td input {
  width: 100%;
}

/* #idMemberProfileContainer .generalFieldsContainer .inner .genericListHeaderContainer table td {
  width: 48%;
} */

#idMemberProfileContainer .generalFieldsContainer .inner .genericListHeaderContainer table td.infoContainer {
  padding: 0 10px;
}

#idMemberProfileContainer .generalFieldsContainer .inner .genericListHeaderContainer table td input#SearchBox {
  margin-top: 10px;
}

.memberDetailsTabsOuterContainer .memberDetailsTabsContainer ul.memberDetailsTabMenu {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.memberDetailsTabsOuterContainer .memberDetailsTabsContainer ul.memberDetailsTabMenu li {
  margin: 0;
  padding: 0;
  position: relative;
}

.memberDetailsTabsOuterContainer .memberDetailsTabsContainer ul.memberDetailsTabMenu li::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #525355;
  bottom: -17px;
  left: 0;
}

.formOuterContainer {
  width: 100%;
  max-width: calc(100% - 248px);
}

.functionalPageContentContainer,
.generalFieldsContainer .profileMainContainer.arrow,
.generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer .sectionContainer,
.generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer .sectionContainer .inner .fieldContainer.textFieldContainer,
.generalFormContainer .inner .navigationTopContainer .navigationTopContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer .sectionContainer .inner .fieldContainer.textFieldContainer,
.generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer .sectionContainer .inner .fieldContainer {
  margin: 0;
}

.generalFieldsContainer .profileMainContainer .inner,
.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.functionalPageContentContainer .inner,
.generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.functionalPageContentContainer .inner .generalFieldsOuterContainer,
.generalFieldsContainer,
.functionalPageContentContainer .inner .inner>div,
.generalFieldsContainer .profileMainContainer .inner .captionOuterContainer {
  width: 100%;
}

.generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer .sectionContainer .inner>div {
  width: calc(50% - 24px);
  display: flex;
  flex-direction: column;
  margin: 0;
  border-bottom: 1px solid #525355;
  padding: 0 0 20px 0;
}

#memberSubscriptionsDivValidation>div .captionOuterContainer,
#memberSubscriptionsDivValidation>div .fieldContainer.simpleTextContainer,
.paymentDetailsForm .sectionContainer .inner .fieldContainer,
#idMembershipLevelRadioGroupContainer .fieldSubContainer.radioGroupContainer .groupBodyVertical .fieldItem,
.WaGadgetMembershipApplication.WaGadgetMembershipApplicationStateReview .generalFormOuterContainer .generalFieldsContainer .inner .fieldContainer,
.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form .fieldContainer,
.WaGadgetEvents.WaGadgetEventsStateRegistration .generalFormContainer .inner:first-child .fieldContainer,
.WaGadgetEvents.WaGadgetEventsStateRegistrationDetails .generalFormContainer .inner:first-child .fieldContainer {
  border-bottom: 1px solid #525355;
  padding: 0 0 20px 0;
}

.groupContainer.standAloneGroupContainer .fieldSubContainer .fieldBody .groupBodyVertical {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.groupContainer.standAloneGroupContainer .fieldSubContainer .fieldBody .groupBodyVertical .fieldItem {
  margin: 0;
  width: 50%;
}

.infoOuterContainer .infoContainer .inner,
.generalFieldsOuterContainer,
.generalFieldsOuterContainer .generalFieldsContainer,
.generalFieldsOuterContainer .sectionOuterContainer,
.generalFieldsOuterContainer .sectionOuterContainer .sectionContainer,
.WaGadgetLast.WaGadgetResetPasswordRequest form .formContainer,
.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.generalFormContainer .inner .navigationTopContainer,
.generalFormContainer .inner .formOuterContainer,
.WaGadgetAuthorizationRequired .authFormContainer,
.WaGadgetAuthorizationRequired .authFormContainer form,
.WaGadgetAuthorizationRequired .authFormContainer form table,
#idMembershipLevelRadioGroupContainer .fieldSubContainer.radioGroupContainer .groupBodyVertical .fieldItem,
#idGeneralFormContainer .sectionOuterContainer .sectionContainer .fieldContainer td.right,
.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form #idNewPasswordConfirmContainer,
.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form #idActionButtonsContainer {
  width: 100%;
  max-width: 100%;
}

.confirmWindowInfo .cww-inner .cww-co,
.confirmWindowInfo .cww-inner .cww-co .header,
.confirmWindowInfo .cww-inner .kvTable tr,
.confirmWindowInfo .cww-inner .kvTable td,
.confirmWindowInfo .cww-inner .kvTable td span,
.commonMessageBox .confirmWindowWarning .header {
  color: #fff !important;
}

.sectionContainer .fieldContainer .fieldLabel,
.groupContainer .fieldItem span.label .textLine.extraInfo.typeInstruction,
.groupContainer .fieldItem span.label .textLine.extraInfo.typeInstruction .levelDescription,
.WaGadgetMembershipApplication.WaGadgetMembershipApplicationStateReview .generalFormOuterContainer .generalFieldsContainer .inner .fieldContainer .fieldLabel,
.WaGadgetMembershipApplication.WaGadgetMembershipApplicationStateReview .generalFormOuterContainer .generalFieldsContainer .inner .fieldContainer .fieldLabel span,
.confirmWindowInfo .cww-inner table#confirmationTable td.labelInfoColumn,
.confirmWindowInfo .cww-inner table#confirmationTable td.labelInfoColumn span,
.WaGadgetEvents .boxInfoContainer ul.boxInfo li>label,
.publicWizardNameContainer .infoSection .infoTitle,
.commonMessageBox .kvTable td.labelInfoColumn {
  text-align: left;
  color: #cdcbcbd5 !important;
}

.confirmWindowInfo .cww-inner .cww-co td div {
  color: #fff !important;
}

.publicWizardNameContainer .infoSection .infoTitle,
.commonMessageBox .kvTable td.labelInfoColumn {
  min-width: 180px;
}

.confirmWindowInfo .cww-inner {
  background: transparent;
  border: 2px solid #c8102e;
  padding: 20px 0;
}

.commonMessageBox .confirmWindowInfo.messageBox .cww,
.commonMessageBox .cww {
  display: none;
}

.confirmWindowInfo .cww-inner .labelInfoColumn {
  text-align: left !important;
}

.confirmWindowInfo .cww-inner table#confirmationTable td {
  padding: 10px 0;
}

.confirmWindowInfo .cww-inner table#confirmationTable td.labelInfoColumn {
  padding-right: 15px;
  width: 180px;
}

.commonMessageBox .cww-inner {
  border: 2px solid #c8102e;
  background-color: transparent;
  color: #fff;
  padding: 5px 10px 10px 5px;
}

.commonMessageBox .cww-inner .text {
  color: #fff !important;
}

.WaGadgetLast.WaGadgetResetPasswordRequest form {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.WaGadgetLast.WaGadgetResetPasswordRequest td.right .fieldBody input[name="email"],
.WaGadgetLast.WaGadgetAuthorizationRequired .authFormContainer input[type="text"],
.WaGadgetLast.WaGadgetAuthorizationRequired .authFormContainer input[type="password"] {
  width: 50%;
}

.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form .fieldContainer {
  width: 49%;
  margin-bottom: 0;
}

.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form #idActionButtonsContainer .fieldBody {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form #idActionButtonsContainer .fieldBody input {
  width: auto;
}

.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form #idNewPasswordConfirmContainer,
.WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form #idActionButtonsContainer {
  margin: 0;
  padding: 0;
  border: none;
}

#idCaptionMembershipDetailsContainer,
#memberSubscriptionsDivValidation #subscribeToNewsContainer {
  margin-top: 0;
}

body .profileDetailsOuterContainer #memberFieldTable th {
  text-align: left;
}

.profileDetailsOuterContainer #memberFieldTable td,
.profileDetailsOuterContainer #memberFieldTable th {
  padding: 12px 10px;
}

.WaGadgetMembershipApplication.WaGadgetMembershipApplicationStateReview #idAfterTitle .commonMessageBox .confirmWindowInfo.messageBox {
  background: transparent;
  padding: 0;
}

.WaGadgetLoginForm .loginContainer.authenticated.loginContainer.authenticated .loginLink {
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: #c8102e !important;
  top: -40px;
}

.WaGadgetLoginForm.loginForm .loginContainer {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 1rem;
  width: 100%;
  margin: 100px auto 0;
  max-width: 421px;
  padding: 1.2rem;
  position: relative;
}

.WaGadgetLoginForm .loginContainer.loginContainer .loginPanel {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.WaGadgetLoginForm .loginContainer.loginContainer .loginPanel .loggedName {
  width: 100%;
  font-size: 26px;
  border-radius: 0;
}

.WaGadgetLast.WaGadgetChangePassword .formOuterContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

/*--------------------*/
/*-- Expo page Faq --*/
/*------------------*/
.faq {
  max-width: 800px;
  margin: 50px auto 0;
  border-radius: 12px;
}

.faq__category {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e7eb;
}

.accordion {
  display: block;
  margin-bottom: 12px;
}

.accordion__disclosure {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.accordion__disclosure:hover {
  border-color: #cbd5e1;
}

.accordion__disclosure.is-open {
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.accordion__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  transition: background 0.2s ease;
  font-family: inherit;
  outline: none;
}

.accordion__toggle:hover {
  background: #f9fafb;
}

.accordion__disclosure.is-open .accordion__toggle {
  background: #ffffff;
  color: var(--red);
}

.animated-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.animated-plus::before,
.animated-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.animated-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.animated-plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion__disclosure.is-open .animated-plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__disclosure.is-open .accordion__content {
  max-height: 500px;
}

.prose {
  padding: 20px 22px 22px 22px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.prose a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  color: #1a1a1a;
  font-weight: 600;
}

/*--------------------*/
/*-- Expo page Faq --*/
/*------------------*/

/*--------------------*/
/*-- sponser block --*/
/*------------------*/
.sponsorship__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  padding: 40px;
}

.sponsorship__content {
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sponsorship__title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.sponsorship__tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: #4b5563;
  margin-bottom: 28px;
}

.sponsorship__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sponsorship__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.55;
}

.sponsorship__list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #1a1a1a;
  font-size: 1.1rem;
  line-height: 1.4;
}

.sponsorship__list strong {
  font-weight: 700;
  color: #1a1a1a;
}

.sponsorshipBlock table tr td {
  vertical-align: middle;
}

/*--------------------*/
/*-- sponser block --*/
/*------------------*/


/*--------------------*/
/*-- Expo schedule --*/
/*------------------*/
.expoBanner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 220px;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background:
    radial-gradient(circle at 62% 62%,
      #ffd27a 0%,
      rgba(255, 180, 90, 0.6) 8%,
      rgba(255, 120, 60, 0) 24%),
    radial-gradient(ellipse at 62% 58%,
      #ff8a4a 0%,
      rgba(255, 120, 80, 0) 35%),
    linear-gradient(100deg,
      #c5181c 0%,
      #d92329 28%,
      #e44a32 55%,
      #e76a3a 75%,
      #d65a32 100%);
  padding-top: 150px;
}

.expoBanner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(255, 180, 120, 0.1) 0%,
      rgba(0, 0, 0, 0) 40%,
      rgba(60, 10, 10, 0.18) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(70, 20, 15, 0.25) 80%,
      rgba(40, 10, 10, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.expoBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(180, 20, 25, 0.55) 0%,
      rgba(180, 20, 25, 0.18) 35%,
      rgba(180, 20, 25, 0) 55%);
  pointer-events: none;
  z-index: 1;
}

.expoBanner .content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 38px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expoBanner .venue {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.005em;
}

.expoBanner .title {
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 84px);
  line-height: 1.02;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.005em;
}

.expoBanner .title .line {
  display: block;
}

.expoBanner .date {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 700;
}

/* ASTA logo block */
.expoBanner .logo {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  width: clamp(90px, 9vw, 200px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.expoBanner .logo .badge {
  background: transparent;
  color: #c5181c;
  border: none;
  text-align: center;
  padding: 8px 6px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expoBanner .logo .badge img {
  width: 100%;
  max-width: 100%;
}

.expoBanner .logo .badge .word {
  font-weight: 900;
  font-size: clamp(18px, 1.9vw, 28px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.expoBanner .logo .badge .sub {
  margin-top: 4px;
  font-size: clamp(5px, 0.55vw, 8px);
  letter-spacing: 0.15em;
  color: #111;
  font-weight: 700;
}

.expoBanner .logo .expo {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 4px 0 5px;
  font-weight: 900;
  font-size: clamp(11px, 1.1vw, 16px);
  letter-spacing: 0.1em;
  border-radius: 0 0 4px 4px;
  margin-top: -2px;
}

.topbar {
  border-bottom: 1px solid var(--line);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
}

.topbar .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  font-size: 16px;
}

.topbar nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.topbar nav a:hover {
  color: var(--ink);
}

/* STICKY DATE TABS */
.date-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.date-nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.date-tab {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 18px 0;
  margin-right: 40px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
  color: var(--muted);
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.date-tab:last-child {
  margin-right: 0;
}

.date-tab .num,
.date-tab .num span {
  font-weight: 700 !important;
  font-size: 48px !important;
  line-height: 1;
  letter-spacing: -0.01em;
}

.date-tab .day {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 16px;
}

.date-tab:hover {
  color: var(--ink);
}

.date-tab.active {
  color: var(--ink);
  border-bottom-color: var(--red);
}

.date-tab.active .num {
  color: var(--red);
}

/* WRAP */
.wrap,
.date-nav-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

/* SECTIONS */
.day-section {
  scroll-margin-top: 90px;
  padding-top: 48px;
}

.day-section+.day-section {
  padding-top: 64px;
}

.day-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 12px;
}

.day-heading .big-num {
  font-weight: 700;
  font-size: 64px !important;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.01em;
}

.day-heading .big-day {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 20px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-head h2 {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--muted);
}

/* SCHEDULE ROWS */
.row {
  display: grid;
  grid-template-columns: 230px 1fr 35px;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.row:first-of-type {
  border-top: 1px solid var(--line-strong);
}

.row .time {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 2px;
}

.row .body .title {
  font-weight: 700;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.row .body .meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.row .body ul {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.row .body ul li {
  margin-bottom: 4px;
}

.row .arrow {
  color: var(--muted);
  font-size: 16px;
  text-align: right;
  cursor: pointer;
  padding-top: 2px;
}

.row:hover .arrow {
  color: var(--red);
}

.tag {
  background: var(--tag-bg);
  color: var(--tag-fg);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 700;
  border-radius: 1px;
}

.tag.red {
  background: var(--red);
}

/*--------------------*/
/*-- Expo schedule --*/
/*------------------*/

/*----------------------*/
/*-- Expo Exhibitors --*/
/*--------------------*/
.asta-spons-section--light {
  background: #fff;
}

.asta-spons-section--soft {
  background: var(--asta-spons-soft);
}

.asta-spons-container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

/* SECTION HEADER */
.asta-spons-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.asta-spons-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--asta-spons-black);
}

.asta-spons-act-name {
  color: var(--asta-spons-black);
}

.asta-spons-title-dot {
  color: var(--asta-spons-red);
}

.asta-spons-desc {
  max-width: 450px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  padding-top: 22px;
  margin: 0;
}

article.asta-spons-tier.asta-spons-tier--dark .asta-spons-tier-name {
  color: var(--white);
}

article.asta-spons-tier .asta-spons-tier-name {
  color: var(--asta-spons-black);
}

/* TIER CARDS */
.asta-spons-tiers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asta-spons-tier {
  position: relative;
  background: #fff;
  border: 1px solid var(--asta-spons-red);
  border-radius: 2px;
  padding: 28px 30px 26px;
  overflow: hidden;
  color: var(--asta-spons-black);
}

.asta-spons-tier--dark {
  background: var(--asta-spons-black);
  color: #fff;
  border-color: var(--asta-spons-black);
}

.asta-spons-tier--dark .asta-spons-tier-desc {
  color: #bdbdbd;
}

.asta-spons-tier--dark .asta-spons-tier-list li {
  color: #dcdcdc;
}

.asta-spons-tier--dark .asta-spons-tier-list li::before {
  background: var(--asta-spons-red);
}

.asta-spons-ribbon {
  display: inline-block;
  background: var(--asta-spons-red);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px 10px;
  margin-bottom: 14px;
}

.asta-spons-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.asta-spons-tier-name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

.asta-spons-tier-name-light {
  font-weight: 500;
  color: inherit;
  opacity: 0.85;
}

.asta-spons-tier--dark .asta-spons-tier-name-light {
  opacity: 0.7;
}

.asta-spons-tier-price {
  font-weight: 700;
  color: var(--asta-spons-red);
  font-size: clamp(22px, 2.4vw, 30px) !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.asta-spons-tier-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 0 16px;
}

/* TWO-COLUMN BULLETS */
.asta-spons-tier-list {
  list-style: none;
  column-count: 2;
  column-gap: 48px;
  margin: 6px 0 0;
  padding: 0;
}

.asta-spons-tier-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  margin-bottom: 8px;
  break-inside: avoid;
}

.asta-spons-tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--asta-spons-red);
  border-radius: 50%;
}

/* ACTIVATIONS GRID */
.asta-spons-acts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #d8d3cc;
  border-left: 1px solid #d8d3cc;
}

.asta-spons-act {
  padding: 26px 28px;
  background: transparent;
  border-right: 1px solid #d8d3cc;
  border-bottom: 1px solid #d8d3cc;
}

.asta-spons-act-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.asta-spons-act-name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(14px, 1.3vw, 17px);
  letter-spacing: 0.05em;
  margin: 0;
}

.asta-spons-act-price {
  font-weight: 700;
  color: var(--asta-spons-red);
  font-size: clamp(14px, 1.3vw, 18px) !important;
  white-space: nowrap;
}

.asta-spons-act-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin-bottom: 8px;
}

.asta-spons-act-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

.asta-spons-act-list li {
  position: relative;
  padding-left: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  margin-bottom: 5px;
}

.asta-spons-act-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--asta-spons-red);
  border-radius: 50%;
}

.pxContainer.textWithJoin {
  padding-top: 0;
}

.zonePlace.zoneWAbranding .WABranding {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================== */
/*  BUY EXPO TICKETS PAGE         */
/* ============================== */

/* Page-wide spacing wrap */
.expo-tickets-header-wrap,
.expo-tickets-secondary,
.expo-tickets-warning {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.expo-tickets-header-wrap {
  padding-top: 100px;
  padding-bottom: 50px;
}

/* HEADER */
.expo-tickets-header {
  text-align: center;
}

.expo-tickets-title {
  font-size: 52px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase;
  line-height: 1.1 !important;
  margin: 0 0 14px !important;
  letter-spacing: 0.5px;
}

.expo-tickets-subtitle {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500 !important;
  margin: 0 !important;
}

.expo-tickets-rule {
  width: 60px;
  height: 3px;
  background: #C8102E;
  margin: 24px auto 0;
}

/* MEMBER / NON-MEMBER CARDS (each lives in its own gadget) */
.expo-ticket-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  max-width: 100%;
  margin: 0 auto 24px;
  height: 100%;
}

.expo-ticket-card:hover {
  border-color: rgba(200, 16, 46, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.expo-ticket-card--member {
  border-color: #C8102E;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1015 100%);
}

.expo-ticket-badge {
  display: inline-block;
  background: #C8102E;
  color: #fff;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.expo-ticket-badge--gray {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.expo-ticket-name {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase;
  margin: 0 0 14px !important;
  line-height: 1.2 !important;
}

.expo-ticket-desc {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6 !important;
  margin: 0 0 28px !important;
  flex-grow: 1;
}

.expo-ticket-btn {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.expo-ticket-btn:hover {
  background: #fff;
  color: #C8102E !important;
  border-color: #fff;
  text-decoration: none !important;
}

.expo-ticket-btn--primary {
  background: #C8102E;
  border-color: #C8102E;
  color: #fff !important;
}

.expo-ticket-btn--primary:hover {
  background: #A50021;
  border-color: #A50021;
  color: #fff !important;
}

.expo-ticket-note {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 18px 0 0 !important;
  line-height: 1.5 !important;
  text-align: center;
}

.expo-ticket-note a {
  color: #C8102E !important;
  text-decoration: underline;
  font-weight: 600;
}

.expo-ticket-note a:hover {
  color: #ff3b52 !important;
}

/* SECONDARY OPTIONS */
.expo-tickets-secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
  padding-bottom: 30px;
  margin-top: 40px;
}

.expo-tickets-secondary-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 30px !important;
}

.expo-tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.expo-ticket-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 18px 20px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.expo-ticket-mini:hover {
  background: rgba(200, 16, 46, 0.1);
  border-color: #C8102E;
  text-decoration: none !important;
  transform: translateX(4px);
}

.expo-ticket-mini-label {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.expo-ticket-mini-arrow {
  color: #C8102E;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.expo-ticket-mini:hover .expo-ticket-mini-arrow {
  transform: translateX(4px);
}

/* WARNING */
.expo-tickets-warning {
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-left: 4px solid #C8102E;
  border-radius: 4px;
  padding: 18px 22px;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.6 !important;
  margin-bottom: 80px;
}

.expo-tickets-warning strong {
  color: #C8102E !important;
  font-weight: 700;
}

.buyExpoTicketOptions {
  padding: 30px 0;
}

/* When Member card column is hidden, center the Non-Member card */
.buyExpoTicketOptions .WaLayoutItem .expo-ticket-card,
.Book_Tickets_Options table.WaLayoutTable:has(td:first-child[style*="display: none"]) td:last-child .expo-ticket-card {
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
}

/* When both columns are showing (logged in), allow cards to fill their columns */
.buyExpoTicketOptions .WaLayoutTable tbody tr {
  display: table-row;
}

/* ====================================== */
/*  EXHIBITOR PAGE                         */
/* ====================================== */

.exhib-page {
  width: 100%;
  font-family: var(--font, 'Roboto', sans-serif);
  color: #fff;
}

/* SHARED SECTION STYLES */
.exhib-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.exhib-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.exhib-section__kicker {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #C8102E;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.exhib-section__title {
  font-size: 42px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase;
  line-height: 1.1 !important;
  margin: 0 0 16px !important;
}

.exhib-section__desc {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* BUTTONS */
.exhib-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.exhib-btn--primary {
  background: #C8102E;
  color: #fff !important;
  border-color: #C8102E;
}

.exhib-btn--primary:hover {
  background: #A50021;
  border-color: #A50021;
  color: #fff !important;
}

.exhib-btn--outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3);
}

.exhib-btn--outline:hover {
  background: #fff;
  color: #C8102E !important;
  border-color: #fff;
}

.exhib-btn--full {
  width: 100%;
  margin-top: 20px;
}

/* HERO with image — split layout */
.exhib-hero {
  padding: 120px 24px 80px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.exhib-hero__inner {
  text-align: left;
}

.exhib-hero__kicker {
  display: inline-block;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.exhib-hero__title {
  font-size: 60px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase;
  line-height: 1.05 !important;
  margin: 0 0 24px !important;
  letter-spacing: 1px;
}

.exhib-hero__title span {
  color: #C8102E;
}

.exhib-hero__tagline {
  font-size: 17px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6 !important;
  margin: 0 0 30px !important;
}

.exhib-hero__rule {
  width: 60px;
  height: 3px;
  background: #C8102E;
  margin: 0 0 36px;
}

.exhib-hero__image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(200, 16, 46, 0.3);
  aspect-ratio: 4 / 3;
}

.exhib-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PRICING CARDS */
.exhib-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.exhib-price-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.exhib-price-card:hover {
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-4px);
}

.exhib-price-card--featured {
  border-color: #C8102E;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1015 100%);
}

.exhib-price-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: #C8102E;
  color: #fff;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.exhib-price-card__badge--gray {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.exhib-price-card__title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase;
  margin: 0 0 12px !important;
  line-height: 1.2 !important;
}

.exhib-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.exhib-price-card__amount {
  font-size: 44px !important;
  font-weight: 700 !important;
  color: #C8102E !important;
  line-height: 1 !important;
}

.exhib-price-card__per {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 1px;
}

.exhib-price-card__note {
  font-size: 11px !important;
  color: rgba(255, 200, 0, 0.6) !important;
  font-style: italic;
  margin: 0 0 24px !important;
  letter-spacing: 0.5px;
}

.exhib-price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.exhib-price-card__list li {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.5 !important;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.exhib-price-card__list li:last-child {
  border-bottom: none;
}

.exhib-price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #C8102E;
  font-weight: 700;
  font-size: 16px;
}

.exhib-pricing__footnote {
  font-size: 13px !important;
  color: rgba(255, 200, 0, 0.7) !important;
  font-style: italic;
  text-align: center;
  margin: 0 !important;
  padding: 16px;
  background: rgba(255, 200, 0, 0.05);
  border: 1px dashed rgba(255, 200, 0, 0.3);
  border-radius: 4px;
}

.exhib-pricing__footnote strong {
  color: #ffd700 !important;
  font-weight: 700;
}

.hideSection {
  display: none !important;
}

.asta-spons-tier .asta-btn,
.asta-spons-act .asta-btn {
  margin-top: 30px;
}

/* button after login */
.asta-profile-wrap {
  position: relative;
  display: inline-block;
}

.asta-profile-drop {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 1000;
  overflow: hidden;
}

.asta-profile-drop a {
  display: block;
  padding: 10px 16px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.asta-profile-drop a:last-child {
  border-bottom: none;
}

.asta-profile-drop a:hover {
  background: #f5f5f5;
}

.asta-profile-wrap.open .asta-profile-drop {
  display: block;
}

.WaLayoutContainerOnly.siteHeader .WaGadgetOnly.WaGadgetCustomHTML {
  overflow: visible;
}

.asta-profile-wrap button.asta-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  gap: 8px;
  padding: 10px 18px;
}

.asta-profile-drop a:hover {
  color: #c8102e;
}

/* button after login */

/* Chevron toggle button — visible on all screen sizes */
.asta-drop-toggle {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  transition: transform 0.2s;
}

.asta-drop-toggle svg {
  display: block;
  stroke: #fff;
}

/* Rotate chevron when submenu is open */
.has-drop.mob-open>.asta-drop-toggle {
  transform: rotate(180deg);
}

.WaGadgetFinDocument form.paymentDetailsForm .pageTitle.SystemPageTitle {
  font-size: 35px !important;
}

.WaLayoutContainerLast.astaExpoSpeakers {
  padding-top: 100px;
  padding-bottom: 100px;
}

.WaLayoutContainerLast.sponsorshipCTABlock .cta-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  justify-content: center;
  color: #000;
}

.exhib-section__head.ctaBlock {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 30px;
}

.exhib-section__head.ctaBlock h2.exhib-section__title {
  margin: 0 !important;
}

.exhib-hero__member-note {
  margin: 10px 0 0 0;
  color: rgba(255, 255, 255, 0.7) !important;
}

.promoSec .promo-container .promo-images {
  width: 60%;
  max-width: 60%;
}

.promoSec .promo-container .promo-content {
  width: 40%;
  max-width: 40%;
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}

.WaLayoutContainerFirst.bringYourTeam {
  margin-top: -1px;
}

body .pageTopBanner .siteContainer {
  width: 100%;
  max-width: 100%;
}

/* Common padding left right work as container */
.homeBannerSection,
.siteCTABlock,
.partnersBlock,
.partnersLogoSlider,
.homeProductBlock,
.imageWithContent,
.secTopHeading,
.partnersLinkBlock,
.automotiveTechnology,
.eventsSection,
.powerToAdvanc,
.pageTopBanner,
.imageWithContent.valuesSection,
.imageWithContent.ourGoalsSection,
.headingOnly.industrySucceedSection,
.ourHistoryBlocks,
.imageWithContent.memberNetworkSection,
.memberBenefitsListing,
.membersFormSection.arrow,
.eventCalander,
.WaGadgetFirst.WaGadgetEventsStateDetails,
.WaGadgetLoginForm.loginForm,
.pxContainer,
.pt160Container,
.membersFormSection,
.WaLayoutContainerOnly.membershipSignup,
.signupBtnBlock,
.sponsorshipBlock,
.raleighConventionSection,
.wrap,
.date-nav-inner,
.asta-spons-section,
.buyExpoTicketOptions,
.Book_Tickets_Options,
.WaLayoutContainerFirst.raleighConventionSection {
  padding-left: 72px;
  padding-right: 72px;
}

.plansListing {
  padding-left: 10rem;
  padding-right: 10rem;
}

/* Hidden Login gadget — kept in DOM for JS auth detection */
.hiddenFormBlock,
.hiddenFormBlock .WaGadgetLoginForm {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.WaLayoutContainerLast.siteHeader {
  width: 100%;
}

#FunctionalBlock1_ctl00_memberApplicationMain_ctl00_stepTemplate_levelListView_membershipLevelsRepeater_ctl08_levelView_levelLabel {
  scroll-margin-top: 150px;
}

.pxContainer.travelInfoTopContent .gadgetStyleBody.gadgetContentEditableArea p,
.pxContainer.travelInfoWithImg .textBlock p,
.pxContainer.travelInfoBottomData .textBlock p {
  color: #666;
  font-size: 19px !important;
  line-height: 29px !important;
}

.pxContainer.travelInfoBottomData .tabelBlock table td font,
.pxContainer.travelInfoBottomData .tabelBlock table td p,
.pxContainer.travelInfoBottomData .tabelBlock table td span,
.WaLayoutContainerLast.astaExpoSpeakers .gadgetStyleBody.gadgetContentEditableArea p,
.WaLayoutContainerFirst.bringYourTeam .promo-content p {
  color: #666;
  font-size: 16px !important;
  line-height: 24px !important;
}

.pxContainer.travelInfoWithImg .textBlock h2,
.pxContainer.travelInfoWithImg .textBlock h3,
.pxContainer.travelInfoBottomData .textBlock h2,
.pxContainer.travelInfoBottomData .textBlock h3,
.pxContainer.travelInfoBottomData .tabelBlock table tr:first-child td font,
.pxContainer.travelInfoBottomData .tabelBlock table tr:first-child td p,
.pxContainer.travelInfoBottomData .tabelBlock table tr:first-child td span {
  color: #000 !important;
}

.pxContainer.travelInfoWithImg .textBlock h2.redColor,
.pxContainer.travelInfoWithImg .textBlock h3.redColor,
.pxContainer.travelInfoBottomData .textBlock h2.redColor,
.pxContainer.travelInfoBottomData .textBlock h3.redColor {
  color: var(--red) !important;
}

.pxContainer.travelInfoWithImg .textBlock,
.pxContainer.travelInfoBottomData .textBlock {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: #666;
}

.pxContainer.travelInfoBottomData .textBlock,
.pxContainer.travelInfoBottomData .tabelBlock {
  margin-bottom: 40px;
  row-gap: 14px;
}

.pxContainer.travelInfoBottomData .tabelBlock table {
  border-spacing: 5px;
  border: none;
}

.pxContainer.travelInfoBottomData .textBlock ul,
.pxContainer.travelInfoBottomData .tabelBlock ul {
  margin-top: 0;
  padding-left: 20px;
}

.pxContainer.travelInfoBottomData .tabelBlock table td {
  border-width: 1px;
  padding: 8px;
  border-color: #666 !important;
}

.asta-cart-btn {
  position: relative;
}

.asta-cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #e11d2a;
  /* your red */
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/*    RESPONSIVE    */
@media screen and (max-width: 1680px) {

  .h1,
  h1,
  h1 font,
  .h1 span,
  h1 span {
    font-size: 62px !important;
    line-height: 72px !important;
  }

  .p,
  p,
  p font,
  li,
  li font,
  td,
  span,
  div {
    font-size: 16px !important;
    line-height: 22px !important;
  }

  body div:has(> .productBlock) {
    padding-top: 420px !important;
  }

  .exploreASTABlock .exploreASTA .gadgetStyleBody {
    padding-top: 200px !important;
  }

  .WaGadgetOnlineStoreCatalog ul.OnlineStoreCatalog_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1439px) {
  body .vendor-partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
  }

  body .vendor-card {
    width: calc(100% - 0px);
  }
}

@media screen and (max-width: 1200px) {

  .h1,
  h1,
  h1 font,
  .h1 span,
  h1 span {
    font-size: 54px !important;
    line-height: 64px !important;
  }

  .h2,
  h2,
  h2 font,
  .h2 span,
  h2 span {
    font-size: 42px !important;
    line-height: 52px !important;
  }

  .h3,
  h3,
  h3 font,
  .h3 span,
  h3 span {
    font-size: 34px !important;
    line-height: 44px !important;
  }

  .asta-hdr__inner {
    padding: 0 40px;
  }

  .asta-hdr__nav>li>a {
    padding: 0 10px;
    font-size: 12px;
  }

  .asta-ftr__inner {
    padding: 50px 40px 32px;
  }

  body div:has(> .productBlock) {
    padding-top: 350px !important;
  }

  .WaGadgetOnlineStoreCatalog ul.OnlineStoreCatalog_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1199px) {
  .WaLayoutContainer.exploreASTABlock tr.WaLayoutRow td.WaLayoutItem {
    width: 100% !important;
    margin: 0 !important;
  }

  .WaLayoutContainer.exploreASTABlock tr.WaLayoutRow td.WaLayoutSeparator {
    display: none !important;
  }

  .asta-hdr__inner,
  .asta-ftr__inner,
  body .siteContainer {
    width: calc(100% - 60px);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .asta-hdr__inner {
    padding: 0px;
  }

  .homeBannerSection,
  .siteCTABlock,
  .partnersBlock,
  .partnersLogoSlider,
  .homeProductBlock,
  .imageWithContent,
  .secTopHeading,
  .partnersLinkBlock,
  .automotiveTechnology,
  .eventsSection,
  .powerToAdvanc,
  .pageTopBanner,
  .imageWithContent.valuesSection,
  .imageWithContent.ourGoalsSection,
  .headingOnly.industrySucceedSection,
  .ourHistoryBlocks,
  .imageWithContent.memberNetworkSection,
  .memberBenefitsListing,
  .membersFormSection.arrow,
  .eventCalander,
  .WaGadgetFirst.WaGadgetEventsStateDetails,
  .WaGadgetLoginForm.loginForm,
  .pxContainer,
  .pt160Container,
  .membersFormSection,
  .WaLayoutContainerOnly.membershipSignup,
  .signupBtnBlock,
  .sponsorshipBlock,
  .raleighConventionSection,
  .wrap,
  .date-nav-inner,
  .asta-spons-section,
  .buyExpoTicketOptions,
  .Book_Tickets_Options,
  .WaLayoutContainerFirst.raleighConventionSection,
  .headingOnly.ourHistoryheadingInit,
  .WaLayoutContainer.plansListing {
    padding-left: 30px;
    padding-right: 30px;
  }

  .h1,
  h1,
  h1 font,
  .h1 span,
  h1 span {
    font-size: 44px !important;
    line-height: 54px !important;
  }

  .h2,
  h2,
  h2 font,
  .h2 span,
  h2 span {
    font-size: 38px !important;
    line-height: 48px !important;
  }

  .h3,
  h3,
  h3 font,
  .h3 span,
  h3 span {
    font-size: 30px !important;
    line-height: 40px !important;
  }

  .p,
  p,
  p font,
  li,
  li font,
  td,
  span,
  div {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .asta-profile-wrap button.asta-login-btn {
    gap: 5px;
    padding: 8px 10px;
  }

  .asta-hdr__logo img {
    height: 30px;
  }

  .featuredTrainersBlocks .FTBlock {
    width: calc(33.33% - 16px);
  }
}

@media screen and (max-width: 1199px) {
  .WaLayoutContainer.featuredTrainers {
    padding-top: 80px;
  }

  .memberBenefitsListing tr.WaLayoutRow {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
  }

  .memberBenefitsListing tr.WaLayoutRow td.WaLayoutSeparator {
    display: none;
  }

  .memberBenefitsListing tr.WaLayoutRow td.WaLayoutItem {
    min-width: calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
  }
}

@media screen and (max-width: 1024px) {
  .asta-hdr__inner {
    padding: 0px;
  }

  .asta-hdr__nav>li>a {
    padding: 0 8px;
    font-size: 11px;
  }

  .exploreASTABlock .exploreASTA .gadgetStyleBody {
    padding-top: 180px !important;
  }

  .WaLayoutContainer.exploreASTABlock tr.WaLayoutRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 1023px) {
  .asta-hdr__inner {
    padding: 0;
    margin: 0 auto;
  }

  .asta-burger {
    display: flex;
  }

  .asta-hdr__nav {
    display: none;
    position: fixed;
    top: 125px;
    left: 0;
    width: 100%;
    background: #111111;
    flex-direction: column;
    height: auto;
    padding: 8px 0 24px;
    z-index: 99998;
    align-items: flex-start;
  }

  .asta-hdr__nav .has-drop {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .asta-hdr__nav .has-drop .asta-drop-toggle {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 5;
    outline: none;
  }

  .asta-hdr__nav.open {
    display: flex;
  }

  .asta-hdr__nav>li {
    width: 100%;
    height: auto;
  }

  .asta-hdr__nav>li>a {
    height: auto;
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .asta-hdr__nav>li>a::after {
    margin-left: auto;
  }

  .asta-drop {
    position: static !important;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .asta-hdr__nav>li.has-drop.mob-open .asta-drop {
    display: block;
  }

  .asta-drop li a {
    padding-left: 36px;
  }

  .asta-hdr__logo img {
    height: 44px;
  }

  .asta-hdr__nav>li.has-drop>.asta-drop {
    display: none;
    position: static;
    box-shadow: none;
    padding-left: 16px;
  }

  .asta-hdr__nav>li.has-drop.mob-open>.asta-drop {
    display: block;
  }
}

@media screen and (max-width: 991px) {

  .h1,
  h1,
  h1 font,
  .h1 span,
  h1 span {
    font-size: 52px !important;
    line-height: 57px !important;
  }

  .h2,
  h2,
  h2 font,
  .h2 span,
  h2 span {
    font-size: 32px !important;
    line-height: 42px !important;
  }

  .h3,
  h3,
  h3 font,
  .h3 span,
  h3 span {
    font-size: 29px !important;
    line-height: 39px !important;
  }

  body div:has(> .productBlock) {
    padding-top: 300px !important;
  }

  .WaLayoutContainerFirst.homeBannerSection.sectionOverlay tr.WaLayoutRow,
  .WaLayoutContainer.siteCTABlock tr.WaLayoutRow,
  .WaLayoutContainer.homeProductBlock tr.WaLayoutRow,
  .WaLayoutContainer.imageWithContent tr.WaLayoutRow,
  .WaLayoutContainer.automotiveTechnology tr.WaLayoutRow,
  .WaLayoutContainer.eventsSection tr.WaLayoutRow,
  .WaLayoutContainer.powerToAdvanc tr.WaLayoutRow,
  .WaLayoutContainerFirst.bringYourTeam tr.WaLayoutRow,
  .pxContainer.travelInfoWithImg tr.WaLayoutRow,
  .WaLayoutContainer.plansListing tr.WaLayoutRow,
  .WaLayoutContainer.membersFormSection tr.WaLayoutRow,
  .WaGadgetContactProfileStateEventRegistrations .genericListHeaderContainer tr {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .WaLayoutContainer.plansListing tr.WaLayoutRow {
    row-gap: 24px;
  }

  .WaLayoutContainerFirst.homeBannerSection.sectionOverlay tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.siteCTABlock tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.homeProductBlock tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.imageWithContent tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.automotiveTechnology tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.eventsSection tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.powerToAdvanc tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainerFirst.bringYourTeam tr.WaLayoutRow td.WaLayoutItem,
  .pxContainer.travelInfoWithImg tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.plansListing tr.WaLayoutRow td.WaLayoutItem,
  .WaLayoutContainer.membersFormSection tr.WaLayoutRow td.WaLayoutItem,
  .WaGadgetContactProfileStateEventRegistrations .genericListHeaderContainer tr td {
    width: 100% !important;
  }

  .WaLayoutContainerFirst.homeBannerSection.sectionOverlay tr.WaLayoutRow td.WaLayoutItem .WaLayoutPlaceHolder>div,
  .automotiveTechnology .textBlock {
    padding: 0 !important;
  }

  .WaLayoutContainer.membersFormSection .WaGadgetLast.WaGadgetContent.gadgetStyleNone {
    margin: 30px auto;
  }

  .WaLayoutContainerFirst.homeBannerSection.sectionOverlay tr.WaLayoutRow td.WaLayoutItem:first-child .WaLayoutPlaceHolder>div {
    padding: 0 0 30px 0 !important;
  }

  .WaLayoutContainerFirst.homeBannerSection.sectionOverlay tr.WaLayoutRow td.WaLayoutItem:last-child .WaLayoutPlaceHolder>div {
    padding: 0 0 60px 0 !important;
  }

  .WaLayoutContainer.eventsSection tr.WaLayoutRow td.WaLayoutItem .WaLayoutPlaceHolder.placeHolderContainer>div {
    width: 100%;
  }

  .promoSec .promo-container {
    flex-direction: column;
    padding: 40px 0;
  }

  .promoSec .promo-container .promo-images,
  .promoSec .promo-content {
    width: 100%;
    max-width: 100%;
  }

  .automotiveTechnology,
  .imageWithContent.memberNetworkSection,
  .membersFormSection,
  .asta-spons-section,
  .WaLayoutContainerLast.astaExpoSpeakers,
  .pxContainer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .powerToAdvanc .textBlock {
    padding-left: 0;
    padding-top: 40px;
  }

  .eventsSection .eventSingleBlock {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin-bottom: 40px;
  }

  .homeBannerSection table.WaLayoutTable {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .pxContainer.travelInfoWithImg tr.WaLayoutRow td.WaLayoutItem .WaGadgetSlideshow.imgSliderInit,
  .WaLayoutContainerFirst.homeBannerSection.sectionOverlay tr.WaLayoutRow td.WaLayoutItem:last-child .WaLayoutPlaceHolder>div>div {
    margin-bottom: 30px !important;
  }

  .WaLayoutContainer.siteCTABlock tr.WaLayoutRow td.WaLayoutItem h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px !important;
  }

  .rigthCTABlock .gadgetStyleBody {
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .pxContainer.travelInfoWithImg.travelInfoWithImg2 tr td.WaLayoutItem:first-child {
    order: 2;
  }

  .WaLayoutContainer.homeProductBlock {
    padding-top: 160px !important;
    padding-bottom: 110px;
  }

  .WaLayoutContainer.homeProductBlock .WaLayoutPlaceHolder.placeHolderContainer>div {
    padding-top: 60px !important;
  }

  .WaLayoutContainer.imageWithContent tr.WaLayoutRow td.WaLayoutItem:last-child {
    margin-top: 60px;
  }

  .WaLayoutContainerOnly.siteHeader {
    width: 100%;
  }

  .featuredTrainersBlocks .FTBlock {
    width: calc(50% - 12px);
  }

  .promoSec .promo-container .promo-content {
    width: 100%;
    max-width: 100%;
  }

  .promoSec .promo-container .promo-images img.img-overlay {
    width: 280px;
    right: 0;
  }

  #id_7vhEjvC {
    padding-top: 40px;
  }

  .pxContainer.travelInfoWithImg {
    padding-bottom: 0;
  }

  .pxContainer.travelInfoWithImg .textBlock,
  .pxContainer.travelInfoBottomData .textBlock {
    row-gap: 14px;
  }

  section.asta-spons-section.asta-spons-section--light {
    padding-top: 150px;
  }

  .asta-spons-header {
    gap: 20px;
    margin-bottom: 40px;
  }

  .asta-spons-desc {
    max-width: 100%;
    padding-top: 0;
    margin: 0;
  }

  .memberBenefitsListing tr.WaLayoutRow td.WaLayoutItem {
    min-width: calc(100% - 0px) !important;
    max-width: calc(100% - 0px) !important;
  }

  .memberBenefitsListing .WaGadgetOnly {
    background-size: cover !important;
  }

  body .vendor-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body .padding_md {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer .sectionContainer .inner>div {
    width: calc(100% - 0px);
  }

  #FunctionalBlock1_ctl00_ctl00_memberDetailsPanel {
    flex-direction: column;
  }

  .WaGadgetContactProfile .memberDetailsTabsOuterContainer {
    margin: 0 0 45px 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 0 0 50px 0;
    border: none;
    border-bottom: 4px solid #bd102e;
  }

  .formOuterContainer {
    width: 100%;
    max-width: calc(100% - 0px);
  }

  .productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_gallery,
  .productDetail .OnlineStoreProduct_content_container .OnlineStoreProduct_aside {
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }

  .functionalPageContentContainer .inner,
  .generalFieldsContainer .profileMainContainer .inner .sectionOuterContainer,
  .productDetail .OnlineStoreProduct_content_container {
    flex-direction: column;
  }

  .WaGadgetLast.WaGadgetChangePassword .formOuterContainer .formContainer .generalFieldsContainer form {
    width: 100%;
  }

  div#id_DLDgUKr {
    padding-top: 170px;
  }

  #OnlineStoreCart_content_container {
    padding-left: 0;
    padding-right: 0;
  }

}

@media screen and (max-width: 900px) {
  .asta-ftr__inner {
    padding: 40px 30px 28px;
  }

  .asta-ftr__top {
    flex-direction: column;
    gap: 40px;
  }

  .asta-ftr__left {
    max-width: 100%;
  }

  .asta-ftr__right {
    min-width: 100%;
    max-width: 100%;
  }

  .exploreASTABlock .exploreASTA .gadgetStyleBody {
    padding-top: 150px !important;
  }

  .WaGadgetOnlineStoreCatalog ul.OnlineStoreCatalog_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .promoSec .promo-images {
    margin-bottom: 30px;
  }

  /* .promoSec .img-overlay {
    position: static;
    margin-top: 15px;
    width: 80%;
  } */

  .sponsorship {
    grid-template-columns: 1fr;
  }

  .sponsorship__image {
    min-height: 350px;
  }

  .sponsorship__image-placeholder {
    min-height: 350px;
    font-size: 1.5rem;
  }

  .sponsorship__content {
    padding: 40px 30px;
  }

  .sponsorship__title {
    font-size: 2rem;
  }

  .asta-spons-tier-list {
    column-count: 1;
  }

  .expo-tickets-header-wrap {
    padding-top: 80px;
  }

  .expo-tickets-title {
    font-size: 38px !important;
  }

  .expo-tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exhib-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 100px 24px 70px;
  }

  .exhib-hero__inner {
    text-align: center;
  }

  .exhib-hero__rule {
    margin-left: auto;
    margin-right: auto;
  }

  .exhib-hero__title {
    font-size: 44px !important;
  }

  .exhib-hero__image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .exhib-section__title {
    font-size: 32px !important;
  }

  .exhib-pricing {
    grid-template-columns: 1fr;
  }

  .exhib-section {
    padding: 70px 20px;
  }

  .pxContainer.travelInfoWithImg {
    padding-bottom: 0;
  }
}

/* @media screen and (max-width: 820px) {
  .asta-hdr__inner {
    padding: 0 20px;
  }

  .asta-burger {
    display: flex;
  }

  .asta-hdr__nav {
    display: none;
    position: fixed;
    top: 125px;
    left: 0;
    width: 100%;
    background: #111111;
    flex-direction: column;
    height: auto;
    padding: 8px 0 24px;
    z-index: 99998;
    align-items: flex-start;
  }

  .asta-hdr__nav .has-drop {
    display: flex;
    flex-direction: column;
  }

  .asta-hdr__nav.open {
    display: flex;
  }

  .asta-hdr__nav>li {
    width: 100%;
    height: auto;
  }

  .asta-hdr__nav>li>a {
    height: auto;
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .asta-hdr__nav>li>a::after {
    margin-left: auto;
  }

  .asta-drop {
    position: static !important;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .asta-hdr__nav>li.has-drop.mob-open .asta-drop {
    display: block;
  }

  .asta-drop li a {
    padding-left: 36px;
  }
} */

@media screen and (max-width: 767px) {

  .h1,
  h1,
  h1 font,
  .h1 span,
  h1 span {
    font-size: 35px !important;
    line-height: 45px !important;
  }

  .h2,
  h2,
  h2 font,
  .h2 span,
  h2 span {
    font-size: 27px !important;
    line-height: 37px !important;
  }

  .h3,
  h3,
  h3 font,
  .h3 span,
  h3 span {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  body div:has(> .productBlock) {
    padding-top: 280px !important;
  }

  .topbar {
    padding: 12px 18px;
    gap: 14px;
    overflow-x: auto;
  }

  .topbar nav {
    display: none;
  }

  .date-nav-inner {
    padding: 0 18px;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .date-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .date-tab {
    margin-right: 24px;
    padding: 14px 0;
    flex-shrink: 0;
  }

  .date-tab .num,
  .date-tab .num span {
    font-size: 34px !important;
  }

  .date-tab .day {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .wrap {
    padding: 0 18px;
  }

  .day-section {
    scroll-margin-top: 76px;
    padding-top: 36px;
  }

  .day-section+.day-section {
    padding-top: 48px;
  }

  .day-heading .big-num {
    font-size: 46px !important;
  }

  .day-heading .big-day {
    font-size: 16px;
  }

  .row {
    grid-template-columns: 1fr 24px;
    gap: 6px 12px;
    padding: 16px 0;
  }

  .row .time {
    grid-column: 1 / -1;
    padding-top: 0;
    margin-bottom: 4px;
    font-size: 14px;
  }

  .row .body {
    grid-column: 1 / 2;
  }

  .expoBanner .expoBanner {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .expoBanner .content {
    padding: 22px 22px 90px;
  }

  .expoBanner .logo {
    right: 14px;
    bottom: 14px;
    width: 84px;
  }

  .asta-spons-section {
    padding: 46px 18px;
  }

  .asta-spons-header {
    gap: 18px;
    margin-bottom: 24px;
  }

  .asta-spons-desc {
    padding-top: 6px;
    font-size: 13px;
  }

  .asta-spons-tier {
    padding: 22px 20px 20px;
  }

  .asta-spons-tier-name {
    font-size: 22px;
  }

  .asta-spons-tier-price {
    font-size: 22px;
  }

  .asta-spons-tier-desc {
    max-width: 100%;
    font-size: 13px;
  }

  .asta-spons-acts {
    grid-template-columns: 1fr;
  }

  .asta-spons-act {
    padding: 22px 20px;
  }

  .asta-ftr__inner {
    padding: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .WaLayoutContainer.exploreASTABlock tr.WaLayoutRow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .partnersLogoSlider .arrow {
    width: 60px;
  }

  .slideNav {
    width: 14px;
  }

  .partnersLogoSlider {
    padding: 60px 0;
  }

  .automotiveTechnology .bottomBoxes .box {
    min-width: 153px;
  }

  .WaLayoutContainer.featuredTrainers,
  .pxContainer {
    padding-top: 60px;
  }

  .featuredTrainers,
  .faqHeadingBlock,
  .pxContainer {
    padding-bottom: 60px;
  }

  .headingOnly,
  .raleighConventionSection,
  .WaLayoutContainerLast.astaExpoSpeakers {
    padding: 40px 0;
  }

  .promoSec .promo-container {
    gap: 30px;
  }

  body.LayoutMain .WaGadgetLoginForm {
    display: flex !important;
  }

  .pxContainer.travelInfoTopContent .gadgetStyleBody.gadgetContentEditableArea p,
  .pxContainer.travelInfoWithImg .textBlock p,
  .pxContainer.travelInfoBottomData .textBlock p,
  .WaLayoutContainerLast.astaExpoSpeakers .gadgetStyleBody.gadgetContentEditableArea p,
  .WaLayoutContainerFirst.bringYourTeam .promo-content p {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .pxContainer.travelInfoWithImg {
    padding-bottom: 0;
  }

  body .vendor-partners__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 600px) {

  .asta-top-bar__text {
    font-size: 12px !important;
  }

  .asta-ftr__nl-form {
    flex-direction: column;
  }

  .asta-ftr__nl-input {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
  }

  .asta-ftr__nl-btn {
    width: 100%;
    text-align: center;
  }

  .asta-ftr__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .asta-ftr__address {
    text-align: left;
  }

  .WaGadgetOnlineStoreCatalog ul.OnlineStoreCatalog_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .faq {
    padding: 24px 18px;
  }

  .faq__category {
    font-size: 1.4rem;
  }

  .accordion__toggle {
    font-size: 0.98rem;
    padding: 16px 18px;
  }

  .prose {
    padding: 4px 18px 18px 18px;
    font-size: 0.95rem;
  }

  .sponsorship__content {
    padding: 30px 22px;
  }

  .sponsorship__title {
    font-size: 1.6rem;
  }

  .sponsorship__list li {
    font-size: 0.92rem;
  }

  .asta-top-bar {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 16px;
    gap: 10px;
  }

  .buyExpoTicketOptions .WaLayoutItem .expo-ticket-card,
  .Book_Tickets_Options table.WaLayoutTable:has(td:first-child[style*="display: none"]) td:last-child .expo-ticket-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .WaLayoutContainerFirst.homeBannerSection.sectionOverlay tr.WaLayoutRow td.WaLayoutItem:last-child .WaLayoutPlaceHolder>div {
    padding: 0 0 0px 0 !important;
  }

  .featuredTrainersBlocks .FTBlock {
    width: calc(100% - 0px);
  }

  .promoSec .promo-container .promo-images {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }

  .promoSec .promo-container .promo-images img.img-main,
  .promoSec .promo-container .promo-images img.img-overlay {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  /* .pxContainer.travelInfoTopContent .gadgetStyleBody.gadgetContentEditableArea p,
  .pxContainer.travelInfoWithImg .textBlock p,
  .pxContainer.travelInfoBottomData .textBlock p {
    font-size: 14px !important;
    line-height: 24px !important;
  } */

  .pxContainer.travelInfoWithImg {
    padding-bottom: 0;
  }

  .pageTopBanner .siteContainer .bannercontent p,
  .headingOnly.industrySucceedSection .textBlock,
  .headingOnly.industrySucceedSection .textBlock,
  .headingOnly.industrySucceedSection .btnBlock,
  .headingOnly.ourHistoryheadingInit .textBlock {
    width: 100%;
    max-width: 100%;
  }

}

@media screen and (max-width: 500px) {
  .expo-tickets-title {
    font-size: 30px !important;
  }

  .expo-tickets-subtitle {
    font-size: 13px !important;
    letter-spacing: 1.5px;
  }

  .expo-ticket-card {
    padding: 28px 22px;
  }

  .expo-ticket-name {
    font-size: 22px !important;
  }

  .expo-tickets-grid {
    grid-template-columns: 1fr;
  }

  .exhib-hero {
    padding: 80px 20px 60px;
  }

  .exhib-hero__title {
    font-size: 34px !important;
  }

  .exhib-hero__tagline {
    font-size: 15px !important;
  }

  .exhib-section__title {
    font-size: 26px !important;
  }

  .exhib-price-card {
    padding: 30px 22px;
  }

  .exhib-price-card__amount {
    font-size: 36px !important;
  }

  .pxContainer.travelInfoWithImg {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 420px) {
  .expoBanner .content {
    padding: 18px 18px 90px;
  }

  .expoBanner .title {
    font-size: 30px;
  }

  .automotiveTechnology .bottomBoxes .box {
    min-width: 140px;
  }
}

@media screen and (max-width: 380px) {

  .date-tab .num,
  .date-tab .num span {
    font-size: 28px !important;
  }

  .date-tab {
    margin-right: 18px;
  }
}

/*    RESPONSIVE    */