/** Shopify CDN: Minification failed

Line 49:2 Expected percentage but found "normal"
Line 52:2 Expected percentage but found "normal"
Line 66:2 Expected percentage but found "."
Line 72:30 Expected "}" to go with "{"

**/
/* Use this file to add custom css to the theme. */

/* .product__option.type {} */

/* .product__option.size { */
/*   display: none; */
/*   display: block */
/* } */

/* .product__option.size .product__chip[data-option-value="Default"] {
  display: none;

}
 */
.drawer-menu__list.brand-search-container {
  display: flex;
  flex-direction: column;
}

.product__item,
.newquantity-selector-wrapper {
  display: flex;
  align-items: center;
}

.product__item .qty-limit-error,
.newquantity-selector-wrapper .stitched-qty-limit-error {
  margin: 0 0 0 20px;
  
  color: #ff0000;
  font-size: 14px;
  font-style: italic;
  
  text-transform: capitalize;
}
/* New Blink Tag Starts From Here. */
#one{
  animation: 2s linear infinite blinking-one;
}
@keyframes blinking-one {
  normal {
    color: red;
  }
  normal {
    color: red;
  }
}
#two{
  animation: 2s linear infinite blinking-two;
}
@keyframes blinking-two {
  5% {
    opacity: 0;
  }
  95%{
    opacity: 1;
  }
  .blink-text {
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
    animation: blinkingText 1s infinite;
}
/* New Blink Tag Ends Here. */