.order-create .order-create-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .order-create .order-create-content {
    flex-direction: row;
    gap: 60px;
  }
}
.order-create .order-create-content .order-create-settings {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  .order-create .order-create-content .order-create-settings {
    gap: 30px;
  }
}
.order-create .order-create-content .order-create-settings .order-create-item {
  background: var(--white-color);
  padding: 15px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .order-create .order-create-content .order-create-settings .order-create-item {
    gap: 20px;
  }
}
.order-create .order-create-content .order-create-settings .order-create-item .order-create-item-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1em;
}
.order-create .order-create-content .order-create-settings .order-options-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.order-create .order-create-content .order-create-settings .order-options-list .order-options-list-item {
  border: solid 1px var(--neutral-color);
  border-radius: 6px;
}
.order-create .order-create-content .order-create-settings .order-options-list .order-options-list-item .radio-default input + label {
  padding: 15px;
}
.order-create .order-create-content .order-create-settings .order-options-list .order-options-list-item .order-options-list-item-descript {
  display: none;
  padding: 15px;
  padding-top: 0;
  font-size: 0.8em;
  color: var(--dark-color-80);
  line-height: 130%;
}
.order-create .order-create-content .order-create-settings .order-options-list .order-options-list-item.active {
  border-color: var(--primary-color);
}
.order-create .order-create-content .order-create-settings .order-options-list .order-options-list-item.active .order-options-list-item-descript {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .order-create .order-create-content .order-create-settings .order-options-list .order-options-list-item:not(.active):hover {
    border-color: var(--primary-color-40);
  }
}
.order-create .order-create-content .order-create-aside .order-create-result-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: var(--sticky-top);
  background: var(--white-color);
  padding: 15px;
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .order-create .order-create-content .order-create-aside .order-create-result-table {
    gap: 30px;
  }
}
.order-create .order-create-content .order-create-aside .order-create-result-table > ol {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.8em;
}
.order-create .order-create-content .order-create-aside .order-create-result-table > ol li {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--neutral-color);
  padding-bottom: 4px;
}
.order-create .order-create-content .order-create-aside .order-create-result-table > ol li span:last-child {
  text-align: right;
  font-weight: bold;
}
.order-create .order-create-content .order-create-aside .order-create-result-table > ol li:last-child span {
  font-size: 1.4em;
}
.order-create .order-create-content .order-create-aside .order-create-result-table > ol li:last-child span:first-child {
  font-weight: bold;
}
.order-create .order-create-content .order-create-aside .coupon-checker {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-create .order-create-content .order-create-aside .coupon-checker > div {
  display: flex;
  gap: 6px;
  align-items: center;
}
.order-create .order-create-content .order-create-aside .coupon-checker > div.coupon-checker-active {
  background: var(--neutral-color);
  border-radius: 100px;
  padding: 6px 6px 6px 12px;
}
.order-create .order-create-content .order-create-aside .coupon-checker .cancel-coupon svg {
  width: 16px;
}
.order-create .order-create-content .order-create-aside .coupon-checker button {
  margin-left: auto;
}
.order-create .order-create-content .order-create-aside .continue-order {
  width: 100%;
  max-width: 100%;
}

.individual-person-order-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .individual-person-order-form {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .individual-person-order-form .input-default {
    flex-grow: 1;
  }
}
.individual-person-order-form .tel-check {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .individual-person-order-form .tel-check {
    gap: 20px;
    max-width: 50%;
    padding-right: 10px;
  }
}
.individual-person-order-form .tel-check .tel-check-info {
  font-size: 0.8em;
}
.individual-person-order-form .tel-check .tel-check-info button {
  border: none;
  padding: 0;
  background: none;
  color: var(--primary-color);
  cursor: pointer;
}
.individual-person-order-form .tel-check .tel-check-info.success-info {
  color: var(--positive-color);
}
.individual-person-order-form .tel-check .tel-check-info.error-info {
  color: var(--negative-color);
}

.order-create-products-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 30px;
}
.order-create-products-list li {
  display: flex;
  gap: 20px;
}
.order-create-products-list li .product-media {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}
.order-create-products-list li .product-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.order-create-products-list li .product-media a img {
  max-height: 100%;
}
.order-create-products-list li .product-main-data {
  display: flex;
  flex-direction: column;
}
.order-create-products-list li .product-main-data a {
  text-decoration: none;
}
.order-create-products-list li .product-main-data .product-main-data-name {
  line-height: 130%;
}
.order-create-products-list li .product-main-data .product-main-data-brand {
  opacity: 0.5;
}
.order-create-products-list li .product-main-data .product-main-data-price {
  font-weight: bold;
  margin-top: 6px;
}/*# sourceMappingURL=style.css.map */