.seclight {
 background: #eaf3fd;
}

.spaceRight {
 margin-right: auto;
}

.calc {
 padding: 0;
 max-width: 960px;
  margin: 0 auto;
}
.calc__heading {
  text-align: center;
}
.calc__heading h1 {
  margin-top: 0;
  color: #131617;
}
.calc__heading p {
  color: #888f95;
}
.calc__content {
  margin-top: 50px;
  display: flex;
}
.calc__content-form {
  width: 50%;
  padding-right: 50px;
}
.calc__content-form .form__item.form__item--kg {
  padding-bottom: 25px;
  border-bottom: 1px solid black;
}
.calc__content-form .form__item.form__item--svk {
  padding-top: 25px;
}
.calc__content-form .form__item-top {
  display: flex;
  margin-bottom: 25px;
}
.calc__content-form .form__item-top .top__input {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #bfd4da;
  width: 135px;
  text-align: right;
  display: flex;
  align-items: center;
  height: 100%;
}
.calc__content-form .form__item-top .top__input:focus {
  border: 1px solid #bfd4da;
}
.calc__content-form .form__item-top .top__input input {
  cursor: pointer;
  border: none;
  text-align: right;
  padding: 10px 5px 10px 10px;
  border-radius: 10px;
  font-size: 16px;
}
.calc__content-form .form__item-top .top__input label {
  cursor: pointer;
  padding: 10px 10px 10px 0;
  margin-bottom: 0;
}
.calc__content-form .form__item-top h5 {
  margin: 0 auto 0 0;
}
.calc__content-form .form__item-bottom {
  display: flex;
  margin-top: 15px;
}

html:not(.browser-Internet) .calc__content .slider {
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 10px;
  background: #fff;
}

html:not(.browser-Internet) .calc__content .slider::-moz-range-thumb {
  background: #fff;
  width: 25px;
  height: 25px;
  border-color: #fff;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.35);
  border-radius: 100%;
}
html:not(.browser-Internet) .calc__content .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff url('/wp-content/themes/basel-child/calc/slider.svg');
  width: 40px;
  height: 40px;
  border-color: #fff;
  box-shadow: 0 6px 12px #00000029;
  border-radius: 100%;
  cursor: pointer;
}

.calc__content-output {
  width: 50%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc__content-output .output__content {
  margin: 0 auto;
}
.calc__content-output .output__content-table {
  border-collapse: separate;
  border-spacing: 40px 10px;
  margin: 0 auto;
}
.calc__content-output .output__content-table tr {
  margin-bottom: 10px;
}

.calc__content-output .output__content-table td {
  border-bottom: none;
  padding: 3px 10px;
  text-align: left;
}

.calc__content-output .output__content-table tr td:nth-child(2)  {
  font-size: 20px;
}

.calc__content-output .output__content-table .blue,
.calc__content-output--mobile .blue .mf {
  color: #2d89ea;
}

.calc__content-output .output__content-table .blue td:nth-child(1) {
  font-weight: bold;
}
.calc__content-output .output__content-table .info {
  font-size: 12px;
  color: gray;
}
.calc__content-output .output__content-text {
  margin: 0 40px;
  color: gray;
}

.calc__content-output--mobile {
  display: none;
  position: fixed;
  opacity: 0;
  bottom: 0;
  left: 0;
  transition: 0.1s ease-in-out opacity;
  background: #fff;
  padding: 22px 40px 22px 35px;
  width: 100%;
  box-shadow: 0 -1px 5px rgba(190,190,190,.5);
}

@media (min-width: 769px) and (max-width: 991px) {
  .calc {
    max-width: 860px;
    margin: 0 auto;
  }
  .output__content-table {
    border-spacing: 25px 10px !important;
  }
}

@media (max-width: 900px) {
  .calc {
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .calc {
    max-width: 540px;
    margin: 0 auto;
    padding: 5px 0;
  }
  .calc__content {
    flex-direction: column;
  }
  .calc__content-form {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .calc__content-output {
    width: 90%;
    padding: 45px 0;
    margin: 50px auto 0;
  }

  .calc__content-output--mobile {
    display: flex;
  }
}

@media (min-width: 225px) and (max-width: 440px) {
  .output__content-table td {
    text-align: center;
    width: 100%;
    float: right;
  }
  .form__item-top {
    flex-direction: column;
    margin: 0 auto;
  }
  .form__item-top h5 {
    text-align: center;
    align-self: unset !important;
    margin: 0 0 15px 0 !important;
  }
  .form__item-top .top__input {
    width: 100% !important;
  }
}
