/** Shopify CDN: Minification failed

Line 404:27 Expected ")" to end URL token
Line 1726:27 Expected ")" to end URL token

**/

/* HFS Buttons */

:root {
 --shimmer-hue-1: 2deg;
    --shimmer-sat-1: 63.2%;
    --shimmer-lit-1: 50.98%;
    --shimmer-hue-2: 1.9deg;
    --shimmer-sat-2: 84.95%;
    --shimmer-lit-2: 36.47%;
    --shimmer-hue-3: 2.09deg;
    --shimmer-sat-3: 78%;
    --shimmer-lit-3: 22.55%;
    --glow-hue: #f5645f;
    --shadow-hue: #f5645f;
    
    --glow-hue: 222deg;
    --shadow-hue: 180deg;
    --spring-easing: linear(
    0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
    1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
    1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
    0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
    0.998 84%, 1
  );
    --spring-duration: 1.33s;
}
@property --mask {
    syntax: "<angle>";
    inherits: false;
    initial-value: 33deg;
}

@keyframes spin {
    0% {
        --mask: 0deg;
    }
    100% {
        --mask: 360deg;
    }
}

@keyframes wipe {
    0% {
        mask-position: 200% center;
    }
    100% {
        mask-position: 0% center;
    }
}

@keyframes pulse {
    0%, 90%, 100% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
}

@keyframes pulse2 {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    14% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes flicker {
  0% { opacity:0.1; mask-image:none;}
  1% { opacity:1; }
  2% { opacity:0.5; }
  3% { opacity:0.1; }
  4% { opacity:0.7; }
  5% { opacity:1; }
  7% { opacity:0.7; 
    mask-image: linear-gradient(
        90deg, transparent 15%, black 45%, black 55%, transparent 85%
    ); }
  8% { opacity:0.1; }
  10% { opacity:0.4; }
  13% { opacity:1; }
  15% { opacity:0.1;  
    mask-image: linear-gradient(
        45deg, rgba(0,0,0,0.4) 25%, transparent 45%, black 65%, black 90%, transparent 100%
    );}
  17% { opacity:0.8;}
  19% { opacity:0.3; }
  21.5% { opacity:0; }
  23% { opacity:1; }
  39% { opacity:0.7; }
  45% { opacity:0.2; }
  49% { opacity:0.9; }
  52% { opacity:0.7;}
  53.5% { opacity:0.2;  
    mask-image: linear-gradient(
        90deg, black 15%, black 45%, rgba(0,0,0,0.4) 75%, transparent 85%
    );}
  57% { opacity:0.8; }
  63% { opacity:1; }
  75% { opacity:.85; }
  77% { opacity:1; }
  80% { opacity:.9; }
  82% { opacity:.95; }
  83% { opacity:.85; }
  86% { opacity:1; }
  89% { opacity:.85; }
  91% { opacity:1; }
  92% { opacity:.9; }
  100% { opacity:1; }
}

@keyframes shine {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    55% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes text {
    0% {
        background-position: 100% center;
    }    
    100% {
        background-position: -100% center;
    }    
}

.hfs-button {
    background:#bb0008;
    font-weight: 600;
    font-size: 1.2em;
    position: relative;
    isolation: isolate;
    border: none;
    outline: none;
    transition: all var(--spring-duration) var(--spring-easing);
    border: 2px solid var(--gray-dark);
    color:#FFF;
}

.hfs-button {
    background:#bb0008;
}

.shimmer {
    position: absolute;
    inset: -40px;
    border-radius: inherit;
    mix-blend-mode: color-dodge;
    mix-blend-mode: plus-lighter;
    pointer-events: none;
}

.shimmer::before,
.shimmer::after {
    transition: all 0.5s ease;
    opacity: 0;
    content: "";
    border-radius: inherit;
    position: absolute;
    inset: 40px;
}
.shimmer::before {
    box-shadow: 0 0 3px 2px hsl(var(--shimmer-hue-1) 20% 95%),
        0 0 7px 4px hsl(var(--shimmer-hue-1) 20% 80%),
        0 0 13px 8px hsl(var(--shimmer-hue-2) 40% 60%),
        0 0 22px 6px hsl(var(--shimmer-hue-2) 20% 40%);
    z-index: -1;
}
.shimmer::after {
    box-shadow: inset 0 0 0 1px hsl(var(--shimmer-hue-2) 70% 95%),
        inset 0 0 3px 1px hsl(var(--shimmer-hue-2) 100% 80%),
        inset 0 0 9px 1px hsl(var(--shimmer-hue-2) 100% 70%);
    z-index: 2;
}


button:not([disabled]) .shimmer::before,
button:not([disabled]) .shimmer::after {
    opacity: 1;
}
button:not([disabled]) .shimmer {
    mask-image: conic-gradient(
        from var(--mask, 0deg),
        transparent 0%,
        transparent 10%,
        black 36%,
        black 45%,
        transparent 50%,
        transparent 60%,
        black 85%,
        black 95%,
        transparent 100%
    );
    mask-size: cover;
    animation: spin 3s linear infinite both -0.5s;
}
button:not([disabled])[data-effect=wipe] .shimmer {
    mask-image: linear-gradient(
        90deg, transparent 20%, black 88%, transparent 90%
    );
    mask-size: 200% 200%;
    mask-position: center;
    animation: wipe 1.5s linear infinite both -0.5s;
}

button:not([disabled])[data-effect=wave] .shimmer {
    mask-image: linear-gradient(
        90deg, transparent 15%, black 45%, black 55%, transparent 85%
    );
    mask-size: 200% 200%;
    mask-position: center;
    animation: wipe 3s linear infinite both -0.5s;
}
button:not([disabled])[data-effect=throb] .shimmer {
    mask-image: none;
    animation: pulse 3s ease infinite both  -0.5s;
}
button:not([disabled])[data-effect=pulse] .shimmer {
    mask-image: none;
    animation: pulse2 3s ease infinite both  -0.5s;
}
button:not([disabled])[data-effect=flicker] .shimmer {
    mask-image: none;
    animation: flicker 3.33s ease infinite both  -0.5s;
}




/* Old Site Code */



.product-tabs__nav-link {
	font-weight: 700;
}

.btn--add-to-cart {
  background: var(--theme-color);
}


/* Stick Stuff */

  .meter-container {
        padding:15px;
  }
  
.athlete-type {
    padding:5px 0px;
}


.meter-power, .meter-precision, .meter-carbon {
  position:relative;
  width: 89%;
  height: 10px;
  background:#eee;
  border-radius: 30px;
  color: #696969;
  float:right;
  border: 1px solid #000;
  box-shadow: 0 3px 15px #444 inset, 0 0 0 #444;
  margin-top:5px;
}

.meter-power > span, .meter-precision > span, .meter-carbon > span {
  width:96%;
  display: block;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background:#d63b26;
  position: relative;
  overflow: hidden;
  
  &::after {
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, #fff 0%, #fff 99%);
    border-radius: 3px;
    animation: animate-shine 2s ease-out infinite;
  }
}
  
.progress-bar__container {
    position: relative;
    background: #4a4a4a;
    height: 40px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 3px 15px #000 inset, 0 0 0 #444;
    border-radius: 5px;
    overflow: hidden;
}


  .meter-precision-label, .meter-power-label, .power-meter-block {
      display:inline;
      font-weight: 900;
      text-transform:uppercase;
      padding-right: 10px;
  }
  

@keyframes animate-shine {
  0% {
    opacity: 0;
    width: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 0;
    width: 95%;
  }
}

.bar-step {
  position: absolute;
  margin-top: 10px;
  z-index: 1;
  font-size: 12px;
}

.label-percent {
    float: left;
    color: #fff;
    margin-left: -20px;
    padding-right:5px;
}

.label-line {
    float: left;
    background: #fff;
    height: 20px;
    width: 2px;
}
  
.meter-precision > span {
  width:85%;
  background:#d63b26;
  background: linear-gradient(to bottom, #fc8070 0%, #d63b24 100%);
}

.meter-carbon > span {
  width:100%;
  border-radius: 5px;
  background:#b5b5b5;
  background: linear-gradient(to bottom, #ff8f00 0%, #db7b00 99%);
  background-image: -webkit-repeating-linear-gradient(left, hsla(0, 30%, 30%, 0) 0%, hsla(0,0%,100%,0)   6%, hsla(0,0%,100%, .1) 7.5%),
    -webkit-repeating-linear-gradient(left, hsla(0,0%,  0%,0) 0%, hsla(0,0%,  0%,0)   4%, hsla(0,0%,  0%,.03) 4.5%),
    -webkit-repeating-linear-gradient(left, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0) 1.2%, hsla(0,0%,100%,.15) 2.2%),
    
    linear-gradient(180deg, hsl(0,0%,78%)  0%, 
    hsl(0,0%,90%) 47%, 
    hsl(0,0%,78%) 53%,
    hsl(0,0%,70%)100%);
}

.athlete-type {
  span {
      font-style:italic;
  }
}
  
.touch-compound {
  padding: 15px;
  background: #e32028;
  color: #383838;
  border-radius: 5px;
  background-image: url({{ "stripes-black.png" | asset_url }}), linear-gradient(#e7e7e7, #e7e7e7); /* W3C */
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 35px;
  font-size: 14px;
  span {
      font-size: 16px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:900;
    color:black;
  }
}


.label-percent {
	 float: left;
	 color: #fff;
	 margin-left: -30px;
	 padding-right: 5px;
}
/* Bow Graph Widget */
 .bow-graph {
	 padding-top: 15px;
}
 .graph-stick {
	 padding: 20px;
}

 .triangle-container {
	 height: auto;
	 width: 230px;
	 text-align: center;
}
 .triangle-container a {
	 float: left;
}
 .bow-title {
	 color: #000;
	 font-weight: 900;
}
 .bow-description {
	 font-weight: 900;
	 padding-bottom: 20px;
	 padding: 0px;
	 margin: 0px;
}
 .arrow-down {
	 display: inline-block;
	 margin-left: auto;
	 margin-right: auto;
	 width: 0;
	 height: 0;
	 border-left: 25px solid transparent;
	 border-right: 25px solid transparent;
	 border-top: 25px solid #000;
	 margin-left: 5px;
	 font-weight: 600;
	 color: #000;
}
/* .arrow-down > span{
	 margin-left:-10px;
}
 */
 .btn-df > .arrow-down {
	 border-top: 25px solid red;
}
 .arrow-down:hover {
	 border-top: 25px solid #a62924 !important;
}
 .label-container {
	 position: absolute;
	 right: 0;
}
 .bow-link {
	 display: block;
	 color: #000;
	 font-weight: 600;
}
 .bow-link:hover {
	 text-decoration: none;
	 color: red;
}
 .bow-link.selected {
	 color: #a62924;
}
/*
 .graph-images {
   min-height: 163px;
}
   */
 .arrow-btn span {
	 font-weight: 900;
}
 .product-single__description {
	 padding-top: 50px;
}
 @media only screen and (max-width: 600px) {

	 .triangle-container {
		 top: 20px;
	}
}

 /* Power Meter */
  
  .meter-precision-container {
    display:flex;
  }
  

.sizing-button {
    border: 1px solid #ebedee;
    border-left: none;
    margin-bottom: -1px;
    font-feature-settings: "frac";
    height: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    line-height: 1em;
    cursor: pointer;
    letter-spacing: -.2px;
    font-size: 13px;
    width: 25%;
}

.runs-large, .runs-small, .runs-true {
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;
    background: #000;
    padding: 15px;
    margin-bottom: 15px;
    color: white;
    display: inline-block;
    width:100%;
    margin-top:10px;
}


.bow-navigation {
  margin-top: -20px;
}

.bow-titles {
  display:inline-block;
}

.bow-description {
  font-weight: 900;
  font-size:25px;
  text-transform:uppercase;
  color:#000;
}


/* End Power Meter Tabs */

/* Stick Features */

.video-tab-header{
    background: #1a1a1a;
    display: flex;
    align-items: stretch;
    color: #fff;
    transition: background 0.1s ease-out;
    border-radius: var(--card-radius);
    border: 2px solid #6c6c6c;
    margin-top: 1rem;
}

.video-tab-header .video-tabs {
  background:none;
  color:#fff
}

.video-tab-body {
  color: #cf3732;
  font-weight: 600;
  margin-top: .5rem;
  text-align:center;
  font-size: 1.1rem;
}
  
.tabs {
  position: relative;
  width: 100%;
  padding:1rem 0rem;
}

  
.tabs .tab-header, .video-tab-header .video-tabs {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    font-weight: 600;
    font-style: normal;
    letter-spacing: normal;
    color:black;
    font-size:1.2rem;
}

 /*
.video-tab-header .video-tabs {
  background-color:#f8f8f8; 
}

*/

.tabs .tab-header {
  font-weight: 600;
}

.video-tab-header .video-tabs{
  height: 100%;
   border:none;
}

.tabs .video-tab-header {
  margin-top:0.4rem;
}

.tabs .tab-header > div, .video-tab-header .video-tabs > div {
    width:100%;
    text-align: center;
    cursor: pointer;
    border-radius: var(--card-radius);
    font-weight: 800;
    text-transform: uppercase;
    font-size:0.8rem;
    line-height:0.8rem;
    color:#fff;
}

.video-tabs > div {
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  /*
  border-style: solid;
   border-color: #e2e8f0; */
  font-size:1rem;
  line-height:1rem;
  box-sizing:border-box;
  padding: 1rem;
  transition:all 500ms;
}


/*

.video-tabs > div:hover{
  color: #cf3732;
}

.tabs .tab-header > div.active, .video-tab-header .video-tabs > div.video-active {
    color: #cf3732;
}


.video-tab-header .video-tabs > div.video-active {
  border-bottom: solid 2px #cf3732;
}
      */

.video-tab-header .video-tabs > div.video-active {
  /*
  background: linear-gradient(0deg, rgba(204, 11, 0, 1) 0%, rgba(219, 58, 48, 1) 98%);
  border: 2px solid #800800;
  color:#fff;
  border-radius: var(--card-radius);
  box-shadow:0 1px 0px 0 rgba(0,0,0,.1),0 0px 2px 0 rgba(0,0,0,.6);
  */
}

.video-tab-header .video-tabs > div.video-active:hover {
  background: linear-gradient(0deg, rgba(143, 26, 19, 1) 0%, rgba(183, 58, 40, 1) 100%%);
}


.video-tab-header .video-tabs > div.video-active:active {
  background: linear-gradient(0deg, rgba(183, 58, 40, 1) 0%, rgba(143, 26, 40, 1) 100%%);
}

.video-tab-header .video-tabs > div.video-active {
 /*  border-bottom: solid 0.3rem $color-btn-primary; */
}


.tabs .tab-indicator, .video-tab-indicator {
    display: block;
    position: relative;
    width: calc(100% / 2);
    height: 4px;
    left: 0px;
    background: #cf3732;
    transition: all 500ms ease-in-out;
}

.video-tab-indicator {
    width: auto;
    display:none;
}

.tab-indicator{
  display:none;
}

@media (min-width: 991px) {
  .tab-indicator {
    display:block;
  }
    
}

.tabs .tab-body, .video-tab-body {
    position: relative;
    padding: 10px 5px;
}

.tabs .tab-body > div, .video-tab-body > div {
    display: none;
    margin-top: 5px;
    transform: scale(0.9);
    transition: opacity 500ms ease-in-out 0ms, transform 500ms ease-in-out 0ms;
}

.tabs .tab-body > div.active, .video-tab-body > div.video-active {
    width:100%;
    top: 0px;
    display: block;
    margin-top: 0px;
}

@media (max-width: 991px) {
    .tabs .tab-body>div{
      display:block;
    }
}

@media (min-width: 1130px) {
  .stick-features {
    margin:0 auto;
  }
  .stick-product-column {
    display:flex;
  }
}

@media (min-width: 600px) {
  .tabs .video-tab-header {
    margin-top:0;
  }
  .tabs .tab-header, .video-tab-header .video-tabs {
    flex-wrap:inherit;
  }

  .video-tabs > div { 
    margin-bottom:0; 
    box-sizing: border-box;
    color:#eee;
  }

  .video-tab-header .video-tabs > div.video-active {
    border:none;
    padding:1rem;
  
  }

  .video-tab-indicator {
    display:block;
  }

  .video-tab-header .video-tabs{
    height: auto;
    width:100%;
  }
}


.video-container video { 
  width:100%; 
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  max-width: 700px;
  margin: 0 auto;
}

.video-container playbutton { 
  position:absolute;
  z-index:4;
  max-width:100px;
}

.feature-video {
  width: 100%;
}

.video-container { 
  width: 100%; 
  position: relative;
  overflow:hidden;
}

.video-container:hover .controls {
  transform: translateY(0);
}

.controls { 
  display: flex;
  flex-wrap: wrap;
  flex-direction:column;
  position: absolute;
  bottom: 0; width: 100%;
  background: rgba(0,0,0, 0.7);
  transform: translateY(100%) translateY(-5px);
  transition: all .2s;
}

.video-buttons {
  display:flex;
  justify-content:space-between;
}

.video-buttons button { 
  background: none;
  border: 0; outline: 0;
  cursor: pointer;
}


.video-buttons i { 
  color: #fff;
} 

.playhead-color{
  height:5px;
  top:0; 
  left: 0; 
  width:100%;
}

.playhead { 
  height:5px; 
  width:100%;
  background-color:var(--theme-color);
}

.video-container video { 
  width:100%; 
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.video-container playbutton { 
  position:absolute;
  z-index:4;
  max-width:100px;
}

.feature-video {
width: 100%;
}

.video-container { 
  width: 100%; 
  position: relative;
  overflow:hidden;
}

.video-container:hover .controls {
  transform: translateY(0);
}

.controls { 
  display: flex;
  flex-wrap: wrap;
  flex-direction:column;
  position: absolute;
  bottom: 0; width: 100%;
  background: rgba(0,0,0, 0.7);
  transform: translateY(100%) translateY(-5px);
  transition: all .2s;
}

.video-buttons {
  display:flex;
  justify-content:space-between;
}

.video-buttons button { 
  background: none;
  border: 0; outline: 0;
  cursor: pointer;
}


.video-buttons i { 
  color: #fff;
  font-size: 1.2rem;
  padding: 5px;
} 

.video-buttons i:hover { 
  color: #cbcbcb;
  font-size: 1.2rem;
  padding: 5px;
} 


.playhead-color{
  height:5px;
  top:0; 
  left: 0; 
  width:100%;
}

.playhead { 
  height:5px; 
  width:100%;
  background-color:#a62924;
}

/* Brand Banners */

  .wpbingo-section--three-banner .banner-wrapper-infor .content {
    background:#FFF;
    display: inline-block;
    padding:1.5rem;
  }

.col-banner.banner-1 {
    border-bottom: none;
}

@media (max-width: 991px) {
      .col-banner.banner-1, .col-banner.banner-2, .col-banner.banner-3 {
      border-bottom: #FFF 3px solid;
  }
}

/* Product Info */

.template-product .shopify-section .container {
    max-width: 100%;
}

.template-product .product-more-info.container {
  max-width: 1440px;
  margin:0 auto;
}

.template-product .product-single.gird-mordern .row.sticky>div.bwp-single-info {
	top:10%;
  padding-top: 50px;
}    

.product-single.gird-mordern .row.sticky {
  margin-bottom:50px;
}

.product-single .bwp-single-info {
  padding-left: 2rem;
}

.product-single .product-single__title {
  font-weight: 800;
}

.product-single .product-single__buttons .btn--add-to-cart {
  background: var(--theme-color);
}

/* Homepage */ 

.tab__item.button {
  text-transform: uppercase;
}

.wpbingo-section--three-banner .banner-wrapper-infor {
  padding:0px !important;
}

.wpbingo-section--three-banner .banner-1 .banner-wrapper-infor {
  padding:0px !important;
}

/* SITE WIDE */

.banner.media--adapt, .image-with-text__image.media--adapt, .banner__media, .banner__overlay {
  border-radius:0px;
}

.js .section--rounded :is(.banner__map, .banner__media, .banner__overlay, .video-hero) {
  border-radius:0px;
}

.section--rounded {
  border-radius: 0px;
}


.heading {
  font-weight: 800;
  text-transform: uppercase;
}


/* Mobile Cart Icon */ 
.product-card .product-card__form.mobile .btn {
	padding: 0;
	height: 35px;
	line-height: 35px;
	color: #FFF;
	text-transform: unset;
	border: 1px solid var(--gray-dark);
	margin: auto;
	border-radius: 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	flex: 1;
	font-size: revert !important;
}

.menu-dropdown__content a {
  font-size: calc(var(--font-size-base) + 2px);
  line-height: 1rem;
}

.btn {
  font-weight: 600;
}

.product-tabs__nav-link {
  font-weight: 600 !important;
  letter-spacing: normal !important;
}


.product-single__media--gird-mordern .product-single__media-group>div:nth-child(3n+1) {
  flex:0 0 50%;
}

@media (max-width: 991px) {
	.product-single__media--gird-mordern .product-single__media-group>div:nth-child(3n+1) {
    flex:0 0 100%;
  }
}

.product-single .sticky{
  background: #f8f8f8;
}

.bwp-single-image {
  background: #fff;
}

/* Description Tabs */


.product-more-info .more-info-tabs__nav-link {
  font-weight: 600;
}

.wpbingo-section--slideshow{
  background: var(--gray-dark);
  background: linear-gradient(nulldeg,rgba(23, 23, 23, 1) 67%, rgba(0, 0, 0, 1) 100%);
}

.hfs-banner {
  background: var(--gray-dark);
}

.row--banners .col-banner {
  position: relative;
}

  
.featured-banner img {
  max-width: 300px;
  margin: 0 auto;
}

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

  .featured-banner img {
    max-width: 200px;
    margin: 0 auto;
  }

  .featured-banner img {
    max-width: 100%;
  }

  .banner-2:before {
      content: "";
      height: 75%;
      display: block;
      border-left: white solid 2px;
      position: absolute;
      top: 15%;
  }

  .banner-2:after {
      content: "";
      height: 75%;
      display: block;
      border-left: white solid 2px;
      position: absolute;
      top: 15%;
      right: 0;
  }

}


.featured-banner .bwp-image {
  background:none;
  transition: all .2s;
}
    
.featured-banner .bwp-image:hover {
  background:#000;
}



@media (min-width: 991px){
  .featured-banner .bwp-image, .featured-banner .bwp-image:hover {
    background:none;
  }
}

@media (max-width: 991px){
  .hfs-banner .bwp-container { padding:0px;}
}

.tab-content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}


.tab-content-feature {
  width: 37.5%;
}


tab-content-container.left .tab-content-feature {
  order: 1;
  padding-right:1rem;
}

tab-content-container.left .tab-content {
  order: 2;
}


tab-content-container.right .tab-content-feature {
  order: 2;
  padding-left:1rem;
}

tab-content-container.right .tab-content {
  order: 1;
}

.tab-content .brand-logo {
  max-width: 70px;
  min-width: 70px;
  max-height: 60px;
}

.tab-content .heading {
margin-bottom: -0.4rem;
}

.title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 1rem;
}

@media (max-width: 991px){
  
   .hfs-banner .featured-banner img {
    max-width:250px;
   }
  
  .tab-content-feature {
    width:100%;
  }
  .featured-banner img{
    max-width:100%;
  }
  .featured-banner img { width:100% }

    .tab-content-container.right .tab-content-feature {
      order: 1;
      padding-left:1rem;
  }
  .product-tabs .tab-content-container.left .tab-content-feature{
      width: 100%;
  }
.tab-content-container.left .tab-content {
      width: 100%;
      padding-top: 0;
      margin: 30px 0;
  }
.tab-content-container.righr .tab-content-feature{
      width: 100%;
  }
 .tab-content-container.right .tab-content {
      width: 100%;
      padding-top: 0;
      margin: 30px 0;
  }
}

.main-content .shopify-section:nth-child(2n) .product-tabs {
    background: #f8f8f8;
    box-shadow: -1px 1px 5px 0px rgba(0, 0, 0, 0.15) inset;
}

.main-content .shopify-section:nth-child(2n) .product-tabs .banner-wrapper-infor {
  background: #f8f8f8;
}

.product-tabs_feature-video {
  width: 100%;
}

@media (min-width: 991px) {
    .main_media-content {
        border-bottom: 2px solid #000;
        margin-bottom:50px;
    }

    .tab-content-container .tab-content {
      width: 62.5%;
      overflow:hidden;
      padding: 20px;
    }
}

.show-more-container{
  display:flex;
  justify-content:center;
}

.show-more {
    display: block;
    background: #FFF;
    color: #000;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: solid #000 2px;
    margin-bottom: -20px;
    z-index: 1;
}

.show-more:hover {
  background: var(--theme-color);
    color:#FFF; 
}

@media (max-width: 991px) {
  .show-more {
    display:none;
  }
  .wpbingo-section--slideshow .bwp-container { 
    padding:0px
  }
  
}

.product-more-info__inner {
    display: flex;
    flex-direction: column;
    max-width:1440px;
}


@media (max-width: 991px) {
  .tabs .tab-header {
    display:none;
  }
}


/* HFS CSS */

.header__menu>ul.with-block .menu__item {
    font-weight: 800;
}

.hockey-brands {
    background:var(--color-black);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hockey-brands__item {
    width:100%;
}

.hockey-brands__item {
    transition: all 0.3s ease;
    position: relative;
}
  
.hockey-brands__item-link {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .2s;
    transform: scale(0.8);
}

.hockey-brands__item-link:hover {
  transform: scale(1);
}

.hockey-brands__item-link img {
filter: brightness(75%) contrast(126%);
}

.hockey-brands__item-link img:hover {
  filter: brightness(100%) contrast(126%);
}

.hockey-brands__item:nth-child(3)::after {
    content: "";
    height: 75%;
    display: block;
    border-left: rgb(93, 93, 93) solid 2px;
    position: absolute;
    top: 15%;
}

.hockey-brands__item:nth-child(even)::after {
    content: "";
    height: 75%;
    display: block;
    border-left: rgb(93, 93, 93) solid 2px;
    position: absolute;
    top: 15%;
}

header {
    border-radius:0px;
}

.banner {
    border-radius:0px;
}



/* Nav edits */ 

nav li {
    padding: 0px 0.5em;
}

/*

nav li span::after {
    content: "\f078";
    pointer-events: none;
    margin-left: 3px;
    font-family: FontAwesome;
    position: relative;
    top: 1px;
}

*/

.tab-content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.featured-brand-collections-container:nth-child(2n) .featured-brand-collections {
    background: #f8f8f8;
    box-shadow: -1px 1px 5px #00000026 inset;
}


.tab-content {
  overflow: hidden;
}

.tab-content-feature {
  width: 37.5%;
}


.brand.left .tab-content-feature {
    order: 1;
    padding-right: 1rem;
}

.tab-content-feature__item{
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.brand-tab.left .tab-content-feature {
  order: 1;
  padding-right:1rem;
}

.brand-tab.left .tab-content {
  order: 2;
}

.brand-tab.right .tab-content-feature {
  order: 2;
  padding-left:1rem;
}

.brand-tab.right .tab-content {
  order: 1;
}


@media (max-width: 991px){

  .brand-tab.left .tab-content {
    order: 1;
  }

  .brand-tab.right .tab-content-feature {
    order: 2;
    padding-left:1rem;
  }

   .hfs-banner .featured-banner img {
    max-width:250px;
   }
  
  .tab-content-feature {
    width:100%;
  }
  .featured-banner img{
    max-width:100%;
  }

  .tab-content-feature__item{
    margin-top: 2rem;
  }

  .tab-content-feature__item img{
    max-height: 300px;
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center bottom;
  }
  

}

.banner-wrapper-info {
   position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px;
    background: #fff;
    display: inline;
    padding: 3rem;
}

@media (max-width: 991px){
  .banner-wrapper-info {
    display:block;
    width:100%;
    position: relative;
    padding: 1.5rem;
    text-align: center;
  }
}

.banner-wrapper-info .product-card__title {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}


.hockey-brands__item::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(17, 45, 67, 0.0);
  background-image: radial-gradient(ellipse at 50% 180%, rgb(232, 5, 5) 0%, transparent 70%);
  background-size: 100% 100%;
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate(0%,50%);
}

.hockey-brands__item:hover::before {
  transform: translate(0%, 10%);
  opacity: 1;
}

/* Product page edits */

.product__vendor a {
  background:var(--color-base-button-gradient);
  margin-block-start:15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding:0.5rem;
  font-weight: 800;
}

.product__title {
  margin-block-start: 0;
}

.mega-menu__nav.grid{
  display: flex;
  flex-wrap: wrap;
  row-gap: normal;
  flex-direction: column;
}

.mega-menu__nav.grid li {
  margin-bottom: 0.2rem;
}

.mega-menu__nav.grid li a, .mega-menu__footer, .dropdown__nav li a{
  font-weight: 800;
  text-transform: uppercase;
  font-size: var(--fluid-base-to-xl)
}

.product__info {
  margin-top: 2rem;
}



/* STICK FEATURES */

.stick-features-wrapper {
  padding:2rem 0rem;
    display: grid;
  --product-grid: auto / minmax(0, 1.32fr) minmax(0, 0.68fr);
    gap: clamp(var(--sp-12), 4.73vw, var(--sp-23));
    grid: var(--product-grid);
}

.product-tabs__nav-link {
	font-weight: 700;
}

.btn--add-to-cart {
  background: var(--theme-color);
}


/* Stick Stuff */

.meter-container {
  padding:15px;
}

.athlete-type {
    padding:5px 0px;
}

.meter-power, .meter-precision, .meter-carbon {
  position:relative;
  width: 89%;
  height: 12px;
  background:#eee;
  border-radius: 30px;
  color: #696969;
  float:right;
  border: 1px solid #000;
  box-shadow: 0 3px 15px #444 inset, 0 0 0 #444;
  margin-top:5px;
}

/*
.meter-power > span, .meter-precision > span, .meter-carbon > span {
  width:96%;
  display: block;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background:#cf3732;
  position: relative;
  overflow: hidden;
  
  &::after {
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, #fff 0%, #fff 99%);
    border-radius: 3px;
    animation: animate-shine 2s ease-out infinite;
  }
}
  */
.progress-bar__container {
    position: relative;
    background: #4a4a4a;
    height: 40px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 3px 15px #000 inset, 0 0 0 #444;
    border-radius: 5px;
    overflow: hidden;
}


  .meter-precision-label, .meter-power-label, .power-meter-block {
      display:inline;
      font-weight: 900;
      text-transform:uppercase;
      padding-right: 10px;
  }
  

@keyframes animate-shine {
  0% {
    opacity: 0;
    width: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 0;
    width: 95%;
  }
}

.bar-step {
  position: absolute;
  margin-top: 10px;
  z-index: 1;
  font-size: 12px;
}

.label-percent {
    float: left;
    color: #fff;
    margin-left: -20px;
    padding-right:5px;
}

.label-line {
    float: left;
    background: #fff;
    height: 20px;
    width: 2px;
}
  /*
.meter-precision > span {
  width:85%;
  background:#d63b26;
  background: linear-gradient(to bottom, #cf3732 0%, #700400 99%);
}

.meter-carbon > span {
  width:100%;
  border-radius: 5px;
  background:#b5b5b5;
  background: linear-gradient(to bottom, #ff8f00 0%, #db7b00 99%);
  background-image: -webkit-repeating-linear-gradient(left, hsla(0, 30%, 30%, 0) 0%, hsla(0,0%,100%,0)   6%, hsla(0,0%,100%, .1) 7.5%),
    -webkit-repeating-linear-gradient(left, hsla(0,0%,  0%,0) 0%, hsla(0,0%,  0%,0)   4%, hsla(0,0%,  0%,.03) 4.5%),
    -webkit-repeating-linear-gradient(left, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0) 1.2%, hsla(0,0%,100%,.15) 2.2%),
    
    linear-gradient(180deg, hsl(0,0%,78%)  0%, 
    hsl(0,0%,90%) 47%, 
    hsl(0,0%,78%) 53%,
    hsl(0,0%,70%)100%);
}
*/

.athlete-type {
  span {
      font-style:italic;
  }
}
  
.touch-compound {
  padding: 15px;
  background: #e32028;
  color: #383838;
  border-radius: 5px;
  background-image: url({{ "stripes-black.png" | asset_url }}), linear-gradient(#e7e7e7, #e7e7e7); /* W3C */
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 35px;
  font-size: 14px;
  span {
      font-size: 16px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:900;
    color:black;
  }
}


.label-percent {
	 float: left;
	 color: #fff;
	 margin-left: -30px;
	 padding-right: 5px;
}

/* Bow Graph Widget */
 .bow-graph {
	 padding-top: 15px;
}
 .graph-stick {
	 padding: 20px;
}

 .graph-container {
	 position: relative;
	 /*max-width: 800px; */
}

 .triangle-container {
	 height: auto;
	 width: 230px;
	 text-align: center;
}
 .triangle-container a {
	 float: left;
}
 .bow-title {
	 color: #000;
	 font-weight: 900;
}
 .bow-description {
	 font-weight: 900;
	 padding-bottom: 20px;
	 padding: 0px;
	 margin: 0px;
}
 .arrow-down {
	 display: inline-block;
	 margin-left: auto;
	 margin-right: auto;
	 width: 0;
	 height: 0;
	 border-left: 25px solid transparent;
	 border-right: 25px solid transparent;
	 border-top: 25px solid #000;
	 margin-left: 5px;
	 font-weight: 600;
	 color: #000;
}
/* .arrow-down > span{
	 margin-left:-10px;
}
 */
 .btn-df > .arrow-down {
	 border-top: 25px solid red;
}
 .arrow-down:hover {
	 border-top: 25px solid #a62924 !important;
}
 .label-container {
	 position: absolute;
	 right: 0;
}
 .bow-link {
	 display: block;
	 color: #000;
	 font-weight: 600;
}
 .bow-link:hover {
	 text-decoration: none;
	 color: red;
}
 .bow-link.selected {
	 color: #a62924;
}

 .arrow-btn span {
	 font-weight: 900;
}
 .product-single__description {
	 padding-top: 50px;
}
 @media only screen and (max-width: 600px) {

	 .triangle-container {
		 top: 20px;
	}
}

 /* Power Meter */
  
  .meter-precision-container {
    display:flex;
  }
  

.sizing-button {
    border: 1px solid #ebedee;
    border-left: none;
    margin-bottom: -1px;
    font-feature-settings: "frac";
    height: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    line-height: 1em;
    cursor: pointer;
    letter-spacing: -.2px;
    font-size: 13px;
    width: 25%;
}

.runs-large, .runs-small, .runs-true {
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;
    background: #000;
    padding: 15px;
    margin-bottom: 15px;
    color: white;
    display: inline-block;
    width:100%;
    margin-top:10px;
}


.bow-titles {
  display:inline-block;
}

.bow-description {
  font-weight: 900;
  font-size:25px;
  text-transform:uppercase;
  color:#000;
}


.video-tab-body {
  color: #FFF;
  font-weight: 600;
  margin-top: .5rem;
  text-align:center;
  font-size: 1.1rem;
}
  
.tabs {
  position: relative;
  width: 100%;
  padding:1rem 0rem;
}
  
.hockey-stick-features .section .page-width {
  /* background-color:#f9f9f9; */
}

/* Stick Feature Styling */

.slide-container .slide {
  display: block;
  border-radius: var(--card-radius);
}

/*
 CSS for the main interaction
*/
.multiswitch input {
  position: absolute;
  left: -200vw;
}

.multiswitch .slide-container {
  position: relative;
  display: flex;
  line-height: 2em;
  user-select: none; 
}

.multiswitch .slide-container label {
  width: 50%;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  z-index: 2;
  line-height:1.2rem;
}

.multiswitch .slide-container a {
  position: absolute;
  left: 50%;
  z-index: 1;
  height: 100%;
  width: 50%;
  transition: left 0.1s ease-out;        
}

/*
  Auto adjusting widths
*/
.multiswitch label:nth-last-child(6),
.multiswitch label:nth-last-child(6) ~ label,
.multiswitch label:nth-last-child(6) ~ a {
  width: 33.3334%;
}

.multiswitch label:nth-last-child(8),
.multiswitch label:nth-last-child(8) ~ label,
.multiswitch label:nth-last-child(8) ~ a {
  width: 25%;
}

.multiswitch label:nth-last-child(10),
.multiswitch label:nth-last-child(10) ~ label,
.multiswitch label:nth-last-child(10) ~ a {
  width: 20%;
}

.multiswitch label:nth-last-child(12),
.multiswitch label:nth-last-child(12) ~ label,
.multiswitch label:nth-last-child(12) ~ a {
  width: 16.6667%;
}

/*
 Slider
*/

/* all options, first selected */
.multiswitch input:checked ~ a {
  left: 0;
}
/* 2 options, 2nd selected */
.multiswitch label:nth-last-child(4) ~ input:nth-child(3):checked ~ a {
  left: 50%;
}
/* 3 options, 2nd selected */
.multiswitch label:nth-last-child(6) ~ input:nth-child(3):checked ~ a {
  left: 33.3334%;
}
/* 3 options, 3rd selected */
.multiswitch label:nth-last-child(6) ~ input:nth-child(5):checked ~ a {
  left: 66.6667%;
}
/* 4 options, 2nd selected */
.multiswitch label:nth-last-child(8) ~ input:nth-child(3):checked ~ a {
  left: 25%;
}
/* 4 options, 3rd selected */
.multiswitch label:nth-last-child(8) ~ input:nth-child(5):checked ~ a {
  left: 50%;
}
/* 4 options, 4th selected */
.multiswitch label:nth-last-child(8) ~ input:nth-child(7):checked ~ a {
  left: 75%;
}


/*
  Slider shadows
*/
/* middle spots */


fieldset {
  border: 0;
  padding: 0;
}

fieldset legend {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.multiswitch .slide-container {
  background:#1a1a1a;
  display:flex;
  align-items: stretch;
  color: #fff;
  transition: background 0.1s ease-out;
  border-radius: var(--card-radius);
  border:2px solid #6c6c6c;
}

.slide-container .slide{
  background: linear-gradient(0deg,rgba(204, 11, 0, 1) 0%, rgba(219, 58, 48, 1) 98%);
  border:2px solid #800800;
}

.multiswitch .slide-container label {
  display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 800;
}

/*
 Horizontal layout
*/
.switch {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.multiswitch label{
  font-size:var(--font-button-size);
  font-weight: 600;
  padding:0.5rem;
}

img.bow.graph-ruzo {
    margin-bottom: -1rem;
}

.stick-features-description {
  font-size: var(--font-product-size);
  font-weight: 800;
  text-transform: uppercase;
}

.stick-features-container {
  position:sticky;
  top: 80px;
  width:100%;
  background:#121212;
  background: linear-gradient(0deg,rgba(61, 61, 61, 1) 0%, rgba(0, 0, 0, 1) 98%);
  box-shadow: -1px -1px 44px -3px rgba(0,0,0,0.75) inset;
  -webkit-box-shadow: -1px -1px 44px -3px rgba(0,0,0,0.75) inset;
  -moz-box-shadow: -1px -1px 44px -3px rgba(0,0,0,0.75) inset;
  color:#fff;
  padding: 1.5rem;
  border-radius:var(--card-radius);
}

.stick-features-container .heading {
  color:#fff;
}

.video-tabs .video-active {
  background: linear-gradient(0deg,rgba(204, 11, 0, 1) 0%, rgba(219, 58, 48, 1) 98%);
  border:2px solid #800800;
  color:#fff;
  border-radius: var(--card-radius);
}
