@font-face {
  font-family: "AcuminPro-ExtraCondensed-Semibold";
  src: url("//shop.watchgang.com/cdn/shop/files/AcuminPro-ExtraCondensed-Semibold.otf?v=3095769652240820336") format("opentype");
}


.ptb5 {padding-top:5px;padding-bottom:5px;}
.ptb10 {padding-top:10px;padding-bottom:10px;}
.ptb20 {padding-top:20px;padding-bottom:20px;}
.ptb30 {padding-top:30px;padding-bottom:30px;}

.mt5 {margin-top:5px;}
.mt10 {margin-top:10px;}
.mt20 {margin-top:20px;}
.mt30 {margin-top:30px;}
.mt40 {margin-top:40px;}
.mt50 {margin-top:50px;}

.mb5 {margin-bottom:5px;}
.mb10 {margin-bottom:10px;}
.mb20 {margin-bottom:20px;}
.mb30 {margin-bottom:30px;}
.mb40 {margin-bottom:40px;}
.mb50 {margin-bottom:50px;}


.wg_white.SidebarMenu{
  background:#FFF;
  color: var(--heading-color);
}

.wg_white.SidebarMenu .Heading,
.wg_white .supports-hover .SidebarMenu .Link--primary {
  letter-spacing: 0;
  font-family: "AcuminPro-ExtraCondensed-Semibold";
  font-size: 28px;
  color: var(--heading-color);
}

.wg_white.SidebarMenu .Heading,
.supports-hover .wg_white.SidebarMenu .Link--primary:hover {
  color: var(--heading-color);
}

.wg_white.SidebarMenu .Collapsible,
.wg_white.SidebarMenu .Linklist {
  border-color: var(--border-color);
}

.wg_white .Collapsible__Button {
  padding: 10px 0;
}

.wg_white .Collapsible__Plus {
  color: var(--heading-color);
}

.wg_white .Collapsible .Collapsible .Collapsible__Button {
  padding: 8px 0;
  font-family: "Lato";
  font-size: 15px;
  text-transform: capitalize;
  color: var(--text-color-light);
}

.wg_white.SidebarMenu .Text--subdued {
  color: var(--text-color-light);
}

.wg_white.Drawer--fromLeft .Drawer__Container {
  padding-left: 30px;
  padding-right: 30px;
}

.wg_white.SidebarMenu .Drawer__Content::before,
.wg_white.SidebarMenu .Drawer__Footer::before {
  background-image:none;
}

.wg_white.SidebarMenu .Drawer__Footer {
  color: var(--text-color-light);
}

.wg_white.SidebarMenu .Drawer__Main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.wg_white.SidebarMenu .Drawer__Main::after {
  display:none;
}


/* ------------------------------ */
/* inpage-nav */
/* ------------------------------ */

@media (min-width: 642px) {
  .m_only {
    display: none;
  }
}

.nav-position {
  margin-bottom: 40px;
}

.nav-container {
  position: relative;
  display: flex;
  justify-content: left;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  scrollbar-width: none;
}

.nav-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: lightgrey;
  z-index: 0;
}

.nav-link {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  color: var(--text-color-light);
  padding: 10px 20px;
  position: relative;
}

.nav-link:last-child {
  margin-right: 0;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--heading-color);
}

.nav-link.active {
  border-bottom: 3px solid var(--heading-color);
  /*font-weight:600;*/
  color: var(--heading-color);
}

.nav-mobile-toggle {
  display: none;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  z-index: 9;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  border-bottom: 0px solid var(--border-color);
}
/*
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .nav-mobile-toggle {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 1);
  }
}
*/
.nav-active-link {
  display: inline-block;
  text-transform: capitalize;
  font-size: 15px;
}

.nav-section-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--heading-color);
  text-transform: uppercase;
}

.nav-pipe {
  font-size: 20px;
  font-weight: 100;
  color: var(--text-color);
  padding: 0 10px;
}

.nav-arrow {
  display: inline-block;
  margin-left: auto;
  transition: transform 0.3s;
}

.nav-arrow.open {
  transform: rotate(180deg);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-mobile-overlay.open {
  background: rgba(0, 0, 0, 0.5);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  overflow: hidden;
  padding: 10px 20px;
  transition: max-height 0.3s ease-in-out; /* Add this line */
}

.nav-mobile-menu.open {
  max-height: 100%;
  overflow: scroll;
}

.nav-mobile-menu .nav-link {
  display: block;
  padding: 14px 20px;
  border-bottom: 0;
  margin-right: 0;
  opacity: 0;
  transform: translateY(-10px);
  margin: 0;
  transition: opacity 0.3s, transform 0.3s; /* Add this line */
  border-bottom: 1px solid #f2f2f2;
}

.nav-mobile-menu.open .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-menu.open .nav-link:nth-child(1) {
  transition-delay: 0s;
}

.nav-mobile-menu.open .nav-link:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-mobile-menu.open .nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.nav-mobile-menu.open .nav-link:nth-child(4) {
  transition-delay: 0.3s;
}

.nav-mobile-menu.open .nav-link:nth-child(5) {
  transition-delay: 0.4s;
}

.nav-mobile-menu.open .nav-link:nth-child(6) {
  transition-delay: 0.5s;
}

.nav-mobile-menu .nav-link:last-child {
  border-bottom: none;
}

.nav-wrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 641px) {

  .d_only {
    display: none;
  }

  .nav-container {
    border-bottom: 1px solid var(--border-color);
    /*box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);*/
    flex-direction: column;
  }

  .nav-link {
    font-size: 15px;
    color: var(--text-color-light);
    letter-spacing: 0em;
  }

  .nav-link.active {
    border-left: 0px solid var(--heading-color);
    color: var(--text-color-light);
  }
  #main {
    /*margin-top: 60px;*/
  }

  .nav-position {
    position: fixed;
    width: 100%;
    top: var(--combined-height);
    left: 0;
    margin-bottom:0;
    z-index: 8;
  }

  .nav-wrapper {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    z-index: 9;
  }

  .nav-mobile-menu {
    max-height:0;
  }

  .nav-mobile-overlay {
    max-height:100%;
  }

  .nav-mobile-menu,
  .nav-mobile-overlay {
    height:0px;
    display: block;
    opacity:0;
    transition: opacity 0.3s;
  }

  .nav-mobile-menu.open,
  .nav-mobile-overlay.open {
    z-index: 8;
    opacity:1;
    transition: opacity 0.3s;
    height:100%;
  }

  .nav-mobile-menu.open {
    max-height:100%;
    position: initial;
  }

  .nav-mobile-overlay.open {
    top: calc(var(--combined-height) - 1px);
  }

  .nav-position.fixed {
    position: fixed;
    top: var(--combined-height);
    z-index: 8;
  }

  .nav-mobile-overlay.fixed,
  .nav-mobile-menu.fixed {
    top: calc(var(--combined-height) - 1px);
    opacity:0;
  }

  .nav-mobile-overlay.open.fixed,
  .nav-mobile-menu.open.fixed {
    top: calc(var(--combined-height) - 1px);
    opacity:1;
    transition: opacity 0.3s;
    z-index: 0;
  }
}




/* ------------------------------ */
/* Bottom Avatar & Member Preview */
/* ------------------------------ */


.bottom_menu {
  text-align: center;
  padding: 30px 20px;
}

.white_card {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background: white;
  /*-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,.05);
  box-shadow: 0 5px 5px #0000000d;*/
  padding-top: 40px;
}

.avatar_container {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid white;
  object-fit: cover;
}

.avatar_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgb(56 56 61);
  background: linear-gradient(340deg, #232627 0%, #595d62 100%);
  /*background-color: var(--heading-color);*/
  color: white;
  font-size: 30px;
  font-weight: bold;
  border: 5px solid white;
  box-shadow: 0px 3px 16px 0px rgb(0 0 0 / 15%);
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 40px;
  height: 40px;
}

.full_name {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: bold;
  color: var(--heading-color);
  margin: 0;
}

.email {
  font-size: 14px;
  /*font-weight: bold;*/
  color: var(--heading-color);
  margin: 0px auto 10px;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.membership_status {
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 100px;
}

.membership_status.active {
  color: #FFF;
  background-color: var(--accent-color);
}

.membership_status.inactive {
  color: #787878;
  background-color: #f8f8f8;
}

.fa-link-simple {
  margin-left: 10px;
  vertical-align: middle;
}

.separator {
  border: none;
  border-top: 1px solid #e5e5e5;
  width: 150px;
  max-width: 100%;
  margin: 20px auto;
}

.nav_link {
  display: block;
  color: #787878;
  text-decoration: none;
  line-height: 1.75em;
}

.login_signup_button {
  display: inline-block;
  background-color: black;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.login_signup_button:hover {
  background-color: #333;
}


/* --------------------- */
/* section-header.liquid */
/* --------------------- */
/*
  .title {
    font-family: 'AcuminPro-ExtraCondensed-Semibold';
    text-transform: uppercase;
    font-size: 60px;
    line-height: 55px;
    color: var(--heading-color);
  }
*/
  .title {
    letter-spacing: -1.5px;
    font-size: 50px;
    font-weight: 900;
    color: var(--heading-color);
    line-height: normal;
    padding-bottom: 10px;
  }

  .subtitle {
    font-size: 14px;
    font-weight: bold;
    color: var(--product-star-rating);
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 1px;
  }

  .subheading {
    font-size: 16px;
    color: var(--text-color);
    line-height: 24px;
  }

  .center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }


/* ----------------- */
/* text-image.liquid */
/* ----------------- */


#text-image.container {
  position: relative;
  display: flex;
  align-items: center;
  margin: auto;
  padding-left: 60px;
  padding-right: 60px;
  gap: 60px;
}

#text-image.container[data-content-order="text_then_image"] {
  flex-direction: row;
}

#text-image.container[data-content-order="image_then_text"] {
  flex-direction: row-reverse;
}

#text-image .content {
  flex: 1.25 1;
}

#text-image .img-container {
  flex: 1 1;
}

#text-image .img-container img {
    width: 100%;
}

/*
#text-image .header {
  margin-bottom: 30px;
  font-family: 'AcuminPro-ExtraCondensed-Semibold';
  color: var(--heading-color);
  font-size: 40px;
  line-height: 44px;
  text-align: left;
  text-transform: uppercase;
}

#text-image .header.bar {
  padding-left: 20px;
  padding-top: 10px;
  border-left: 5px solid var(--product-star-rating);
}
*/

#text-image .header {
  margin-bottom: 30px;
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 32px;
  text-align: left;
}

#text-image .header.bar {
  padding-left: 20px;
  border-left: 5px solid var(--product-star-rating);
}

#text-image .PlaceholderBackground {
  background-color: #eee;
}

  @media screen and (max-width: 767px) {

  #text-image.container {
    margin: auto;
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
    text-align:center;
  }

  #text-image.container[data-content-order="image_then_text"],
  #text-image.container[data-content-order="text_then_image"] {
    flex-direction: column;
  }
/*
  #text-image .header {
    margin-bottom: 10px;
    font-size: 44px;
    line-height: 40px;
    text-align: center;
  }
*/
  #text-image .header {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 32px;
    text-align: center;
  }

  #text-image .header.bar {
    padding-left: 0px;
    border-left: 0;
  }
  #text-image .img-container img {
    min-width: 300px;
    width: 100%;
  }
}


/* -------------------------- */
/* information-support.liquid */
/* -------------------------- */


.info-card .info-text a {
text-decoration: underline;
color: #000;
}
.info-card {
    display: flex;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: 5px;
    padding: 30px 0px;
  }

  .info-column {
    flex: 1;
    padding-left: 30px;
    padding-right: 20px;
    border-left: 1px solid var(--border-color);
  }

  .info-column:first-child {
    border-left: none;
  }

  .info-content i {
    vertical-align: -1px;
  }
  .info-content {
    display: inline-block;
    width: 80%;
    padding-left: 20px;
    align-items: center;
  }

  .info-icon {
    float: left;
    font-size: 24px;
    width: 30px;
  }

  .info-text {
    line-height: 20px;
    margin: 0;
    color: var(--text-color);
  }

  .info-learn-more {
    color: var(--heading-color);
    font-weight: bold;
    margin: 4px 0px 0px 0px;
  }

  .info-arrow {
    display: none;
  }

@media only screen and (max-width: 900px) {
  .info-card {
    flex-direction: column;
    padding: 0px;
  }

  .info-column {
    position: relative;
    border-bottom: 1px solid var(--border-color);
    border-left: none;
    padding: 20px;
  }

  .info-column:last-child {
    border-bottom: none;
  }

  .info-learn-more {
    display: none;
  }

  .info-icon {
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .info-arrow {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--heading-color);
  }

  .info-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 60px;
    margin-right: 40px
  }
}


/* ------------------ */
/* card-slider.liquid */
/* ------------------ */


  .card_slider_container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: left;
	margin: 0px auto 20px auto;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
    position: relative;
  }

  .card_slider_container .image-box {
	flex: 1 1;
	scroll-snap-align: start;
	position: relative;
	max-width: 300px;
  }

  .card_slider_container .image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

  .CardSlider__Cell {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
  }

  .placeholders {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .image-box.placeholder {
    background-color: var(--light-background);
    /* Add your desired width and height for the placeholder here */
    width: 300px;
    height: 300px;
  }

  .placeholder-content {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 641px) {
	.card_slider_container {
	  padding: 0px 20px;
	  flex-wrap: nowrap;
	}

	.card_slider_container .image-box {
	  flex: 0 0 90%;
	  max-width: 380px;
	}

    .image-box.one_mobile {
	  flex: 1 1;
	  max-width: 100%;
	}

    .placeholders {
      display:none;
    }
  }
