.modal__sizes {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  z-index: 999999999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
.modal__sizes.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.modal__sizes .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modal__sizes .modal__content {
  background-color: #ffffff;
  max-width: 600px;
  min-height: 50px;
  max-height: 500px;
  width: 100%;
  position: relative;
  overflow-y: scroll;
}
.modal__sizes .modal__content .modal__header {
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  -webkit-box-align: self-start;
  -webkit-align-items: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  font-family: "Circular-Regular";
}
.modal__sizes .modal__content .modal__header p {
  font-family: "Circular-Light";
}
.modal__sizes .modal__content .modal__header button {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-border-radius: 0;
          border-radius: 0;
}
.modal__sizes .modal__content .modal__header button svg {
  width: 20px;
}
.modal__sizes .modal__content .modal__table {
  padding: 0 1rem 1rem 1rem;
}
.modal__sizes .modal__content .modal__table .fake-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: solid 1px #eee;
}
.modal__sizes .modal__content .modal__table .fake-table .table-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: solid 1px #eee;
}
.modal__sizes .modal__content .modal__table .fake-table .table-col:not(:last-child) {
  border-right: solid 1px #eee;
}
.modal__sizes .modal__content .modal__table .fake-table .table-col div {
  text-align: center;
  padding: 0.5rem;
}
.modal__sizes .modal__content .modal__table .fake-table .table-col :first-child {
  background-color: #eee;
}

/*# sourceMappingURL=modal__sizes.css.map*/