@charset "UTF-8";

main h1 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (min-width: 0) {
  main h1 {
    font-size: calc(0.25vw + 32px);
  }
}

@media (min-width: 1200px) {
  main h1 {
    font-size: 35px;
  }
}

main h2 {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 12px;
}

main .btn {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
  padding: 8px 35px;
  display: inline-block;
  border-radius: 10px;
  background: linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 14px rgba(250, 144, 20, 0.45);
  border: 0;
  margin-top: 10px;
  font-size: 16px;
  transition: 0.25s ease-in-out;
}

@media (min-width: 0) {
  main .btn {
    font-size: calc(0.0833333333vw + 16px);
  }
}

@media (min-width: 1200px) {
  main .btn {
    font-size: 17px;
  }
}

main .btn:hover {
  color: white;
  box-shadow: 0px 6px 8px rgba(250, 144, 20, 0.45);
}

main .btn-green {
  background: #7BD385;
  box-shadow: none;
}

main .btn-green:hover {
  color: white;
  box-shadow: none;
}

main .btn.btn-sm {
  font-size: 80%;
  padding: 8px 25px;
}

div.alert {
  background-color: transparent;
  padding: 1px 15px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  border: 0;
  border-left: 3px solid #fff;
  line-height: 1.3;
  border-radius: 0;
  margin-bottom: 30px;
}

div.alert ul {
  padding: 0;
  margin: 0;
}

div.alert ul li {
  padding: 0;
  list-style: none;
}

div.alert-info {
  color: #5bb2e0;
  border-color: #5bb2e0;
}

div.alert-danger {
  color: #d58683;
  border-color: #d58683;
}

div.alert-warning {
  color: #d5af83;
  border-color: #d5af83;
}

div.alert-success {
  color: #83d58d;
  border-color: #83d58d;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group label {
  font-family: "Coolvetica Rg";
  font-weight: normal;
  font-style: normal;
  color: #22232B;
  margin: 0 10px 0 0;
  font-size: 18px;
}

.form-group label.mb-30 {
  margin-bottom: 30px;
}

.form-group .h-captcha {
  text-align: center;
}

.form-group.form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-group .checkbox-group {
  display: inline-block;
}

.form-group input.form-control {
  font-size: 16px;
  border: 1px solid rgba(175, 188, 188, 0.25);
  border-radius: 0;
  padding: 7px 10px;
  color: #5C7677;
}

@media (min-width: 0) {
  .form-group input.form-control {
    font-size: calc(0.1666666667vw + 16px);
  }
}

@media (min-width: 1200px) {
  .form-group input.form-control {
    font-size: 18px;
  }
}

.form-group input::-webkit-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input::-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-ms-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.form-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.form-group input:focus {
  outline: none;
}

.form-group textarea {
  border: 1px solid rgba(175, 188, 188, 0.25);
  border-radius: 0;
  padding: 7px 10px;
}

.form-group input[type=radio]:not(:checked),
.form-group input[type=radio]:checked,
.form-group input[type=checkbox]:not(:checked),
.form-group input[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

.form-group input[type=radio]:not(:checked) + label,
.form-group input[type=radio]:checked + label,
.form-group input[type=checkbox]:not(:checked) + label,
.form-group input[type=checkbox]:checked + label {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  position: relative;
  cursor: pointer;
  padding-left: 24px;
  margin: 0;
  margin-right: 15px;
}

.form-group input[type=radio]:not(:checked) + label:before,
.form-group input[type=radio]:checked + label:before,
.form-group input[type=checkbox]:not(:checked) + label:before,
.form-group input[type=checkbox]:checked + label:before {
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  border: 1px solid #e0e0e0;
  background: 0;
  border-radius: 0;
}

.form-group input[type=radio]:not(:checked) + label:after,
.form-group input[type=radio]:checked + label:after,
.form-group input[type=checkbox]:not(:checked) + label:after,
.form-group input[type=checkbox]:checked + label:after {
  position: absolute;
  top: 4px;
  left: 0px;
  width: 14px;
  height: 14px;
  content: " ";
  transition: all 0.2s;
  border: 1px solid #7BD385;
  background: #7BD385;
  border-radius: 0;
}

.form-group input[type=radio]:not(:checked) + label:after,
.form-group input[type=checkbox]:not(:checked) + label:after {
  transform: scale(0);
  opacity: 0;
}

.form-group input[type=radio]:checked + label:after,
.form-group input[type=checkbox]:checked + label:after {
  transform: scale(1);
  opacity: 1;
}

.form-group .forgot-password {
  color: #FFA949;
  font-size: 14px;
  text-decoration: none;
}

.form-group .invalid-feedback {
  position: absolute;
  left: 0;
  line-height: 1;
  font-size: 13px;
  color: #d58683;
}

select {
  -webkit-appearance: none;
  border: 0;
  background: url("/images/icons/select.svg") center right no-repeat;
  background-size: 11px 8px;
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  color: #22232B;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: 2px solid #E7E7E7;
}

.ss-main {
  margin: 10px 0;
}

.ss-main .ss-single-selected {
  padding: 8px 0 12px 0;
  font-size: 16px;
  color: #22232B;
  border: 0;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  border-bottom: 2px solid #E7E7E7;
  border-radius: 0;
  height: auto;
}

.ss-main .ss-option {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #22232B;
  font-size: 16px;
  transition: 0.25s;
}

.ss-main .ss-option:hover {
  background-color: #7BD385 !important;
}

.ss-main .ss-search input {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  border: 1px solid rgba(175, 188, 188, 0.25);
  color: #7BD385;
  border-radius: 0;
  height: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.ss-main .ss-search input::-webkit-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input::-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-ms-input-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-moz-placeholder {
  color: #BCBDBF;
  opacity: 1;
}

.ss-main .ss-search input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.ss-main .ss-search input:focus {
  outline: none;
  box-shadow: none;
}

.noUi-horizontal {
  margin: 15px 0 60px 0;
  height: 2px;
  width: calc(100% - 15px);
}

.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #FFA949;
  background: linear-gradient(#ffa949 0%, #ffc079 100%);
  box-shadow: 0px 9px 9px rgba(255, 177, 90, 0.22);
  border: 0;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
  cursor: pointer;
}

.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
  content: none;
}

.noUi-horizontal .noUi-tooltip {
  border: 0;
  border-radius: 0;
  bottom: auto;
  top: 100%;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.noUi-horizontal .noUi-tooltip:after {
  content: "\20AC";
}

section {
  padding: 50px 0;
}

@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
}

@media (min-width: 1200px) {
  section {
    padding: 100px 0;
  }
}

section select.form-control {
  font-size: 16px;
  border: 1px solid rgba(175, 188, 188, 0.25);
  border-radius: 0;
  padding: 7px 10px;
  color: #5C7677;
  background: url("/images/icons/select.svg") calc(100% - 10px) center no-repeat;
  background-size: 11px 8px;
}

@media (min-width: 0) {
  section select.form-control {
    font-size: calc(0.1666666667vw + 16px);
  }
}

@media (min-width: 1200px) {
  section select.form-control {
    font-size: 18px;
  }
}

