/********************************************
  * Local fonts import
********************************************/

/* Open Sans */
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/open-sans-v44-latin-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/open-sans-v44-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/open-sans-v44-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/open-sans-v44-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/open-sans-v44-latin-700.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("./fonts/open-sans-v44-latin-800.woff2") format("woff2");
}

/* Saira Condensed */
@font-face {
  font-display: swap;
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/saira-condensed-v12-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/saira-condensed-v12-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Saira Condensed";
  font-style: normal;
  font-weight: 800;
  src: url("./fonts/saira-condensed-v12-latin-800.woff2") format("woff2");
}

/********************************************
  * HTML, Body reset and base styles
********************************************/

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  margin: auto;
  max-width: 1300px;
  font-size: 18px;
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
  padding: 0 80px;
  overflow-x: hidden;
}

@media (max-width: 800px) {
  body {
    padding: 0 40px;
  }
}

@media (max-width: 586px) {
  body {
    padding: 0 20px;
  }
}

h1,
h2,
h3 {
  font-size: 40px;
  font-family: "Saira Condensed", sans-serif;
}

h2 {
  line-height: 1em;
  margin: 0;
}

h3 {
  font-size: 26px;
  line-height: 1em;
}

.nodisplay {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.nowrap {
  white-space: nowrap;
}

.saving-total {
  color: Green;
}

.saving-info {
  color: SaddleBrown;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.pricediv {
  text-align: right;
}

.product-price {
  display: grid;
  grid-template-columns: max-content;
}

.product-price::before {
    content: "Komplettpreis: 99.999 9.999,99 €";
    grid-area: 1 / 1;
    visibility: hidden;
    white-space: nowrap;
}

.product-price > * {
    grid-area: 1 / 1;
}

.select-product {
  text-align: right;
  font-size: larger;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.new-price {
  color: Green;
}

.item-checkbox {
  vertical-align: middle;
  margin: 0 auto;
}

.item-checkbox input[type="checkbox"] {
  transform: scale(1.5);
}

.success-inline {
  padding: 0px 0px 0px 0px;
  background: none repeat scroll 0 0 #abffab;
  margin-left: 3px;
  margin-right: 3px;
  color: #000000;
  text-align: center;
  display: inline;
}

.infobox {
  border: 1px solid black;
  padding: 10px;
  margin-bottom: 10px;
}

.infobox h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.infobox p {
  margin-top: 8px;
  margin-bottom: 0;
}
.room-config {
  margin: 20px 5px;
}

.room-config:disabled {
  color: #ababab;
  user-select: none;
}

.room-highlight {
  background-color: #fffde9;
}

.room-config:disabled .room-highlight {
  color: #757575;
  background-color: #fffde9;
}

.room-heading {
  margin: 10px;
}

@media print {
  .noprint {
    display: none !important;
  }
}

/********************************************
  * Base style for the steps
********************************************/
.steps {
  width: 100%;
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  .steps {
    margin-bottom: 40px;
  }
}

.step-01 {
  --step-width: 0;
}

.step-02 {
  --step-width: 33%;
}

.step-03 {
  --step-width: 66%;
}

.step-04 {
  --step-width: 100%;
}

.steps h1 {
  margin: 0;
}

.steps-line {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background-color: #969696;
  margin-bottom: 30px;
}

.steps-line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--step-width);
  height: 8px;
  border-radius: 8px;
  background-color: #eb8f39;
  margin: 0;
}

.steps-num {
  position: absolute;
  top: 50%;
  left: var(--step-width);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: #eb8f39;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-01 .steps-num {
  transform: translate(-20%, -50%);
}

.step-04 .steps-num {
  transform: translate(-80%, -50%);
}

/********************************************
  * Styles for Page 01
********************************************/
.section {
  margin: 0 0 80px 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  text-align: center;
}

.section-title {
  grid-column: 1 / -1;
  margin: 0 0 20px 0;
}

.section-title span {
  display: block;
}

.card-container {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
}

.hidden-checkbox {
  -webkit-appearance: none;
  appearance: none;
  display: inline-grid;
  place-content: center;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  transform: translateY(-0.075em);
  z-index: 10;
  cursor: pointer;
}

.hidden-checkbox::after {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #d0aa93;
}

.hidden-checkbox:checked::after {
  transform: scale(1);
}

/* 2. Base style for the label (which now functions as a container) */
.card-label {
  height: stretch;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2em;
  cursor: pointer;
  padding: 0px 48px !important;
  background: #fff;
  clip-path: url(#image-clip-shape) !important;
  -webkit-clip-path: url(#image-clip-shape) !important;
}

.card-container:hover {
  transform: scale(1.015);
  filter: drop-shadow(0 0 20px rgba(147, 147, 147)); 
}

.card-label h3 {
  color: #261d18;
  transition: color 0.3s ease;
  margin-top: 18px;
  margin-bottom: 15px;
}

/* 3. What happens to the label when the checkbox is checked */
.card-container:has(.hidden-checkbox:checked) {
  transform: scale(1.03);
  filter: drop-shadow(0 0 30px rgba(235, 143, 57)); 
}

.card-label:has(.hidden-checkbox:checked) h3 {
  color: #eb8f39;
}

/* 3. What happens to the label when the checkbox is disabled */
.hidden-checkbox:disabled,
.card-label:has(.hidden-checkbox:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-right p {
  margin: 0;
}

.product-left h3 span {
  font-size: 18px;
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
  font-style: italic;
  color: #555;
  font-weight: 400;
  display: block;
}

.product-left span {
  font-style: italic;
}

.product-left {
  flex: 1 1 auto;
}

.card-label .disabled {
  border-top: 1px solid #878787;
  border-bottom: 1px solid #878787;
  margin: 10px 0;
  padding: 10px 0;
}

.card-label .disabled a {
  text-decoration: underline;
  color: #261d18;
  transition: all 0.3s ease;
}

.card-label .disabled a:hover {
  color: #eb8f39;
}

.product-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.product-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
}

.product-right > .vertical-divider {
  display: none;
}

.vertical-divider {
    width: 2px;
    flex: 0 0 2px;
    align-self: stretch;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.5) 15%,
        rgba(0,0,0,0.5) 85%,
        transparent 100%
    );
}

.pricediv label {
  font-weight: 600;
}

@media (max-width: 1100px) {
  .card-label {
    flex-direction: column;
    gap: 0;
  }

  .product-right-group {
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 18px;
  }

  .product-right-group > .vertical-divider {
    display: none;
  }

  .product-right {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .product-right > .vertical-divider {
    display: unset;
  }

  .product-price {
    display: unset;
    grid-template-columns: unset;
  }

  .product-price::before {
    content: unset;
  }
}

@media (max-width: 665px) {
  .product-right {
    flex-direction: column;
    align-items: end;
  }

  .product-right > .vertical-divider {
    display: none;
  }

  .select-product {
    padding-bottom: 0.67em;
  }
}

.saving-inactive,
.saving-active,
.saving-potential,
.saving-info {
  position: absolute;
  bottom: -10px;
  right: 15px;
  color: white;
  font-weight: bold;
  display: inline-block;
  padding: 2px 5px;
}

.saving-inactive {
  background-color: #e74c3c;
}

.saving-active {
  background-color: #27ae60;
}

.saving-potential {
  background-color: #261d18;
}

.saving-info {
  background-color: rgb(168, 89, 33);
}

/* 3. Base style for the gutschein label */
.gutscheine {
  overflow: hidden;
}

.gutscheine-card {
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: url(./assets/gutschein_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  transition: all 0.3s ease;
}

.hidden-checkbox:checked + .card-label .gutscheine-card {
  right: 0;
}

.gutscheine-card label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "Saira Condensed", sans-serif;
  color: white;
  font-weight: bold;
  text-align: left;
  font-size: 100px;
  line-height: 0.8em;
  opacity: 0.2;
}

.gutscheine-card span {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  font-weight: bold;
  text-align: right;
  font-size: 70px;
  line-height: 0.8em;
}

/* 4. Base style for the gutschein label */
.summary-container {
  position: sticky;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  z-index: 50;
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.2);
}

.summary-info {
  width: 100%;
  text-align: right;
}

.summary {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 665px) {
  .summary {
    flex-direction: column-reverse;
    width: 100%;
  }
}

.summary button {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 40px;
  border: none;
  border-radius: 8px;
  color: #fff;
  background: #eb8f39;
  cursor: pointer;
  transition: all 0.3s ease;
}

.summary button:hover {
  background: #261d18;
}

.summary button:disabled {
  background: #c6c6c6;
  opacity: 0.7;
  cursor: not-allowed;
}

#summary-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#summary-total label {
  font-size: 20px;
  font-weight: 600;
}

.error {
  position: relative;
  border: 0;
  border-radius: 8px;
  background: #ff3838;
  padding: 20px 40px 20px 84px;
  color: #fff;
  text-align: center;
}

.error:before {
  content: url(./assets/error_icon.svg);
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/********************************************
  * Styles for Page 02
********************************************/

#product-configuration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-config {
  position: relative;
  height: stretch;
  padding: 40px !important;
  background: #fff;
  clip-path: url(#image-clip-shape) !important;
  -webkit-clip-path: url(#image-clip-shape) !important;
}

.product-config h3 {
  margin: 0 0 20px 0;
}

.product-config h3 span {
  display: block;
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
  font-style: italic;
  font-size: 18px;
  color: #555;
  font-weight: 400;
  display: block;
}

.product-config .options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  border: 0;
  padding: 0;
  margin-bottom: 20px;
}

@media (max-width: 850px) {
  .product-config .options {
    flex-direction: column;
  }
}

.product-config h4 {
  width: 100%;
  margin: 0;
}

.product-config h4 em {
  font-weight: initial;
  font-size: smaller;
}

.product-config .options input[type="radio"] {
  display: none;
}

.product-config .options input {
  padding: 10px 10px;
  min-height: 22px;
  font-size: 18px;
  text-align: left;
  background: #fff;
  border: 2px solid #eb8f39;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-config .options input[type="text"] {
  cursor: text;
}

.product-config .options label {
  display: flex;
  align-items: center;
  padding: 10px 40px;
  background: #fff;
  border: 2px solid #eb8f39;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-config .options input:hover + label {
  background: #eb8f39;
  color: #fff;
  border: 2px solid #eb8f39;
}

.product-config .options input:hover + label .old-price {
  color: #cdcdcd;
}


.product-config .options input:checked + label {
  background: #eb8f39;
  color: #fff;
  border: 2px solid #eb8f39;
}

.product-config .options input:checked + label .old-price {
  color: #cdcdcd;
}

.product-config .invisible {
  display: none;
}

.product-config .invisible {
  display: none;
}

.product-config fieldset:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-config fieldset:disabled label {
  background: #c6c6c6;
  border: 2px solid #c6c6c6;
  color: #7a7a7a;
  cursor: not-allowed;
}

.product-config fieldset:disabled label:hover {
  background: #c6c6c6;
  border: 2px solid #c6c6c6;
  color: #7a7a7a;
}

.product-config fieldset .fieldset-info {
  width: 100%;
  color: #555;
  margin-top: 10px;
}

/********************************************
  * Styles for Page 02 Alternative
********************************************/

.main-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/********************************************
  * Styles for Page 03
********************************************/

.address-config {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: stretch;
  padding: 40px 100px !important;
  margin-bottom: 80px;
  background: #fff;
  clip-path: url(#image-clip-shape) !important;
  -webkit-clip-path: url(#image-clip-shape) !important;
}

@media (max-width: 1100px) {
  .address-config {
    padding: 40px 40px !important;
  }
}

@media (max-width: 586px) {
  .address-config {
    padding: 40px 20px !important;
  }
}

.address-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1100px) {
  .address-row {
    gap: 5px;
  }
}

.address-row span {
  flex: 0 0 200px;
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .address-row span {
    flex: 0 0 100%;
  }
}

.address-row input,
.address-row select {
  flex: 1 1 500px;
  max-width: 750px;
  padding: 10px;
  font-size: 18px;
  border: 2px solid #eb8f39;
  border-radius: 8px;
  background-color: #fff;
}

@media (max-width: 1100px) {
  .address-row input,
  .address-row select {
    max-width: 100%;
  }
}

.address-info {
  flex: 0 0 100%;
  margin-top: -10px;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 1100px) {
  .address-info {
    margin-top: 5px;
  }
}

.address-info label {
  font-weight: 600;
}

/********************************************
  * Styles for Page 04
********************************************/

.overview-config {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: stretch;
  padding: 40px 60px !important;
  background: #fff;
  clip-path: url(#image-clip-shape) !important;
  -webkit-clip-path: url(#image-clip-shape) !important;
}

@media (max-width: 1100px) {
  .overview-config {
    padding: 40px 40px !important;
  }
}

@media (max-width: 586px) {
  .overview-config {
    padding: 40px 20px !important;
  }
}

.overview-config:last-of-type {
  margin-bottom: 80px;
}

.overview-info {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px;
  font-size: 18px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
}

@media (max-width: 586px) {
  .overview-info {
    padding: 10px;
  }
}

.infobox {
  padding: 20px;
  font-size: 18px;
  border-radius: 8px;
  border: 2px solid #eb8f39;
  background: #eb8f391a;
}

@media (max-width: 586px) {
  .infobox {
    padding: 10px;
  }
}

.infobox h4 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.infobox-bonus label {
  font-family: "Saira Condensed", sans-serif;
  display: block;
  font-weight: 600;
  font-size: 20px;
  margin: 10px 0 0 0;
}

.infobox-bonus input,
.infobox-bonus button {
  padding: 10px 10px;
  min-height: 22px;
  font-size: 18px;
  text-align: left;
  background: #fff;
  border: 2px solid #eb8f39;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.infobox-bonus button {
  background: #eb8f39;
  color: #fff;
  border: 2px solid #eb8f39;
  transition: all 0.3s ease;
}

@media (max-width: 586px) {
  .infobox-bonus input,
  .infobox-bonus button {
    width: 100%;
  }

  .infobox-bonus button {
    margin-top: 10px;
  }
}

.infobox-bonus button:hover {
  background: #261d18;
  border: 2px solid #261d18;
}

.overview-items {
  display: grid;
  grid-template-columns: 1fr 150px;
  width: 100%;
  gap: 0;
  align-items: stretch;
  font-weight: 600;
}

@media (max-width: 586px) {
  .overview-items {
    grid-template-columns: 1fr;
  }
}

.overview-items > div {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 5px;
  flex-wrap: wrap;
}

.overview-items > div:nth-child(4n + 3),
.overview-items > div:nth-child(4n + 4) {
  background-color: #f2f2f2;
}

.overview-items > div:nth-child(even) {
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 586px) {
  .overview-items > div:nth-child(even) {
    justify-content: flex-start;
    text-align: left;
  }
}

.overview-items > div:nth-child(1),
.overview-items > div:nth-child(2) {
  font-weight: bold;
  background-color: #ffffff;
  border-bottom: 2px solid #eb8f39;
}

@media (max-width: 586px) {
  .overview-items > div:nth-child(1),
  .overview-items > div:nth-child(2) {
    display: none;
  }

  .overview-items > div:nth-child(3) {
    border-top: 2px solid #eb8f39;
  }
}

.overview-items > div:nth-last-child(1),
.overview-items > div:nth-last-child(2) {
  flex-direction: column;
  background-color: #eb8f391a !important;
  font-weight: bold;
  border-top: 2px solid #eb8f39;
}

.overview-items > div:nth-last-child(1) {
  align-items: flex-end;
}

.overview-items > div:nth-last-child(2) {
  align-items: flex-start;
}

@media (max-width: 586px) {
  .overview-items > div:nth-last-child(1),
  .overview-items > div:nth-last-child(2) {
    align-items: flex-start;
  }

  .overview-items > div:nth-last-child(1) {
    border: 0;
  }
}

.overview-items span {
  font-weight: 400;
  font-style: italic;
}

.overview-items label {
  font-weight: 400;
  width: 100%;
}

.overview-items-preis {
  margin-top: -10px;
}

.overview-rooms {
  margin-top: 40px;
}

.overview-rooms-info {
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px;
  font-size: 18px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
}

@media (max-width: 586px) {
  .overview-rooms-info {
    padding: 10px;
  }
}

.overview-rooms-info label {
  font-weight: 600;
}

.overview-rooms-info span {
  font-style: italic;
  margin-bottom: 10px;
}

.overview-rooms p {
  margin: 5px 0;
}

.overview-confirm {
  background: #eb8f39;
  color: #fff;
}

.overview-confirm h4 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 20px;
  margin: 0;
}

.overview-confirm p {
  margin: 5px 0;
}

.overview-confirm p span {
  font-weight: 600;
}

/* Kontejner labela */
.overview-confirm-legal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.4; /* Možeš podesiti boju teksta po želji */
}

.overview-confirm-legal input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #fff;
  border: 2px solid #261d18;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.overview-confirm-legal input[type="checkbox"]:hover {
  background: #d17a2a;
}

.overview-confirm-legal input[type="checkbox"]:checked {
  background: #261d18;
}

.overview-confirm-legal input[type="checkbox"]::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
  margin-bottom: 2px;
}

.overview-confirm-legal input[type="checkbox"]:checked::after {
  display: block;
}

.overview-confirm-legal input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(235, 143, 57, 0.2);
}

.overview-confirm-legal p {
  margin: 0;
}

.overview-confirm-legal a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.overview-confirm-legal a:hover {
  color: #261d18;
}

/********************************************
  * Styles for Page 05 - final
********************************************/
.final-page {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 95vh;
}

.final-config {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: stretch;
  padding: 40px 60px;
  background: #fff;
  clip-path: url(#image-clip-shape) !important;
  -webkit-clip-path: url(#image-clip-shape) !important;
}

@media (max-width: 1100px) {
  .final-config {
    padding: 40px 40px;
  }
}

@media (max-width: 586px) {
  .final-config {
    padding: 40px 20px;
  }
}

.final-config p {
  margin: 0;
  font-size: 18px;
}

@media (max-width: 586px) {
  .final-config p {
    font-size: 18px;
  }
}

.final-config span {
  color: #eb8f39;
  font-weight: 600;
}
