﻿/* LAYOUT */
/* COLORS */
/* FONT SIZES */
/* CONSTANTS */
/* CLASSES */
/* MIXINS */
.qoe-outer-div {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 56px - 20px);
  max-height: calc(100dvh - 56px - 20px);
}

.qoe-section-header {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.qoe-back-link {
  margin-left: auto;
  font-size: 16px;
}

.qoe-price-section {
  display: flex;
  gap: 30px;
  padding: 10px;
}
.qoe-price-section p {
  margin: 0;
}

.qoe-scroll-section {
  flex-grow: 1;
  overflow-y: scroll;
}

.qoe-bottom-section {
  padding-bottom: 20px;
}

.qoe-single-control-div {
  width: 100%;
  padding: 10px;
}
.qoe-single-control-div button {
  width: 100%;
}
.qoe-add-row {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.qoe-add-row button {
  flex-grow: 1;
}

.qoe-item-container {
  margin: 10px 0px;
  padding: 10px 10px;
  padding-bottom: 10px;
  background-color: #ddd;
  border-radius: 10px;
}
.qoe-item-container p {
  text-align: center;
  margin: 0;
  margin-bottom: 5px;
}

.qoe-main-total-label {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 10px;
  text-align: center;
}

.qoe-pricing-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30%;
}

.qoe-success {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 70vh;
  text-align: center;
}

.qoe-success-order {
  font-size: 30px;
}
