.cloud-order-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.cloud-order-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(217, 226, 239, 0.9);
}

.cloud-order-page .site-nav a.active {
  color: var(--web-primary);
  border-bottom-color: var(--web-primary);
}

.cloud-order-main {
  min-height: 0;
  flex: 1 0 auto;
  display: flex;
  padding: 82px 0 0;
  box-sizing: border-box;
  background: #f4f6f9;
}

.cloud-order-container {
  width: 100%;
  max-width: 1400px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  box-sizing: border-box;
}

.cloud-order-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  margin-bottom: 12px;
  color: #65748a;
  font-size: 13px;
}

.cloud-order-breadcrumb a:hover {
  color: var(--web-primary);
}

.cloud-order-breadcrumb strong {
  color: #1f2937;
  font-weight: 500;
}

.cloud-order-shell {
  min-height: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  background: transparent;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.cloud-order-shell--empty {
  min-height: 0;
  flex: 0 0 auto;
  background: #ffffff;
}

.cloud-order-shell--empty .cloud-order-empty,
.cloud-order-shell--empty .cloud-order-error {
  min-height: 0;
}

.cloud-order-loading,
.cloud-order-empty,
.cloud-order-error {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  color: #64748b;
  font-size: 14px;
}

.cloud-order-error {
  flex-direction: column;
  color: #b42318;
}

.cloud-order-loading span {
  width: 18px;
  height: 18px;
  border: 2px solid #dbeafe;
  border-top-color: var(--web-primary);
  border-radius: 50%;
  animation: cloud-order-spin 700ms linear infinite;
}

.cloud-order-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

[data-cloud-order-summary-host] {
  display: contents;
}

.cloud-order-config {
  min-width: 0;
  background: #ffffff;
}

.cloud-order-title {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-bottom: 1px solid #e7edf5;
}

.cloud-order-title::before {
  width: 4px;
  height: 22px;
  flex: 0 0 auto;
  background: var(--web-primary);
  content: "";
}

.cloud-order-title h1 {
  margin: 0;
  color: #172033;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

.cloud-order-section {
  padding: 24px 28px;
  border-bottom: 1px solid #edf1f6;
}

.cloud-order-section:last-child {
  border-bottom: 0;
}

.cloud-order-section__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.cloud-order-section__head h2 {
  margin: 0;
  color: #263247;
  font-size: 15px;
  font-weight: 600;
}

.cloud-order-section__head span {
  color: #8591a3;
  font-size: 12px;
}

.cloud-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.cloud-product-option,
.cloud-choice,
.cloud-package-option,
.cloud-cycle-option {
  appearance: none;
  min-width: 0;
  border: 1px solid #dbe3ee;
  border-radius: 2px;
  background: #ffffff;
  color: #344054;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.cloud-product-option {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 13px 14px;
}

.cloud-product-option strong {
  overflow: hidden;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cloud-product-option span {
  color: #7a8798;
  font-size: 12px;
}

.cloud-product-option.is-active,
.cloud-choice.is-active,
.cloud-package-option.is-active,
.cloud-cycle-option.is-active {
  border-color: var(--web-primary);
  background: #f2f7ff;
  color: #0b55d4;
  box-shadow: inset 0 0 0 1px var(--web-primary);
}

.cloud-product-option:hover,
.cloud-choice:hover,
.cloud-package-option:hover,
.cloud-cycle-option:hover {
  border-color: #7ca9fa;
}

.cloud-config-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.cloud-config-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.cloud-config-row__label {
  padding-top: 8px;
  color: #455468;
  font-size: 14px;
}

.cloud-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cloud-config-row--image {
  grid-column: 1 / -1;
}

.cloud-config-row--quantity {
  grid-column: 1 / -1;
}

.cloud-cycle-quantity {
  margin-top: 16px;
}

.cloud-order-settings-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.cloud-segment-control {
  display: inline-flex;
  align-items: stretch;
}

.cloud-segment-option {
  appearance: none;
  min-width: 100px;
  min-height: 36px;
  border: 1px solid #e1e7f0;
  border-left-width: 0;
  border-radius: 0;
  background: #f2f4f7;
  color: #344054;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 34px;
  padding: 0 16px;
}

.cloud-segment-option:first-child {
  border-left-width: 1px;
}

.cloud-segment-option.is-active {
  position: relative;
  z-index: 1;
  border-color: var(--web-primary);
  background: #ffffff;
  color: var(--web-primary);
}

.cloud-credential-fields {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.cloud-image-selects {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cloud-select-wrap {
  position: relative;
  width: min(180px, 100%);
  display: block;
}

.cloud-select-wrap--image {
  width: min(420px, 100%);
}

.cloud-select-wrap select {
  appearance: none;
  width: 100%;
  min-height: 36px;
  border: 1px solid #dbe3ee;
  border-radius: 2px;
  background: #ffffff;
  color: #344054;
  font: inherit;
  font-size: 13px;
  outline: 0;
  padding: 0 34px 0 12px;
}

.cloud-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #667085;
  border-bottom: 1px solid #667085;
  content: "";
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.cloud-select-wrap select:focus {
  border-color: var(--web-primary);
  box-shadow: 0 0 0 3px rgba(20, 100, 244, 0.1);
}

.cloud-quantity-control {
  display: inline-flex;
  width: min(200px, 100%);
  align-items: center;
  gap: 0;
}

.cloud-config-row--resource {
  grid-column: 1 / -1;
}

.cloud-resource-control {
  display: flex;
  width: min(800px, 100%);
  align-items: center;
  gap: 12px;
}

.cloud-resource-slider {
  appearance: none;
  width: 100%;
  min-width: 120px;
  flex: 1 1 160px;
  height: 34px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  outline: 0;
}

.cloud-resource-slider::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
  background: #e5eaf1;
}

.cloud-resource-slider::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 34px;
  margin-top: -13px;
  border: 1px solid #287eef;
  border-radius: 2px;
  background:
    linear-gradient(#287eef 0 0) center 10px / 8px 1px no-repeat,
    linear-gradient(#287eef 0 0) center 16px / 8px 1px no-repeat,
    linear-gradient(#287eef 0 0) center 22px / 8px 1px no-repeat,
    #edf5ff;
  box-shadow: 0 1px 2px rgba(28, 91, 184, 0.16);
}

.cloud-resource-slider::-moz-range-track {
  height: 8px;
  border: 0;
  border-radius: 4px;
  background: #e5eaf1;
}

.cloud-resource-slider::-moz-range-progress {
  height: 8px;
  border-radius: 4px;
  background: #e5eaf1;
}

.cloud-resource-slider::-moz-range-thumb {
  width: 20px;
  height: 32px;
  border: 1px solid #287eef;
  border-radius: 2px;
  background:
    linear-gradient(#287eef 0 0) center 10px / 8px 1px no-repeat,
    linear-gradient(#287eef 0 0) center 16px / 8px 1px no-repeat,
    linear-gradient(#287eef 0 0) center 22px / 8px 1px no-repeat,
    #edf5ff;
  box-shadow: 0 1px 2px rgba(28, 91, 184, 0.16);
}

.cloud-resource-slider:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cloud-resource-value {
  display: inline-flex;
  width: 140px;
  min-width: 140px;
  align-items: center;
  gap: 0;
}

.cloud-quantity-control .cloud-number-input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  text-align: center;
  appearance: textfield;
}

.cloud-resource-control .cloud-number-input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  text-align: center;
  appearance: textfield;
}

.cloud-resource-control .cloud-number-input:disabled {
  background: #ffffff;
  color: #344054;
  opacity: 1;
}

.cloud-resource-control em {
  min-width: 50px;
  color: #667085;
  font-size: 13px;
  font-style: normal;
  padding-left: 10px;
}

.cloud-config-row--resource .cloud-config-row__label small {
  display: block;
  color: #98a2b3;
  font-size: 11px;
  line-height: 1.35;
}

.cloud-quantity-control .cloud-number-input::-webkit-outer-spin-button,
.cloud-quantity-control .cloud-number-input::-webkit-inner-spin-button,
.cloud-resource-control .cloud-number-input::-webkit-outer-spin-button,
.cloud-resource-control .cloud-number-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.cloud-quantity-step {
  appearance: none;
  width: 40px;
  min-width: 40px;
  min-height: 38px;
  border: 1px solid #dbe3ee;
  border-radius: 0;
  background: #f5f7fa;
  color: #667085;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  line-height: 1;
}

.cloud-quantity-step:hover {
  color: var(--web-primary);
  background: #f0f6ff;
}

.cloud-order-section--packages {
  padding: 18px 18px 8px;
}

.cloud-package-config {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  row-gap: 12px;
  column-gap: 14px;
}

.cloud-package-config__label {
  padding-top: 9px;
  color: #344054;
  font-size: 14px;
  font-weight: 500;
}

.cloud-package-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cloud-package-filters label {
  display: block;
  min-width: 198px;
}

.cloud-package-filters select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #cfd8e3;
  border-radius: 2px;
  background: #f9fafb;
  color: #5b6576;
  font: inherit;
  font-size: 13px;
  padding: 0 14px;
}

.cloud-machine-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cloud-machine-type {
  appearance: none;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  column-gap: 9px;
  min-width: 244px;
  min-height: 56px;
  padding: 7px 12px;
  border: 1px solid #d8dee8;
  border-radius: 0;
  background: #f4f6f8;
  color: #687385;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.cloud-machine-type:hover {
  border-color: #8bb3f7;
  background: #f6faff;
}

.cloud-machine-type:disabled,
.cloud-machine-type.is-unavailable {
  border-color: #e1e7ef;
  background: #f5f7fa;
  color: #98a2b3;
  cursor: not-allowed;
}

.cloud-machine-type.is-unavailable .cloud-machine-type__icon,
.cloud-machine-type.is-unavailable .cloud-machine-type__content small {
  color: #b4becb;
}

.cloud-machine-type.is-active {
  border-color: #4d8ff7;
  background: #edf5ff;
  color: #0758cb;
}

.cloud-machine-type__icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  color: #8a95a5;
}

.cloud-machine-type__icon::before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 5px;
  height: 5px;
  background: currentColor;
  box-shadow: 7px 0 0 currentColor, 0 7px 0 currentColor, 7px 7px 0 currentColor;
  content: '';
}

.cloud-machine-type.is-active .cloud-machine-type__icon {
  color: #0758cb;
}

.cloud-machine-type__content {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.cloud-machine-type__content strong {
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cloud-machine-type__content small {
  overflow: hidden;
  color: #7c8796;
  font-size: 12px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cloud-machine-type.is-active .cloud-machine-type__content small {
  color: #3972c7;
}

.cloud-package-table-wrap {
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cloud-package-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.cloud-package-table thead {
  display: table-header-group;
}

.cloud-package-table tbody {
  display: table-row-group;
}

.cloud-package-table tr {
  display: table-row;
}

.cloud-package-table th,
.cloud-package-table td {
  display: table-cell;
}

.cloud-package-table thead th {
  height: 48px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.cloud-package-table thead th:first-child {
  width: 54px;
}

.cloud-package-table thead th:nth-child(2) {
  text-align: left;
  width: 260px;
}

.cloud-package-table thead th:nth-child(n + 3):not(:last-child) {
  text-align: center;
}

.cloud-package-table thead th:last-child {
  width: 170px;
  padding-right: 24px;
  text-align: right;
}

.cloud-package-table tbody tr {
  border-bottom: 1px solid #e5ebf2;
  cursor: pointer;
}

.cloud-package-table tbody tr.is-active {
  background: #f3f8ff;
}

.cloud-package-table tbody td {
  height: 48px;
  color: #334155;
  font-size: 14px;
  text-align: center;
}

.cloud-package-table tbody td:first-child {
  text-align: center;
}

.cloud-package-table tbody td:nth-child(2) {
  text-align: left;
}

.cloud-package-table tbody td:nth-child(5) {
  color: #1d4ed8;
  font-weight: 600;
}

.cloud-package-table tbody td:last-child {
  padding-right: 24px;
  text-align: right;
}

.cloud-package-table strong {
  color: #1f2937;
  font-weight: 500;
}

.cloud-package-table em {
  font-style: normal;
  color: #1d4ed8;
  font-weight: 600;
}

.cloud-package-radio {
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 1px solid #d1d5db;
  background: #f8fafc;
  box-shadow: inset 0 0 0 3px #f8fafc;
}

.cloud-package-table tbody tr.is-active .cloud-package-radio {
  border-color: #1d4ed8;
  background: #1d4ed8;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.cloud-package-price {
  color: #e66100;
  font-weight: 600;
}

.cloud-package-empty {
  padding: 26px 18px;
  color: #64748b;
  text-align: center;
}

.cloud-package-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px 0 10px;
  color: #475569;
  font-size: 13px;
}

.cloud-package-page {
  appearance: none;
  min-width: 28px;
  min-height: 28px;
  border: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font: inherit;
}

.cloud-package-page.is-active {
  color: #1d4ed8;
  font-weight: 600;
}

.cloud-package-page:disabled {
  cursor: default;
  opacity: 0.4;
}

.cloud-package-ellipsis {
  color: #98a2b3;
}

.cloud-choice,
.cloud-cycle-option {
  min-height: 34px;
  padding: 6px 14px;
  color: #475467;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.cloud-number-input {
  width: min(180px, 100%);
  min-height: 34px;
  border: 1px solid #dbe3ee;
  border-radius: 2px;
  padding: 5px 10px;
  color: #344054;
  font: inherit;
  font-size: 13px;
  outline: 0;
}

.cloud-text-input {
  width: min(335px, 100%);
  min-height: 40px;
  border: 1px solid #cfd8e3;
  border-radius: 0;
  padding: 7px 42px 7px 14px;
  color: #344054;
  font: inherit;
  font-size: 13px;
  outline: 0;
}

.cloud-text-input::placeholder {
  color: #98a2b3;
}

.cloud-number-input:focus,
.cloud-text-input:focus {
  border-color: var(--web-primary);
  box-shadow: 0 0 0 3px rgba(20, 100, 244, 0.1);
}

.cloud-password-field {
  position: relative;
  width: min(335px, 100%);
  display: inline-flex;
}

.cloud-password-field .cloud-text-input {
  width: 100%;
}

.cloud-password-toggle {
  appearance: none;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.cloud-password-toggle::before {
  position: absolute;
  top: 7px;
  left: 3px;
  width: 16px;
  height: 9px;
  border: 1.5px solid #98a2b3;
  border-radius: 50%;
  content: "";
}

.cloud-password-toggle::after {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #98a2b3;
  content: "";
}

.cloud-order-summary {
  position: sticky;
  bottom: 0;
  z-index: 30;
  box-sizing: border-box;
  width: 100vw;
  flex: 0 0 auto;
  margin-top: 18px;
  margin-left: calc(50% - 50vw);
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: #ffffff;
  box-shadow: none;
}

.cloud-order-summary__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

.cloud-order-summary__head {
  max-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 6px;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, margin 180ms ease, padding 180ms ease;
}

.cloud-order-summary__head::before {
  width: 4px;
  height: 18px;
  flex: 0 0 auto;
  background: var(--web-primary);
  content: "";
}

.cloud-order-summary__head h2 {
  margin: 0;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

.cloud-summary-grid {
  max-height: 180px;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px 32px;
  padding: 2px 0 18px;
  border-bottom: 1px solid #e7edf5;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, margin 180ms ease, padding 180ms ease;
}

.cloud-summary-item {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #1f2937;
  font-size: 13px;
  line-height: 22px;
}

.cloud-summary-item span {
  flex: 0 0 auto;
  color: #374151;
  font-weight: 600;
}

.cloud-summary-item strong {
  overflow: hidden;
  color: #1f2937;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cloud-price-total {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
}

.cloud-summary-toggle {
  appearance: none;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.cloud-summary-toggle-icon {
  position: relative;
  width: 0;
  height: 0;
  flex: 0 0 auto;
}

.cloud-summary-toggle-icon::before {
  display: block;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid #6b7280;
  content: "";
}

.cloud-order-summary.is-collapsed .cloud-order-summary__head {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.cloud-order-summary.is-collapsed .cloud-summary-grid {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.cloud-order-summary.is-collapsed .cloud-order-notice {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.cloud-order-summary.is-collapsed .cloud-summary-toggle-icon::before {
  border-top: 5px solid #6b7280;
  border-bottom: 0;
}

.cloud-price-total span {
  color: #475467;
  font-size: 13px;
}

.cloud-price-total strong {
  color: #d85a00;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.cloud-summary-actions {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 0;
}

.cloud-order-submit {
  width: 150px;
  min-height: 42px;
  margin-top: 0;
  border: 0;
  border-radius: 2px;
  background: var(--web-primary);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.cloud-order-submit:hover:not(:disabled) {
  background: var(--web-primary-dark);
}

.cloud-order-submit:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.cloud-order-notice {
  min-height: 18px;
  margin: -8px 0 0;
  color: #b42318;
  font-size: 12px;
  line-height: 1.5;
}

@keyframes cloud-order-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .cloud-config-grid {
    grid-template-columns: 1fr;
  }

  .cloud-summary-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 820px) {
  .cloud-order-main {
    padding-top: 70px;
  }

  .cloud-order-container {
    width: min(100% - 24px, 1180px);
  }

  .cloud-order-title,
  .cloud-order-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cloud-order-summary__inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cloud-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }
}

@media (max-width: 600px) {
  .cloud-order-breadcrumb {
    display: none;
  }

  .cloud-order-shell {
    border-right: 0;
    border-left: 0;
  }

  .cloud-product-list {
    grid-template-columns: 1fr;
  }

  .cloud-package-filters {
    flex-direction: column;
  }

  .cloud-config-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cloud-summary-grid {
    grid-template-columns: 1fr;
  }

  .cloud-summary-actions {
    gap: 10px;
  }

  .cloud-price-total {
    width: 100%;
  }

  .cloud-order-submit {
    width: 100%;
  }

  .cloud-config-row__label {
    padding-top: 0;
  }

  .cloud-package-config {
    grid-template-columns: 1fr;
  }

  .cloud-package-config__label {
    padding-top: 0;
  }

  .cloud-package-filters label {
    min-width: 0;
  }

  .cloud-package-table {
    min-width: 760px;
  }
}
