.lm-cc-page {
  
  padding: 0 24px;
  /* Firefox */
}

.lm-cc-page .lm-top-section {
  color: #707070;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.lm-cc-page .lm-top-section h1 {
  font-size: 56px;
  font-weight: 600;
}

.lm-cc-page input::-webkit-outer-spin-button,
.lm-cc-page input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lm-cc-page input[type=number] {
  -moz-appearance: textfield;
}

.lm-cc-page .lm-h2 {
  font-size: 48px;
  font-weight: 600;
  color: #004087;
  text-align: center;
  margin-top: 0;
}

.lm-cc-page .lm-btn {
  height: 51px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  font-weight: 600;
  -webkit-transition: .3s all;
  transition: .3s all;
  font-size: 17px;
  cursor: pointer;
  border: 0 none;
}

.lm-cc-page .lm-btn-accent {
  background: #004087;
  color: #fff;
}

.lm-cc-page .lm-btn-red {
  border: 1px solid var(--lvd-color-primary);
  color: var(--lvd-color-primary);
  background:white;
}

.lm-cc-page .lm-error {
  display: block;
  color: red;
  font-size: 11px;
  text-align: center;
}

.lm-cc-page .lm-big-title {
  color: #004087;
  font-size: 96px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.lm-cc-page .lm-container {
  max-width: 1188px;
  margin-inline: auto;
}

.lm-cc-page .lm-text {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 25px;
  color: #707070;
}

.lm-cc-page .lm-select {
  margin-left: 40px;
}

.lm-cc-page .lm-select span {
  font-size: 17px;
}

.lm-cc-page select {
  height: 51px;
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 0 40px 0 30px;
  color: #707070;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #004087 50%), linear-gradient(135deg, #004087 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 14px) calc(1.5em + 2px), calc(100% - 9px) calc(1.5em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px,
 5px 5px,
 0px 0;
  background-repeat: no-repeat;
  outline: 0;
}

.lm-cc-page .lm-inner-page {
    background:#ffffff;
  padding: 60px 40px;
  border: 1px solid #004087;
  border-radius: 40px;
  -webkit-box-shadow: 0px 0px 17px -11px rgba(0, 0, 0, 0.85);
  box-shadow: 0px 0px 17px -11px rgba(0, 0, 0, 0.85);
}

.lm-cc-page .lm-tabs {
  text-align: center;
}

.lm-cc-page .lm-tabs label {
  font-size: 18px;
  color: #004087;
}

.lm-cc-page .lm-form {
  margin-top: 40px;
}

.lm-cc-page .lm-form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.lm-cc-page .lm-form label {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #707070;
}

.lm-cc-page .lm-form input {
  height: 51px;
  border: 1px solid #858585;
  border-radius: 8px;
  padding: 0 20px;
  width: 135px;
  font-size: 17px;
  display: block;
}

.lm-cc-page .lm-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lm-cc-page .lm-results-action {
  margin-top: 60px;
}

.lm-cc-page #lm_result {
  text-align: center;
  margin-top: 100px;
  display: block;
  font-size: 90px;
  color: #707070;
  font-weight: 600;
  margin-top: 30px;
}

.lm-cc-page #lm_recomandation {
  text-align: center;
  margin-top: 40px;
}

.lm-cc-page #lm_recomandation span {
  font-weight: 600;
  color: #004087;
}

.lm-cc-page .lm-loader {
  position: relative;
  width: 40px;
  height: 40px;
  -webkit-animation: animateBg;
          animation: animateBg;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  margin: 70px auto 0;
  display: none;
}

.lm-cc-page .lm-loader.active {
  display: block;
}

.lm-cc-page .lm-loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: bisque; */
  -webkit-transform: rotate(calc(18deg * var(--i)));
          transform: rotate(calc(18deg * var(--i)));
}

.lm-cc-page .lm-loader span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(15px * (var(--i) / 60));
  height: calc(15px * (var(--i) / 60));
  border-radius: 50%;
  background-color: #004087;
}

@-webkit-keyframes animateBg {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animateBg {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.lm-cc-page .lm-results-action {
  display: none;
}

.lm-cc-page .lm-buttons {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .lm-cc-page .lm-top-section h1 {
    font-size: 48px;
  }
  .lm-cc-page .lm-big-title, .lm-cc-page #lm_results span {
    font-size: 56px;
  }
  .lm-cc-page .lm-h2 {
    font-size: 32px;
  }
  .lm-cc-page select {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .lm-cc-page .lm-top-section h1 {
    font-size: 38px;
  }
  .lm-cc-page .lm-form-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lm-cc-page .lm-form input {
    width: 100%;
  }
  .lm-cc-page .lm-big-title, .lm-cc-page #lm_results span {
    font-size: 48px;
  }
  .lm-cc-page .lm-h2 {
    font-size: 26px;
  }
  .lm-cc-page .lm-inner-page {
    padding: 55px 24px;
  }
  .lm-cc-page #lm_results {
    margin-top: 80px;
  }
}
