/* Calculator Page Start */

.section.section--order-calculator {
  margin: 40px 0 0 0;
}

.main .order-calculator__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.main .order-calculator__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 59px;
  text-align: center;
}

.main .order-calculator__sub-title {
  position: relative;
  margin: 40px 0 80px 0;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
}

.dark-theme .main .order-calculator__sub-title {
  color: #f2f2f2;
}

.main .order-calculator__sub-title::after {
  display: block;
  position: absolute;
  top: 55px;
  right: 0;
  left: 0;
  width: 98px;
  height: 3px;
  margin: 0 auto;
  border-radius: 2px;
  background: #E30613;
  content: '';
}

.main .order-calculator__phone {
  font-weight: 700;
  color: #212121;
}

.main .order-calculator__packages {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 45px 0;
}

.main .button--package {
  margin: 0 20px 0 0;
  padding: 10px 14px;
  border-radius: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #212121;
}

.main .button--package:last-of-type {
  margin: 0;
}

.main .button--package.active {
  background: #e30613;
  color: #ffffff;
}

.main .calculator__range-slider {
  position: relative;
  width: 100%;
  height: 130px;
}

.main .calculator-range-slider__input {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  opacity: 0;
  margin: 0;
}

.main .calculator-range-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.main .calculator-range-slider__input::-moz-range-thumb {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.main .calculator-range-slider__thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 7px solid #ffffff;
  border-radius: 50%;
  background: #e30613;

}

.main .calculator-range-slider__line {
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 6px;
  background: #7e7e7e;
}

.main .calculator-range-slider__line-fill {
  position: absolute;
  width: 0;
  height: 8px;
  background: #e30613;
  border-radius: 6px;
}

.main .calculator-range-slider__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin: 90px auto 0 auto;
  padding: 0px 18px;
  border-radius: 8px;
  background: #363636;
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
  color: #ffffff;
}

.main .calculator-range-slider__label::before {
  position: absolute;
  top: 23px;
  border-top: 4px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 8px solid #363636;
  border-left: 9px solid transparent;
  content: '';
  border-radius: 2px;
}

.main .calculator__range-title {
  margin: 0 0 30px 0;
  font-size: 24px;
  line-height: 29px;
  font-weight: 300;
  color: #7e7e7e;
}

.main .button--next-step svg, .main .button--download svg {
  width: 35px;
  height: 35px;
}

.main .button-set {
	margin: 45px auto 30px auto;
	text-align: center;
}

.main .button-set button {
	display: inline-block;
	margin: 0px 10px;
	padding: 10px 20px;
	border-radius: 4px;
}

.main .button--next-step, .main .button--download {
  margin: 45px auto 30px auto;
  padding: 10px 20px;
  border-radius: 4px;
}

.main .order-calculator__description {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: 65%;
  margin: 0 auto;
  font-weight: 300;
  color: #7E7D7F;
}

.dark-theme .main .order-calculator__description {
  color: #9f9f9f;
}

.main .order-calculator__bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 0 0;
  padding: 30px 70px;
  background: #0b0a0a;
}

.dark-theme .main .order-calculator__bottom {
  background: #1e1e1e;
}

.main .order-calculator__steps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 600px;
  gap: 10px 0;
}

.main .order-calculator__step {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 25px 0 0;
  border-radius: 50%;
  background: #ffffff;
}

.main .order-calculator__step:last-child {
  margin: 0;
}

.main .order-calculator__step.active,
.main .order-calculator__step.opened {
  background: #e30613;
}

.main .order-calculator__step::after {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 25px;
  width: 100%;
  height: 100%;
  color: #ffffff;
  content: '- -';
}

.main .order-calculator__step.opened::after {
  color: #e30613;
}

.main .order-calculator__step:last-child::after {
  content: '';
}

.main .order-calculator__step:nth-child(12n)::after {
  content: '';
}

.main .link--step {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: #212121;
}

.dark-theme .main .link--step {
  color: #212121;
}

.main .order-calculator__step.active .link--step,
.main .order-calculator__step.opened .link--step {
  color: #ffffff;
}

.main .order-calculator__sum {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 28px;
  line-height: 23px;
  font-weight: 700;
  color: #ffffff;
}

.main .order-calculator__sum-currency {
  margin: 0 0 0 10px;
}

.main .order-calculator__sum-title {
  margin: 0 30px 0 0;
}

.main .order-option,
.modal__calculator .m-order-option {
  margin: 40px 0 0 0;
  padding: 25px 30px;
  border-radius: 10px;
  background: #ffffff;
}

.dark-theme .main .order-option,
.dark-theme .modal__calculator .m-order-option {
  background: #1e1e1e;
}

.main .order-option__head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.main .order-option__head::after {
  display: inline-block;
  width: 23px;
  height: 11px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 15'><path d='M2.78021 12.3208L12.0169 3.08413C13.1077 1.9933 14.8927 1.9933 15.9835 3.08413L25.2202 12.3208.7z' stroke='%23212121' stroke-width='4' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-repeat: no-repeat;
  transition: 0.5s;
  content: '';
}

.dark-theme .main .order-option__head::after {
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 15'><path d='M2.78021 12.3208L12.0169 3.08413C13.1077 1.9933 14.8927 1.9933 15.9835 3.08413L25.2202 12.3208.7z' stroke='%23f2f2f2' stroke-width='4' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}

.main .order-option__head.close::after {
  transform: rotateX(180deg);
  transition: 0.5s;
}

.dark-theme .main .order-option__head-title,
.main .order-option__head-title {
	padding: 10px 0px;
}

.main .order-option__head-title,
.modal__calculator .order-option__head-title {
  font-size: 28px;
  line-height: 23px;
  font-weight: 700;
  color: #212121;
}

.dark-theme .main .order-option__head-title,
.dark-theme .modal__calculator .order-option__head-title {
  color: #f2f2f2;
}

.main .order-option__head-total {
  margin: 0 50px 0 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: #e30613;
  color: #ffffff;
}

.main .order-option__main,
.modal__calculator .m-order-option__main {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.modal__calculator .m-order-option__main {
  max-width: 800px;
}

.main .order-option__main-inner {
  margin: 36px 0 12px 23px;
}

.main .order-option__box,
.modal__calculator .m-order-option__box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 10px 15px;
  border-radius: 10px;
  background: #f7f6f8;
}

.modal__calculator .m-order-option__box {
  margin: 0 0 20px 0;
}

.modal__calculator .m-order-option__box:last-child {
  margin: 0;
}

.dark-theme .main .order-option__box,
.dark-theme .modal__calculator .m-order-option__box {
  background: #363636;
}

.main .order-sub-option__box,
.modal__calculator .m-order-sub-option__box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 10px 15px;
}

.main .order-option__box--full,
.main .order-sub-option__box--full {
  width: calc(100% - 43px);
  max-width: 100%;
}

.main .order-option__box--middle,
.main .order-sub-option__box--middle {
  width: 100%;
  max-width: 523px;
}

.main .order-option__box--small,
.main .order-sub-option__box--small {
  width: 100%;
  max-width: 338.656px;
}

.main .order-option__box-image,
.modal__calculator .m-order-option__box-image {
  display: block;
  width: 100px;
  height: 100px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -o-object-fit: contain;
  object-fit: contain;
}

.order-option__box-link {
   min-height: 100px;
}

.main .order-option__product,
.modal__calculator .m-order-option__product {
  display: flex;
  flex-direction: column;
  width: calc(100% - 100px);
  padding: 12px 14px;
}

.main .order-sub-option__product,
.modal__calculator .m-order-sub-option__product {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  margin: 0 0 20px 0;
}

.m-order-sub-option__title {
  margin: 20px 0 5px 0 !important;
}

.main .order-sub-option__product--other {
  justify-content: center;
  align-items: center;
}

.main .order-sub-option__product:last-child {
  margin: 0;
}

.main .order-option__product-head,
.modal__calculator .m-order-option__product-head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.main .order-option-product__name,
.main .order-sub-option-product__name,
.modal__calculator .m-order-option-product__name,
.modal__calculator .m-order-sub-option-product__name {
  width: 100%;
  max-width: 356px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #212121;
}

.modal__calculator .m-order-sub-option__title .m-order-sub-option-product__name {
  font-size: 16px;
  font-weight: 500;
}

.dark-theme .main .order-option-product__name,
.dark-theme .main .order-sub-option-product__name,
.dark-theme .modal__calculator .m-order-option-product__name,
.dark-theme .modal__calculator .m-order-sub-option-product__name {
  color: #f2f2f2;
}

.main .order-sub-option-product__name,
.modal__calculator .order-sub-option-product__name,
.modal__calculator .m-order-sub-option-product__name {
  max-width: 210px;
  margin: 0 14px;
}

.main .order-option-product__checkbox,
.main .order-option-product__radiobox,
.modal__calculator .order-option-product__checkbox,
.modal__calculator .order-option-product__radiobox {
  width: 23px;
  height: 23px;
  margin: 0 0 auto 0;
  border-radius: 4px;
  background: #08c25e;
  cursor: pointer;
}

.main .order-option-product__radiobox,
.modal__calculator .order-option-product__radiobox {
  border-radius: 50%;
}

.main .order-option-product__checkbox::before,
.main .order-option-product__radiobox::before,
.modal__calculator .order-option-product__checkbox::before,
.modal__calculator .order-option-product__radiobox::before {
  display: block;
  width: 23px;
  height: 23px;
  background-image: url(../img/icons/btn-plus_i.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: '';
}

.main .order-option-product__radiobox.edit-modal {
  margin-right: 5px;
}
.main .order-option-product__radiobox.edit-modal:not(.selected) {
	display: none !important;
}

.main .order-option-product__radiobox.edit-modal::before {
  background-image: url(../img/icons/btn-edit_i.svg) !important;
  background-size: 70%  !important;
  background-position: 4px 2px  !important;
}

.main .order-option-product__checkbox.selected,
.main .order-option-product__radiobox.selected,
.modal__calculator .order-option-product__checkbox.selected,
.modal__calculator .order-option-product__radiobox.selected {
  background: #e30613;
}

.main .order-option-product__checkbox.selected::before,
.main .order-option-product__radiobox.selected::before,
.modal__calculator .order-option-product__checkbox.selected::before,
.modal__calculator .order-option-product__radiobox.selected::before {
  background-image: url(../img/icons/btn-close_i.svg);
}

.main .order-option__product-bottom,
.main .order-sub-option__product-bottom,
.modal__calculator .m-order-option__product-bottom,
.modal__calculator .m-order-sub-option__product-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: auto 0 0 0;
  padding: 10px 0 0 0;
}

.main .order-option-product__tooltip,
.main .order-sub-option-product__tooltip,
.modal__calculator .m-order-option-product__tooltip,
.modal__calculator .m-order-sub-option-product__tooltip {
  position: relative;
  width: 15px;
  height: 15px;
  background-image: url(../img/icons/btn-info_i.svg);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.main .order-option-product__tooltip:hover::after,
.main .order-sub-option-product__tooltip:hover::after,
.modal__calculator .m-order-option-product__tooltip:hover::after,
.modal__calculator .m-order-sub-option-product__tooltip:hover::after {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 999;
  width: 110px;
  margin: 0 0 0 -55px;
  padding: 10px 10px 14px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  background: #f6f6f6;
  color: #000000;
  content: attr(data-title);
}

.dark-theme .main .order-option-product__tooltip:hover::after,
.dark-theme .main .order-sub-option-product__tooltip:hover::after,
.dark-theme .modal__calculator .m-order-option-product__tooltip:hover::after,
.dark-theme .modal__calculator .m-order-sub-option-product__tooltip:hover::after {
  background: #121212;
  color: #f2f2f2;
}

.main .order-option-product__tooltip:hover::before,
.main .order-sub-option-product__tooltip:hover::before,
.modal__calculator .m-order-option-product__tooltip:hover::before,
.modal__calculator .m-order-sub-option-product__tooltip:hover::before {
  position: absolute;
  right: 0;
  left: -6px;
  width: 28px;
  height: 18px;
  background-color: #f6f6f6;
  background-image: url(../img/icons/btn-info-red_i.svg);
  background-repeat: no-repeat;
  background-size: 17px;
  background-position: 6px 0px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  content: '';
}

.dark-theme .main .order-option-product__tooltip:hover::before,
.dark-theme .main .order-sub-option-product__tooltip:hover::before,
.dark-theme .modal__calculator .m-order-option-product__tooltip:hover::before,
.dark-theme .modal__calculator .m-order-sub-option-product__tooltip:hover::before {
  background-color: #121212;
}

.main .order-option-product__img,
.main .order-sub-option-product__img,
.modal__calculator .m-order-option-product__img,
.modal__calculator .m-order-sub-option-product__img {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 0 0 0 5px;
  background-image: url(../img/icons/btn-image_i.svg);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.main .order-option-product__img:hover,
.main .order-sub-option-product__img:hover,
.modal__calculator .m-order-option-product__img:hover,
.modal__calculator .m-order-sub-option-product__img:hover {
  background-image: url(../img/icons/btn-image-red_i.svg);
}

.main .order-option-product__youtube,
.main .order-sub-option-product__youtube,
.modal__calculator .m-order-option-product__youtube,
.modal__calculator .m-order-sub-option-product__youtube {
  position: relative;
  width: 22px;
  height: 15px;
  margin: 0 0 0 5px;
  background-image: url(../img/icons/btn-youtube_i.svg);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.main .order-option-product__youtube:hover,
.main .order-sub-option-product__youtube:hover,
.modal__calculator .m-order-option-product__youtube:hover,
.modal__calculator .m-order-sub-option-product__youtube:hover {
  width: 22px;
  height: 17px;
  background-image: url(../img/icons/btn-youtube-red_i.svg);
}

.main .order-option-product__counters,
.modal__calculator .m-order-option-product__counters {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 0 10px;
}

.main .order-option-product__counter,
.modal__calculator .m-order-option-product__counter {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #e2dfe5;
  cursor: pointer;
}

.dark-theme .main .order-option-product__counter,
.dark-theme .modal__calculator .m-order-option-product__counter {
  background: #f2f2f2;
}

.main .order-option-product__counter.disabled,
.modal__calculator .m-order-option-product__counter.disabled,
.dark-theme .main .order-option-product__counter.disabled,
.dark-theme .modal__calculator .m-order-option-product__counter.disabled {
  opacity: .4;	
}

.main .order-option-product__counter--minus::before,
.main .order-option-product__counter--plus::before,
.modal__calculator .m-order-option-product__counter--minus::before,
.modal__calculator .m-order-option-product__counter--plus::before {
  display: block;
  width: 21px;
  height: 21px;
  background-image: url(../img/icons/btn-minus-black_i.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: '';
}

.main .order-option-product__counter--plus::before,
.modal__calculator .m-order-option-product__counter--plus::before {
  background-image: url(../img/icons/btn-plus-black_i.svg);
}

.main .order-option-product__value,
.modal__calculator .m-order-option-product__value {
  width: 30px;
  border: none;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  background: none;
  text-align: center;
  color: #0b0a0a;
}

.dark-theme .main .order-option-product__value,
.dark-theme .modal__calculator .m-order-option-product__value {
  color: #f2f2f2;
}

.main .order-option__product-price,
.main .order-sub-option__product-price,
.main .order-option__product-count,
.modal__calculator .m-order-option__product-price,
.modal__calculator .m-order-option__product-count,
.modal__calculator .m-order-sub-option__product-price {
  margin: 0 0 0 auto;
  font-size: 23px;
  line-height: 18px;
  font-weight: 600;
}

.dark-theme .main .order-option__product-price,
.dark-theme .main .order-sub-option__product-price,
.dark-theme .main .order-option__product-count,
.dark-theme .modal__calculator .m-order-option__product-price,
.dark-theme .modal__calculator .m-order-option__product-count,
.dark-theme .modal__calculator .m-order-sub-option__product-price {
  color: #f2f2f2;
}

.main .order-option__main-counters {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  right: 0;
}

.main .order-option__main-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: left;
  margin: 30px auto 20px 20px;
  right: 0;
}

.main .order-option__main-counters-title {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}

.main .order-option__main-title-title {
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
}

.dark-theme .main .order-option__main-counters-title, .dark-theme .main .order-option__main-title-title {
  color: #f2f2f2;
}

.main .order-option__main-description {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 860px;
  margin: 30px auto 0 auto;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #7e7e7e;
}

.dark-theme .main .order-option__main-description {
  color: #9f9f9f;
}

.main .order-option__main-description span {
  font-weight: 700;
  color: #0b0a0a;
}

.dark-theme .main .order-option__main-description span {
  color: #f2f2f2;
}

/* --- Modal Order Option Plus --- */

.modal__calculator {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
}

.modal__calculator .modal__mask {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.modal__calculator .m-order-option {
  width: 100%;
  max-width: 900px;
  margin: 0;
  padding: 40px 0 20px 0;
}

.modal__calculator .m-order-option__head-title {
  font-size: 28px;
  line-height: 23px;
  font-weight: 400;
  text-align: center;
}

.modal__calculator .m-order-option__head-title span {
  font-weight: 700;
}

.dark-theme .modal__calculator .m-order-option__head-title {
  color: #f2f2f2;
}

.modal__calculator .m-order-option__main-inner {
  margin: 40px 0 20px 0;
}

.modal__calculator .m-order-option__boxes {
	overflow-y: auto;
	max-height: calc(100vh - 280px);
}

.modal__calculator .m-order-sub-option__box {
  margin: 0 0 20px 0;
}

.modal__calculator .m-order-sub-option__box:last-child {
  margin: 0;
}

.modal__calculator .m-order-sub-option__product {
  margin: 0;
}

.modal__calculator .modal__calculator-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  margin: 30px 0 0 0;
}

.modal__calculator .modal__calculator-button {
  padding: 10px 20px;
}

.modal__calculator .button--save {
  margin: 0 0 0 20px;
}

.modal__calculator .button--save[disabled=disabled], .modal__calculator .button--save:disabled {
	cursor: not-allowed !important;
	background: #5a5a5a;
}

.modal__calculator .button--save[disabled=disabled]:hover, .modal__calculator .button--save:disabled:hover {
  background: #5a5a5a;
}

/* --- Calculator Form --- */

.main .calc-order-field__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.main .calc-field__item {
  flex: 0 50%;
  width: 50%;
  padding: 0 16px 20px 16px;
}

.main .calc-field__item:last-of-type {
  padding: 0 16px;
}

.main .calc-field__item:last-of-type {
  flex: 0 100%;
  width: 100%;
}

.main .calc-order-input__label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #7e7e7e;
}

.main .calc-field-input {
  width: 100%;
  height: 44px;
  padding: 18px 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #212121;
}

.main .calc-field__item:last-of-type .calc-field-input {
  height: 118px;
}

.main .calc-field-input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.main .calc-field-input::-moz-placeholder {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.main .calc-field-input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.main .calc-field-input::-ms-input-placeholder {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.main .calc-field-input::placeholder {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.main .iti {
  display: block;
}

.main .iti--separate-dial-code .iti__selected-flag {
  background: none;
}

/* Calculator Page End */

@media only screen and (max-width: 1280px) {

  .lw-container.lw-container--calculator {
    max-width: 1020px;
  }

  .main .order-option__box,
  .main .order-sub-option__box,
  .modal__calculator .m-order-sub-option__box {
    margin: 10px;
  }

  .main .order-option__box--middle,
  .main .order-sub-option__box--middle {
    max-width: 455px;
  }

  .main .order-option__box--small,
  .main .order-sub-option__box--small {
    max-width: 297px;
  }

  .main .order-option__product {
    padding: 12px 10px;
  }

  .main .order-option__main-inner {
    margin: 36px 0 12px 0px;
  }

  .main .order-option-product__name,
  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    max-width: 280px;
  }

  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    max-width: 200px;
    margin: 0 7px;
  }

  .main .order-option-product__counters,
  .modal__calculator .m-order-option-product__counters {
    margin: 0 0 0 7px;
  }

  .main .order-option-product__counter,
  .modal__calculator .m-order-option-product__counter {
    width: 18px;
    height: 18px;
  }

  .main .order-option-product__counter--minus::before,
  .main .order-option-product__counter--plus::before,
  .modal__calculator .m-order-option-product__counter--minus::before,
  .modal__calculator .m-order-option-product__counter--plus::before {
    width: 18px;
    height: 18px;
  }

  .main .order-option-product__value,
  .modal__calculator .m-order-option-product__value {
    width: 22px;
  }

  .main .order-option__product-price,
  .main .order-sub-option__product-price,
  .main .order-option__product-count,
  .modal__calculator .m-order-sub-option__product-price {
    font-size: 20px;
  }
}

@media only screen and (max-width: 900px) {

  .main .order-option__head-title,
  .modal__calculator .order-option__head-title {
    font-size: 19px;
    line-height: 23px;
  }

  .main .order-option__box--small,
  .main .order-sub-option__box--small,
  .main .order-option__box--middle,
  .main .order-sub-option__box--middle {
    max-width: 96%;
  }

  .main .button--package {
    margin: 0 15px 0 0;
    padding: 10px;
  }

  .main .order-calculator__title {
    font-size: 36px;
    line-height: 44px;
  }

  .main .order-calculator__sub-title {
    margin: 40px 0;
  }

  .main .order-option-product__name,
  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    max-width: 490px;
  }

  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    max-width: 390px;
  }

  .main .order-calculator__bottom {
    padding: 20px;
  }

  .main .order-calculator__step {
    width: 20px;
    height: 20px;
    margin: 0 20px 0 0;
  }

  .main .link--step {
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 14px;
  }

  .main .order-calculator__step::after {
    left: 20px;
  }

  .main .order-calculator__sum {
    font-size: 21px;
    line-height: 23px;
  }

  .main .order-calculator__sum-title {
    margin: 0 15px 0 0;
  }

  .main .order-calculator__sum-currency {
    margin: 0 0 0 5px;
  }
}

@media only screen and (max-width: 480px) {

  .main .button--package {
    padding: 5px;
    font-size: 14px;
  }

  .main .calculator-range-slider__line {
    height: 5px;
  }

  .main .calculator-range-slider__input::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }

  .main .calculator-range-slider__thumb {
    width: 20px;
    height: 20px;
    border-width: 5px;
  }

  .main .calculator-range-slider__label {
    height: 35px;
    font-size: 16px;
    line-height: 19px;
  }

  .main .order-calculator__title {
    font-size: 23px;
    line-height: 32px;
  }

  .main .order-calculator__sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  .main .order-calculator__sub-title::after {
    top: 80px;
  }

  .main .order-option__box,
  .main .order-sub-option__box,
  .modal__calculator .m-order-sub-option__box {
    margin: 10px 0;
  }

  .main .order-calculator__packages {
    flex-direction: column;
  }

  .main .button--package {
    justify-content: center;
    margin: 0 0 20px 0;
  }

  .main .calculator__range-title {
    font-size: 21px;
  }

  .main .order-option,
  .modal__calculator .m-order-option {
    padding: 10px;
  }

  .main .order-option__box--small,
  .main .order-sub-option__box--small,
  .main .order-option__box--middle,
  .main .order-sub-option__box--middle {
    max-width: 100%;
  }

  .main .order-sub-option__product--other {
    max-width: 100%;
  }

  .main .order-option__head-title {
    max-width: 220px;
    font-size: 16px;
    line-height: 21px;
  }

  .main .order-option__head-total {
    margin: 0 30px 0 0;
    padding: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .main .order-option__head::after {
    width: 20px;
    height: 10px;
  }

  .main .order-option-product__name,
  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    font-size: 12px;
    line-height: 15px;
  }

  .main .order-option-product__name,
  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    max-width: 215px;
  }

  .main .order-option-product__checkbox,
  .modal__calculator .order-option-product__checkbox {
    width: 20px;
    height: 20px;
    margin: 0 0 0 3px;
  }

  .main .order-option-product__checkbox::before,
  .modal__calculator .order-option-product__checkbox::before {
    width: 20px;
    height: 20px;
  }

  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    max-width: 130px;
  }

  .main .order-option__main-counters-title, .main .order-option__main-title-title {
    font-size: 15px;
    line-height: 19px;
  }

  .main .order-option-product__counter,
  .modal__calculator .m-order-option-product__counter {
    width: 16px;
    height: 16px;
  }

  .main .order-option-product__counter--minus::before,
  .main .order-option-product__counter--plus::before,
  .modal__calculator .m-order-option-product__counter--minus::before,
  .modal__calculator .m-order-option-product__counter--plus::before {
    width: 16px;
    height: 16px;
  }

  .main .order-option__product-price,
  .main .order-sub-option__product-price,
  .main .order-option__product-count,
  .modal__calculator .m-order-sub-option__product-price {
    font-size: 16px;
  }

  .main .button--next-step, .main .button--download {
    padding: 5px 20px;
  }

  .main .order-option__main-description,
  .main .order-calculator__description {
    max-width: 320px;
    font-size: 12px;
    line-height: 15px;
  }

  .main .order-calculator__steps {
    flex-wrap: nowrap;
    max-width: 180px;
    overflow-x: scroll;
  }

  .main .order-calculator__step:nth-child(12n)::after {
    content: '- -';
  }

  .main .order-calculator__sum {
    font-size: 14px;
    line-height: 19px;
    margin: 0 0 0 20px;
  }

  .main .order-calculator__sum-title {
    margin: 0 10px 0 0;
  }

  .main .order-calculator__step:last-child::after {
    content: '';
  }

  .modal__calculator .m-order-option {
    margin: 0 10px;
  }

  .modal__calculator .m-order-option__head-title {
    font-size: 16px;
    line-height: 19px;
  }

  .modal__calculator .modal__calculator-button {
    padding: 6px;
    font-size: 12px;
  }

  .main .calc-field__item {
    flex: 0 100%;
    width: 100%;
    padding: 8px 0;
  }

  .main .calc-field__item:last-of-type {
    padding: 8px 0 0 0;
  }
}

@media only screen and (max-width: 390px) {
  .main .order-calculator__sub-title {
    font-size: 13px;
    line-height: 21px;
  }

  .main .order-option__head-title {
    max-width: 210px;
    font-size: 15px;
  }

  .main .order-option__head-total {
    padding: 5px 10px;
    font-size: 12px;
  }

  .main .order-sub-option-product__name,
  .modal__calculator .m-order-sub-option-product__name {
    max-width: 115px;
  }

  .main .order-calculator__steps {
    max-width: 140px;
  }
}

.dark-theme .section-finish {
	color: #ffffff;
}

.box-comment .order-option__main {
	margin-top: 15px;
}

.box-comment .title {
	padding-bottom: 10px;
	color: #212121;
}

.dark-theme .box-comment .title {
	color: #f2f2f2;
}

.box-comment textarea {
	width: 100%;
	height: 80px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 15px;
	font-weight: 400;
	color: #212121;
	padding: 20px;
	margin-bottom: 20px;
}

.box-comment input {
	border: 1px solid #767676;
	border-radius: 6px;
	font-size: 14px;
	line-height: 15px;
	font-weight: 400;
	color: #212121;
	padding: 20px;
	margin-bottom: 20px;
}

.dark-theme .box-comment textarea, .dark-theme .box-comment input {
	background: #383737;
	color: #f2f2f2;
}