.bs-calc-v2 {
  background: #212121;
  color: #fff;
  padding: 70px 0 70px;
}

.bs-calc-v2 img{
  user-drag: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-drag: none;
  -moz-user-select: none;
  -ms-user-drag: none;
  -ms-user-select: none;
}

.bs-calc-v2__inner {
  max-width: 1503px;
  margin: 0 auto;
}

.bs-calc-v2__title {
  margin: 0 0 26px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.bs-calc-v2__steps {
  display: flex;
  justify-content: center;
  gap: 27px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
}

/* Контент під пігулками кроків: свайп при «Далі» / «Назад» */
.bs-calc-v2__step-body-clip {
  overflow-x: visible;
  position: relative;
  overflow-y: visible;
}

.bs-calc-v2__step-body {
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease;
  will-change: transform, opacity;
}

.bs-calc-v2__step-body--no-transition {
  transition: none !important;
}

.bs-calc-v2__step-body--exit-next {
  transform: translateX(-12%);
  opacity: 0;
}

.bs-calc-v2__step-body--exit-prev {
  transform: translateX(12%);
  opacity: 0;
}

.bs-calc-v2__step-body--prefill-next {
  transform: translateX(12%);
  opacity: 0;
}

.bs-calc-v2__step-body--prefill-prev {
  transform: translateX(-12%);
  opacity: 0;
}

.bs-calc-v2.is-transitioning .bs-calc-v2__step {
  pointer-events: none;
}

.bs-calc-v2.is-transitioning .bs-calc-v2__actions {
  pointer-events: none;
}

.bs-calc-v2__step {
  appearance: none;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 7px 19px 5px;
  font: inherit;
  font-size: 18px;
  line-height: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.32s ease, transform 0.32s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  transform-origin: center;
  position: relative;
}

.bs-calc-v2__step:disabled {
  cursor: not-allowed;
}

.bs-calc-v2__step:disabled:not(.is-commercial-muted) {
  opacity: 0.45;
}

.bs-calc-v2__step.is-active {
  border-color: #fcba1d;
  background: #fcba1d;
  color: #212121;
}

.bs-calc-v2__step.is-commercial-muted:not(.is-active) {
  border-color: #888888;
  color: #888888;
}

.bs-calc-v2.is-commercial-flow .bs-calc-v2__steps {
  justify-content: center;
}

.bs-calc-v2.is-commercial-flow .bs-calc-v2__steps .bs-calc-v2__step:nth-child(6),
.bs-calc-v2.is-commercial-flow .bs-calc-v2__steps .bs-calc-v2__step:nth-child(7) {
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
}

.bs-calc-v2.is-commercial-flow .bs-calc-v2__steps .bs-calc-v2__step:nth-child(6) {
  left: var(--bs-calc-step6-left, auto);
}

.bs-calc-v2.is-commercial-flow .bs-calc-v2__steps .bs-calc-v2__step:nth-child(7) {
  left: var(--bs-calc-step7-left, auto);
}

.bs-calc-v2__question {
  margin-bottom: 46px;
  text-align: center;
  color: #fcba1d;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.bs-calc-v2__content {
  min-height: 340px;
}

.bs-calc-v2__cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: start;
}

.bs-calc-v2__cards--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bs-calc-v2__cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.bs-calc-v2__cards--step4 {
  gap: 40px;
}

.bs-calc-v2__card {
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.bs-calc-v2__card-media {
  height: 329px;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  border: 2px solid transparent;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bs-calc-v2__card-media img,
.bs-calc-v2__illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.bs-calc-v2__card-empty {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.bs-calc-v2__cards--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bs-calc-v2__cards--centered .bs-calc-v2__card {
  flex: 0 0 calc((100% - 180px) / 7);
  max-width: calc((100% - 180px) / 7);
}

/* Крок 4: більші картки (6 в ряд на desktop) */
.bs-calc-v2__cards--step4 .bs-calc-v2__card {
  flex: 0 0 calc((100% - 200px) / 6);
  max-width: calc((100% - 200px) / 6);
}

.bs-calc-v2__cards--step1 .bs-calc-v2__step1-row {
  display: contents;
}

.bs-calc-v2__card.is-active .bs-calc-v2__card-media {
  border-color: #fcba1d;
}

.bs-calc-v2__card-dot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: -18px auto 15px;
  background: #fff;
  display: block;
  border: 2px solid #fff;
  position: relative;
  box-shadow: 0px 0px 10px 0px #FFFFFF73;
}

.bs-calc-v2__card.is-active .bs-calc-v2__card-dot {
  background: #fcba1d;
  border-color: #fcba1d;
  box-shadow: 0px 0px 10px 0px #FCBA1D73;
}

.bs-calc-v2__card.is-active .bs-calc-v2__card-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 11px;
  transform: translate(-50%, -50%);
  background: url("images/check-black.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.bs-calc-v2__card-label {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.bs-calc-v2__card-desc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  width: 100%;
  display: block;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.8;
  pointer-events: none;
}

.bs-calc-v2__pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 88px;
  flex-wrap: wrap;
}

.bs-calc-v2__pills--step6 {
  margin-bottom: 55px;
  gap: 31px;
}

.bs-calc-v2__pill {
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 8px 14px;
  font-size: 16px;
  min-width: 42px;
}

.bs-calc-v2__pill--wide {
  min-width: 239px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 34px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  overflow: visible;
  font-size: 22px;
}

.bs-calc-v2__pill--wide .bs-calc-v2__card-dot {
  width: 35px;
  height: 35px;
  margin: 0;
  border-width: 2px;
  box-shadow: 0px 0px 10px 0px #FFFFFF73;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}

.bs-calc-v2__pill--wide.is-active .bs-calc-v2__card-dot {
  background: #fcba1d;
  border-color: #fcba1d;
  box-shadow: 0px 0px 10px 0px #FCBA1D73;
}

.bs-calc-v2__pill--wide.is-active .bs-calc-v2__card-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 11px;
  transform: translate(-50%, -50%);
  background: url("images/check-black.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.bs-calc-v2__pill.is-active {
  border-color: #fcba1d;
  background: #fcba1d;
  color: #212121;
}

.bs-calc-v2__pill--wide.is-active {
  background: transparent;
  color: #fcba1d;
}

.bs-calc-v2__rooms-label {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  margin-top: 93px;
}

/* Крок 5 (площа): базовий клас + модифікатори --residential / --commercial */
.bs-calc-v2__step5--commercial .bs-calc-v2__range-track {
  margin-top: 80px;
}

.bs-calc-v2__step5--commercial .bs-calc-v2__illustration {
  margin-top: 50px;
}

.bs-calc-v2__step5--commercial .bs-calc-v2__illustration img {
  height: 338px;
}

.bs-calc-v2__range-wrap {
  max-width: 540px;
  margin: 0 auto;
}

.bs-calc-v2__range-track {
  position: relative;
  margin-top: 36px;
}

.bs-calc-v2__range-wrap label {
  display: block;
  text-align: center;
  margin-bottom: 8px;
  font-size: 24px;
}

.bs-calc-v2__range-value {
  position: absolute;
  top: -28px;
  left: 0;
  transform: translateX(-50%);
  text-align: center;
  font-size: 18px;
  white-space: nowrap;
}

.bs-calc-v2__range-wrap input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    #fcba1d 0%,
    #fcba1d var(--range-pct, 0%),
    #ffffff var(--range-pct, 0%),
    #ffffff 100%
  );
  outline: none;
  cursor: pointer;
}

.bs-calc-v2__range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fcba1d;
  cursor: pointer;
  border: none;
  box-shadow: 0px 0px 10px 0px #FCBA1D73;
}

.bs-calc-v2__range-wrap input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fcba1d;
  cursor: pointer;
  border: none;
  box-shadow: 0px 0px 10px 0px #FCBA1D73;
}

.bs-calc-v2__range-wrap input[type="range"]::-moz-range-track {
  background: transparent;
}

.bs-calc-v2__illustration {
  margin: 0 auto 0;
  max-width: 1000px;
  border-radius: 14px;
  height: 281px;
}

.bs-calc-v2__contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
  margin-bottom: 37px;
  max-width: 934px;
  justify-self: center;
}

.bs-calc-v2__step7 {
  max-width: 1503px;
  margin: 0 auto;
}

.bs-calc-v2__step7-main {
  display: grid;
  grid-template-columns: 640px minmax(0, 1fr);
  gap: 37px;
  align-items: start;
}

.bs-calc-v2__step7-main .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel]{
  padding-left: 100px;
}

.bs-calc-v2__contact {
  border: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 266px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 300;
}

.bs-calc-v2__contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bs-calc-v2__contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-calc-v2__contact-icon svg {
  display: block;
}

.bs-calc-v2__contact.is-active .bs-calc-v2__contact-icon {
  border-color: #fcba1d;
  color: #fcba1d;
}

.bs-calc-v2__contact.is-active {
  /* color: #fcba1d; */
}

.bs-calc-v2__contact .bs-calc-v2__card-dot {
  margin: -18px auto 10px;
}

.bs-calc-v2__contact.is-active .bs-calc-v2__card-dot {
  background: #fcba1d;
  border-color: #fcba1d;
  box-shadow: 0px 0px 10px 0px #FCBA1D73;
}

.bs-calc-v2__contact.is-active .bs-calc-v2__card-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 11px;
  transform: translate(-50%, -50%);
  background: url("images/check-black.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.bs-calc-v2__fields {
  max-width: 640px;
  margin: 0;
  display: grid;
  gap: 9px;
  z-index: 2;
}

.bs-calc-v2__fields input,
.bs-calc-v2__fields textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #212121;
  font-size: 16px;
  padding: 14px 16px;
  height: 60px;
}

.bs-calc-v2__fields textarea {
  min-height: 60px;
  resize: vertical;
}

.bs-calc-v2__fields input:focus,
.bs-calc-v2__fields input:focus-visible,
.bs-calc-v2__fields textarea:focus,
.bs-calc-v2__fields textarea:focus-visible {
  outline: none;
  box-shadow: none;
}

/* intl-tel-input (крок 7): окремий код країни + поле, як у CF7 / Figma 9055:5813 */
.bs-calc-v2__field-phone {
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: visible;
}

.bs-calc-v2__field-phone .intl-tel-input {
  width: 100%;
  display: block;
  position: relative;
  /* overflow:visible щоб country-list не обрізався */
  overflow: visible;
  background: transparent;
}

/* Рамка і фон — через псевдоелемент, бо overflow:visible не дає clip */
.bs-calc-v2__field-phone .intl-tel-input::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #fff;
  pointer-events: none;
  z-index: 0;
}

.bs-calc-v2__field-phone .intl-tel-input input,
.bs-calc-v2__field-phone .intl-tel-input input[type="tel"],
.bs-calc-v2__field-phone .intl-tel-input input[type="text"] {
  position: relative;
  z-index: 1;
  height: 60px;
  border: 0;
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.2;
  background: transparent;
  color: #212121;
}

.bs-calc-v2__field-phone .intl-tel-input input::placeholder {
  color: rgba(33, 33, 33, 0.5);
}

.bs-calc-v2__field-phone .intl-tel-input .flag-container {
  background: transparent;
  border-radius: 10px 0 0 10px;
  padding: 0;
  z-index: 2;
}

/* Розтягуємо flag-container на повну ширину intl-tel-input,
   щоб country-list позиціонувався відносно всього поля, а не лише прапора.
   pointer-events:none + pointer-events:auto на selected-flag — кліки залишаються коректними */
.bs-calc-v2__field-phone .intl-tel-input.allow-dropdown .flag-container {
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  pointer-events: none;
}

.bs-calc-v2__field-phone .intl-tel-input.allow-dropdown .selected-flag {
  pointer-events: auto;
}

.bs-calc-v2__field-phone .intl-tel-input .selected-flag {
  background: #f3f3f7;
  border-radius: 10px 0 0 10px;
  min-width: 88px;
  padding: 0 8px 0 12px;
}

.bs-calc-v2__field-phone .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag,
.bs-calc-v2__field-phone .intl-tel-input .selected-flag:focus {
  background: #f3f3f7;
}

.bs-calc-v2__field-phone .intl-tel-input .selected-dial-code {
  font-size: 14px;
  color: #212121;
  line-height: 14px;
}

.bs-calc-v2__field-phone .intl-tel-input .iti-arrow {
  width: 7px;
  height: 4px;
  border: 0;
  margin-top: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='4' viewBox='0 0 7 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5L3.5 3.5L6.5 0.5' stroke='%23212121' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.15s ease;
}

.bs-calc-v2__field-phone .intl-tel-input:has(.country-list:not(.hide)) .selected-flag .iti-arrow,
.bs-calc-v2__field-phone .intl-tel-input .selected-flag .iti-arrow.up {
  transform: rotate(180deg);
}

/* Список країн — стиль як у consultation-modal */
.bs-calc-v2__field-phone .intl-tel-input .country-list {
  box-sizing: border-box;
  left: 0 !important;
  right: 0;
  width: 100% !important;
  min-width: 100%;
  margin: 5px 0 0 !important;
  padding: 0;
  list-style: none;
  background: #ffffff !important;
  color: #212121;
  border: 1px solid #ffffff !important;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-height: min(280px, 50vh) !important;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
  white-space: normal;
  pointer-events: auto;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list.dropup {
  margin-top: 0 !important;
  margin-bottom: 5px !important;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list .divider {
  padding: 0;
  margin: 0;
  min-height: 0;
  border-bottom: 1px solid #f0f0f0;
  pointer-events: none;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list .country {
  box-sizing: border-box;
  padding: 10px 16px !important;
  min-height: 44px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.3;
  color: #212121;
  background: #ffffff !important;
  cursor: pointer;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list .country .flag-box,
.bs-calc-v2__field-phone .intl-tel-input .country-list .country .country-name {
  margin-right: 0;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list .country .dial-code {
  color: rgba(33, 33, 33, 0.55);
}

.bs-calc-v2__field-phone .intl-tel-input .country-list .country.highlight,
.bs-calc-v2__field-phone .intl-tel-input .country-list .country:hover {
  background: #f5f5f5 !important;
}

/* Скролбар — як у consultation-modal */
.bs-calc-v2__field-phone .intl-tel-input .country-list {
  --bs-calc-scrollbar-thumb-max-height: 60px;
}

@supports not selector(::-webkit-scrollbar) {
  .bs-calc-v2__field-phone .intl-tel-input .country-list {
    scrollbar-width: thin;
    scrollbar-color: #212121 transparent;
  }
}

.bs-calc-v2__field-phone .intl-tel-input .country-list::-webkit-scrollbar {
  width: 4px;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list::-webkit-scrollbar-button {
  display: none;
  height: 0;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list::-webkit-scrollbar-track {
  background: transparent;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list::-webkit-scrollbar-thumb {
  background: #212121;
  border-radius: 3px;
  max-height: var(--bs-calc-scrollbar-thumb-max-height);
}

.bs-calc-v2__field-phone .intl-tel-input .country-list::-webkit-scrollbar-thumb:hover,
.bs-calc-v2__field-phone .intl-tel-input .country-list::-webkit-scrollbar-thumb:active {
  background: #212121;
}

.bs-calc-v2__field-phone .intl-tel-input .country-list::-webkit-scrollbar-corner {
  background: transparent;
}

.bs-calc-v2__illustration--step7 {
  margin: 0;
  max-width: 100%;
  height: 201px;
}

.bs-calc-v2__illustration--step6 {
  height: 282px;
}

.bs-calc-v2__illustration--step6 img {
  height: 338px;
}

.bs-calc-v2__actions {
  margin-top: 44px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bs-calc-v2__btn {
  border: 0;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 147px;
  line-height: 1;
  padding: 13.5px 25px;
}

.bs-calc-v2__btn--ghost {
  background: transparent;
  color: #fff;
  padding-left: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.bs-calc-v2__btn--ghost::before {
  content: "";
  display: inline-block;
  /* vertical-align: middle; */
  width: 26px;
  height: 12px;
  margin-right: 12px;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2726%27%20height%3D%2712%27%20viewBox%3D%270%200%2026%2012%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M0.21967%204.99311C-0.0732233%205.286-0.0732233%205.76087%200.21967%206.05377L4.99264%2010.8267C5.28553%2011.1196%205.76041%2011.1196%206.0533%2010.8267C6.34619%2010.5338%206.34619%2010.059%206.0533%209.76608L1.81066%205.52344L6.0533%201.2808C6.34619%200.987904%206.34619%200.51303%206.0533%200.220137C5.76041-0.0727568%205.28553-0.0727568%204.99264%200.220137L0.21967%204.99311ZM0.75%205.52344V6.27344H25.75V5.52344V4.77344H0.75V5.52344Z%27%20fill%3D%27white%27/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

.bs-calc-v2__btn--primary {
  background: #fcba1d;
  color: #212121;
  position: relative;
  padding-right: 60px;
  min-width: 145px;
}

.bs-calc-v2__btn--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  transform: translateY(-50%);
  width: 26px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2726%27%20height%3D%2712%27%20viewBox%3D%270%200%2026%2012%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M25.5303%206.05377C25.8232%205.76087%2025.8232%205.286%2025.5303%204.99311L20.7574%200.220137C20.4645%20-0.0727568%2019.9896%20-0.0727568%2019.6967%200.220137C19.4038%200.51303%2019.4038%200.987904%2019.6967%201.2808L23.9393%205.52344L19.6967%209.76608C19.4038%2010.059%2019.4038%2010.5338%2019.6967%2010.8267C19.9896%2011.1196%2020.4645%2011.1196%2020.7574%2010.8267L25.5303%206.05377ZM0%205.52344V6.27344H25V5.52344V4.77344H0V5.52344Z%27%20fill%3D%27%23212121%27/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.bs-calc-v2__btn--primary:disabled,
.bs-calc-v2__btn--primary[aria-disabled="true"],
.bs-calc-v2__btn--primary.is-blocked {
  background: transparent;
  border: 1px solid #888888;
  color: #888888;
  cursor: not-allowed;
}

.bs-calc-v2__btn--primary:disabled::after,
.bs-calc-v2__btn--primary[aria-disabled="true"]::after,
.bs-calc-v2__btn--primary.is-blocked::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2726%27%20height%3D%2712%27%20viewBox%3D%270%200%2026%2012%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M25.5303%206.05377C25.8232%205.76087%2025.8232%205.286%2025.5303%204.99311L20.7574%200.220137C20.4645%20-0.0727568%2019.9896%20-0.0727568%2019.6967%200.220137C19.4038%200.51303%2019.4038%200.987904%2019.6967%201.2808L23.9393%205.52344L19.6967%209.76608C19.4038%2010.059%2019.4038%2010.5338%2019.6967%2010.8267C19.9896%2011.1196%2020.4645%2011.1196%2020.7574%2010.8267L25.5303%206.05377ZM0%205.52344V6.27344H25V5.52344V4.77344H0V5.52344Z%27%20fill%3D%27%23888888%27/%3E%3C/svg%3E");
}

.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary:disabled,
.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary[aria-disabled="true"],
.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary.is-blocked {
  background: #888888;
  color: #000000;
}

.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary:disabled::after,
.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary[aria-disabled="true"]::after,
.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary.is-blocked::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2726%27%20height%3D%2712%27%20viewBox%3D%270%200%2026%2012%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M25.5303%206.05377C25.8232%205.76087%2025.8232%205.286%2025.5303%204.99311L20.7574%200.220137C20.4645%20-0.0727568%2019.9896%20-0.0727568%2019.6967%200.220137C19.4038%200.51303%2019.4038%200.987904%2019.6967%201.2808L23.9393%205.52344L19.6967%209.76608C19.4038%2010.059%2019.4038%2010.5338%2019.6967%2010.8267C19.9896%2011.1196%2020.4645%2011.1196%2020.7574%2010.8267L25.5303%206.05377ZM0%205.52344V6.27344H25V5.52344V4.77344H0V5.52344Z%27%20fill%3D%27%23000000%27/%3E%3C/svg%3E");
}

@keyframes bs-calc-v2-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  12% {
    transform: translateX(-8px);
  }
  24% {
    transform: translateX(8px);
  }
  36% {
    transform: translateX(-5px);
  }
  48% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  72% {
    transform: translateX(3px);
  }
}

.bs-calc-v2--shake {
  animation: bs-calc-v2-shake 0.5s ease;
}

@keyframes bs-calc-v2-shake-outline {
  0%,
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 0 3px rgba(252, 186, 29, 0.55);
  }
}

.bs-calc-v2--shake-reduced {
  animation: bs-calc-v2-shake-outline 0.45s ease;
  border-radius: 4px;
}

.bs-calc-v2.is-step-7 .bs-calc-v2__actions {
  margin-top: -55px;
  /* max-width: 1300px; */
  margin-left: auto;
  margin-right: auto;
  min-height: 140px;
  z-index: 1;
}

.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary {
  position: absolute;
  left: calc(50% + 342px);
  top: -45px;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 20px 30px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.05;
  white-space: normal;
}

.bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary::after {
  right: 50%;
  top: auto;
  bottom: 50px;
  transform: translateX(50%);
  width: 50px;
  height: 19px;
}

.bs-calc-v2.is-step-7 .bs-calc-v2__btn--ghost {
  top: auto;
  bottom: 2px;
  transform: none;
}

.bs-calc-v2__cf7 {
  display: none;
}

.bs-calc-v2__error {
  background: #2a2a2a;
  border: 1px solid #fcba1d;
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  text-align: center;
}

.bs-calc-v2__contract {
  margin-top: 18px;
  opacity: 0.85;
}

.bs-calc-v2__contract summary {
  cursor: pointer;
  font-size: 13px;
}

.bs-calc-v2__contract pre {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  white-space: pre-wrap;
  color: #ddd;
}

@media (max-width: 1599px) and (min-width: 1200px) {
  .bs-calc-v2 {
    padding: 64px 0 56px;
  }

  .bs-calc-v2__title {
    margin: 0 0 16px;
  }

  .bs-calc-v2__content {
    min-height: 240px;
  }

  .bs-calc-v2__inner,
  .bs-calc-v2__step7 {
    max-width: 934px;
  }

  .bs-calc-v2__steps {
    gap: 28px;
    margin-bottom: 30px;
  }

  .bs-calc-v2__step {
    font-size: 13px;
    padding: 6px 14px 4px;
  }

  .bs-calc-v2__question {
    margin-bottom: 28px;
  }

  .bs-calc-v2__cards {
    gap: 6px;
  }

  .bs-calc-v2__cards--two, .bs-calc-v2__cards--three {
      max-width: 905px;
      margin: 0 auto;
  }

  .bs-calc-v2__card-media {
    height: 195px;
  }

  .bs-calc-v2__card-dot {
    width: 22px;
    height: 22px;
    margin: -12px auto 11px;
  }

  .bs-calc-v2__card-label {
    font-size: 16px;
  }

  .bs-calc-v2__card-desc {
    font-size: 12px;
  }

  .bs-calc-v2__cards--centered .bs-calc-v2__card {
    flex-basis: calc((100% - 60px) / 7);
    max-width: calc((100% - 60px) / 7);
  }

  .bs-calc-v2__cards--step4 .bs-calc-v2__card {
    flex-basis: calc((100% - 50px) / 6);
    max-width: calc((100% - 50px) / 6);
  }

  .bs-calc-v2__rooms-label {
    text-align: center;
    margin-bottom: 12px;
    font-size: 16px;
    margin-top: 45px;
  }

  .bs-calc-v2__pills {
    margin-bottom: 67px;
  }

  .bs-calc-v2__pill {
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    padding: 5px 13px;
    font-size: 16px;
    min-width: 36px;
  }

  .bs-calc-v2__pills--step6 {
    gap: 37px;
    margin-bottom: 42px;
  }

  .bs-calc-v2__pill--wide {
    min-width: 154px;
    font-size: 16px;
    padding: 6px 17px;
  }

  .bs-calc-v2__range-wrap label {
    display: block;
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
  }

  .bs-calc-v2__range-value {
    position: absolute;
    top: -21px;
    left: 0;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
  }

  .bs-calc-v2__pill--wide .bs-calc-v2__card-dot {
    width: 22px;
    height: 22px;
    bottom: -14px;
  }

  .bs-calc-v2__illustration {
    max-width: 590px;
    height: 230px;
  }

  .bs-calc-v2__illustration--step6 {
    height: 163px;
  }

  .bs-calc-v2__illustration--step6 img {
    height: 200px;
  }

  .bs-calc-v2__contacts {
    max-width: 700px;
    gap: 16px;
    margin-bottom: 30px;
  }

  .bs-calc-v2__contact {
    width: 192px;
    font-size: 16px;
  }

  .bs-calc-v2__contact-icon {
    width: 59px;
    height: 59px;
  }

  .bs-calc-v2__contact-icon svg {
    width: 23px;
  }

  .bs-calc-v2__contact .bs-calc-v2__card-dot {
    margin: -11px auto 6px;
  }

  .bs-calc-v2__step7-main {
    grid-template-columns: 491px minmax(0, 1fr);
    gap: 30px;
    max-width: 905px;
    margin: 0 auto;
}



  .bs-calc-v2__fields {
    max-width: 520px;
    gap: 10px;
  }

  .bs-calc-v2__fields input,
  .bs-calc-v2__fields textarea {
    height: 60px;
    font-size: 14px;
    padding: 10px 14px;
  }

  .bs-calc-v2__illustration--step7 {
    height: 200px;
  }

  .bs-calc-v2__actions {
    margin-top: 30px;
  }

  .bs-calc-v2__step5--commercial .bs-calc-v2__illustration img {
    height: 255px;
  }

  .bs-calc-v2.is-step-5 .bs-calc-v2__actions {
    margin-top: 15px;
  }

  .bs-calc-v2__btn {
    font-size: 18px;
    padding: 11px 26px;
    padding-right: 48px;
  }

  .bs-calc-v2__btn--primary {
    font-size: 16px;
    padding: 11px 14px;
    padding-right: 48px;
    min-width: 110px;
  }

  .bs-calc-v2__btn--primary::after {
    width: 26px;
    right: 21px;
  }

  .bs-calc-v2__btn--ghost {
    padding: 11px 13px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__actions {
    margin-top: -36px;
    min-height: 120px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary {
    left: calc(50% + 260px);
    top: -57px;
    width: 150px;
    height: 150px;
    font-size: 16px;
    padding: 3px 16px 14px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary::after {
    width: 32px;
    height: 15px;
    bottom: 42px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--ghost {
    bottom: 14px;
    font-size: 16px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .bs-calc-v2 {
    padding: 52px 0 44px;
  }

  .bs-calc-v2__inner,
  .bs-calc-v2__step7 {
    max-width: 904px;
  }

  .bs-calc-v2__title {
    font-size: 28px;
    margin-bottom: 17px;
  }

  .bs-calc-v2__steps {
    gap: 30px;
    margin-bottom: 28px;
  }

  .bs-calc-v2__step {
    font-size: 12px;
    padding: 6px 14px 5px;
  }

  .bs-calc-v2__question {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .bs-calc-v2__content {
    min-height: 220px;
  }

  .bs-calc-v2__actions {
    margin-top: 37px;
  }

  .bs-calc-v2.is-step-6 .bs-calc-v2__actions {
    margin-top: 18px;
  }

  .bs-calc-v2__btn {
    border-radius: 999px;
    font-size: 16px;
    line-height: 1;
    padding: 8.5px 19px;
    padding-right: 55px;
    min-width: 100px;
  }

  .bs-calc-v2__btn--primary::after {
    right: 18px;
  }

  .bs-calc-v2__btn--ghost {
    left: -19px;
  }

  .bs-calc-v2__cards {
    gap: 8px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .bs-calc-v2__card-media {
    height: 195px;
  }

  .bs-calc-v2__card-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin: -12px auto 14px;
  }

  .bs-calc-v2__cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-calc-v2__cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bs-calc-v2__cards--centered .bs-calc-v2__card {
    flex-basis: calc((100% - 48px) / 7);
    max-width: calc((100% - 48px) / 7);
  }

  .bs-calc-v2__cards--step4 .bs-calc-v2__card {
    flex-basis: calc((100% - 40px) / 6);
    max-width: calc((100% - 40px) / 6);
  }

  .bs-calc-v2__card-label {
    font-size: 16px;
  }

  .bs-calc-v2__card-desc {
    font-size: 12px;
  }

  .bs-calc-v2__card.is-active .bs-calc-v2__card-dot::after {
    width: 11px;
  }

  .bs-calc-v2__pills {
    margin-bottom: 48px;
  }

  .bs-calc-v2__pills--step6 {
    margin-bottom: 41px;
    gap: 30px;
  }

  .bs-calc-v2__pill--wide {
    min-width: 169px;
    font-size: 16px;
    padding: 6px 20px;
  }

  .bs-calc-v2__pill--wide .bs-calc-v2__card-dot {
    bottom: -15px;
    width: 22px;
    height: 22px;
  }

  .bs-calc-v2__rooms-label,
  .bs-calc-v2__range-wrap label {
    font-size: 16px;
  }

  .bs-calc-v2__rooms-label {
    margin-top: 47px;
  }

  .bs-calc-v2__illustration {
    max-width: 592px;
    height: 228px;
  }

  .bs-calc-v2__step5--commercial .bs-calc-v2__range-track {
    margin-top: 48px;
  }

  .bs-calc-v2__step5--commercial .bs-calc-v2__illustration {
    margin-top: 37px;
    height: 176px;
  }

  .bs-calc-v2__step5--commercial .bs-calc-v2__illustration img {
    height: 225px;
  }

  .bs-calc-v2__illustration--step6 {
    height: 178px;
  }

  .bs-calc-v2__illustration--step6 img {
    height: 200px;
  }

  .bs-calc-v2__contacts {
    max-width: 620px;
    gap: 19px;
    margin-bottom: 29px;
  }

  .bs-calc-v2__contact {
    width: 190px;
    font-size: 16px;
  }

  .bs-calc-v2__contact-icon {
    width: 62px;
    height: 62px;
  }

  .bs-calc-v2__contact-icon svg {
    display: block;
    width: 24px;
    height: 32px;
}

.bs-calc-v2__contact .bs-calc-v2__card-dot {
    margin: -11px auto 6px;
}

  .bs-calc-v2__step7-main {
    grid-template-columns: 490px minmax(0, 1fr);
    gap: 30px;
  }

  .bs-calc-v2__fields {
    max-width: 490px;
    gap: 10px;
  }

  .bs-calc-v2__fields input,
  .bs-calc-v2__fields textarea {
    height: 60px;
    font-size: 15px;
    padding: 20px 18px;
  }

  .bs-calc-v2__illustration--step7 {
    height: 198px;
    margin-top: 0;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__actions {
    margin-top: -30px;
    min-height: 83px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary {
    position: absolute;
    left: calc(50% + 259px);
    top: -62px;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 8px 16px 16px;
    text-transform: uppercase;
    white-space: normal;
    font-size: 16px;
    line-height: 1.2;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary::after {
    right: 50%;
    top: auto;
    bottom: 40px;
    transform: translateX(50%);
    width: 33px;
    height: 18px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--ghost {
    top: auto;
    bottom: 0;
    transform: none;
  }
}

@media (max-width: 991px) {
  .bs-calc-v2 {
    padding: 34px 0 45px;
  }

  .bs-calc-v2__inner,
  .bs-calc-v2__step7 {
    max-width: 335px;
  }

  .bs-calc-v2__title {
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .bs-calc-v2__steps {
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 24px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    overflow: visible;
  }

  .bs-calc-v2__step {
    flex: 0 0 auto;
    font-size: 8px;
    padding: 3px 9px 2px;
  }

  .bs-calc-v2__question {
    font-size: 22px;
    margin-bottom: 29px;
  }

  .bs-calc-v2__content {
    min-height: 295px;
  }

  .bs-calc-v2__cards,
  .bs-calc-v2__cards--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    row-gap: 13px;
  }

  .bs-calc-v2__cards--step1 {
    display: block;
    gap: 20px;
  }

  .bs-calc-v2__cards--step1 .bs-calc-v2__step1-row {
    display: grid !important;
    width: 100%;
    margin-bottom: 16px;
  }

  .bs-calc-v2__cards--step4 {
    column-gap: 20px;
    row-gap: 12px;
  }

  .bs-calc-v2__cards--step1 .bs-calc-v2__step1-row--top,
  .bs-calc-v2__cards--step1 .bs-calc-v2__step1-row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .bs-calc-v2__cards--step1 .bs-calc-v2__step1-row--middle {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .bs-calc-v2__cards--step1 .bs-calc-v2__step1-row:last-child {
    margin-bottom: 0;
  }

  .bs-calc-v2__cards--step1 .bs-calc-v2__card {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .bs-calc-v2__cards--two {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bs-calc-v2__cards--three .bs-calc-v2__card:last-child {
    grid-column: 1 / -1;
  }

  .bs-calc-v2__cards--centered .bs-calc-v2__card {
    flex-basis: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .bs-calc-v2__cards--step1.bs-calc-v2__cards--centered .bs-calc-v2__card {
    flex: none !important;
    flex-basis: auto !important;
    max-width: 100% !important;
  }

  .bs-calc-v2__cards--step4 .bs-calc-v2__card {
    flex-basis: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .bs-calc-v2__card-media {
    height: 124px;
  }

  .bs-calc-v2__cards--two .bs-calc-v2__card-media {
    height: 204px;
  }

  .bs-calc-v2__cards--three .bs-calc-v2__card-media {
    height: 201px;
  }

  .bs-calc-v2__card-label {
    font-size: 14px;
  }

  .bs-calc-v2__cards--step1 .bs-calc-v2__card-label {
    font-size: 12px;
  }

  .bs-calc-v2__card-desc {
    font-size: 12px;
    line-height: 1.33;
  }

  .bs-calc-v2__card-dot {
    width: 22px;
    height: 22px;
    margin: -12px auto 10px;
  }

  .bs-calc-v2__card.is-active .bs-calc-v2__card-dot::after {
    width: 11px;
  }

  .bs-calc-v2__rooms-label,
  .bs-calc-v2__range-wrap label {
    font-size: 16px;
    margin-top: 0;
  }

  .bs-calc-v2__pills {
    margin-bottom: 84px;
    gap: 8px;
  }

  .bs-calc-v2__pill {
    font-size: 14px;
    padding: 7px 12px;
    min-width: 37px;
  }

  .bs-calc-v2__rooms-label{
    margin-top: 84px;
  }

  .bs-calc-v2__pills--step6 {
    flex-direction: column;
    align-items: center;
    gap: 52px;
    margin-top: 103px;
    margin-bottom: 20px;
  }

  .bs-calc-v2__pill--wide {
    min-width: 162px;
    font-size: 14px;
    padding: 8px 12px;
  }

  .bs-calc-v2__pill--wide .bs-calc-v2__card-dot {
    width: 22px;
    height: 22px;
    bottom: -12px;
  }

  .bs-calc-v2__pill--wide.is-active .bs-calc-v2__card-dot::after {
    width: 11px;
  }

  .bs-calc-v2__illustration--step6 {
    display: none;
  }

  .bs-calc-v2__range-wrap {
    max-width: 100%;
  }

  .bs-calc-v2__contacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    justify-items: center;
    gap: 10px;
    margin-bottom: 27px;
  }

  .bs-calc-v2__contact {
    width: 108px;
    font-size: 12px;
    line-height: 1.2;
  }

  .bs-calc-v2__contact-icon {
    width: 50px;
    height: 50px;
  }

  .bs-calc-v2__contact-icon svg {
    width: 19px;
  }

  .bs-calc-v2__contact .bs-calc-v2__card-dot {
    width: 24px;
    height: 24px;
    margin: -12px auto 6px;
  }

  .bs-calc-v2__contact.is-active .bs-calc-v2__card-dot::after {
    width: 11px;
  }

  .bs-calc-v2__step7-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bs-calc-v2__fields {
    max-width: 100%;
    gap: 10px;
  }

  .bs-calc-v2__fields input,
  .bs-calc-v2__fields textarea {
    height: 60px;
    font-size: 14px;
    padding: 12px 16px;
  }

  .bs-calc-v2__illustration--step7 {
    display: none;
  }

  .bs-calc-v2__actions {
    gap: 8px;
    margin-top: 30px;
  }

  .bs-calc-v2.is-step-2 .bs-calc-v2__actions {
    margin-top: 25px;
  }

  .bs-calc-v2.is-step-3 .bs-calc-v2__actions {
    margin-top: 48px;
  }

  .bs-calc-v2.is-step-6 .bs-calc-v2__actions {
    margin-top: 40px;
  }

  .bs-calc-v2.is-commercial-flow.is-step-5 .bs-calc-v2__actions {
    margin-top: 53px;
  }



  .bs-calc-v2__btn {
    font-size: 14px;
    padding: 9px 16px;
  }

  .bs-calc-v2__btn--primary {
    height: 39px;
    border-radius: 40px;
    padding: 0 24px 0 9px;
    min-width: 87px;
  }

  .bs-calc-v2__btn--primary::after {
    width: 15px;
    height: 7px;
    right: 14px;
  }

  .bs-calc-v2__btn--ghost {
    font-size: 14px;
    padding-left: 0;
  }

  .bs-calc-v2__btn--ghost::before {
    width: 17px;
    height: 10px;
    margin-right: 5px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__actions {
    margin-top: 16px;
    min-height: 132px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 14px 14px 16px;
    text-transform: uppercase;
    white-space: normal;
    font-size: 14px;
    line-height: 1.05;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--primary::after {
    right: 50%;
    top: auto;
    bottom: 32px;
    transform: translateX(50%);
    width: 27px;
    height: 13px;
  }

  .bs-calc-v2.is-step-7 .bs-calc-v2__btn--ghost {
    top: auto;
    bottom: 50%;
    transform: translate(0, 50%);
  }
}

.bs-calc-v2__field-phone .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
  padding-left: 95px;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .bs-calc-v2__card.is-active .bs-calc-v2__card-dot::after, 
  .bs-calc-v2__pill--wide.is-active .bs-calc-v2__card-dot::after,
  .bs-calc-v2__contact.is-active .bs-calc-v2__card-dot::after {
    width: 11px;
    transform: translate(-50%, -41%);
  }
}