/** Shopify CDN: Minification failed

Line 10:0 Unexpected "{"
Line 10:1 Expected identifier but found "%"
Line 11:14 Expected identifier but found whitespace
Line 11:21 Unexpected "/"
Line 12:1 Expected identifier but found "%"

**/
{% comment %}
File location: assets/size-chart.css
{% endcomment %}
.size-chart-container {
  display: inline-block;
  margin-left: 10px;
}

.size-chart-trigger {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.size-chart-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.size-chart-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.size-chart-popup.is-open {
  display: flex;
}

.size-chart-popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

.size-chart-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.size-chart-image {
  max-width: 100%;
  height: auto;
}