/** Shopify CDN: Minification failed

Line 98:1 Unexpected "*"
Line 548:29 Unterminated string token
Line 607:6 Expected ":"
Line 607:8 Expected identifier but found "rect("

**/
@charset "utf-8";

/**
 * ----------------------------------------------------------------------------
 * Fonts
 * ----------------------------------------------------------------------------
 */

@font-face {
  font-family: "ASRV-Standard";
  src: url("ASRV-Standard.woff2") format("woff2"),
    url("ASRV-Standard.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "ASRV-Standard";
  src: url("ASRV-Light.woff2") format("woff2"),
    url("ASRV-Light.woff") format("woff");
  font-weight: 300;
}

/**
 * ----------------------------------------------------------------------------
 * Policies Pages
 * ----------------------------------------------------------------------------
 */

.shopify-policy__title.PageHeader.Heading.u-h1 {
    text-transform: uppercase;
}

.shopify-policy__body.Rte {
  max-width: 1000px;
  margin: 35px auto;
}

.shopify-policy__body.Rte h2 {
    font-weight: 600;
    color: #808080;
    letter-spacing: 1px;
    font-size: 18px;
    text-transform: uppercase;
}

.shopify-policy__body.Rte p {
    font-family: "Avenir Next", sans-serif;
    font-weight: 400;
    color: #424242;
    font-size: 16px;
}

@media screen and (max-width: 1440px) {
  .shopify-policy__body.Rte {
    padding: 0 50px;
  }
}

@media screen and (max-iwdth: 640px) {
  .shopify-policy__body.Rte {
    padding: 0 24px;
  }
}

/**
 * ----------------------------------------------------------------------------
 * SEO Overhaul
 * ----------------------------------------------------------------------------
 */

.visually-hidden {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 1px;
  margin: 0;
}

img.Header__LogoImage.Header__LogoImage--primary {
    padding-bottom: 1px;
}

.hidden {
  display:none!important;
  opacity: 0!important;
}



**
 * ----------------------------------------------------------------------------
 * B2B Login Pages
 * ----------------------------------------------------------------------------
 */

body.the-vault {
    background: #1a1a1a!important;
}

/**
 * ----------------------------------------------------------------------------
 * Collection Landing Page
 * ----------------------------------------------------------------------------
 */

.Section__Blackout {
  background: #171717;
  margin: 0;
  padding: 80px 0;
  height: calc(var(--window-height) - (var(--header-height)));
}

.CollectionLanding__Wrapper {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.Landing__Heading {
    font-family: 'ASRV-Standard';
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 0;
}

.Landing__Heading span {
  color: #b31500;
  letter-spacing: -3px;
  margin-right: 3px;
}

.Landing__Copy {
    font-family: 'ASRV-Standard';
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 0;
}

.Landing__Copy:last-of-type {
    margin-bottom: revert;
}

@media screen and (min-width: 1800px) {
  .Section__Blackout {
    height: calc(var(--window-height) - (var(--header-height)) - (var(--footer-height)));
  }
}



@media screen and (max-width: 640px){
  .CollectionLanding__Wrapper{
    padding: 0 30px;
  }
  
  .Landing__Copy, .Landing__Heading {
    font-size: 22px;
  }
}
/**
 * ----------------------------------------------------------------------------
 * Sitemap
 * ----------------------------------------------------------------------------
 */


.Section__Sitemap {
  padding: 0 80px;
}

.Sitemap__Container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}

.Sitemap__List {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* This will create 3 columns */
  grid-auto-rows: auto; /* Each row will size according to its content */
  gap: 0.5rem;
}
  
.column {
  flex: 1;
}

.Sitemap__Heading {
  font-family: "ASRV-Standard", "Avenir Next", sans-serif;
  font-size: 16px;
}

.Sitemap__Heading::after {
  content: "";
  border-bottom: solid 1px #b31500;
  display: block;
  width: 50px;
  padding-top: 10px;
}

.main-link {
  text-transform: uppercase;
  color: #222222;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.main-link a {
  text-decoration: underline;
  text-underline-position: under;
  text-underline-offset: 1px;
  text-decoration-color: #b7b7b7;
}

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

  .Section__Sitemap {
    padding: 0 30px;
  }
  
  .Sitemap__List {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
  }
}

/**
 * ----------------------------------------------------------------------------
 * Help Center
 * ----------------------------------------------------------------------------
 */


.Container.Container--FullWidth {
  padding: 0;
  margin: 0;
}

.PageContent.PageContent--FullWidth {
  margin: 0 auto;
  max-width: 100%;
}

#Help__Center {
  min-height: calc(var(--window-height) - (var(--header-height)));
  height:100%;
}

#Help__Center iframe {
  position: relative;
  min-height: 100vh!important;
  background: #fff;
  -webkit-animation: fadeIn1 1000ms ease-in-out;
  animation: fadeIn1 1000ms ease-in-out;
  opacity: 1;
}

.loader {
  color: #222;
  font-family: 'ASRV-Standard';
  font-weight: bold;
  opacity: 0.8;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - var(--header-height));
    -webkit-animation: fadeIn1 1000ms ease-in-out;
  animation: fadeIn1 1000ms ease-in-out;
  opacity: 1;
}

.loader span {
  display: inline-block;
  animation: pulse .6s alternate infinite ease-in-out;
  width: 250px;
  font-size: 64px;
  position: absolute;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  .loader span {
    width: 165px;
    font-size: 48px;
}
}

.loader span:nth-child(odd) {
  animation-delay: 1s;
}

.first_loader {
  text-align: left;
}

.second_loader {
  text-align: right;
}  

@keyframes pulse {
  to {
    transform: scale(1);
    opacity: 0.5;
  }
}


/**
 * ----------------------------------------------------------------------------
 * Misc
 * ----------------------------------------------------------------------------
 */

svg#icon-phone {
    width: 12px;
    height: auto;
    margin-right: 6px;
    transform: translateY(1px);
}

.FeaturedKit_KitsWrapper .FeaturedProduct__ViewWrapper {
  display: flex;
  justify-content: space-between;
}

.FeaturedKit_KitsWrapper .FeaturedProduct__ViewWrapper .SizeChart {
  font-size: 13px!important;
}

.FeaturedKit_KitsWrapper .FeaturedProduct__ViewWrapper .SizeChart::after {
  transform: scaleX(0);
}

.FeaturedKit_KitsWrapper .ProductForm__BuyButtons {
  padding-left: 50px;
  padding-top: 20px;
  max-width: 750px;
}

div#sidebar-cart {
    z-index: 2147483647;
}

#loop-onstore {
  z-index:2147483646;
}


@media screen and (max-width:640px) {
#section-header,
#section-footer {
  opacity: 0;
  transition: opacity .1s ease;
}
}

@media screen and (max-width:640px) {
body.the-bunker #section-header,
body.the-bunker #section-footer {
  opacity: 1;
}
}


.tapcart-webbridge iframe.yt-embed {
    display: unset!important;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button.Dark__Button.Cart__Checkout {
  z-index: 10;
}

iframe#chat-button {
  z-index: 5 !important;
}

canvas.particles-js-canvas-el {
  filter: blur(2px);
}

.fadeIn {
  -webkit-animation: fadeIn1 1000ms ease-in-out;
  animation: fadeIn1 1000ms ease-in-out;
  opacity: 1;
  
}

.fadeIn__Slow {
  -webkit-animation: fadeIn1 2000ms ease-in-out;
  animation: fadeIn1 2000ms ease-in-out;
  opacity: 1;
}

.MapAddress__Wrapper {
  -webkit-animation: fadeIn1 1000ms ease-in-out;
  animation: fadeIn1 1000ms ease-in-out;
  opacity: 1;
}

.Section__Content {
  -webkit-animation: fadeIn1 1000ms ease-in-out;
  animation: fadeIn1 1000ms ease-in-out;
  opacity: 1;
}

.template-page .Rte p {
    font-family: "Avenir Next", sans-serif;
    font-weight: 400;
    color: #424242;
    font-size: 16px;
}

.template-page .Rte h2 {
    font-weight: 600;
    color: #808080;
    letter-spacing: 1px;
    font-size: 18px;
    text-transform: uppercase;
}

.stockists .Rte h4, .stockists .Rte p{
    margin-bottom: 0;
}

.stockists .Rte h3{
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 16px;
  margin-top: 50px;
}

.stockists .Rte h3:after {
    border-bottom: solid 1px #222;
    display: block;
    content: " ";
    padding-top: 5px;
    max-width: 12px;
    margin: 0 auto;
}

.stockists .Rte h4 {
    margin-top: 25px;
}

.template-page.privacy-policy .PageContent.PageContent--narrow.Rte {
    max-width: 780px;
    text-align: justify;
}

.Rte h1.asrv-standard, .Rte h2.asrv-standard, .Rte h3.asrv-standard, .Rte h4.asrv-standard, .Rte h5.asrv-standard, .Rte h6.asrv-standard {
  font-family: "ASRV-Standard";
}

/**
 * ----------------------------------------------------------------------------
 * Relentless Pursuit page banner with dynamic date and Copyright
 * ----------------------------------------------------------------------------
 */

.Relentless_Pursuit{
    text-align:center;
    margin: 60px 30px;
  }
  
  .Relentless_Pursuit h4 {
    margin: 0;
    font-size: 22px;
    font-family: "ASRV-Standard", sans-serif;
    font-weight: 400;
    line-height: normal;
    color: #323232;
  }

  .Relentless_Pursuit span {
    margin: 0;
    font-size: 14px;
    font-family: "ASRV-Standard", sans-serif;
    font-weight: 300;
    color: #bababa;
  }

/**
 * ----------------------------------------------------------------------------
 * Final Sale Tags
 * ----------------------------------------------------------------------------
 */


.SizeNote-tag {
    margin-top: 20px;
}

h2.SizeNoteHeading {
    background: #b31200;
    color: #fff;
    padding: 3px 10px;
    display: inline-block;
}



.presale-tag{
	margin:5px 0;
  	margin-bottom:0;
 	
}

.presale-tag-cart{
	padding:0 30px;
 	
}

.presale-tag-cart h2.presale{
	font-family: "ASRV-Standard;
    font-weight: 300;
    color: #ed1c24;
    text-align: justify;
    text-align-last: center;
    line-height: 1.5em;
    text-transform: uppercase;
    font-size: 11px;
}
  

h2.presale{
	font-family:"ASRV-Standard";
  	font-weight:300;
  	color:#ed1c24;
	text-align: justify;
    text-align-last: center;
}

h2.presale-block {
    font-family: "ASRV-Standard";
    text-align: left;
    margin: 0;
    display: inline-block;
    background: #ed1c25;
    color: white;
    border-radius: 3px;
    padding: 0px 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

p.Cart__TotalSaved {
    font-family: 'Avenir Next';
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #323232;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
}

.Cart__TotalSaved > span {
    color: #b31500;
    font-weight: 600;
}

/**
 * ----------------------------------------------------------------------------
 * Accessibility
 * ----------------------------------------------------------------------------
 */

.hidden_accessibility {
  border: 0;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip; rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; 
}

button.Popover__Value.Heading.Link.Link--primary.u-h6:focus {
    outline: 1px solid #ededed;
}

button.Popover__Value.Heading.Link.Link--primary.u-h6.is-selected:after {
    transform: scaleX(0.5);
    display: block;
    content: "";
    transition: .25s ease-in-out;
    border-bottom: solid 1px #252525;
    position: relative;
    top: 5px;
    transform-origin: right;
}

button.Popover__Value.Heading.Link.Link--primary.u-h6.is-selected:hover:after {
    transform: scaleX(0.8);
    border-bottom: solid 1px #252525;
}

/**
 * ----------------------------------------------------------------------------
 * Text
 * ----------------------------------------------------------------------------
 */

.ProductMeta__Title {
  letter-spacing: 1.25px;
  margin-bottom: 0;
}

.Hero_Text {
  font-family: "Avenir Next", sans-serif;
  font-style: normal;
  transition: color 0.2s ease-in-out;
  padding: 0;
  margin: 0;
}

  /*.js .Slideshow__Content .SectionHeader {
      opacity: 0;
  }*/

.AppText_Heading {
  font-family: "Avenir Next", sans-serif;
  font-style: normal;
  transition: color 0.2s ease-in-out;
  padding: 0;
  margin: 0;
}

.Section_Text {
  font-family: "Avenir Next", sans-serif;
  font-style: normal;
  transition: color 0.2s ease-in-out;
  padding: 0;
  margin: 0;
}

.asrv-standard {
  font-family: "ASRV-Standard", sans-serif;
}

.template-page .Rte h2.asrv-light {
    font-family: "ASRV-Standard", sans-serif;
    font-weight: 200;
}

.template-page .Rte h2.asrv-standard {
    font-family: "ASRV-Standard", sans-serif;
    font-weight: 400;
}

/**
 * ----------------------------------------------------------------------------
 * 404 Page
 * ----------------------------------------------------------------------------
 */

.dsg-404 {
  font-family: "asrv-standard";
  font-weight: 200;
  font-size: 4em;
  background-color: #232323;
  display: block;
  width: 340px;
  padding: 24px 0;
  padding-top: 17px;
  line-height: 1em;
  color: #fff;
  margin: 0 auto;
  transition: 0.4s all;
  text-decoration: none;
  user-select: none;
}

.risk-404 {
  display: block;
  width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: 25px 0;
  padding-bottom: 5px;
}

.dsg-404:hover {
  background-color: #000;
  color: #fff;
}

.wings-404 {
  padding: 24px;
  filter: brightness(0);
}

.dsg h2 a,
.dsg h3 a {
  font-size: 24px !important;
  display: block !important;
  background-color: #323232 !important;
  color: #fff !important;
  max-width: 155px !important;
  font-family: "ASRV-Standard", "Avenir Next", sans-serif !important;
  font-weight: 300;
  padding: 12px 10px !important;
  line-height: 24px !important;
  transition: 0.4s all !important;
  overflow-wrap: break-word !important;
}

.dsg h2 a:hover,
.dsg h3 a:hover {
  color: #fff !important;
  background-color: #000 !important;
}

/**
 * ----------------------------------------------------------------------------
 * Popover Content
 * ----------------------------------------------------------------------------
 */

.Popover[aria-hidden="false"] {
  transform: translateY(0);
  visibility: visible;
  z-index: 10000;
}

@media screen and (max-width: 1000px) {
.FeaturedKit_KitsWrapper .ProductForm__BuyButtons {
    padding: 0px;
    padding-top: 20px;
    padding-left: 20px;
  }
}

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

  iframe#attentive_creative {
    border: solid 1px #cecece!important;
    background: #fff;
  }
  
  .FeaturedKit_KitsWrapper .ProductForm__BuyButtons {
    padding: 0;
    padding-top: 20px;
  }
  
  .ShopTheLook {
    z-index: auto;
  }

  button.ShopTheLook__ViewButton {
    z-index: auto;
  }


  .one-mobile .shg-row .shg-c-lg-3 {
    width: 100%;
}

  .one-mobile .shg-c-lg-3.shg-c-md-3.shg-c-sm-3.shg-c-xs-6 {
    width: 100%;
}
  
}

/**
 * ----------------------------------------------------------------------------
 * Collection Pages
 * ----------------------------------------------------------------------------
 */

.Placeholder__Hangdown {
  opacity: 0.7;
  transition: .2s all;
}

.Placeholder__Hangdown:hover {
  opacity: 1;
  transition: .2s all;
}


a#appExclusiveButton + #emptyStateBTN {
    margin-top: 10px;
}

.CollectionToolbar__Heading {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 20px;
    align-items: center;
    align-content: center;
}

h1.Collection__Heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Avenir Next', sans-serif;
    align-items: flex-start;
}

.CollectionToolbar__CollectionLinks {
    padding: 15px;
}

.CollectionToolbar.CollectionToolbar--Centered {
    justify-content: center;
}

.ProductItem__LabelList {
  pointer-events: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  position: absolute;
  top: 0;
  padding: 6px;
}

.ProductItem__Label {
  transition: all 0.4s;
}

.ProductItem__Price.Price--Notify {
    width: 100%;
    display: flex;
    z-index: 2;
}

.ProductItem__Label {
  font-family: "ASRV-Standard", "Avenir Next";
  font-weight: 100;
  border-radius: 5px;
  letter-spacing: 1px;
  font-size: 12px;
  padding: 3px 15px;
}

.ProductItem__Label--newFit {
  background: #7a7a7a;
  color: #fff;
}

.ProductItem__Label--soldOut {
  color: #8787875c;
  background: rgba(0,0,0,0.06);
}

.ProductItem__Label--lowStock {
  color: #ffffff;
  background: rgba(0,0,0,0.25);
}

.ProductItem__Label--onSale {
  color: #878787;
  background: rgba(0,0,0,0.05);
}

.ProductItem__Label--appExclusive {
  background: #b31200;
  color: #fff;
}

.ProductItem__Title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.ProductItem_PriceSizing {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.SwatchList__Sizes {
  opacity: 0;
  position: absolute;
  list-style: none;
  max-width: 340px;
  margin: 0 auto;
  cursor: default;
  width:100%;
  z-index:2;
}

.SwatchList__Sizes .SwatchList__SizesItem {
  font-size: 10px;
  font-family: "Avenir Next", sans-serif;
  font-weight: 400;
  border: solid 1px #ededed;
  min-width: 12%;
  margin: 0 8px;
  color: #6a6a6a;
  display: inline-block;
  margin: 0 2px 4px;
  transition: 0.4s all;
}

.SwatchList__Sizes li.SwatchList__SizesItem.hidden_variants {
  opacity: 40%;
  cursor: not-allowed;
  padding: 6px 10px;
}

.SwatchList__Sizes li.SwatchList__SizesItem.available_variants {
  cursor: pointer;
}

.SwatchList__Sizes li.SwatchList__SizesItem.available_variants span a {
  cursor: pointer;
  display: block;
  padding: 4px;
  user-select: none;
}

li.available_variants.SwatchList__SizesItem:hover {
  border: solid 1px #c9c9c9;
  color: #323232;
  transform: scale(1.1);
}

.Carousel__Cell.Swiper_Grid {
    margin: 25px 0;
}

.Price--highlightRed {
  color: #b31200;
}

.Price--Notify{
  opacity: 0;
  position: absolute;
  justify-content: center;
  width: 100%;
}

.Price--Spaced {
  letter-spacing: 0.1rem;
}

@media not all, (hover: hover) {
  .ProductItem__Wrapper--withAlternateImage:hover .ProductItem__Image {
    opacity: 0 !important;
  }

  .ProductItem__Wrapper--withAlternateImage:hover
    .ProductItem__Image--alternate {
    opacity: 1 !important;
  }

  .ProductItem__Wrapper:hover .Price--Notify {
    opacity: 1;
  }

  .ProductItem__Wrapper:hover .Price--SoldOut {
    opacity: 0;
  }

  .ProductItem__Wrapper:hover ul.SwatchList__Sizes {
    opacity: 1;
  }

  .ProductItem__Wrapper:hover h2.Multiple__Variants {
    opacity: 0;
  }

  .ProductItem__Wrapper:hover .ProductItem__PriceList.Single__Variant.Sold__Out.Heading {
    opacity: 0;
  }

  .ProductItem__Wrapper:hover .ProductItem__PriceList.Multiple__Variants,
  .ProductItem__Wrapper:hover .ProductItem__PriceList.Multiple__Variants span {
    opacity: 0;
  }

  span.ProductItem__Price.Price.Text--subdued.Single__Variant {
    transition: 0.2s all;
    cursor: pointer;
  }

  span.ProductItem__Price.Price.Text--subdued.Single__Variant:hover {
    transition: 0.2s all;
    color: #000;
    transform: scale(1.04);
  }
}

@media screen and (max-width:796px) {
  
    ul.CollectionNames_List {
      row-gap: 15px;
      flex-wrap: wrap;
      text-align: center;
    }
    
    li.CollectionNames_ListItem {
      flex: 0 1 33%;
    }
}

@media screen and (max-width:640px) {
    
    li.CollectionNames_ListItem {
      flex: 1 1 50%;
    }
}

.CollectionInner .Pagination__NavItem svg.Icon {
  color: #c62700;
}

.template-kits .Pagination__NavItem svg.Icon {
  color: #c62700;
}

/** ---------------------------- Column List ---------------------------- **/

.CollectionItem__Image imagehover:hover .Image--contrast {
  opacity: 0;
}

.imagehover {
  opacity: 0 !important;
}

.ColumnItem__Wrapper:hover .imagehover {
  opacity: 1 !important;
}

.Content--HiddenOverflow {
  overflow: hidden;
}

/** ---------------------------- Pro Training Club ---------------------------- **/

.CollectionList img.Heading__Image:hover {
    transform: scale(1.05)rotate(2deg);
    transition: .4s all;
}

.CollectionList img.Heading__Image {
  transition: .4s all;
}

@media screen and (max-width: 999px) {
  .column_item ul.pro_list {
    text-align: left;
  }

  div.column_item {
    padding: 50px 20px;
  }

  div.column_item h2 {
    margin-top: 0;
  }

  #col2.column_item {
    border-top: solid 2px #e2e2e2;
    border-bottom: solid 2px #e2e2e2;
  }
  
}

@media screen and (min-width: 1000px) {
  .col_container {
    display: flex;
    flex-wrap: wrap;
  }
  
  .column_item {
    flex: 1 1 33.33%;
    padding: 50px;
    box-sizing: border-box;
    text-align: left;
    
  }
  
  #col2.column_item {
    border-left: solid 2px #e2e2e2;
    border-right: solid 2px #e2e2e2;
  }
}

/** ---------------------------- Collection Filters ---------------------------- **/

.CollectionFilters .Heading.u-h6  {
  font-family: "ASRV-Standard", "Avenir Next", sans-serif;
  font-size: 11px;
  color: #323232;
}

ul.Linklist__Availability {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}

.Linklist.Linklist__Discounts {
    margin-bottom: 4px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.Linklist__Availability label.Collapsible__Button.Heading.u-h6 {
    margin: 0;
    padding: 20px 0;
    display: flex;
    width: unset;
}

.Collapsible__Inner.Filter__Availability {
    visibility: visible;
    height: 100%;
}

.Collapsible__Inner.Filter__Availability .Collapsible__Content {
    padding: 0;
}

label.Filter_Label {
  font-family: "Avenir Next", sans-serif;
  font-size: 11px;
  color: #222222;
  font-weight: 500;
}

label.Filter_Label:after {
  transform: scaleX(0.01);
  display: block;
  content: "";
  transition: 250ms ease-in-out;
  transform-origin: 0% 100%;
  border-bottom: solid 1px #fff;
}

label.Filter_Label:hover:after {
  transform: scaleX(0.2);
  border-bottom: solid 1px #bfbfbf;
}

.Linklist__Filters .Linklist__Item:last-child,
.CollectionFilters li.HorizontalList__Item:last-child {
  margin-bottom: 15px !important;
}

.CollectionFilters li.Linklist__SizeItem:last-child {
  margin-bottom: 25px !important;
}

.CollectionFilters .Collapsible {
  border-bottom: 1px solid #e9e9e9;
  overflow: visible;
}

.CollectionFilters .ColorSwatchList li.HorizontalList__Item {
  border: solid 1px #dddddd;
  transition: 0.2s all;
}

.CollectionFilters ul.HorizontalList--spacingTight {
  margin-left: -2px;
  margin-right: -2px;
}

.CollectionFilters .HorizontalList--spacingTight .HorizontalList__Item {
  margin-right: 4px;
  margin-left: 4px;
}

.CollectionFilters ul.Linklist__FiltersSize {
  list-style: none;
  margin: -4px;
  padding: 0;
}

.CollectionFilters li.Linklist__SizeItem {
  cursor: pointer;
  margin: 0 -4px 8px;
  display: inline-block;
}

.CollectionFilters li.Linklist__DiscountItem {
  cursor: pointer;
}

.CollectionFilters label.Size_Label {
  width: 40px;
  margin: 0 8px;
  font-size: 10px;
  display: block;
  user-select: none;
  padding: 4px;
  border: solid 1px #ededed;
  text-align: center;
  color: #6a6a6a;
  font-family: 'Avenir Next', sans-serif;
  cursor: pointer;
  transition: 0.2s all;
}

.CollectionFilters label.Discount_Label {
  width: 75px;
  font-size: 12px;
  display: block;
  user-select: none;
  padding: 4px;
  border: solid 1px #7a7a7a;
  text-align: center;
  color: #6a6a6a;
  background: #fff;
  font-family: 'ASRV-Standard';
  font-weight:200;
  cursor: pointer;
  transition: 0.2s all;
}

.CollectionFilters label.Discount_Label:hover{
  color: #323232;
  border: solid 1px #323232;
}

label.Discount_Label.Filter_Active {
  background: #323232;
  color: #fff;
}

label.Discount_Label.Filter_Active:hover {
  background: #000000;
  color: #fff;
  order: solid 1px #000000;
}

.CollectionInner__Sidebar.CollectionInner__Sidebar--withTopToolbar.hidden-pocket {
  z-index: 1;
}

.CollectionFilters label.Size_Label:hover {
  border: solid 1px #c6c6c6;
  color: #323232;
}

label.Filter_Label.Filter_Active {
  color: #323232;
}

label.Size_Label.Filter_Active {
  color: #000;
  border: solid 1px #000;
}

label.Filter_Label.Filter_Active:after {
  transform: scaleX(0.1);
  display: block;
  content: "";
  transition: 250ms ease-in-out;
  transform-origin: 0% 25%;
  border-bottom: solid 1px #000;
}

label.Filter_Label.Filter_Active:hover:after {
  transform: scaleX(0.2);
  border-bottom: solid 1px #000;
}

.Filter_Label {
  cursor: pointer;
}

.Linklist__Item {
  cursor: pointer;
  margin-bottom: 8px;
}

/**
 * ----------------------------------------------------------------------------
 * Ad Team Filter Pages
 * ----------------------------------------------------------------------------
 */

/** ---------------------------- Running Collections ---------------------------- **/

.CollectionToolbar__CollectionNames {
  display: flex;
}

ul.CollectionNames_List {
  display: flex;
  list-style: none;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

li.CollectionNames_ListItem {
  padding: 0 10px;
}

a.CollectionNames_Link {
  padding: 5px 5px;
}

a.CollectionNames_LinkActive {
  border-bottom: solid 1px #a7a7a7;
}

ul.CollectionNames_ListMobile {
  display: flex;
  list-style: none;
  align-items: flex-start;
  padding: 0 25px;
  flex-direction: column;
  padding-top: 25px;
}

ul.CollectionNames_ListMobile li.CollectionNames_ListItem {
  padding: 10px;
}

@media screen and (max-width: 641px) {
  .CollectionToolbar__CollectionNames {
    display: none;
  }

  .CollectionToolbar__Heading {
    display: block;
    padding: 10px;
  }
  
}

/**
 * ----------------------------------------------------------------------------
 * Search
 * ----------------------------------------------------------------------------
 */

header.SearchHeader {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.CollectionToolbar__SearchResults {
  display: flex;
  align-items: center;
  font-family: "ASRV-Standard", "Avenir Next", sans-serif;
  color: #7a7a7a;
}

.CollectionToolbar__MobileOnly {
  display: none;
}

/**
 * ----------------------------------------------------------------------------
 * Countdown Timer
 * ----------------------------------------------------------------------------
 */

#countdown {
  max-width: 500px;
  text-align: center;
}

#countdown #tiles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#countdown #tiles > span {
  font-family: "ASRV-Standard", sans-serif;
  font-size: 37px;
  font-weight: 400;
  margin-top: 7px;
  text-align: center;
  color: #fff;
}

#countdown .labels {
  width: 100%;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#countdown .labels li {
  font-family: "Avenir Next", sans-serif;
  font-weight: 600;
  color: red;
  text-align: center;
  text-transform: uppercase;
  list-style: none;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.countdown_container {
    display: none;
}

/**
 * ----------------------------------------------------------------------------
 * Product Pages
 * ----------------------------------------------------------------------------
 */

img.Placeholder__Image {
    filter: opacity(0.7);
}

span.Fabric__Tech {
    font-family: "ASRV-Light";
    padding-bottom: 10px;
    font-size: 16px;
    color: #7a7a7a;
    transition: .4s all;
    display: block;
    letter-spacing: 0.05rem;
}

a.Fabric__Tech {
    font-family: "ASRV-Light";
    padding-bottom: 10px;
    font-size: 16px;
    color: #7a7a7a;
    transition: .4s all;
    display: block;
    letter-spacing: 0.05rem;
}

a.Fabric__Tech:hover {
    color:#222;
    transition: .4s all;
}

.Rte a.Fabric__Tech {
    color: #7a7a7a;
    text-decoration: none;
}

.Rte a.Fabric__Tech:hover {
    color: #222;
}

.fabric_tech_icon {
    text-align: left;
    padding-bottom: 10px;
}


a.Fabric__Img {
    display: block;
    padding-bottom: 10px;
}

.Rte a.Fabric__Img img {
    height: 15px;
    opacity: 0.75;
    transition: .4s all;
    margin: 0;
}

a.Fabric__Img.Fabric__ImgSilver img {
    height: 25px;
}

a.Fabric__Img:hover img {
    opacity: 1;
    transition: .4s all;
}

.ProductForm_LabelWrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    pointer-events: none;
}

span.ProductPage__Label, a.ProductPage__Label {
    font-family: "ASRV-Standard";
    background: #777;
    height: 100%;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    display: inline-block;
    padding: 0px 12px;
}

.ProductForm_LabelWrapper a {
  pointer-events: all;
}

span.ProductPage__Label.Updated__Fit, a.ProductPage__Label.Updated__Fit {
    background: #b31200;
}

@media screen and (max-width: 1007px) {
   .ProductForm_LabelWrapper {
    justify-content: center;
    margin-bottom: 20px;
  }

  span.ProductPage__Label {
    height: 100%;
    font-size: 14px;
    line-height: 22px;
    padding: 4px 12px;
  }

}

.SizeSwatch {
  font-family: "Avenir Next", sans-serif;
}


a.fitanalytics__button.primary > span,
button.SizeChart {
  font-size: 14px !important;
  font-family: "Avenir Next", sans-serif !important;
  color: #2d2d2d !important;
  text-decoration: none !important;
  -webkit-animation: fadeIn 1000ms ease-in-out;
  animation: fadeIn 1000ms ease-in-out;
  opacity: 1;
}

a.fitanalytics__button.primary > span {
  -webkit-animation: adeIn 200ms ease-in-out;
  animation: fadeIn 200ms ease-in-out;
  opacity: 1;
}

a.fitanalytics__button.primary > span:after,
button.SizeChart:after {
  transform: scaleX(0.2);
  display: block;
  content: "";
  transition: 250ms ease-in-out;
  transform-origin: 0% 25%;
  border-bottom: solid 1px #000;
}

a.fitanalytics__button.primary > span:hover:after,
button.SizeChart:hover:after {
  transform: scaleX(0.8);
  border-bottom: solid 1px #000;
}

button.SizeChart {
  -webkit-animation: fade 1000ms ease-in-out;
  animation: fadeIn 1000ms ease-in-out;
  opacity: 1;
}

.ProductForm__FitButtons {
  display: flex;
  justify-content: space-between;
  float: left;
  margin-bottom: 15px;
  height: 26px;
}

.ProductMeta {
  padding-bottom: 24px;
}

.ProductForm__ColorVariants {
  margin-bottom: 24px;
}

.ProductForm__Variants {
  margin-bottom: 24px;
  margin-top: 0;
}

/**
 * ----------------------------------------------------------------------------
 * Product Variants
 * ----------------------------------------------------------------------------
 */

/** ---------------------------- Not Flex Box Variants ---------------------------- **/

/*

ul.Variant_Spacing {
    list-style: none;
    margin: -4px;
}

li.Variant_spacingItem {
    margin: 0 -4px 8px -4px;
}

.SizeSwatchLabel {
    min-width: 73px;
    margin: 0 8px;
  	font-size:11px;
  	display:block;
  	user-select:none;
}

*/

/** ---------------------------- Flex Box Variants ---------------------------- **/

ul.Variant_Spacing {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  transition: 0.2s all;
  margin: 0;
  gap: 8px;
}

li.Variant_spacingItem {
  display: flex;
  width: 100%;
}

.SizeSwatchLabel {
  width: 100%;
  align-items: center;
  padding: 3px 0;
  font-size: 11px;
  justify-content: center;
  text-align: center;
  border: solid 1px #e6e6e6;
  line-height: 24px;
  user-select: none;
  transition: ease-in-out 0.2s;
}

ul.VariantSwatchList.Variant_Spacing li.VariantSwatchItem img.selected-variant {
  border: solid 1px #565656;
  transition: 0.2s all;
}

ul.VariantSwatchList.Variant_Spacing li.VariantSwatchItem img.hidden_variants {
  opacity: 40%;
  cursor: not-allowed;
}

ul.VariantSwatchList.Variant_Spacing li.VariantSwatchItem img {
  border: solid 1px #e6e6e6;
  transition: 0.2s all;
}

ul.VariantSwatchList.Variant_Spacing
  li.VariantSwatchItem
  img.available_variants:hover {
  border: solid 1px #c8c8c8;
  transition: 0.2s all;
}

ul.VariantSwatchList.Variant_Spacing
  li.VariantSwatchItem
  img.selected-variant:hover {
  border: solid 1px #565656;
  transition: 0.2s all;
}

li.available_variants.Variant_spacingItem {
  cursor: pointer;
}

li.hidden_variants.Variant_spacingItem {
  opacity: 40%;
  cursor: pointer;
}

.hidden_variantLabel {
  cursor: pointer;
}

.available_variantLabel {
  cursor: pointer;
}

.SizeSwatch__Radio {
  display: none;
}

.SizeSwatchLabel.is-active::after,
.SizeSwatch__Radio:checked + .SizeSwatchLabel {
  border-color: #565656;
  color: #565656;
}

.available_variantLabel:hover {
  color: #6a6a6a;
  border: solid 1px #c8c8c8;
}

/** ---------------------------- Product Swatches ---------------------------- **/

.Product__altColors img {
  border: 1px solid #e6e6e6;
  margin: 4px;
  width: 73px;
  height: 73px;
}

.Product__altColors img.selected-variant {
  border: 1px solid #565656;
}

.Product__altColors {
  margin: 0px -4px 15px -4px;
}

.Product__altColors .hidden_variants {
  opacity: 40%;
}

/** ---------------------------- Product Thumbnails & Video ---------------------------- **/

a.Product__SlideshowNavImage {
  display: flex;
  align-items: center;
  justify-content: center;
}

span.Product__SlideshowNavBadge {
  position: relative;
}

.Product__SlideshowNavBadge svg {
  width: 15px;
  height: 15px;
}

.PlaceholderSvg--dark--video {
    background: #222222;
    fill: #b10000;
}

.Video--Section__Wrapper {
    display: flex;
    flex-direction: row;
    width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.Video--Section {
    width: 100%;
}

/** ---------------------------- Product Accordian Description Boxes ---------------------------- **/

h5.accordion-tab {
  cursor: pointer;
  padding: 25px !important;
  padding-left: 2px !important;
  width: 100%;
  line-height: 13px;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-size: 13px;
  vertical-align: center;
  font-family: "Avenir Next", sans-serif;
  font-weight: 300;
  margin: 0;
  margin-top: 2px;
  border-bottom: 0 !important;
}

h5.accordion-tab.accordion__collections {
  font-size: 13px;
}

h5.accordion-tab:after {
  content: "\002B";
  line-height: 13px;
  font-size: 22px;
  float: right;
  color: #5f5f5f;
  margin-left: 5px;
  transition: transform 0.5s;
  transform-origin: 50% 60%;
}

h5.accordion-tab.accordion__collections {
  color: #323232;
}

.accordion-div.accordion__wrapper .panel_description {
    font-size: 13px;
}

h5.accordion-tab.accordion__collections::after {
    position: absolute;
    right: 50px;
    float: unset;
}

 .accordion__wrapper .panel_description > em + p {
    margin-top: 10px;
}



@media screen and (max-width: 641px) {
  
  h5.accordion-tab.accordion__collections {
    height: 65px;
    display: flex;
    align-items: center;
    padding-right: 60px!important;
    padding-left: 20px!important;
    font-size: 13px;
    line-height: 20px;
  }

  h5.accordion-tab.accordion__collections.active {
    border-bottom: solid 1px #f1f1f1!important;
    transition: 1s fadeIn;
  }

  .accordion-div.accordion__wrapper .panel_description {
    padding: 20px;
    line-height: 22px;
    font-size: 13px;
  }
  
  h5.accordion-tab.accordion__collections::after {
    position: absolute;
    right: 20px;
  }
  
}

.active:after {
  transform: rotate(-225deg);
}

.panel {
  padding: 0 2px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: solid 1px #f1f1f1;
}

div.panel-descrip,
div.panel_description {
  font-family: Helvetica, sans-serif;
  color: #565656;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  overflow-wrap: break-word;
  text-align: left;
  text-size-adjust: 100%;
  word-break: break-word;
  padding: 25px 0;
}

div.panel_description span {
  font-weight:300!important;
}

.panel_description ul {
  display: none;
}

.panel_description ul.Features_List {
  display: block;
}

p.model-info {
  font-style: italic;
}

div.model_info {
  font-style: italic;
  padding-top: 10px;
}

div.fabric_blend {
  padding-bottom: 20px;
}

.Product__Description {
  font-family: Helvetica, sans-serif;
  color: #565656;
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  overflow-wrap: break-word;
  text-align: left;
  text-size-adjust: 100%;
  word-break: break-word;
  padding: 10px 0;
}

/** ---------------------------- Size Guide Popups ---------------------------- **/

.size-guide-text {
  color: #545454;
  font-family: "ASRV-Standard", "Avenir Next", sans-serif;
  letter-spacing: 1px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 20px;
  padding-bottom: 0;
}

h5.size-guide-text.Heading.u-h1.caps {
  color: #545454;
}

.modal-size-chart-wrapper {
  background: white;
  width: 50%;
  position: fixed;
  margin: auto;
  text-align: center;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  height: fit-content;
  border-radius: 5px;
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.modal-fabric-care-wrapper {
    background: white;
    max-width: 50%;
    position: fixed;
    margin: auto;
    text-align: center;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    height: fit-content;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    padding: 50px;
}

.Fabric_Care_Button {
  margin:20px 0;
}

.Fabric_Care_Button button.SizeChart:after {
  transform: scaleX(0.2);
  display: block;
  content: "";
  transition: 250ms ease-in-out;
  transform-origin: 0% 25%;
  border-bottom: solid 1px #000;
}

.Fabric_Care_Button button.SizeChart:hover:after {
  transform: scaleX(0.8);
  border-bottom: solid 1px #000;
}

img.Fabric_CollectionLogo {
    max-width: 250px;
    margin-bottom: 20px;
}

.modal-size-chart-wrapper img {
  max-width: 900px;
  width: 100%;
}

button.size-chart-close {
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
  padding-bottom: 0;
  margin: 0;
  margin-top: 0 !important;
}

.modal-size-chart {
    background: rgb(54 54 54 / 75%) !important;
}

.PageOverlay.is-visible {
    opacity: .75;
    visibility: visible;
}

button.Modal__Close.size-chart-close {
  transition: .2s all;
}

button.Modal__Close.size-chart-close:hover {
    color: #000;
    transition: .2s all;
}

/**
 * ----------------------------------------------------------------------------
 * Retail Pages
 * ----------------------------------------------------------------------------
 */

.MapAddress__Wrapper {
  font-family: "ASRV-Standard", "Avenir Next", sans-serif;
  background: #323232;
  width: max-content;
  color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-bottom: -15px;
  transition: scale .2s;
}

.MapAddress__Wrapper a.MapAddress {
  display:block;
  padding: 4px 12px;
}

.MapAddress__Wrapper:hover {
  transform: scale(1.02);
  transition: .2s all;
  background: #000;
}

.RetailInfo__Section {
  background: #f7f7f7;
  width: 100%;
  margin: 100px auto;
}

.RetailInfo__Wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.RetailInfo__column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  min-height: 300px;
}

.RetailInfo__Info {
  background: transparent;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: 30%;
  padding: 50px 100px;
}

.RetailInfo__Info {
  font-size: 14px;
  font-weight: 400;
  color: #595959;
  font-family: "Avenir Next", sans-serif;
}

.RetailInfo__Media {
  background: #7a7a7a;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: 60%;
  margin: -40px 0;
  box-shadow: 1px 1px 15px rgb(0 0 0 / 30%);
  border-radius: 10px;
  overflow: hidden;
}

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

.RetailInfo__Hours ul {
  list-style: none;
  padding: 20px 0;
}

.phone-icon-button i {
  color: #9a9a9a;
  padding-right: 8px;
  display: inline-block;
  transition: 0.2s all;
}

.phone-icon-button {
  color: #595959;
  font-family: "Avenir Next", sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding: 0;
  display: block;
  background: transparent;
  margin: 0;
  transition: 0.2s all;
}

.phone-icon-button:hover i,
a.phone-icon-button:hover {
  color: #7a7a7a;
}

.RetailImage__Wrapper {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 500px;
}

.RetailImage__ImageWrapper {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

.RetailImage__Image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.RetailVideo__Player {
  width: 100%;
  height: 100%;
}

.RetailVideo__Wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

video.RetailVideo__Video {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 641px) {
  
  .Retail_Media .retail-media-container {
    max-width: 1280px;
    overflow: hidden;
    margin: 0 auto;
    max-height: 720px;
  }

  .accordion-div.accordion__wrapper {
    padding: 25px 50px;
  }

  .accordion-div.accordion__wrapper .panel_description {
    font-family: "Avenir Next", sans-serif;
  }

  
}

@media screen and (max-width: 640px) {
  .Retail_Media .retail-media-container {
    overflow: hidden;
    margin: 0 auto;
  }

  video.video-player {
    width: 100%;
    height: auto;
  }

  .retail-media-container {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    line-height: 0;
    z-index: 10;
    overflow: visible;
  }
  
}


/**
 * ----------------------------------------------------------------------------
 * Locations Archive
 * ----------------------------------------------------------------------------
 */

.Locations_Overlay {
    height: 100%;
    width: 100%;
    color: #ffffff;
    position: absolute;
    top: 0;
    display: flex;
    opacity: 0;
    transition: .2s all;
    background: #0000006b;
}

.Locations_OverlayText {
    width: 100%;
    align-items: center;
    font-family: 'ASRV-Standard';
    font-size: 30px;
    justify-content: center;
    display: flex;
}

a.Location_Block {
    position: relative;
}

a.Location_Block:hover .Locations_Overlay {
    opacity: 1;
    transition: .2s all;
}

.Locations_Content {
    padding: 10px 0;
}

.Locations_Heading {
    vertical-align: middle;
    display: flex;
    justify-content: space-between;
}

.Locations_Links {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: end;
}

h2.Locations_Title {
    font-family: "ASRV-Standard";
    font-size: 18px;
    color: #222;
}

.Featured_Location{
    object-fit: cover;
    aspect-ratio: 5/3;
}

span.Location__Soon{
    font-size: 18px;
    font-family: "ASRV-Standard";
    color: #b31200;
  }

svg#asrv_pin {
    height: 19px;
    width: auto;
    transform: translateY(1px);
}

svg#icon-phone-alt {
    width: 12px;
    height: auto;
    margin-right: 6px;
    transform: translateY(1px) rotateY(180deg);
}

.Locations_Hours {
    font-family: "Avenir Next", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #222;
    margin: 10px 0;
}

.Locations_Content .RetailInfo__Phone a {
  display: inline-block;
  font-family: "Avenir Next", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #222;
}

.Locations_Address{
    font-family: "Avenir Next", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #222;
    margin: 10px 0;
}


/**
 * ----------------------------------------------------------------------------
 * Shogun Specifics
 * ----------------------------------------------------------------------------
 */

ul.ColorSwatchList.HorizontalList.HorizontalList--spacingTight.LandingSwatches li.HorizontalList__Item {
    margin-left: 2px;
    margin-right: 2px;
}

.HorizontalList--spacingTight.LandingSwatches {
    margin-left: -2px;
    margin-right: -2px;
}

/** ---------------------------- Shogun Accordian ---------------------------- **/

div.shogun-accordion
  > div.shogun-accordion-body
  > div.shg-box-vertical-align-wrapper
  > div.shg-box {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  padding: 25px 0px !important;
}

.shogun-accordion-body {
  opacity: 1 !important;
  transition: none !important;
}

/** ---------------------------- Old CSS ---------------------------- **/

#shopify-section-product-template
  .shogun-accordion-wrapper
  > .shogun-accordion
  > .shogun-accordion-heading {
  background: #fff !important;
  padding: 10px;
  font-size: 13px !important;
  font-family: "Avenir Next", sans-serif !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
}

#shopify-section-product-template
  .shogun-accordion-wrapper
  > .shogun-accordion
  > .shogun-accordion-heading
  > .shogun-accordion-header
  > .shogun-accordion-title {
  font-size: 13px !important;
  font-family: "Avenir Next", sans-serif !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  color: #2d2d2d !important;
}

#shopify-section-product-template
  .shogun-accordion-wrapper
  > .shogun-accordion {
  box-shadow: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: solid 1px #f1f1f1 !important;
}

#shopify-section-product-template
  .shogun-accordion-wrapper
  > .shogun-accordion
  > .shogun-accordion-body {
  border: none !important;
}

#shopify-section-product-template
  .shogun-accordion-wrapper
  > .shogun-accordion
  > .shogun-accordion-body
  ul {
  padding-left: 2px !important;
  margin-left: 0 !important;
}

.banner-fw {
  height: calc(100vh - 125px);
  overflow: hidden;
}

.banner-fw .responsive-text {
  font-size: 2vw;
}

.banner-hw {
  height: 39vh;
  overflow: hidden;
}

.responsive-text > * > * {
  font-size: 6.9vw !important;
  letter-spacing: 0.3rem !important;
  pointer-events: none !important;
  user-select: none !important;
}

video.shogun-videos {
  width: 100% !important;
  height: auto !important;
}

.shogun-video-border {
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 15px rgb(0 0 0 / 30%);
}

.shogun-font-fix {
  font-family: "Avenir Next", sans-serif !important;
}

.asrv-font-fix {
  font-family: "Avenir Next", sans-serif !important;
}

.caps {
  text-transform: uppercase;
}

.asrv-header {
  font-family: "ASRV-Standard", sans-serif;
  font-weight: 400;
}

.asrv-light {
  font-family: "ASRV-Standard", sans-serif;
  font-weight: 300;
}

.asrv-body-text {
  font-family: "Avenir Next", sans-serif !important;
  font-size: 16px !important;
  color: #595959 !important;
  font-weight: 400 !important;
  line-height: 26px !important;
}

.asrv-body-text p {
  font-family: "Avenir Next", sans-serif !important;
  font-size: 14px !important;
  color: #595959 !important;
  font-weight: 400 !important;
  line-height: 26px !important;
}

.shogun-lookbook-text p a {
  font-size: 14px;
  font-family: "ASRV-Standard";
  text-decoration: none !important;
  color: #323232;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.2s all;
  display: block;
}

.shogun-news-text p {
  font-size: 14px;
  font-family: "ASRV-Standard";
  text-decoration: none !important;
  color: #323232;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.2s all;
  display: block;
}

.shogun-news-text-bottom p {
  font-size: 14px;
  font-family: "ASRV-Standard";
  text-decoration: none !important;
  color: #323232;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.2s all;
  display: block;
  text-align: right;
}

.shogun-lookbook-text p a:hover {
  text-decoration: none !important;
  color: #000000;
}

.shogun-news-text p:hover {
  text-decoration: none !important;
  color: #000000;
}

.shogun-news-text-bottom p:hover {
  text-decoration: none !important;
  color: #000000;
}

.shogun-box-clickable div,
.shogun-box-clickable p,
.shogun-box-clickable img {
  cursor: pointer !important;
}

/** ---------------------------- Shogun Buttons ---------------------------- **/

.asrv-button-dark-shogun {
    display: inline-block;
    text-align: center;
}

.asrv-button-dark-shogun-center {
    display: block;
    text-align: center;
}


.asrv-button-dark-shogun a {
  color: #fff !important;
  border: none !important;
  transition: 0.4s all !important;
  font-weight: 600 !important;
  font-family: "Avenir Next", sans-serif !important;
  padding: 14px 28px !important;
  min-width: 170px !important;
  background: #323232 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  border-radius: 0 !important;
}

.asrv-button-dark-shogun a:hover {
  color: #fff !important;
  background: #000 !important;
}

.asrv-button-dark-shogun a::before {
  background-color: transparent !important;
}

/** -- Dark Button with Forward Arrow -- **/

.asrv-button-dark-shogun-forward a {
  color: #fff !important;
  border: none !important;
  transition: 0.4s all !important;
  font-weight: 600 !important;
  font-family: "Avenir Next", sans-serif !important;
  padding: 14px 28px !important;
  background: #323232 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  border-radius: 0 !important;
  min-width: 275px;
  text-align: center !important;
}

.asrv-button-dark-shogun-forward a:hover {
  color: #fff !important;
  background: #000 !important;
}

.asrv-button-dark-shogun-forward a::after {
  content: url(/cdn/shop/files/arrow-right.svg);
  width: 6px;
  filter: invert(1);
  background: transparent;
  line-height: 13px;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.5s;
  transform: translateY(1px);
}

.asrv-button-dark-shogun-forward a::before {
  background-color: transparent !important;
}

/** -- Dark Button with Backward Arrow -- **/

.asrv-button-dark-shogun-backward a {
  color: #fff !important;
  border: none !important;
  transition: 0.4s all !important;
  font-weight: 600 !important;
  font-family: "Avenir Next", sans-serif !important;
  padding: 14px 28px !important;
  background: #323232 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  border-radius: 0 !important;
  min-width: 275px;
  text-align: center !important;
}

.asrv-button-dark-shogun-backward a:hover {
  color: #fff !important;
  background: #000 !important;
}

.asrv-button-dark-shogun-backward a::before {
  content: url(/cdn/shop/files/arrow-left.svg);
  width: 6px;
  filter: invert(1);
  background: transparent;
  line-height: 13px;
  display: inline-block;
  margin-right: 5px;
  transition: transform 0.5s;
  transform: translateY(1px);
}

.asrv-button-dark-shogun-backward a::before {
  background-color: transparent !important;
}

/** -- Dark Button with Border -- **/

.asrv-button-dark-border-shogun a {
  color: #fff !important;
  border: solid 1px #fff;
  transition: 0.4s all !important;
  font-weight: 600 !important;
  font-family: "Avenir Next", sans-serif !important;
  padding: 14px 28px !important;
  min-width: 170px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  text-align: center !important;
  letter-spacing: 0.2em !important;
}

.asrv-button-dark-border-shogun a:hover {
  color: #fff !important;
  background: #000 !important;
}

.asrv-button-dark-border-shogun a::before {
  background-color: transparent !important;
}

/** -- White Button -- **/

.asrv-button-light-shogun a {
  color: #232323 !important;
  border: none !important;
  transition: 0.4s all !important;
  font-weight: 400 !important;
  font-family: "Avenir Next", sans-serif !important;
  padding: 14px 28px !important;
  min-width: 170px !important;
  background: #fff !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  text-align: center !important;
  letter-spacing: 0.2em !important;
}

.asrv-button-light-shogun a:hover {
  color: #232323 !important;
  background: #dedede !important;
}

.asrv-button-light-shogun a::before {
  background-color: transparent !important;
}

/** -- White Button with Shadow -- **/

.asrv-button-light-shadow-shogun a {
  color: #232323 !important;
  border: none !important;
  transition: 0.4s all !important;
  font-weight: 400 !important;
  font-family: "Avenir Next", sans-serif !important;
  padding: 14px 28px !important;
  min-width: 170px !important;
  background: #fff !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  text-align: center !important;
  letter-spacing: 0.2em !important;
}

.asrv-button-light-shadow-shogun a:hover {
  color: #232323 !important;
  background: #dedede !important;
}

.asrv-button-light-shadow-shogun a::before {
  background-color: transparent !important;
}

/**
 * ----------------------------------------------------------------------------
 * Lookbook Pages
 * ----------------------------------------------------------------------------
 */

ul.Lookbook_List {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 30px;
  column-gap: 30px;
  padding: 30px;
}

ul.Lookbook_List .Lookbook_ListItem--Wide {
  grid-column: span 2; /* This will make the item span two columns */
}

ul.Lookbook_List .Lookbook_ListItem--Wide a {
  aspect-ratio: 16/9;
}

ul.Lookbook_List .Lookbook_ListItem--Wide img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

ul.Lookbook_List .Lookbook_ListItem--Wide.Half--wide img {
    aspect-ratio: 16/9;
}

ul.Lookbook_List .Lookbook_ListItem--Wide.Full--wide {
  grid-column: span 4;
}

ul.Lookbook_List .Lookbook_ListItem--Wide.Full--wide img {
    aspect-ratio: 4/1;
}


@media screen and (max-width: 1140px) {
  ul.Lookbook_List .Lookbook_ListItem--Wide.Half--wide {
    display: none;
  }

  ul.Lookbook_List .Lookbook_ListItem--Wide.Full--wide {
    grid-column: span 2;
  }

  ul.Lookbook_List .Lookbook_ListItem--Wide.Full--wide img {
    aspect-ratio: 2/1;
  }
  
}

ul.Lookbook_List_Archive {
  column-gap: 30px;
  row-gap: 15px;
}

ul.Lookbook_List_Archive.Mindset_Archive {
  column-gap: 30px;
  row-gap: 30px;
}

ul.Lookbook_List_Archive.Locations_Archive {
  column-gap: 30px;
  row-gap: 30px;
}

.Lookbook_Menu {
  padding: 30px 30px 0;
}

h2.Lookbook_Nav {
  color: #323232;
  display: block;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  font-size: 14px;
  vertical-align: center;
  font-weight: 300;
  font-family: "ASRV-Standard";
}

h2.Lookbook_Nav:after {
  content: url(/cdn/shop/files/CaretDownMinor.svg);
  width: 15px;
  background: transparent;
  line-height: 13px;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.5s;
  transform: translateY(3px);
}

h2.Lookbook_Nav.active:after {
  transform: rotate(-180deg);
}

h2.Lookbook_Nav {
  color: #323232;
  display: block;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  font-size: 14px;
  vertical-align: center;
  font-weight: 300;
  font-family: "ASRV-Standard", "Avenir Next", sans-serif;
  margin-bottom: 0;
}

h2.Lookbook_Nav:after {
  content: url(/cdn/shop/files/CaretDownMinor.svg);
  width: 15px;
  background: transparent;
  line-height: 13px;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.5s;
  transform: translateY(3px);
}

h2.Lookbook_Nav.active:after {
  transform: rotate(-180deg);
}

.Lookbook_Panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.Lookbook_Links ul li {
  list-style: none;
}

div.Lookbook_Links {
  font-size: 14px;
  font-weight: 300;
  font-family: "ASRV-Standard";
  line-height: 20px;
  overflow-wrap: break-word;
  text-align: left;
  text-size-adjust: 100%;
  word-break: break-word;
  padding: 0;
  margin-top: 10px;
}

li.View_All {
  margin-top: 10px;
}

.Lookbook_Links ul li a {
  color: #323232;
  transition: 0.2s all;
}

.Lookbook_Links ul li a:hover {
  color: #000;
}

span.Lookbook_Title {
  color: #323232;
  cursor: pointer;
  text-align: left;
  transition: 0.4s;
  font-weight: 300;
  font-family: "ASRV-Standard", "Avenir Next", sans-serif;
}

a.Lookbook_Block {
  display: block;
}

.Lookbook_Pagination {
  display: flex;
  justify-content: space-between;
  margin: 30px;
  margin-top: 0;
}

.Lookbook_Pagination a {
    max-width: 350px;
}

a.Hidden_Button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

a.Prev_Button,
a.Next_Button {
  color: #fff;
  background: #222222;
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
  font-weight: 600;
  min-width: 170px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 14px 28px;
  line-height: normal;
  border-radius: 0;
  transition: 0.4s all;
  z-index: 1;
  cursor: pointer;
  display: block;
}

a.Collection_Lookbook {
  color: #525252;
  border: 1px solid rgba(106, 106, 106, 0.2);
  background: transparent;
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
  font-weight: 300;
  min-width: 170px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 14px 28px;
  line-height: normal;
  border-radius: 0;
  transition: 0.4s all;
  z-index: 1;
  cursor: pointer;
  display: block;
}

a.Collection_Lookbook:hover {
    color: #000;
    font-weight:300;
    border: 1px solid rgba(106,106,106,0.7);
}

a.Next_Button {
  padding-right: 34px;
}

a.Prev_Button {
  padding-left: 34px;
}

a.Prev_Button:hover,
a.Next_Button:hover {
  background: #000;
}

a.Next_Button:before {
  content: url(/cdn/shop/files/arrow-left.svg);
  width: 6px;
  filter: invert(1);
  background: transparent;
  line-height: 13px;
  display: inline-block;
  transition: transform 0.5s;
  transform: translateY(1px);
  margin-right: 15px;
}

a.Prev_Button:after {
  content: url(/cdn/shop/files/arrow-right.svg);
  width: 6px;
  filter: invert(1);
  background: transparent;
  line-height: 13px;
  display: inline-block;
  margin-left: 15px;
  transition: transform 0.5s;
  transform: translateY(1px);
}

.featherlight {
  background: rgba(0, 0, 0, 0.8);
}

.featherlight-next,
.featherlight-previous {
  background: transparent;
  top: 0;
}

.featherlight-next:hover,
.featherlight-previous:hover {
  background: transparent;
}

.featherlight-previous {
  background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 60%));
  opacity: 0;
  transition: 0.6s ease-in-out;
  left: 0;
  right: 55%;
}

.featherlight-next {
  background-image: linear-gradient(
    to right,
    rgb(0 0 0 / 0%),
    rgb(0 0 0 / 60%)
  );
  opacity: 0;
  transition: 0.6s ease-in-out;
  right: 0;
  left: 55%;
}

.featherlight-next:hover {
  opacity: 1;
  background-image: linear-gradient(
    to right,
    rgb(0 0 0 / 0%),
    rgb(0 0 0 / 60%)
  );
}

.featherlight-previous:hover {
  opacity: 1;
  background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 60%));
}

.featherlight-previous > span,
.featherlight-next > span {
  opacity: 0;
  visibility: hidden;
}

.featherlight .featherlight-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 0;
  border-bottom: 0;
}

.featherlight.featherlight-first-slide .featherlight-previous {
  display: none;
}

.featherlight.featherlight-last-slide .featherlight-next {
  display: none;
}

.featherlight .featherlight-close-icon {
  line-height: 50px;
  width: 50px;
  background: transparent;
  color: #ffffff00;
  transition: 0.2s all;
}

.featherlight .featherlight-close-icon:hover {
  color: #fff;
}

/**
 * ----------------------------------------------------------------------------
 * Blog Articles
 * ----------------------------------------------------------------------------
 */

.tapcart__header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  color: #7a7a7a;
  padding: 0 20px;
  padding-bottom: 20px;
  border-bottom: solid 2px #e9e9e9;
  display: none;
}

.tapcart__back {
  background: transparent;
  border: none;
  cursor: pointer;
}

.tapcart__backIcon {
  height: 24px;
  width: auto;
}


.tapcart-webbridge .tapcart__header{
  display: block;
}

.tapcart-webbridge .Button__Section {
  display: none!important;
}

.tapcart-webbridge .Collection_Link a{
  display:none;
}

.tapcart-webbridge a.Prev_Button, a.Next_Button {
  padding: 14px 10px;
}

.tapcart-webbridge a.Next_Button {
    padding-right: 16px;
}

.tapcart-webbridge a.Prev_Button {
    padding-left: 16px;
}



video.Video {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.Video__Bordered {
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 15px rgb(0 0 0 / 30%);
}

.Article__ImageContainer {
  background: #000;
}

.Article__ImageWrapper {
  opacity: 0.6;
}

.Article__Image.Image--fadeIn.Image--lazyLoaded {
  height: 100vh;
  top: -200px;
}

.ArticleToolbar__Center {
  margin: 0 auto;
  display: block;
  text-align: center;
}

span.Heading.Text--subdued.u-h8.hidden-tablet {
  text-transform: uppercase;
  color: #e41616;
  font-weight: 600;
}

span.ArticleToolbar__ArticleTitle.Heading.u-h7 {
  display: unset;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

h1.Article__Title {
  font-size: 34px;
  font-family: "ASRV-Standard";
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
}

h3.Article__Issue {
  font-size: 16px;
  font-family: "Avenir Next", "Helvetica", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.Article__Heading {
  padding: 25px;
  color: #7a7a7a;
}

.Article__ImageContainer {
  position: relative;
}

.Article__QuoteWrapper {
  position: absolute;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  top: 50%;
  left: 50%;
  padding: 0;
  padding-left: 70px;
  padding-right: 70px;
}

h3.Article_Quote {
  font-size: 17px;
  letter-spacing: 0.2rem;
  color: #fff;
  text-transform: uppercase;
  font-family: "Avenir Next", "Helvetica", sans-serif;
  padding-top: 25px;
}

.ASRV-Article .Article__Body.Rte p {
  text-align: justify;
}

.ASRV-Article .Article__Body.Rte h2 {
  font-weight: 600;
  color: #808080;
  letter-spacing: 1px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}

.ASRV-Article .Article__Body.Rte h3 {
  color: #808080;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "ASRV-Standard";
  margin-bottom: 0;
  margin-top: 1em;
}

.ASRV-Article .Article__Body.Rte h4 {
  color: #808080;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-top: 0;
}

.ASRV-Article .Article__Body.Rte h6 {
  color: #808080;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0;
}

.ASRV-Article .Article__Body.Rte hr + p {
  margin-bottom: 0;
  margin-top: 0;
}

.ASRV-Article .Article__Body.Rte hr {
  margin: 2em 0;
}

.ArticleToolbar .Text--subdued {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 600;
}

aside.ArticleToolbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ArticleToolbar__Left {
  display: flex;
  justify-content: start;
}

.ArticleToolbar__Right {
  display: flex;
  justify-content: end;
}

div.ArticleFooter__Wrapper {
  margin: 60px 30px;
}

.ArticleFooter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ArticleFooter__Left {
  display: flex;
  justify-content: start;
}

.ArticleFooter__Right {
  display: flex;
  justify-content: end;
}

.ArticleFooter__Center {
  display: block;
  text-align: center;
}

.ArticleFooter__Center h4 {
  margin: 0;
  font-size: 22px;
  font-family: "ASRV-Standard", sans-serif;
  font-weight: 400;
  line-height: normal;
  color: #323232;
}

.ArticleFooter__Center span {
  margin: 0;
  font-size: 14px;
  font-family: "ASRV-Standard", sans-serif;
  font-weight: 300;
  color: #bababa;
}

.ArticleFooter__Mobile {
  display: none;
}

.ArticleFooter__WrapperPadded {
    padding: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 1140px) {
  .ArticleToolbar__Nav {
    margin-left: 0;
    margin-right: 0;
  }
}

.ASRV-Article .Article__Body {
  font-weight: 400;
  color: #424242;
  font-size: 16px;
  font-family: "Avenir Next", sans-serif;
  text-align: justify;
}

.ASRV-Article .Article__Section.Fndr__Content {
  padding: 100px 0;
  background: #f8f8f8;
}

.ASRV-Article .Article__Section.Fndr__Content .Article__Wrapper {
  background: transparent;
  padding: 0 10px;
}

.ASRV-Article .Article__Wrapper {
  margin: 0 auto;
  padding: 100px 10px 50px;
}

.ASRV-Article .Music__Content .Article__Wrapper {
    margin: 0 auto;
    padding: 0px 10px 50px;
}

.ASRV-Article .Rte h2 {
  margin: unset;
  margin-bottom: 10px;
}

.ASRV-Article .Signature {
  padding-top: 20px;
}

.ASRV-Article .Neuro_Box {
  background: #f8f8f8;
  padding: 50px;
  margin-top: 50px;
}

@media screen and (min-width: 641px) {
  .hidden-desktop { 
    display: none!important;
  }
}

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

  .hidden-mobile { 
    display: none!important;
  }
  
}

/**
 * ----------------------------------------------------------------------------
 * ASRV Buttons
 * ----------------------------------------------------------------------------
 */

ul.app_buttons a img {
  height: 40px;
}

.Footer ul.app_buttons {
  padding: 25px 0;
}

ul.app_buttons.app_buttons_shop a img {
  height: 45px;
}

ul.app_buttons.app_buttons_shop {
  padding: 20px 0;
}

ul.app_buttons a img {
  height: 40px;
  transition: 0.4s all;
  filter: contrast(1);
}

ul.app_buttons {
  padding: 25px 0;
}

ul.app_buttons li {
  list-style: none;
  display: inline;
}

ul.app_buttons > li:first-of-type {
  margin-right: 10px;
}

ul.app_buttons.main li {
  list-style: none;
  display: inline;
}

ul.app_buttons.main > li:first-of-type {
  margin-right: 10px;
}

ul.app_buttons.main a img {
  height: 50px;
}

ul.app_buttons.main {
  padding: 25px 0;
}

ul.app_buttons a img:hover {
  filter: contrast(2);
}

.Button_Content .ButtonGroup {
  margin: 0;
}

.Primary__Button {
  color: #fff;
  background: transparent;
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
  min-width: 170px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 14px 28px;
  line-height: normal;
  border-radius: 0;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  cursor: pointer;
  outline: 0;
  position: relative;
  display: inline-block;
  -webkit-tap-highlight-color: initial;
}

.Primary__Button.Button__HoverEffects {
  padding: 13px 28px;
  border: solid 1px transparent;
}

.Primary__Button.Button__HoverEffectsRed {
  padding: 13px 28px;
  border: none;
  background: #c62700;
}

.Primary__Button:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: left center;
  z-index: -1;
}

.Hidden_Collection {
  display: none;
}

.Hidden__Collection {
  Display: none;
}

a.klaviyo-bis-trigger {
  transition: 0.4s all;
}

a.klaviyo-bis-trigger:hover {
  transition: .2s all;
  border: solid 1px #222;
  color: #181818;
}

button#SI_trigger {
  transition: 0.4s all;
}

button#SI_trigger:hover {
  transition: .2s all;
  border: solid 1px #222;
  color: #181818;
}

.Dark__Button {
  color: #fff;
  font-weight: 600;
}

.Black__Button {
  color: #fff;
  background: #000;
}

.Dark__Button.Button__HoverEffects {
  border-color: #323232;
}


#Button__Anchor[disabled] {
    margin-bottom: 10px;
}


.Dark__Button.Button__HoverEffectsRed {
  border-color: #323232;
}

.Dark__Button:before {
  background-color: #323232;
  transition: 0.4s all;
}

.Light__Button {
  color: #232323;
  font-weight: 400;
}

.Light__Button.Button__HoverEffects {
  border-color: #fff;
}

.Light__Button:before {
  background-color: #ffffff;
  transition: 0.4s all;
}

.Small__Button {
    color: #000;
    background: white;
    font-size: 10px;
    min-width: 135px;
    padding: 9px 18px;
}

.AppSection__Button:hover {
    transition: .2s all;
    border: solid 1px #222;
    color: #181818;
}

.AppSection__Button{
  transition:.2s all;
}

@media (-moz-touch-enabled: 0), (hover: hover) {
  .Button__HoverEffects:not([disabled])::before {
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }

  .Button__HoverEffects:not([disabled]):hover::before {
    transform-origin: right center;
    transform: scale(0, 1);
  }
  .Button__HoverEffectsRed:not([disabled])::before {
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }

  .Button__HoverEffectsRed:not([disabled]):hover::before {
    transform-origin: right center;
    transform: scale(0, 1);
  }

  .Dark__Button.ProductForm__AddToCart:disabled {
    border: 1px solid rgba(106, 106, 106, 0.2);
  }
}

@media (-moz-touch-enabled: 0), (hover: hover) {
  .Dark__Button.Button__HoverEffects:not([disabled]):hover {
    color: #323232;
    background-color: transparent;
  }

  .Dark__Button.Button__HoverEffectsRed:not([disabled]):hover {
    color: #fff;
    background-color: #c62700;
  }

  .Light__Button.Button__HoverEffects:not([disabled]):hover {
    color: #fff;
    background-color: transparent;
  }

  .Dark__Button:not([disabled]):hover::before {
    color: #fff;
    background-color: #000;
  }

  .Light__Button:not([disabled]):hover::before {
    color: #232323;
    background-color: #dedede;
  }
}

@media (-moz-touch-enabled: 0), (hover: hover) {
  .Dark__Button.Button__HoverEffects:not([disabled]):hover::before {
    color: #fff;
    background-color: #323232;
  }

  .Dark__Button.Button__HoverEffectsRed:not([disabled]):hover::before {
    color: #fff;
    background-color: #323232;
  }

  .Light__Button.Button__HoverEffects:not([disabled]):hover::before {
    color: #232323;
    background-color: #fff;
  }
}

.Secondary__Button {
  color: #616161;
  border: 1px solid rgba(106, 106, 106, 0.2);
  background: transparent;
  font-family: 'Avenir Next', sans-serif;
  font-size: 12px;
  font-weight: 100;
  min-width: 170px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 14px 28px;
  line-height: normal;
  border-radius: 0;
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  cursor: pointer;
  outline: 0;
  position: relative;
  display: inline-block;
}

.Secondary__Button.ButtonGroup__Item:hover {
  border: 1px solid rgba(106, 106, 106, 0.7);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  color:#222222;
}

.AppSection__Button {
  background-color: #fff;
}

.Secondary__Button[disabled] {
  cursor: not-allowed;
}

@media screen and (max-width: 640px) {
  .Secondary__Button {
    border: solid 1px #222;
    color: #222;
    font-weight:600;
  }
}

/**
 * ----------------------------------------------------------------------------
 * iFrames
 * ----------------------------------------------------------------------------
 */

.grecaptcha-badge {
  bottom: 110px !important;
  z-index: 100 !important;
}

iframe#chat-button {
  right: 5px !important;
}

/**
 * ----------------------------------------------------------------------------
 * Footer
 * ----------------------------------------------------------------------------
 */

.Footer__Block.Footer__Block--accessibility {
  display: flex;
  margin-right: 2%;
}

.Footer__Accessibility {
  text-align: left;
  align-items: center;
  display: flex;
  justify-content: center;
}

svg#accessibility_svg {
  align-items: center;
  justify-content: center;
  display: flex;
}

svg#accessibility_svg,
svg#accessibility_svg_dark {
  width: 60px;
  transition: 0.4s all;
}

svg#accessibility_svg_dark {
  align-items: center;
  justify-content: center;
  display: flex;
}

svg#accessibility_svg_dark {
  width: 60px;
}

svg#accessibility_svg_dark:hover {
  filter: brightness(2);
}

svg#accessibility_svg:hover {
  filter: brightness(0);
}

/**
 * --------------------------------------------------------------------------------------------------------------------------------------------------------
 * 
 * Media Queries
 * 
 * --------------------------------------------------------------------------------------------------------------------------------------------------------
 */

@media screen and (min-width: 641px) {
  .CollectionFilters .Collapsible--autoExpand {
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 1008px) {
  .modal-size-chart.Modal--pageContent {
    padding: 100px 0 80px;
  }

  .Product__Gallery {
    margin-left: 20px;
  }

  header.SearchHeader {
    display: none;
  }

  .Product__Info {
    top: calc(var(--header-height) + 35px);
  }

  .Product__SlideshowNav.Product__SlideshowNav--thumbnails {
    top: calc(var(--header-height) + 40px);
  }
}

@media screen and (min-width: 1140px) {
  .CollectionInner__Sidebar {
    margin-right: 10px;
    margin-left: 50px;
    margin-top: 50px;
  }

  .CollectionInner__Products {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1140px) {
  ul.Lookbook_List {
    grid-template-columns: repeat(2, 1fr);
  }

  .CollectionList {
    width: 100%;
    min-width: 100%;
  }

  .modal-size-chart-wrapper {
    width: 90%;
  }

  .modal-fabric-care-wrapper {
    max-width: 90%;
  }

  .modal-size-chart-wrapper img {
    max-width: 100%;
  }

  .RetailInfo__Wrapper {
    width: 100%;
    padding: 0;
    margin: 50px auto;
  }

  .RetailInfo__column {
    min-height: 0;
  }

  .RetailInfo__Media {
    margin: 40px 20px;
  }

  .Video--Section__Wrapper {
    width: 100%;
    padding: 0;
    margin: 50px auto;
  }
}

@media screen and (max-width: 1140px) {
  .SectionHeader h2.Responsive_text {
    padding-bottom: 20px;
  }

  .RetailInfo__Info {
    padding: 25px;
  }
}

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

  .CollectionMain .ProductItem__Info {
    height: 90px;
  }

  .featured-collection .ProductItem__Info {
    height: 90px;
  }

  .CollectionToolbar .CollectionToolbar__SearchResults {
    display: none;
  }

  .CollectionToolbar__MobileOnly .CollectionToolbar__SearchResults {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

  .CollectionToolbar__MobileOnly {
    display: block;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .RetailInfo__Wrapper {
    display: block;
    padding: 30px;
  }

  .RetailInfo__Info {
    padding: 30px 100px 50px;
  }

  .RetailInfo__Media {
    margin: 0px 0px 30px;
  }

  .Section__Content--Position {
    padding: 0 30px;
  }

  .Video--Section__Wrapper {
    display: block;
    padding: 30px;
  }
}

@media screen and (max-width: 640px) {
  div#countdown {
    margin: 0 auto;
  }

  #countdown #tiles > span {
    font-size: 30px;
  }

  #countdown .labels li {
    font-size: 8px;
  }

  span.Lookbook_Title {
    font-size: 12px;
  }

  span.Lookbook_Title_Mobile {
    display: none;
  }

  .Lookbook_Pagination {
    display: block;
  }

  a.Hidden_Button {
    display: none;
  }

  .Lookbook_Pagination .Next_Article + .Prev_Article {
    margin-top: 15px;
  }

  .Lookbook_Pagination .Collection_Link {
    margin:15px 0;
  }

  .Lookbook_Pagination .Hidden_Button + .Prev_Article {
    margin-top: 0px;
  }

  .grecaptcha-badge {
    bottom: 110px !important;
    z-index: 100 !important;
    pointer-events: none !important;
    transform: scale(0.75) !important;
    right: -172px !important;
  }

/** -- Article Pages -- **/

  .Article__ImageWrapper {
    height: 300px;
  }

  .ASRV-Article .Article__Image.Image--fadeIn.Image--lazyLoaded {
    height: 100%;
    top: unset;
    background-size: cover;
  }

  h3.Article_Quote {
    font-size: 12px;
    letter-spacing: 0.1rem;
  }

  .ASRV-Article .Article__Wrapper {
    margin: 0 auto;
    padding: 50px 30px;
  }

  .Article__QuoteWrapper {
    padding: 0 20px;
  }

  .ASRV-Article .Article__Section.Fndr__Content {
    padding: 50px 0;
  }

  .ASRV-Article .Article__Section.Fndr__Content .Article__Wrapper {
    background: transparent;
    padding: 0 30px;
  }

  .ASRV-Article .Article__Section.Aftr__Content .Article__Wrapper {
    padding-bottom: 0;
  }

  .ASRV-Article .Article__Section.Footer__Content {
    padding: 50px 0;
  }

  div.ArticleFooter__Wrapper {
    margin: 0px 30px;
  }

  .ArticleFooter {
    display: block;
  }

  .ArticleFooter__Center {
    padding: 10px 0;
  }

  .ArticleFooter__Center > * {
    display: none;
  }

  .ArticleFooter__Left,
  .ArticleFooter__Right {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .ArticleToolbar__Nav {
    display: inline-block;
    margin-left: 0;
    width: 100%;
  }

  a.Prev_Article,
  a.Next_Article {
    padding: 18px 28px;
  }

  a.Next_Article {
    padding-left: 15px;
  }

  a.Prev_Article {
    padding-right: 15px;
  }

  .ArticleFooter__Mobile {
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }

  .ArticleFooter__Mobile h4 {
    margin: 0;
    font-size: 22px;
    font-family: "ASRV-Standard", sans-serif;
    font-weight: 400;
    line-height: normal;
    color: #323232;
  }

  .ArticleFooter__Mobile span {
    margin: 0;
    font-size: 14px;
    font-family: 'ASRV-Standard', sans-serif;
    font-weight: 300;
    color: #bababa;
  }

/** -- Lookbook Pages -- **/
  
  ul.Lookbook_List {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    padding: 30px;
  }

  ul.Lookbook_List_Archive.Locations_Archive li::after {
    content:" ";
    display: block;
    border-bottom: solid 1px #ededed;
    padding-bottom:10px;
  }
  
  ul.Lookbook_List_Archive.Locations_Archive li:last-of-type::after{
    content:" ";
    display: none;
    border-bottom: solid 1px #ededed;
    padding-bottom:10px;
  }
  
  ul.Lookbook_List_Archive.Locations_Archive {
    grid-template-columns: repeat(1, 1fr);
  }

  ul.Lookbook_List_Archive {
    column-gap: 30px;
    row-gap: 15px;
  }

  ul.Lookbook_List_Archive.Mindset_Archive {
    column-gap: 30px;
    row-gap: 30px;
  }

  ul.app_buttons.main li {
    list-style: none;
    display: inline-block;
  }

  ul.app_buttons.main > li:first-of-type {
    margin-right: 8px;
    margin-bottom: 8px;
  }

  ul.app_buttons.main a img {
    height: 40px;
  }

  ul.app_buttons.main {
    padding: 0;
  }

  .RetailInfo__Info {
    padding: 30px 25px 50px;
  }
  
  .CollectionMain .ProductItem__Info {
    height: fit-content;
  }

  .featured-collection .ProductItem__Info {
    height: fit-content;
  }
}

/**
 * --------------------------------------------------------------------------------------------------------------------------------------------------------
 * 
 * CSS Animations
 * 
 * --------------------------------------------------------------------------------------------------------------------------------------------------------
 */

@keyframes slideUp {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}

/** -- Chrome // Safari // Opera -- **/

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Standard -- **/

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Standard -- **/

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Chrome // Safari // Opera -- **/

@-webkit-keyframes fadeInJQ {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Standard -- **/

@keyframes fadeInJQ {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** ---------------------------- Four Buttons ---------------------------- **/

/** -- Chrome // Safari // Opera -- **/

@-webkit-keyframes fadeIn1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Standard -- **/


@keyframes fadeIn1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Chrome // Safari // Opera -- **/

@-webkit-keyframes fadeIn2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Standard -- **/

@keyframes fadeIn2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Chrome // Safari // Opera -- **/

@-webkit-keyframes fadeIn3 {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Standard -- **/

@keyframes fadeIn3 {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Chrome // Safari // Opera -- **/

@-webkit-keyframes fadeIn4 {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** -- Standard -- **/

@keyframes fadeIn4 {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes shopTheLookDotKeyframe {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes shopTheLookDotKeyframe {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%); /* Start from above the viewport */
    }
    100% {
        transform: translateY(0); /* Slide down to the top of the viewport */
    }
}