#ordercomonn h3 {
  font-size: 1rem;
  border-bottom: solid 1px #aaa;
  padding: 0.25rem 0;
  margin-bottom: 1rem;
}

.item-wrap {
  counter-reset: item;
}
.item-wrap .itembase {
  border: solid #aaa 1px;
  padding: 0 0 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #eee;
}
.item-wrap .itembase table {
  margin: 0;
  border: none;
  border-left: solid 1px #aaa;
  width: 100%;
  border-collapse: collapse;
}
.item-wrap .itembase table tr {
  border-bottom: none;
}
.item-wrap .itembase table tr + tr {
  border-top: solid 1px #aaa;
}
.item-wrap .itembase table tr td {
  text-align: center;
  width: 33.33%;
  padding: 0.5em 0.1rem;
  font-size: 0.8em;
}
.item-wrap .itembase table tr td + td {
  border-left: solid 1px #aaa;
}
.item-wrap .item {
  display: flex;
  align-items: center;
  border-right: solid #aaa 1px;
  border-left: solid #aaa 1px;
  border-bottom: solid #aaa 1px;
  margin: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.25rem 0.5rem 2.75rem;
  padding: 0 0 0 2.5rem;
  position: relative;
}
.item-wrap .item::before {
  counter-increment: item;
  content: counter(item);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  color: #666;
  margin-right: 0.5rem;
  text-align: center;
  position: absolute;
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.item-wrap .item > * {
  flex: 0 0 calc(33.33% - 0.34rem);
  width: calc(33.33% - 0.34rem);
}
.item-wrap .item table {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  border: none;
  border-left: solid 1px #aaa;
  border-collapse: collapse;
}
.item-wrap .item table tr {
  border-bottom: none;
}
.item-wrap .item table tr + tr {
  border-top: solid 1px #aaa;
}
.item-wrap .item table tr th {
  text-align: center;
  width: 33.33%;
}
.item-wrap .item table tr td {
  text-align: center;
  width: 33.33%;
  padding-right: 0.1rem;
  padding-left: 0.1rem;
  padding: 3px;
  font-size: 0.8em;
}
.item-wrap .item table tr td + td {
  border-left: solid 1px #aaa;
}
.item-wrap .item input[type=text] {
  width: 4rem;
  width: 100%;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  margin: 0;
}
.item-wrap .item select {
  padding: 0.25rem 0.5rem;
  display: inline-block;
  max-width: 100%;
  width: 100%;
}
.item-wrap .item button {
  padding: 0.25rem 0.5rem;
  display: inline-block;
}
.item-wrap .item .clearrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  background-color: #333;
  font-weight: bold;
  color: #fff;
  border-radius: 1.5rem;
  font-size: 0.8rem;
  cursor: pointer;
}
.item-wrap .btn {
  border-radius: 0 !important;
  display: block !important;
  margin-bottom: 0.5rem;
}

#addcart {
  width: 100%;
}
#addcart:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.optiontextvalue {
  background-color: rgba(252, 70, 70, 0.1);
  padding: 0.5rem;
  margin: 1rem auto 0;
  border: solid 2px red;
  font-size: 0.8rem;
  display: none;
}

.imagePreviews {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.imagePreviews div {
  width: 300px;
  height: 300px;
  /*
  width: 100%;
  max-width: 300px;
  margin: 0;
  padding: 0 0 100%; */
  position: relative;
}
.imagePreviews div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cartitems {
  margin-bottom: 1.5rem;
}
.cartitems h3 {
  font-size: 1rem;
  border-bottom: solid 1px #aaa;
  padding: 0.25rem 0;
  margin-bottom: 1rem;
}
.cartitems .btn {
  display: block;
  border-radius: 0;
  margin-top: -0.5rem;
  font-size: 0.8rem;
  width: 100%;
}

.orderbox {
  display: flex;
  flex-direction: column;
}
.orderbox h3 {
  font-size: 1rem;
  border-bottom: solid 1px #aaa;
  padding: 0.25rem 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 769px) {
  .orderbox {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.orderbox .right {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .orderbox .right {
    flex: 0 0 50%;
    padding-right: 0.5rem;
  }
}
.orderbox .left {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .orderbox .left {
    flex: 0 0 50%;
  }
}

.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.thumbs .thumb {
  display: block;
  position: relative;
}
.thumbs .thumb img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

#cartbox {
  position: fixed;
  bottom: 52px;
  left: 0;
  z-index: 100;
  width: 100%;
  text-align: center;
  background-color: #444;
}
#cartbox a {
  color: #fff;
  padding: 0.25rem 0.5rem;
  display: block;
}

#calc {
  background-color: #b00c00;
  cursor: pointer;
}
#calc:hover {
  background-color: #c64c44;
}

.shippingattention {
  background-color: rgba(252, 70, 70, 0.1);
  padding: 0.5rem;
  margin: 1rem auto 0;
  border: solid 2px red;
  font-size: 0.8rem;
}/*# sourceMappingURL=weborder.css.map */