.ct, .ct *, .ct :before, .ct :after {
  box-sizing: border-box;
  letter-spacing: 0.2px;
}

.ct *:focus {
  outline: none;
}

.ct {
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
}
.ct .ct-checkbox {
  display: block;
  position: relative;
  padding: 0 0 0 30px;
  line-height: 20px;
  cursor: pointer;
}
.ct .ct-checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.ct .ct-checkbox__input:checked ~ .ct-checkbox__mark:after {
  display: block;
}
.ct .ct-checkbox__mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #AF9A7D;
}
.ct .ct-checkbox__mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 0px;
  width: 8px;
  height: 14px;
  border: solid #AF9A7D;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.ct .ct-form {
  display: flex;
}
.ct .ct-fields {
  padding-right: 20px;
  width: 50%;
}
.ct .ct-results {
  padding-left: 20px;
  width: 50%;
}
.ct .ct-field {
  position: relative;
  margin-bottom: 20px;
}
.ct .ct-field__label {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.ct .ct-field__input {
  margin: 0;
  padding: 0 10px;
  width: 100%;
  height: 40px;
  border: 1px solid #AF9A7D;
  font-family: "Helvetica Neue Cyr", arial;
  font-size: 16px;
  line-height: 40px;
  background-color: transparent;
}
.ct .ct-field__error {
  font-size: 13px;
  line-height: 1;
  color: #EA2418;
  margin-top: 7px;
}
.ct .ct-field_disabled {
  opacity: 0.5;
}
.ct .ct-field-add .ct-field__label {
  margin-top: 25px;
  margin-bottom: 15px;
}
.ct textarea.ct-field__input {
  height: 139px;
  padding: 10px;
  line-height: 1.2;
}
.ct .ct-results__title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.ct .ct-table-result {
  display: table;
  margin-bottom: 20px;
}
.ct .ct-result {
  display: table-row;
}
.ct .ct-result__name {
  display: table-cell;
  padding: 5px 0;
  width: 50%;
  border-bottom: 1px solid rgba(175, 154, 125, 0.3);
  padding-right: 20px;
  font-weight: 700;
}
.ct .ct-result__value {
  line-height: 1.2;
  display: table-cell;
  padding: 6px 0;
  width: 50%;
  border-bottom: 1px solid rgba(175, 154, 125, 0.3);
}
.ct .ct-result-total .ct-result__name,
.ct .ct-result-total .ct-result__value {
  padding-top: 20px;
  border-bottom-color: transparent;
  font-size: 20px;
  font-weight: 700;
}
.ct .ct-result-distance {
  margin-bottom: 30px;
  line-height: 1.5;
}
.ct .ct-info-comment {
  font-size: 14px;
  margin-top: 2px;
  text-align: justify;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.ct .ct-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.ct .ct-btn-order {
  width: 150px;
  background-color: #af9a7d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #af9a7d), color-stop(50%, #99876d), color-stop(50%, #80705b), color-stop(100%, #665a48));
  background-image: -webkit-linear-gradient(top, #af9a7d 0%, #99876d 50%, #80705b 50%, #665a48 100%);
  background-image: -moz-linear-gradient(top, #af9a7d 0%, #99876d 50%, #80705b 50%, #665a48 100%);
  background-image: -ms-linear-gradient(top, #af9a7d 0%, #99876d 50%, #80705b 50%, #665a48 100%);
  background-image: -o-linear-gradient(top, #af9a7d 0%, #99876d 50%, #80705b 50%, #665a48 100%);
  background-image: linear-gradient(top, #af9a7d 0%, #99876d 50%, #80705b 50%, #665a48 100%);
  border: 1px solid #736551;
}
.ct .ct-btn-order:hover {
  background-color: #737373;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #737373), color-stop(50%, #595959), color-stop(50%, #404040), color-stop(100%, #262626));
  background-image: -webkit-linear-gradient(top, #737373 0%, #595959 50%, #404040 50%, #262626 100%);
  background-image: -moz-linear-gradient(top, #737373 0%, #595959 50%, #404040 50%, #262626 100%);
  background-image: -ms-linear-gradient(top, #737373 0%, #595959 50%, #404040 50%, #262626 100%);
  background-image: -o-linear-gradient(top, #737373 0%, #595959 50%, #404040 50%, #262626 100%);
  background-image: linear-gradient(top, #737373 0%, #595959 50%, #404040 50%, #262626 100%);
}
@media (max-width: 750px) {
  .ct .ct-form {
    margin-bottom: 30px;
    display: block;
  }
  .ct .ct-fields {
    padding-right: 0;
    width: 100%;
  }
  .ct .ct-results {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    width: 100%;
    max-width: 350px;
  }
}

.ct-modal form {
  margin-bottom: 0;
}
.ct-modal p {
  text-align: center;
}    
.ct-modal p.uk-h2 {
  margin: 0 0 25px 0;
  letter-spacing: 0;
}
.ct-modal.uk-open {
  display: block;
  overflow-y: scroll;
}
.ct-modal__loading {
  position: relative;
  margin-top: 10px;
  visibility: hidden;
}
.ct-modal-message p {
  margin-bottom: 0;
  letter-spacing: 0;
}


.ct-hidden {
  display: none !important;
}

.ct-form label.ct-cursor:before {
  content: '';
  display: none;
  position: absolute;
  left: 22px;
  top: 35px;
  width: 1px;
  height: 18px;
  background: #666666;
  opacity: 1;
  z-index: 3;
}

.ct-form input.ct-field__input:not(:focus) + label.ct-cursor:before {
  display: inline-block;
  animation: cursor 1s infinite step-end;
}

.formError {
  z-index: 9999;
}

@keyframes cursor {
  50% { background: transparent; }
}

.ct-faq {
  margin-top: 40px;
  padding: 15px 30px 5px;
  background-color: rgba(175, 175, 175, 0.1);
  font-size: 14px;
  line-height: 1.5;   
  /*border: 2.5px dotted rgba(175, 154, 125, 0.5);*/
}
.ct-faq span {
  display: block;
}

a[aria-label] {
  border-bottom: none !important;
}

.ct-r8 {
  word-break: break-all;
}