body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif !important;
}

#configurator-container {
  width: 100%;
  height: 100%;
}

.form-control {
  background-color: #f0f2f5;
  border: 1px solid #e3e8eb;
}

.form-control:focus {
  border-color: #BAD9ED;
}


.pop-up-container,
.shadow,
.shadow-submit-success {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.pop-up-container {
  z-index: -1;
}
.shadow,
.shadow-submit-success {
  background: black;
  opacity: 0.4;
}

.pop-up--show {
  z-index: 10000000;
}

.submit-form-text {
  text-align: center;
  margin-top: 30px;
  font-weight: bolder;
  font-size: 20px;
}

.pop-up,
.pop-up-success-submit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  min-width: 385px;
  min-height: 600px;
  height: 70%;
  padding: 15px 10px;
  background: white;
  box-sizing: border-box;
  overflow: auto;
  border-radius: 8px;
}

.sucess-submit-image-container {
  height: 180px;
  display: flex;
  justify-content: center;
}

.pop-up-success-submit {
  width: 20%;
  min-width: 352px;
  min-height: 350px;
  height: 15%;
}

.hide {
  display: none;
}
.client-form-data {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.client-form-data form {
  width: 95%;
  padding: 5px;
  margin: auto;
}

div.submit button {
  background-color: #2678AB;
  width: 120px;
  height: 35px;
  border-radius: 2px;
  color: white;
  margin-top: 5px;
  border: none;
}

.export-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 7px;
}

.export-button {
  background-color: #2678AB;
  width: 120px;
  height: 45px;
  border-radius: 30px;
  color: white;
  margin-right: 5px;
  margin-left: 5px;
  border: none;
}

.pop-up-success-submit {
  min-width: 352px;
  min-height: 350px;
}

.submitted-popup {
  min-width: 440px;
  width: 440px;
  background: #FFF;
  border-radius: 20px;
  padding: 32px;
  background-size: 450px;
  height: fit-content;
}

.submitted-popup-main-block {
  display: flex;
  flex-direction: column;
}

.submitted-popup-close-button {
  background-color: transparent;
  border: none;
  color: grey;
  font-size: 24px;
  font-weight: bold;
  text-align: end;
  position: absolute;
  right: 10px;
  top: 10px;
}

.submitted-popup-main-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.submitted-popup-main-block-title {
  color: #0E121B;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.176px;
}
.submitted-popup-main-block-subtitle {
  color: #525866;
text-align: center;
font-family: Poppins, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 24px;
letter-spacing: -0.176px;
}

.submitted-popup-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submitted-popup-list-item {
  color: #0E121B;
font-family: Poppins, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px;
letter-spacing: -0.084px;
}

.submitted-popup-list-item:not(:last-child) {
  margin-bottom: 20px;
}

.submitted-popup-list-item::before {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("./img/checked-icon.svg");
  background-size: contain;
  content: '';
  margin-right: 8px;
  margin-bottom: -2.5px;
}

.start-a-new-design-button {
  color: #0E121B;
font-family: Poppins, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px;
letter-spacing: -0.084px;
text-decoration-line: underline;
background: none;
border: none;
width: fit-content;
align-self: center;
}

.submitted-popup-share-link-copy-button:active {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.00) 100%), #2678AB;
}

.submitted-popup-divider {
  width: 100%;
  height: 1px;
  background-color: #E1E4EA;
  margin: 24px 0;
}

.submitted-popup-new-design-label {
  color: #525866;
text-align: center;
font-family: Poppins, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px; 
letter-spacing: -0.084px;
margin-bottom: 4px;
}

.submitted-popup-share-link-copy-button {
  width: 100%;
  height: 56px;
  padding: 10px;
  border-radius: var(--radius-10, 10px);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.00) 100%), #2678AB;
color: #FFF;
font-family: Poppins, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 20px; 
letter-spacing: -0.096px;
border: none;
margin: 24px 0;
cursor: pointer;
}

.invisible {
  opacity: 100%;
}

.copied-label {
  margin-top: -25px;
  font-size: 12px;
}


@media (min-width: 980px) {
  .pop-up {
    width: 40%;
    height: fit-content;
  }

  .horizontal-form-group {
    display: flex;
    justify-content: space-between;
  }

  .horizontal-form-group-input-container {
    width: 48%;
  }
}

/* Supademo styles */

.supademo-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.supademo-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  background-color: white;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.supademo-close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* end Supademo styles */