/** Shopify CDN: Minification failed

Line 117:6 Unexpected "@media"

**/
  .toggle-input {
    height: 0;
    width: 0;
    visibility: hidden;
  }

  .toggle-label {
    cursor: pointer;
    text-indent: -9999px;
    width: 50px;
    height: 27.5px;
    background: #fadcdd;
    display: block;
    border-radius: 25px;
    position: relative;
  }

  .toggle-label:after {
    content: '';
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    width: 22.5px;
    height: 22.5px;
    background: #fff;
    border-radius: 22.5px;
    transition: 0.3s;
  }

  label.toggle-label input#switch {
    grid-column: 1;
    grid-row: 1;
  }
  .toggle-input:checked + .toggle-label {
    background: #f3babe;
  }

  .toggle-input:checked + .toggle-label:after {
    left: calc(100% - 1.25px);
    transform: translateX(-100%);
  }

  .toggle-label:active:after {
    width: 32.5px;
  }

  /* centering */
  .size-switch-container {
    display: grid;
    justify-content: center;
    align-items: center;
  }

  .size-chart-title {
    text-align: center;
  }

  .switch-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }

  .size-chart-body {
    text-align: center;
  }

  .size-chart-table-head {
    background-color: #ffecf0;
  }

  table:not([class]) td,
  table:not([class]) th {
    padding: 1em 0;
  }

  .size-chart-topbar {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 10px 0;
}
#size-chart-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#size-chart-content {
  background: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 5px;
  max-width: 500px;
  max-height: 100%;
  position: relative;
}

.size-chart-diagram {
  display: grid;
  justify-content: center;
  margin-top: 10px;
}

.cell @media screen and (min-width: 750px) {
  #size-chart-content {
    padding: 20px;
    width: 80%;
    padding: 20px;
  }
}

table {
  table-layout: auto;
  width: 100%;
}

size-chart-date td {
  text-align: center;
}

#size-chart-close {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
}

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

.size-chart-header {
  margin: 0 4px 0 0;
  cursor: pointer;
  text-decoration: underline;
}

.size-chart {
  display: flex;
  gap: 10px;
  min-width: 100px;
}