#shoe-sizes-container {
  margin-top: 1rem;
}
#shoe-sizes-container .shoe-size-group .size {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
#shoe-sizes-container .shoe-size-group .size input {
  margin-right: 0.5rem;
}
#shoe-sizes-container .shoe-size-group .size button.remove-shoe-size {
  background-color: red;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}
#shoe-sizes-container .shoe-size-group .size button.remove-shoe-size::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.25rem;
  background-color: red;
  border-radius: 0.5rem;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 0;
}
#shoe-sizes-container .shoe-size-group .size button.remove-shoe-size::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.25rem;
  background-color: red;
  border-radius: 0.5rem;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 0;
}

button#add-shoe-size {
  color: #2271b1;
  border-color: #2271b1;
  background: #f6f7f7;
  vertical-align: top;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  line-height: 2.15384615;
  min-height: 30px;
  margin: 0;
  padding: 0 10px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  -webkit-appearance: none;
  border-radius: 3px;
  white-space: nowrap;
  box-sizing: border-box;
}
button#add-shoe-size:hover {
  background: #f0f0f1;
  border-color: #0a4b78;
  color: #0a4b78;
}

.shoe-sizes-info {
  border: solid 2px #f0f0f1;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.shoe-sizes-info--title {
  flex: 1;
  padding: 1rem;
  background-color: #f0f0f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shoe-sizes-info--title h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
.shoe-sizes-info--sizes-list {
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
}
.shoe-sizes-info--sizes-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.shoe-sizes-info--sizes-list li.header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  border-right: solid 2px #f0f0f1;
}
.shoe-sizes-info--sizes-list li.header-row .size-column {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
.shoe-sizes-info--sizes-list div {
  display: flex;
}
.shoe-sizes-info--sizes-list div.sizes {
  display: flex;
  width: 100%;
  overflow: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.shoe-sizes-info--sizes-list div.sizes::-webkit-scrollbar {
  height: 6px;
}
.shoe-sizes-info--sizes-list div.sizes::-webkit-scrollbar-thumb {
  background-color: #767676;
  border-radius: 3px;
}
.shoe-sizes-info--sizes-list div.sizes::-webkit-scrollbar-track {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.shoe-sizes-info--sizes-list div.sizes li {
  display: flex;
  justify-content: center;
}
.shoe-sizes-info--sizes-list div.sizes li .size-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shoe-sizes-info--sizes-list div.sizes li .size-row .size-column {
  flex: 1;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
}
.shoe-sizes-info--sizes-list div.sizes li .size-row .size-column .value {
  font-weight: 600;
  word-break: normal !important;
  word-wrap: normal !important;
}
.shoe-sizes-info--sizes-list div.sizes li .size-row .size-column .key {
  font-size: 0.55rem;
  color: #969696;
  margin-bottom: 5px;
}/*# sourceMappingURL=nf-style.css.map */