/* Default: show desktop, hide mobile */

.mobile-mode {
  display: none;
}

button.loading {
  background: gray;
  cursor: progress;
}

.modal {
  display: none;
  position: fixed;
  z-index: 11;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 90%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.email-link {
  text-decoration: none;
  color: inherit;
}

.calculate-container {
  display: inline-flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  border: 1px solid var(--Gray, #EFEFEF);
  background: var(--White, #FFF);
  margin: 0px;
}

.calculate-container-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.calculate-container-header {
  display: flex;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.calculate-container-header-title {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1 0 0;
  color: var(--Black, #050304);
  font-family: Futura Std;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  /* 38.4px */
}

.calculate-container-body {
  display: flex;
  align-items: flex-start;
}

.calculate-container-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.calculate-container-detail-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.calculate-container-detail-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: var(--Black, #050304);
  font-family: Futura Std;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.calculate-container-detail-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.location-icons {
  display: flex;
  height: 96px;
  padding-top: 2px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.location-divider {
  border: 1px dashed #F10203;
}

.location-item-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.location-item-row {
  display: flex;
  align-items: center;
  gap: 80px;
  align-self: stretch;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.location-name {
  color: var(--Black, #050304);
  font-family: Futura Std;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.location-value {
  color: var(--Black, #050304);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

.location-description {
  color: var(--Black, #050304);
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}

.calculate-container-price-error {
  color: var(--Red, #F10203);
  font-size: 14px;
  width: 190px;
  text-align: right;
}
.calculate-container-price-value {
  color: var(--Red, #F10203);
  white-space: nowrap;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
}

textarea {
  padding: 0.625rem 0.75rem;
  border: 1px solid #EFEFEF;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 1024px) {
  .desktop-mode {
    display: none;
  }
  .mobile-mode {
    display: block;
  }

  .calculate-container-price-value {
    text-align: center;
  }
  .calculate-container-price-error {
    text-align: center;
  }
}
