/** Shopify CDN: Minification failed

Line 44:2 Unexpected "}"
Line 87:3 Comments in CSS use "/* ... */" instead of "//"
Line 94:3 Comments in CSS use "/* ... */" instead of "//"

**/
/*Overflow hidden*/
html,body {
overflow-x:hidden !important;
}

/*Announcement-bar*/
.announcement-bar__message {
  color: white !important;
  font-size: 1em !important;
}

/*Collection-hero*/
.collection-hero__title{
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: 600;
    text-align: center;
}
.collection-hero__description{
    font-weight: 400;
    font-size: 16px;
}

/*Menu*/
.header__inline-menu{
  font-weight: bolder !important;
}

/*Product*/
/*
.product-form__buttons > button:disabled{
  background-color: grey;  
}

.product__description:first-of-type{
    background-color: blue;
*/}

/*shopify-policy*/
.shopify-policy__title {
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: 600;
}
.shopify-policy__body{
    font-weight: 400;
    font-size: 16px;
}


/* Footer*/
.footer-block__heading{
  color: white !important;
}

.footer-block__details-content > li > a {
    color: white !important;
}

.footer-block__details-content > li > .list-menu__item {
    padding-top: 0px !important;
    padding-bottom: 0.5rem  !important;
}

.footer-block--newsletter {
  flex-wrap: wrap !important;
}

/*Badges*/
.custom-badge::after{ 
  position: absolute;
  content: '';
  width: 40%;
  height: 40%;
  top: 10px;
  right: 10px;
}

.mid-season-badge::after{ 
   // background: transparent url(https://cdn.shopify.com/s/files/1/0607/2493/6887/files/MID-SEASON_OFFER_SS23.png?v=1682588783) no-repeat center/contain;
}

.new-badge::after{ 
    background: transparent url(https://cdn.shopify.com/s/files/1/0607/2493/6887/files/new_badge.png?v=1666361252) no-repeat center/contain;
}
.temp-badge::after{ 
   // background: transparent url(https://cdn.shopify.com/s/files/1/0607/2493/6887/files/Runde_Preise_Badge_2842b980-3773-425a-aaf2-dffc8c074811.png?v=1693941775) no-repeat center/contain;
}
/*Show Sizes on hover*/
.size_chart{
    position: absolute;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    top: 25%;
    z-index: 1;
}

span.size-values {
    background-color: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-radius: var(--variant-pills-radius);
    display: inline-block;
    padding: 1rem;
    font-size: 1.5rem;
    margin: 2px;
    letter-spacing: .1rem;
    line-height: 1;
    text-align: center;
    transition: border var(--duration-short) ease;
    position: relative;
}

span.size-values.soldout {
    background: #d7d7d7;
    overflow: hidden !important;
}
span.size-values.soldout:after{
    content: "";
    height: 1px;
    border-bottom: 2px solid #0000006b;
    transform: translateY(12px) translateX(7px) rotate(333deg);
    position: absolute;
    top: 4px;
    left: -8px;
    opacity: 0.5;
    min-width: 100%;
}

.grid_size{
   display:flex;
    position: relative;
    justify-content: center;
  }

.grid_size > .size_chart{
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}

.grid_size:hover > .size_chart{
  visibility: visible;
  opacity: 1;
}

.grid_size > .card-wrapper{
  width: 100%
}

.brand_pagefly {
  margin: 0 !important;
  text-transform: uppercase;
}


 
