/** Shopify CDN: Minification failed

Line 103:0 Expected "}" to go with "{"

**/
.floating-atc-bar{
  position: fixed;
  z-index: 1000;
  bottom: -220px;
  right: 0;
  background-image: url('/cdn/shop/files/floating-bar.svg?v=1746555910');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 16px 3rem 16px 10rem;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: bottom ease 0.35s;
  box-sizing: border-box;
}

.floating-atc-bar.visible{
  bottom: 0;
}

.floating-atc-bar .label{
  color: #fff;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.floating-atc-bar__options{
  display: flex;
  gap: 10px;
  align-items: center;
}

.floating-atc-bar__chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.floating-atc-bar__chip input{
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.floating-atc-bar__chip input:checked{
  background: #fff;
  border-color: #fff;
}
.floating-atc-bar__chip input:checked::after{
  content: "";
  position: absolute;
  inset: 3px;
  background: #000;
  border-radius: 2px;
}

@media screen and (max-width: 749px) {
  .floating-atc-bar{
    background: #333;
    background-image: none;
    padding: 14px 16px;
    justify-content: center;
    gap: 12px;
  }
  .floating-atc-bar .label{ display:none; }
}

@media screen and (min-width: 750px) {
  .floating-atc-bar{
    right: 0;  
  }
  .floating-atc-bar .label{
    margin-right: 0;
  } 
}

@media screen and (max-width: 750px) {
  .floating-atc-bar{
    left: 0;  
  }


