@charset "UTF-8";
/* ====== Table of content Start =====*/
/*
Project Name: Quiz
File        : CSS Base
Version     : 1.0.0
Author      : xstheme (https://themeforest.net/user/xstheme)
*/
/* ====== Table of content End =====*/
:root {
  --theme-sky: #00C2FF;
  --theme-green: #1DBF73;
  --theme-orange: #FF792E;
  --theme-purple: #7000FF;
  --theme-yellow: #FFBF00;
  --theme-navy: #004165;
  --theme-pest: #58D3B9;
  --theme-light_red: #FA5354;
  --white-color: #fff;
}

.bg {
  background-color: #018849;
}

/* Default transition start*/
/*Default transition end*/
body {
  line-height: 1.65;
  font-style: normal;
  font-family: "Outfit", sans-serif;
}

a,
button,
input {
  cursor: pointer;
  text-decoration: none;
}
a:hover,
button:hover,
input:hover {
  text-decoration: none;
}
a:focus,
button:focus,
input:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* Transition ============================ */
a,
button {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate_25ms {
  -webkit-animation-delay: 25ms;
          animation-delay: 25ms;
}

.animate_50ms {
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
}

.animate_100ms {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.animate_150ms {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}

.animate_200ms {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.reg-btn .submit-btn {
  border: 2px solid #00C2FF;
  background-color: #00C2FF;
}

.top-shape .logo svg > path {
  fill: #fff;
}

.audio-content {
  bottom: 47px;
  left: 49%;
  width: 549px;
  height: 83px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.audio-content .player-box {
  width: 100%;
  max-width: 800px;
  border-radius: 5px;
  background-color: #fff;
}
.audio-content .player-box .play-btn {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  background-color: #004165;
  color: white;
  border: none;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  margin-left: 10px;
  border: 2px solid #004165;
}
.audio-content .player-box #waveform {
  width: 100%;
  height: auto;
}
.audio-content .player-box #waveform .scroll .cursor {
  background-color: #004165 !important;
}

.form_btn {
  position: relative;
  z-index: 111;
}
.form_btn #nextBtn {
  width: 100px;
  height: 80px;
  background-repeat: no-repeat;
  background-color: transparent;
}
.form_btn #prevBtn,
.form_btn #prevBtn2,
.form_btn #prevBtn3,
.form_btn #prevBtn4 {
  width: 100px;
  height: 80px;
  background-repeat: no-repeat;
  background-color: transparent;
}

.form-btn-style2 {
  padding-bottom: 100px;
}
.form-btn-style2 .next_btn {
  outline: none;
  border: none;
  padding: 0px;
  background: none;
}
.form-btn-style2 .next_btn svg {
  pointer-events: none;
}
.form-btn-style2 .next_btn .sbmt-btn {
  top: 22px;
  left: 16px;
  font-size: 20px;
  font-weight: 700;
}
.form-btn-style2 .prev_btn {
  outline: none;
  border: none;
  padding: 0px;
  background: none;
}
.form-btn-style2 .prev_btn svg {
  pointer-events: none;
}

input[type=checkbox] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #444;
}

input[type=checkbox]:checked {
  background: #ccc;
}

.theme-sky .checkbox-style1 label .selector:after {
  background: #00C2FF;
}

.theme-green .checkbox-style1 label .selector:after {
  background: #1DBF73;
}

.theme-orange .checkbox-style1 label .selector:after {
  background: #FF792E;
}

.theme-purple .checkbox-style1 label .selector:after {
  background: #7000FF;
}

.theme-yellow .checkbox-style1 label .selector:after {
  background: #FFBF00;
}

.theme-navy .checkbox-style1 label .selector:after {
  background: #004165;
}

.theme-pest .checkbox-style1 label .selector:after {
  background: #58D3B9;
}

.theme-light_red .checkbox-style1 label .selector:after {
  background: #FA5354;
}

.checkbox-style1 label .selector:after {
  -webkit-mask-image: url(../images/shape.svg);
  -webkit-mask-repeat: no-repeat;
}

.checkbox-style1 label input {
  opacity: 0;
  position: absolute;
}
.checkbox-style1 label .selector:before {
  content: "";
  bottom: 14px;
  left: 14px;
  width: 45px;
  height: 45px;
  position: absolute;
  background-image: url(../images/check.svg);
  background-size: 42px;
  background-repeat: no-repeat;
  display: none;
  z-index: 333;
}
.checkbox-style1 label .selector::after {
  content: "";
  width: 70px;
  height: 70px;
  position: relative;
  background-image: url(../images/shape.svg);
  background-size: 62px;
  background-repeat: no-repeat;
  display: none;
  z-index: 1;
}
.checkbox-style1 label.active .selector:before {
  display: block;
}
.checkbox-style1 label.active .selector:after {
  display: block;
}
.checkbox-style1 label.error {
  width: 500px;
  color: red;
  font-size: 14px;
  top: -47px;
  left: 115%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}
.checkbox-style1 label.error::after {
  display: none;
}
.checkbox-style1 label.error::before {
  display: none;
}

.theme-sky .checkbox-style2 label .selector:after {
  background: #00C2FF;
}

.theme-green .checkbox-style2 label .selector:after {
  background: #1DBF73;
}

.theme-orange .checkbox-style2 label .selector:after {
  background: #FF792E;
}

.theme-purple .checkbox-style2 label .selector:after {
  background: #7000FF;
}

.theme-yellow .checkbox-style2 label .selector:after {
  background: #FFBF00;
}

.theme-navy .checkbox-style2 label .selector:after {
  background: #004165;
}

.theme-pest .checkbox-style2 label .selector:after {
  background: #58D3B9;
}

.theme-light_red .checkbox-style2 label .selector:after {
  background: #FA5354;
}

.checkbox-style2 label .selector:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  background-image: url(../images/check.svg);
  background-size: 28px;
  background-repeat: no-repeat;
  display: none;
  z-index: 333;
}
.checkbox-style2 label .selector::after {
  content: "";
  width: 30px;
  height: 30px;
  position: relative;
  border-radius: 100%;
  display: none;
  z-index: 1;
}
.checkbox-style2 label.active .selector:before {
  display: block;
}
.checkbox-style2 label.active .selector:after {
  display: block;
}
.checkbox-style2 input {
  opacity: 0;
  position: absolute;
}
.checkbox-style2 label.error {
  width: 500px;
  color: red;
  font-size: 14px;
  top: -47px;
  left: 115%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}
.checkbox-style2 label.error::after {
  display: none;
}
.checkbox-style2 label.error::before {
  display: none;
}

.theme-sky .checkbox-style3 input[type=checkbox] {
  border: 2px solid #00C2FF;
}
.theme-sky .checkbox-style3 input[type=checkbox]:checked {
  color: #00C2FF;
  background: #00C2FF;
}

.theme-green .checkbox-style3 input[type=checkbox] {
  border: 2px solid #1DBF73;
}
.theme-green .checkbox-style3 input[type=checkbox]:checked {
  color: #1DBF73;
  background: #1DBF73;
}

.theme-orange .checkbox-style3 input[type=checkbox] {
  border: 2px solid #FF792E;
}
.theme-orange .checkbox-style3 input[type=checkbox]:checked {
  color: #FF792E;
  background: #FF792E;
}

.theme-purple .checkbox-style3 input[type=checkbox] {
  border: 2px solid #7000FF;
}
.theme-purple .checkbox-style3 input[type=checkbox]:checked {
  color: #7000FF;
  background: #7000FF;
}

.theme-yellow .checkbox-style3 input[type=checkbox] {
  border: 2px solid #FFBF00;
}
.theme-yellow .checkbox-style3 input[type=checkbox]:checked {
  color: #FFBF00;
  background: #FFBF00;
}

.theme-navy .checkbox-style3 input[type=checkbox] {
  border: 2px solid #004165;
}
.theme-navy .checkbox-style3 input[type=checkbox]:checked {
  color: #004165;
  background: #004165;
}

.theme-pest .checkbox-style3 input[type=checkbox] {
  border: 2px solid #58D3B9;
}
.theme-pest .checkbox-style3 input[type=checkbox]:checked {
  color: #58D3B9;
  background: #58D3B9;
}

.theme-light_red .checkbox-style3 input[type=checkbox] {
  border: 2px solid #FA5354;
}
.theme-light_red .checkbox-style3 input[type=checkbox]:checked {
  color: #FA5354;
  background: #FA5354;
}

.checkbox-style4 li label:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  cursor: pointer;
}
.checkbox-style4 li label:before {
  content: "✓";
  top: 50%;
  right: 32px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}

.theme-sky .checkbox-style4 li label:after {
  border: 3px solid #00C2FF;
}
.theme-sky .checkbox-style4 li label.active {
  color: #00C2FF;
  border: 2px solid #00C2FF;
}
.theme-sky .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-sky .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #00C2FF;
}

.theme-green .checkbox-style4 li label:after {
  border: 3px solid #1DBF73;
}
.theme-green .checkbox-style4 li label.active {
  color: #1DBF73;
  border: 2px solid #1DBF73;
}
.theme-green .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-green .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #1DBF73;
}

.theme-orange .checkbox-style4 li label:after {
  border: 3px solid #FF792E;
}
.theme-orange .checkbox-style4 li label.active {
  color: #FF792E;
  border: 2px solid #FF792E;
}
.theme-orange .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-orange .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FF792E;
}

.theme-purple .checkbox-style4 li label:after {
  border: 3px solid #7000FF;
}
.theme-purple .checkbox-style4 li label.active {
  color: #7000FF;
  border: 2px solid #7000FF;
}
.theme-purple .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-purple .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #7000FF;
}

.theme-yellow .checkbox-style4 li label:after {
  border: 3px solid #FFBF00;
}
.theme-yellow .checkbox-style4 li label.active {
  color: #FFBF00;
  border: 2px solid #FFBF00;
}
.theme-yellow .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-yellow .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FFBF00;
}

.theme-navy .checkbox-style4 li label:after {
  border: 3px solid #004165;
}
.theme-navy .checkbox-style4 li label.active {
  color: #004165;
  border: 2px solid #004165;
}
.theme-navy .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-navy .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #004165;
}

.theme-pest .checkbox-style4 li label:after {
  border: 3px solid #58D3B9;
}
.theme-pest .checkbox-style4 li label.active {
  color: #58D3B9;
  border: 2px solid #58D3B9;
}
.theme-pest .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-pest .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #58D3B9;
}

.theme-light_red .checkbox-style4 li label:after {
  border: 3px solid #FA5354;
}
.theme-light_red .checkbox-style4 li label.active {
  color: #FA5354;
  border: 2px solid #FA5354;
}
.theme-light_red .checkbox-style4 li label.active:before {
  display: block;
  z-index: 2;
}
.theme-light_red .checkbox-style4 li label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FA5354;
}

.theme-sky .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #00C2FF;
  cursor: pointer;
  display: none;
}
.theme-sky .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-sky .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-sky .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-green .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #1DBF73;
  cursor: pointer;
  display: none;
}
.theme-green .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-green .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-green .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-orange .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #FF792E;
  cursor: pointer;
  display: none;
}
.theme-orange .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-orange .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-orange .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-purple .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #7000FF;
  cursor: pointer;
  display: none;
}
.theme-purple .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-purple .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-purple .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-yellow .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #FFBF00;
  cursor: pointer;
  display: none;
}
.theme-yellow .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-yellow .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-yellow .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-navy .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #004165;
  cursor: pointer;
  display: none;
}
.theme-navy .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-navy .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-navy .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-pest .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #58D3B9;
  cursor: pointer;
  display: none;
}
.theme-pest .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-pest .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-pest .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-light_red .checkbox-style5 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  background-color: #FA5354;
  cursor: pointer;
  display: none;
}
.theme-light_red .checkbox-style5 label:before {
  content: "";
  top: 50%;
  right: 30px;
  background: #ffffff;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-light_red .checkbox-style5 label.active:before {
  display: block;
  z-index: 2;
}
.theme-light_red .checkbox-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.theme-sky .checkbox-style6 label {
  width: 100%;
  color: #00C2FF;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #00C2FF;
  cursor: pointer;
}
.theme-sky .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #00C2FF;
  cursor: pointer;
}
.theme-sky .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-sky .checkbox-style6 label.active {
  color: #00C2FF;
  border: 2px solid #00C2FF;
}
.theme-sky .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-sky .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #00C2FF;
}

.theme-green .checkbox-style6 label {
  width: 100%;
  color: #1DBF73;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #1DBF73;
  cursor: pointer;
}
.theme-green .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #1DBF73;
  cursor: pointer;
}
.theme-green .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-green .checkbox-style6 label.active {
  color: #1DBF73;
  border: 2px solid #1DBF73;
}
.theme-green .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-green .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #1DBF73;
}

.theme-orange .checkbox-style6 label {
  width: 100%;
  color: #FF792E;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #FF792E;
  cursor: pointer;
}
.theme-orange .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #FF792E;
  cursor: pointer;
}
.theme-orange .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-orange .checkbox-style6 label.active {
  color: #FF792E;
  border: 2px solid #FF792E;
}
.theme-orange .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-orange .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FF792E;
}

.theme-purple .checkbox-style6 label {
  width: 100%;
  color: #7000FF;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #7000FF;
  cursor: pointer;
}
.theme-purple .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #7000FF;
  cursor: pointer;
}
.theme-purple .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-purple .checkbox-style6 label.active {
  color: #7000FF;
  border: 2px solid #7000FF;
}
.theme-purple .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-purple .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #7000FF;
}

.theme-yellow .checkbox-style6 label {
  width: 100%;
  color: #FFBF00;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #FFBF00;
  cursor: pointer;
}
.theme-yellow .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #FFBF00;
  cursor: pointer;
}
.theme-yellow .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-yellow .checkbox-style6 label.active {
  color: #FFBF00;
  border: 2px solid #FFBF00;
}
.theme-yellow .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-yellow .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FFBF00;
}

.theme-navy .checkbox-style6 label {
  width: 100%;
  color: #004165;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #004165;
  cursor: pointer;
}
.theme-navy .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #004165;
  cursor: pointer;
}
.theme-navy .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-navy .checkbox-style6 label.active {
  color: #004165;
  border: 2px solid #004165;
}
.theme-navy .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-navy .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #004165;
}

.theme-pest .checkbox-style6 label {
  width: 100%;
  color: #58D3B9;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #58D3B9;
  cursor: pointer;
}
.theme-pest .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #58D3B9;
  cursor: pointer;
}
.theme-pest .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-pest .checkbox-style6 label.active {
  color: #58D3B9;
  border: 2px solid #58D3B9;
}
.theme-pest .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-pest .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #58D3B9;
}

.theme-light_red .checkbox-style6 label {
  width: 100%;
  color: #FA5354;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 2px solid #FA5354;
  cursor: pointer;
}
.theme-light_red .checkbox-style6 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #FA5354;
  cursor: pointer;
}
.theme-light_red .checkbox-style6 label:before {
  content: "";
  top: 50%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  display: none;
}
.theme-light_red .checkbox-style6 label.active {
  color: #FA5354;
  border: 2px solid #FA5354;
}
.theme-light_red .checkbox-style6 label.active:before {
  display: block;
  z-index: 2;
}
.theme-light_red .checkbox-style6 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FA5354;
}

.theme-sky .checkbox-style7 label {
  width: 100%;
  color: #00C2FF;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #00C2FF;
  cursor: pointer;
}
.theme-sky .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #00C2FF;
  border-radius: 8px;
  cursor: pointer;
}
.theme-sky .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-sky .checkbox-style7 label.active {
  color: #00C2FF;
  border: 2px solid #00C2FF;
}
.theme-sky .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-sky .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #00C2FF;
}

.theme-green .checkbox-style7 label {
  width: 100%;
  color: #1DBF73;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #1DBF73;
  cursor: pointer;
}
.theme-green .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #1DBF73;
  border-radius: 8px;
  cursor: pointer;
}
.theme-green .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-green .checkbox-style7 label.active {
  color: #1DBF73;
  border: 2px solid #1DBF73;
}
.theme-green .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-green .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #1DBF73;
}

.theme-orange .checkbox-style7 label {
  width: 100%;
  color: #FF792E;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #FF792E;
  cursor: pointer;
}
.theme-orange .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #FF792E;
  border-radius: 8px;
  cursor: pointer;
}
.theme-orange .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-orange .checkbox-style7 label.active {
  color: #FF792E;
  border: 2px solid #FF792E;
}
.theme-orange .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-orange .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FF792E;
}

.theme-purple .checkbox-style7 label {
  width: 100%;
  color: #7000FF;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #7000FF;
  cursor: pointer;
}
.theme-purple .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #7000FF;
  border-radius: 8px;
  cursor: pointer;
}
.theme-purple .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-purple .checkbox-style7 label.active {
  color: #7000FF;
  border: 2px solid #7000FF;
}
.theme-purple .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-purple .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #7000FF;
}

.theme-yellow .checkbox-style7 label {
  width: 100%;
  color: #FFBF00;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #FFBF00;
  cursor: pointer;
}
.theme-yellow .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #FFBF00;
  border-radius: 8px;
  cursor: pointer;
}
.theme-yellow .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-yellow .checkbox-style7 label.active {
  color: #FFBF00;
  border: 2px solid #FFBF00;
}
.theme-yellow .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-yellow .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FFBF00;
}

.theme-navy .checkbox-style7 label {
  width: 100%;
  color: #004165;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #004165;
  cursor: pointer;
}
.theme-navy .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #004165;
  border-radius: 8px;
  cursor: pointer;
}
.theme-navy .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-navy .checkbox-style7 label.active {
  color: #004165;
  border: 2px solid #004165;
}
.theme-navy .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-navy .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #004165;
}

.theme-pest .checkbox-style7 label {
  width: 100%;
  color: #58D3B9;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #58D3B9;
  cursor: pointer;
}
.theme-pest .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #58D3B9;
  border-radius: 8px;
  cursor: pointer;
}
.theme-pest .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-pest .checkbox-style7 label.active {
  color: #58D3B9;
  border: 2px solid #58D3B9;
}
.theme-pest .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-pest .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #58D3B9;
}

.theme-light_red .checkbox-style7 label {
  width: 100%;
  color: #FA5354;
  font-size: 26px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  padding: 14px;
  padding-left: 36px;
  margin-bottom: 24px;
  border: 2px solid #FA5354;
  cursor: pointer;
}
.theme-light_red .checkbox-style7 label:after {
  content: "";
  width: 34px;
  height: 34px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border: 3px solid #FA5354;
  border-radius: 8px;
  cursor: pointer;
}
.theme-light_red .checkbox-style7 label:before {
  content: "";
  top: 52%;
  right: 36px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.theme-light_red .checkbox-style7 label.active {
  color: #FA5354;
  border: 2px solid #FA5354;
}
.theme-light_red .checkbox-style7 label.active:before {
  display: block;
  z-index: 2;
}
.theme-light_red .checkbox-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #FA5354;
}

.checkbox-style8 label:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 8px;
  border: 3px solid #00a1a9;
  cursor: pointer;
}
.checkbox-style8 label:before {
  content: "\f00c";
  top: 52%;
  left: 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  display: none;
}
.checkbox-style8 label.active {
  color: #00a1a9;
  border: 2px solid #00a1a9;
}
.checkbox-style8 label.active:before {
  display: block;
  z-index: 2;
}
.checkbox-style8 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #00a1a9;
}

.date-picker label {
  color: #00a1a9;
  font-size: 20px;
  font-weight: 400;
  font-family: Salsa;
  line-height: 30px;
}
.date-picker input {
  padding: 16px 21px;
  border: none;
}
.date-picker input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #00a1a9;
}
.date-picker input::-webkit-input-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.date-picker input::-moz-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.date-picker input:-ms-input-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.date-picker input::-ms-input-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.date-picker input::placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.date-picker:before {
  content: "";
  top: 52px;
  right: 24px;
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/calendar.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 30px;
  position: absolute;
  pointer-events: none;
}
.date-picker .input-group-append {
  top: 50px;
}

.datepicker .datepicker-days {
  padding: 20px 30px;
}

.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  color: #00a1a9;
  cursor: pointer;
}

.datepicker td,
.datepicker th {
  color: #c0bfbf;
  text-align: center;
  padding: 5px 10px;
  border-radius: 4px;
  border: none;
}

.content-wrapper {
  position: relative;
  z-index: 22;
}
.content-wrapper.reg-content-wrapper {
  padding-top: 50px;
}

.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  position: relative;
}
.section-bg:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.selector-position-top-right {
  position: relative;
}
.selector-position-top-right .selector,
.selector-position-top-right input[type=checkbox],
.selector-position-top-right input[type=radio] {
  position: absolute;
  top: 60px;
  right: 20px;
}

.selector-position-middle-right {
  position: relative;
}
.selector-position-middle-right .selector,
.selector-position-middle-right input[type=checkbox],
.selector-position-middle-right input[type=radio] {
  position: absolute;
  top: 48%;
  right: 10px;
}

.form_items .item-block svg > path {
  fill: #fff;
}
.form_items textarea {
  width: 100%;
  padding: 20px;
}
.form_items ul li label {
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  font-family: Salsa;
  padding: 18px;
  padding-left: 40px;
  margin-bottom: 24px;
  border-radius: 8px;
  cursor: pointer;
}
.form_items ul li label.form-label {
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form_items ul li label.form-label:after {
  display: none;
}
.form_items ul li label span {
  border-right: 2px solid;
  padding-right: 8px;
  margin-right: 15px;
}
.form_items ul li .message-field textarea {
  padding: 12px 12px 91px 18px;
  border: 2px solid transparent;
}
.form_items ul li .message-field textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form_items ul li .message-field textarea::-webkit-input-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form_items ul li .message-field textarea::-moz-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form_items ul li .message-field textarea:-ms-input-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form_items ul li .message-field textarea::-ms-input-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form_items ul li .message-field textarea::placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form_items ul li input {
  opacity: 0;
}
.form_items ul li label.error {
  width: 15rem;
  height: auto;
  top: -74px;
  left: 50%;
  color: red;
  font-size: 16px;
  font-weight: 600;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  position: absolute;
  border: none;
}
.form_items ul li label.error::after {
  display: none;
}

.left-shape .logo-area2 {
  width: 150px;
  height: auto;
  top: 116px;
  left: 5px;
  z-index: 333;
}

.top-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  text-align: center;
}
.top-shape .logo-area2 {
  z-index: 3;
  left: 28%;
  top: 86px;
}
.top-shape svg {
  content: "";
  top: -111px;
  right: 0;
  width: 80%;
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.selector-position-bottom-left {
  position: relative;
}
.selector-position-bottom-left .selector,
.selector-position-bottom-left input[type=checkbox],
.selector-position-bottom-left input[type=radio] {
  position: absolute;
  bottom: 13px;
  left: 0;
}

.selector-position-bottom-right {
  position: relative;
}
.selector-position-bottom-right .selector,
.selector-position-bottom-right input[type=checkbox],
.selector-position-bottom-right input[type=radio] {
  position: absolute;
  bottom: 50px;
  right: 18px;
}

.block-shadow-shape .item-block svg path {
  fill: #fff !important;
  stroke: #fff !important;
}

.block-shadow-fill .selector-position-middle-right .selector {
  top: 42%;
  right: 22px;
}

.block-shape-4 .item-block svg > path {
  fill: #fff !important;
}

.item-block {
  max-width: 280px;
  margin: 10px 0;
}
.item-block svg {
  top: 0;
  left: 0;
  position: absolute;
  height: 265px;
}
.item-block label {
  padding: 35px;
  cursor: pointer;
  display: block;
}
.item-block label img {
  position: relative;
  z-index: 33;
  padding: 20px;
}

label.error {
  color: red;
}

.next_btn {
  background: none;
}
.next_btn .submit-button {
  top: 15px;
  left: 50%;
  font-size: 25px;
  font-weight: 400;
  background: none;
  font-family: Salsa;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.js-btn-next,
.js-btn-prev {
  background: transparent;
}
.js-btn-next svg,
.js-btn-prev svg {
  pointer-events: none;
}

.form-items li {
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.form-items input {
  opacity: 0;
}
.form-items label .error {
  width: 500px;
  color: red;
  font-size: 14px;
  top: -47px;
  left: 115%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}
.form-items label .error::after {
  display: none;
}
.form-items label .error::before {
  display: none;
}

.form-items2 label {
  width: 100%;
  color: #7db7ba;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  font-family: Salsa;
  padding: 18px;
  padding-left: 68px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
}
.form-items2 label.form-label {
  color: #00a1a9;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form-items2 label.form-label:after {
  display: none;
}
.form-items2 .message-field textarea {
  font-family: "Salsa";
  padding: 12px 12px 91px 18px;
  border: 2px solid transparent;
}
.form-items2 .message-field textarea:focus {
  border: 2px solid #00a1a9;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-items2 .message-field textarea::-webkit-input-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.form-items2 .message-field textarea::-moz-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.form-items2 .message-field textarea:-ms-input-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.form-items2 .message-field textarea::-ms-input-placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.form-items2 .message-field textarea::placeholder {
  color: #acacac;
  font-family: Salsa;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.form-items2 input {
  opacity: 0;
}
.form-items2 label.error {
  width: 15rem;
  height: auto;
  top: -87px;
  left: 50%;
  color: red;
  font-size: 16px;
  font-weight: 600;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  position: absolute;
}
.form-items2 label.error::after {
  display: none;
}

.form-panel {
  margin-bottom: 24px;
}
.form-panel .form-item {
  margin-bottom: 30px;
}
.form-panel .form-item label {
  color: #00a1a9;
  font-size: 20px;
  font-weight: 400;
  font-family: Salsa;
  line-height: 30px;
}
.form-panel .form-item input {
  padding: 16px 21px;
  border: none;
}
.form-panel .form-item input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.form-panel .form-item input::-webkit-input-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form-panel .form-item input::-moz-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form-panel .form-item input:-ms-input-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form-panel .form-item input::-ms-input-placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.form-panel .form-item input::placeholder {
  color: #d7d7d7;
  font-family: Salsa;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.theme-sky .radio-style1 label .selector:after {
  background: #00C2FF;
}

.theme-green .radio-style1 label .selector:after {
  background: #1DBF73;
}

.theme-orange .radio-style1 label .selector:after {
  background: #FF792E;
}

.theme-purple .radio-style1 label .selector:after {
  background: #7000FF;
}

.theme-yellow .radio-style1 label .selector:after {
  background: #FFBF00;
}

.theme-navy .radio-style1 label .selector:after {
  background: #004165;
}

.theme-pest .radio-style1 label .selector:after {
  background: #58D3B9;
}

.theme-light_red .radio-style1 label .selector:after {
  background: #FA5354;
}

.radio-style1 label .selector:after {
  -webkit-mask-image: url(../images/shape.svg);
  -webkit-mask-repeat: no-repeat;
}

.radio-style1 label .selector:before {
  content: "";
  left: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  background-repeat: no-repeat;
  display: none;
  z-index: 33;
}
.radio-style1 label .selector::after {
  content: "";
  width: 64px;
  height: 66px;
  background-image: url(../images/shape.svg);
  background-repeat: no-repeat;
  display: none;
}
.radio-style1 label.active .selector:before {
  display: block;
}
.radio-style1 label.active .selector:after {
  display: block;
}
.radio-style1 input {
  opacity: 0;
  position: absolute;
}
.radio-style1 label.error {
  width: 500px;
  color: red;
  font-size: 14px;
  top: -47px;
  left: 115%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}
.radio-style1 label.error::after {
  display: none;
}
.radio-style1 label.error::before {
  display: none;
}

.theme-sky .radio-style2 label .selector:after {
  background: #00C2FF;
}

.theme-green .radio-style2 label .selector:after {
  background: #1DBF73;
}

.theme-orange .radio-style2 label .selector:after {
  background: #FF792E;
}

.theme-purple .radio-style2 label .selector:after {
  background: #7000FF;
}

.theme-yellow .radio-style2 label .selector:after {
  background: #FFBF00;
}

.theme-navy .radio-style2 label .selector:after {
  background: #004165;
}

.theme-pest .radio-style2 label .selector:after {
  background: #58D3B9;
}

.theme-light_red .radio-style2 label .selector:after {
  background: #FA5354;
}

.radio-style2 label .selector:before {
  content: "";
  bottom: 7px;
  right: 7px;
  width: 15px;
  height: 15px;
  position: absolute;
  background: #fff;
  border-radius: 100%;
  display: none;
  z-index: 2;
}
.radio-style2 label .selector:after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: none;
}
.radio-style2 label.active .selector:before {
  display: block;
}
.radio-style2 label.active .selector:after {
  display: block;
}
.radio-style2 input {
  opacity: 0;
  position: absolute;
}
.radio-style2 label.error {
  width: 500px;
  color: red;
  font-size: 14px;
  top: -47px;
  left: 115%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}
.radio-style2 label.error::after {
  display: none;
}
.radio-style2 label.error::before {
  display: none;
}

.theme-sky .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #00C2FF;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-sky .radio-style3 input[type=radio]:checked {
  color: #00C2FF;
  background: #00C2FF;
}

.theme-green .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #1DBF73;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-green .radio-style3 input[type=radio]:checked {
  color: #1DBF73;
  background: #1DBF73;
}

.theme-orange .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #FF792E;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-orange .radio-style3 input[type=radio]:checked {
  color: #FF792E;
  background: #FF792E;
}

.theme-purple .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #7000FF;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-purple .radio-style3 input[type=radio]:checked {
  color: #7000FF;
  background: #7000FF;
}

.theme-yellow .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #FFBF00;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-yellow .radio-style3 input[type=radio]:checked {
  color: #FFBF00;
  background: #FFBF00;
}

.theme-navy .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #004165;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-navy .radio-style3 input[type=radio]:checked {
  color: #004165;
  background: #004165;
}

.theme-pest .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #58D3B9;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-pest .radio-style3 input[type=radio]:checked {
  color: #58D3B9;
  background: #58D3B9;
}

.theme-light_red .radio-style3 input[type=radio] {
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #FA5354;
  border-radius: 100%;
  position: absolute;
  bottom: 60px;
}
.theme-light_red .radio-style3 input[type=radio]:checked {
  color: #FA5354;
  background: #FA5354;
}

.theme-sky .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #00C2FF;
  display: none;
}
.theme-sky .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #00C2FF;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-sky .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-sky .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-sky .radio-style4 label.active span {
  color: #00C2FF;
}

.theme-green .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #1DBF73;
  display: none;
}
.theme-green .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1DBF73;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-green .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-green .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-green .radio-style4 label.active span {
  color: #1DBF73;
}

.theme-orange .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #FF792E;
  display: none;
}
.theme-orange .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FF792E;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-orange .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-orange .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-orange .radio-style4 label.active span {
  color: #FF792E;
}

.theme-purple .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #7000FF;
  display: none;
}
.theme-purple .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #7000FF;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-purple .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-purple .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-purple .radio-style4 label.active span {
  color: #7000FF;
}

.theme-yellow .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #FFBF00;
  display: none;
}
.theme-yellow .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FFBF00;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-yellow .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-yellow .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-yellow .radio-style4 label.active span {
  color: #FFBF00;
}

.theme-navy .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #004165;
  display: none;
}
.theme-navy .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #004165;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-navy .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-navy .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-navy .radio-style4 label.active span {
  color: #004165;
}

.theme-pest .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #58D3B9;
  display: none;
}
.theme-pest .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #58D3B9;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-pest .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-pest .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-pest .radio-style4 label.active span {
  color: #58D3B9;
}

.theme-light_red .radio-style4 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #FA5354;
  display: none;
}
.theme-light_red .radio-style4 label:before {
  content: "";
  top: 50%;
  right: 32px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FA5354;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.theme-light_red .radio-style4 label.active:before {
  display: block;
  z-index: 2;
}
.theme-light_red .radio-style4 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.theme-light_red .radio-style4 label.active span {
  color: #FA5354;
}

.radio-style5 label:after {
  content: "";
  width: 39px;
  height: 39px;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100%;
  display: none;
}
.radio-style5 label:before {
  content: "";
  top: 24px;
  right: 31px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  position: absolute;
  display: none;
  z-index: 1;
}
.radio-style5 label.active:before {
  display: block;
  z-index: 2;
}
.radio-style5 label.active:after {
  display: block;
}
.radio-style5 label input {
  opacity: 0;
}

.theme-sky .radio-style5 label:after {
  border: 3px solid #00C2FF;
}
.theme-sky .radio-style5 label:before {
  background-color: #00C2FF;
}
.theme-sky .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-green .radio-style5 label:after {
  border: 3px solid #1DBF73;
}
.theme-green .radio-style5 label:before {
  background-color: #1DBF73;
}
.theme-green .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-orange .radio-style5 label:after {
  border: 3px solid #FF792E;
}
.theme-orange .radio-style5 label:before {
  background-color: #FF792E;
}
.theme-orange .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-purple .radio-style5 label:after {
  border: 3px solid #7000FF;
}
.theme-purple .radio-style5 label:before {
  background-color: #7000FF;
}
.theme-purple .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-yellow .radio-style5 label:after {
  border: 3px solid #FFBF00;
}
.theme-yellow .radio-style5 label:before {
  background-color: #FFBF00;
}
.theme-yellow .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-navy .radio-style5 label:after {
  border: 3px solid #004165;
}
.theme-navy .radio-style5 label:before {
  background-color: #004165;
}
.theme-navy .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-pest .radio-style5 label:after {
  border: 3px solid #58D3B9;
}
.theme-pest .radio-style5 label:before {
  background-color: #58D3B9;
}
.theme-pest .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.theme-light_red .radio-style5 label:after {
  border: 3px solid #FA5354;
}
.theme-light_red .radio-style5 label:before {
  background-color: #FA5354;
}
.theme-light_red .radio-style5 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.radio-style6 label {
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  padding: 18px;
  padding-left: 50px;
  border-radius: 12px;
  margin-bottom: 15px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.radio-style6 label input {
  opacity: 0;
}
.radio-style6 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 5px;
  border: 2px solid #ffffff;
  cursor: pointer;
}
.radio-style6 label:before {
  content: "";
  top: 50%;
  right: 30px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  border-radius: 5px;
  position: absolute;
  display: none;
  z-index: 1;
}
.radio-style6 label.active {
  font-weight: 600;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.radio-style6 label.active:before {
  display: block;
  z-index: 2;
}
.radio-style6 label.active:after {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.radio-style6 #conditional-form textarea.form-control:focus {
  outline: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.radio-style6 #conditional-form textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.radio-style6 #conditional-form textarea:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.radio-style6 #conditional-form textarea::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.radio-style6 #conditional-form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.theme-sky .radio-style6 label {
  color: #00C2FF;
  border: 1px solid #00C2FF;
}
.theme-sky .radio-style6 label.active {
  color: var(--white-color);
  background-color: #00C2FF !important;
}
.theme-sky .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-sky .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #00C2FF;
}
.theme-sky .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #00C2FF;
}
.theme-sky .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #00C2FF;
}
.theme-sky .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #00C2FF;
}
.theme-sky .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #00C2FF;
}
.theme-sky .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #00C2FF;
}
.theme-sky .radio-style6 #conditional-form textarea::placeholder {
  color: #00C2FF;
}

.theme-green .radio-style6 label {
  color: #1DBF73;
  border: 1px solid #1DBF73;
}
.theme-green .radio-style6 label.active {
  color: var(--white-color);
  background-color: #1DBF73 !important;
}
.theme-green .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-green .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #1DBF73;
}
.theme-green .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #1DBF73;
}
.theme-green .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #1DBF73;
}
.theme-green .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #1DBF73;
}
.theme-green .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #1DBF73;
}
.theme-green .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #1DBF73;
}
.theme-green .radio-style6 #conditional-form textarea::placeholder {
  color: #1DBF73;
}

.theme-orange .radio-style6 label {
  color: #FF792E;
  border: 1px solid #FF792E;
}
.theme-orange .radio-style6 label.active {
  color: var(--white-color);
  background-color: #FF792E !important;
}
.theme-orange .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-orange .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #FF792E;
}
.theme-orange .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #FF792E;
}
.theme-orange .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #FF792E;
}
.theme-orange .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #FF792E;
}
.theme-orange .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #FF792E;
}
.theme-orange .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #FF792E;
}
.theme-orange .radio-style6 #conditional-form textarea::placeholder {
  color: #FF792E;
}

.theme-purple .radio-style6 label {
  color: #7000FF;
  border: 1px solid #7000FF;
}
.theme-purple .radio-style6 label.active {
  color: var(--white-color);
  background-color: #7000FF !important;
}
.theme-purple .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-purple .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #7000FF;
}
.theme-purple .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #7000FF;
}
.theme-purple .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #7000FF;
}
.theme-purple .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #7000FF;
}
.theme-purple .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #7000FF;
}
.theme-purple .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #7000FF;
}
.theme-purple .radio-style6 #conditional-form textarea::placeholder {
  color: #7000FF;
}

.theme-yellow .radio-style6 label {
  color: #FFBF00;
  border: 1px solid #FFBF00;
}
.theme-yellow .radio-style6 label.active {
  color: var(--white-color);
  background-color: #FFBF00 !important;
}
.theme-yellow .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-yellow .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #FFBF00;
}
.theme-yellow .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #FFBF00;
}
.theme-yellow .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #FFBF00;
}
.theme-yellow .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #FFBF00;
}
.theme-yellow .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #FFBF00;
}
.theme-yellow .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #FFBF00;
}
.theme-yellow .radio-style6 #conditional-form textarea::placeholder {
  color: #FFBF00;
}

.theme-navy .radio-style6 label {
  color: #004165;
  border: 1px solid #004165;
}
.theme-navy .radio-style6 label.active {
  color: var(--white-color);
  background-color: #004165 !important;
}
.theme-navy .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-navy .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #004165;
}
.theme-navy .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #004165;
}
.theme-navy .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #004165;
}
.theme-navy .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #004165;
}
.theme-navy .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #004165;
}
.theme-navy .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #004165;
}
.theme-navy .radio-style6 #conditional-form textarea::placeholder {
  color: #004165;
}

.theme-pest .radio-style6 label {
  color: #58D3B9;
  border: 1px solid #58D3B9;
}
.theme-pest .radio-style6 label.active {
  color: var(--white-color);
  background-color: #58D3B9 !important;
}
.theme-pest .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-pest .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #58D3B9;
}
.theme-pest .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #58D3B9;
}
.theme-pest .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #58D3B9;
}
.theme-pest .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #58D3B9;
}
.theme-pest .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #58D3B9;
}
.theme-pest .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #58D3B9;
}
.theme-pest .radio-style6 #conditional-form textarea::placeholder {
  color: #58D3B9;
}

.theme-light_red .radio-style6 label {
  color: #FA5354;
  border: 1px solid #FA5354;
}
.theme-light_red .radio-style6 label.active {
  color: var(--white-color);
  background-color: #FA5354 !important;
}
.theme-light_red .radio-style6 label.active:before {
  background-color: #ffffff;
}
.theme-light_red .radio-style6 #conditional-form textarea.form-control {
  border: 1px solid #FA5354;
}
.theme-light_red .radio-style6 #conditional-form textarea.form-control:focus {
  border: 1px solid #FA5354;
}
.theme-light_red .radio-style6 #conditional-form textarea::-webkit-input-placeholder {
  color: #FA5354;
}
.theme-light_red .radio-style6 #conditional-form textarea::-moz-placeholder {
  color: #FA5354;
}
.theme-light_red .radio-style6 #conditional-form textarea:-ms-input-placeholder {
  color: #FA5354;
}
.theme-light_red .radio-style6 #conditional-form textarea::-ms-input-placeholder {
  color: #FA5354;
}
.theme-light_red .radio-style6 #conditional-form textarea::placeholder {
  color: #FA5354;
}

.radio-style7 label:after {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 100px;
  border: 3px solid #00a1a9;
  cursor: pointer;
}
.radio-style7 label .number {
  top: 24px;
  left: 25px;
  color: #7db7ba;
  font-family: Salsa;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.radio-style7 label.active {
  color: #00a1a9;
  border: 2px solid #00a1a9;
}
.radio-style7 label.active .number {
  color: #ffffff;
}
.radio-style7 label.active:after {
  border: 3px solid transparent;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #00a1a9;
}

.theme-sky .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-sky .item-selection label {
  color: #00C2FF;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-sky .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-sky .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #00C2FF;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-sky .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #00C2FF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.theme-green .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-green .item-selection label {
  color: #1DBF73;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-green .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-green .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #1DBF73;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-green .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #1DBF73;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.theme-orange .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-orange .item-selection label {
  color: #FF792E;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-orange .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-orange .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #FF792E;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-orange .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #FF792E;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.theme-purple .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-purple .item-selection label {
  color: #7000FF;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-purple .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-purple .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #7000FF;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-purple .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #7000FF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.theme-yellow .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-yellow .item-selection label {
  color: #FFBF00;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-yellow .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-yellow .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #FFBF00;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-yellow .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #FFBF00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.theme-navy .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-navy .item-selection label {
  color: #004165;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-navy .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-navy .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #004165;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-navy .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #004165;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.theme-pest .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-pest .item-selection label {
  color: #58D3B9;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-pest .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-pest .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #58D3B9;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-pest .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #58D3B9;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.theme-light_red .item-selection {
  margin-bottom: 68px;
  margin-top: 50px;
  z-index: 222;
}
.theme-light_red .item-selection label {
  color: #FA5354;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.theme-light_red .item-selection label:not(:last-child) {
  margin-right: 107px;
}
.theme-light_red .item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #FA5354;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.theme-light_red .item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #FA5354;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.item-selection {
  margin-bottom: 60px;
  margin-top: 60px;
}
.item-selection .item-selection-title .title {
  color: #433b62;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: Salsa;
}
.item-selection label {
  color: #000;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.item-selection label:not(:last-child) {
  margin-right: 107px;
}
.item-selection label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #433b62;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
  position: relative;
  top: 6px;
}
.item-selection label input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #7e739e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: appear 0.8s;
          animation: appear 0.8s;
}

.select-style1 li {
  margin-bottom: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.select-style1 label {
  padding: 25px;
  cursor: pointer;
}
.select-style1 label:before {
  content: "";
  bottom: 30px;
  left: 10px;
  right: 0px;
  width: 45px;
  height: 45px;
  position: absolute;
  background-image: url(../images/check.svg);
  background-size: 45px;
  background-repeat: no-repeat;
  display: none;
  z-index: 333;
}
.select-style1 label::after {
  content: "";
  bottom: 15px;
  left: 0;
  right: 0px;
  width: 70px;
  height: 70px;
  position: absolute;
  background-image: url(../images/shape.svg);
  background-size: 65px;
  background-repeat: no-repeat;
  display: none;
  z-index: 1;
}
.select-style1 label img {
  width: 100%;
  z-index: 3333;
}
.select-style1 label.active:before {
  display: block;
}
.select-style1 label.active:after {
  display: block;
}
.select-style1 label.step_2.active:after {
  background-color: #1dbf73;
}
.select-style1 label.step_3.active:after {
  background-color: #ff792e;
}
.select-style1 label.step_4.active:after {
  background-color: #7000ff;
}
.select-style1 label.step_5.active:after {
  background-color: #ffbf00;
}
.select-style1 input {
  opacity: 0;
}
.select-style1 label.error {
  width: 500px;
  color: red;
  font-size: 14px;
  top: -47px;
  left: 115%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}
.select-style1 label.error::after {
  display: none;
}
.select-style1 label.error::before {
  display: none;
}

.select-style2 {
  max-width: 100%;
  height: 30px;
}
.select-style2 .nice-select {
  height: 60px;
  line-height: 60px;
  border-radius: 14px;
  background-color: #fff;
  border: none;
}
.select-style2 .nice-select:after {
  right: 25px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
}
.select-style2 .nice-select .current {
  color: #646464;
  font-family: Salsa;
  font-size: 24px;
  font-weight: 400;
}
.select-style2 .nice-select .option {
  color: #646464;
  font-size: 18px;
  font-family: "Salsa";
}

.upload-style1 li {
  margin-bottom: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.upload-style1 label {
  padding: 25px;
  cursor: pointer;
}
.upload-style1 label:before {
  content: "";
  bottom: 30px;
  left: 10px;
  right: 0px;
  width: 45px;
  height: 45px;
  position: absolute;
  background-image: url(../images/check.svg);
  background-size: 45px;
  background-repeat: no-repeat;
  display: none;
  z-index: 333;
}
.upload-style1 label::after {
  content: "";
  bottom: 15px;
  left: 0;
  right: 0px;
  width: 70px;
  height: 70px;
  position: absolute;
  background-image: url(../images/shape.svg);
  background-size: 65px;
  background-repeat: no-repeat;
  display: none;
  z-index: 1;
}
.upload-style1 label img {
  width: 100%;
  z-index: 3333;
}
.upload-style1 label.active:before {
  display: block;
}
.upload-style1 label.active:after {
  display: block;
}
.upload-style1 label.step_2.active:after {
  background-color: #1dbf73;
}
.upload-style1 label.step_3.active:after {
  background-color: #ff792e;
}
.upload-style1 label.step_4.active:after {
  background-color: #7000ff;
}
.upload-style1 label.step_5.active:after {
  background-color: #ffbf00;
}
.upload-style1 input {
  opacity: 0;
}
.upload-style1 label.error {
  width: 500px;
  color: red;
  font-size: 14px;
  top: -47px;
  left: 115%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: transparent;
  text-transform: capitalize;
  display: block;
  font-weight: 600;
}
.upload-style1 label.error::after {
  display: none;
}
.upload-style1 label.error::before {
  display: none;
}

.theme-sky .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-sky .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-sky .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #00C2FF;
}
.theme-sky .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-sky .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-sky .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-sky .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-sky .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #00C2FF;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-sky .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #00C2FF;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.theme-green .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-green .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-green .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #1DBF73;
}
.theme-green .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-green .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-green .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-green .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-green .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #1DBF73;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-green .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #1DBF73;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.theme-orange .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-orange .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-orange .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #FF792E;
}
.theme-orange .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-orange .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-orange .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-orange .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-orange .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #FF792E;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-orange .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #FF792E;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.theme-purple .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-purple .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-purple .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #7000FF;
}
.theme-purple .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-purple .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-purple .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-purple .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-purple .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #7000FF;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-purple .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #7000FF;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.theme-yellow .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-yellow .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-yellow .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #FFBF00;
}
.theme-yellow .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-yellow .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-yellow .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-yellow .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-yellow .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #FFBF00;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-yellow .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #FFBF00;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.theme-navy .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-navy .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-navy .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #004165;
}
.theme-navy .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-navy .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-navy .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-navy .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-navy .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #004165;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-navy .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #004165;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.theme-pest .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-pest .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-pest .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #58D3B9;
}
.theme-pest .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-pest .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-pest .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-pest .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-pest .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #58D3B9;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-pest .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #58D3B9;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.theme-light_red .upload-documents .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
}
.theme-light_red .upload-documents .text {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.theme-light_red .upload-documents .upload-area {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #FA5354;
}
.theme-light_red .upload-documents .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.theme-light_red .upload-documents .upload-area .upload-icon img {
  margin-right: 13px;
}
.theme-light_red .upload-documents .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #274b94;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.theme-light_red .upload-documents .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #274b94;
}
.theme-light_red .upload-documents input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #FA5354;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.theme-light_red .upload-documents input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 50px;
  margin-right: 16px;
  background-color: #FA5354;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.upload-style3 .upload-document-title .title,
.upload-style3 .uoload-your-resume .title {
  color: #433b62;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: Salsa;
}
.upload-style3 .text {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 18px;
  display: block;
}
.upload-style3 .upload-area {
  padding: 8px;
  border-radius: 8px;
}
.upload-style3 .upload-area .upload-icon {
  top: 13px;
  left: 25px;
}
.upload-style3 .upload-area .upload-icon img {
  margin-right: 13px;
}
.upload-style3 .upload-area .file-number {
  top: 20px;
  right: 22px;
  color: #7db7ba;
  font-family: Salsa;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  z-index: 222;
}
.upload-style3 .upload-area .file-number:after {
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  right: -9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 6px;
  border: 2px solid #7db7ba;
  cursor: pointer;
}

input[type=file]::-webkit-file-upload-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  padding: 10px 30px 10px 50px;
  border-radius: 4px;
  background: #1dbe72;
  margin-right: 16px;
}

input[type=file]::file-selector-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  padding: 10px 30px 10px 50px;
  border-radius: 4px;
  background: #1dbe72;
  margin-right: 16px;
}

.reg_form_panel {
  max-width: 730px;
  padding-top: 80px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 98%;
}
.reg_form_panel .form-title {
  font-family: "Wendy One", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 1.6px;
  margin-bottom: 34px;
}
.reg_form_panel .upload-documents .title {
  color: #1dbf73 !important;
  font-family: "Wendy One", sans-serif;
}
.reg_form_panel .upload-documents .upload-area {
  border: 1px solid #1dbf73 !important;
  border-radius: 100px !important;
}
.reg_form_panel.reg-form_style {
  max-width: 100%;
}

.form-field {
  margin-bottom: 30px;
}
.form-field .form-label {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  font-family: "Wendy One", sans-serif;
  letter-spacing: 1.2px;
  margin-left: 45px;
}
.form-field .form-control {
  padding: 25px 34px;
}
.form-field .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-field .form-control::-webkit-input-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.form-field .form-control::-moz-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.form-field .form-control:-ms-input-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.form-field .form-control::-ms-input-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.form-field .form-control::placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.form-field label.error {
  color: rgb(250, 35, 35);
  font-size: 14px;
  position: absolute;
}

.reg-btn .submit-btn {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  padding: 15px 60px;
}
.reg-btn .submit-btn .close-icon {
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
}
.reg-btn .submit-btn:hover {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.reg-btn .submit-btn:hover .reg {
  visibility: hidden;
}
.reg-btn .submit-btn:hover .close-icon {
  visibility: visible;
}

.submit-btn {
  cursor: not-allowed !important;
}

.submit-btn.valid {
  width: 210px;
  cursor: pointer !important;
}

.submit-btn.invalid {
  background: rgb(255, 28, 28);
  border: rgb(255, 28, 28);
}

.wrapper-bg {
  width: 100%;
  min-height: 100vh;
  background-image: url("../images/background/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.step_progress {
  top: 0px;
  left: 0px;
}

.p100 {
  padding: 100px;
}

.pt50 {
  padding-top: 50px;
}

.pt100 {
  padding-top: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

.multisteps_form {
  height: 100vh !important;
}

.multisteps-form-panel {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  height: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.multisteps-form-panel .form-content {
  display: none;
}
.multisteps-form-panel.active {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.multisteps-form-panel.active .form-content {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}
.multisteps-form-panel[data-animation=scaleOut] {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.multisteps-form-panel[data-animation=scaleOut].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.multisteps-form-panel[data-animation=slideHorz] {
  left: -50px;
}
.multisteps-form-panel[data-animation=slideHorz].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  left: 0;
}
.multisteps-form-panel[data-animation=slideVert] {
  top: 30px;
}
.multisteps-form-panel[data-animation=slideVert].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  top: 0;
}
.multisteps-form-panel[data-animation=fadeIn].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.multisteps-form-panel[data-animation=scaleIn] {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.multisteps-form-panel[data-animation=scaleIn].active {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.inner-content-box {
  z-index: 2;
  width: 80%;
  max-width: 700px;
}

.form-top-content {
  margin-bottom: 40px;
}
.form-top-content .title {
  color: #433b62;
  font-size: 36px;
  font-weight: 400;
  line-height: 54px;
  font-family: Salsa;
  margin-bottom: 0px;
}
.form-top-content .form-title {
  color: #00a1a9;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  font-family: Salsa;
  padding: 8px;
  border-radius: 8px;
}

.left-content {
  width: 50%;
  padding: 30px 80px;
  background-repeat: no-repeat;
  background-size: cover;
}
.left-content svg {
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0px;
  max-width: 1000px;
  width: 50%;
}
.left-content .logo-area {
  margin-bottom: 60px;
}

.subject-img {
  width: 450px;
}

.right-content {
  width: 50%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.right-content .reg_form_panel {
  padding: 80px;
}
.right-content .reg_form_panel .form-title {
  color: #1dbf73;
  font-family: Wendy One;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 1.6px;
  margin-bottom: 34px;
}
.right-content .form-field {
  margin-bottom: 30px;
}
.right-content .form-field .form-label {
  color: #1dbf73;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  font-family: Wendy One;
  letter-spacing: 1.2px;
  margin-left: 45px;
}
.right-content .form-field .form-control {
  padding: 25px 34px;
}
.right-content .form-field .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.right-content .form-field .form-control::-webkit-input-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.right-content .form-field .form-control::-moz-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.right-content .form-field .form-control:-ms-input-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.right-content .form-field .form-control::-ms-input-placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.right-content .form-field .form-control::placeholder {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: 300;
  line-height: 16.22px;
}
.right-content .form-field label.error {
  color: rgb(250, 35, 35);
  font-size: 14px;
  position: absolute;
}

.counter_box {
  width: 200px;
  margin-bottom: -50px;
  z-index: 2;
}
.counter_box .count_clock {
  padding: 22px 35px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 20px;
}
.counter_box .count_clock img {
  margin-right: 16px;
}
.counter_box .count_clock span {
  font-size: 25.783px;
  font-weight: 700;
}

.question-box {
  max-width: 700px;
  margin: auto;
}

.question-content {
  margin-bottom: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 333;
}
.question-content svg {
  width: 100%;
}
.question-content .title {
  top: 50%;
  left: 40px;
  right: 40px;
  font-family: Salsa;
  font-size: 34px;
  font-weight: 400;
  line-height: 50px;
  z-index: 333;
  max-width: 600px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.question-content .title.title-style2 {
  top: 100px;
}
.question-content .title.title-style3 {
  top: 100px;
}

.video-question-box {
  max-width: 700px;
  margin: auto;
}
.video-question-box .question-content {
  margin-bottom: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}
.video-question-box .question-content svg {
  width: 100%;
}

.thumb-question-box {
  max-width: 700px;
  margin: auto;
}
.thumb-question-box .thumb-content {
  margin-bottom: 60px;
  z-index: 333;
}
.thumb-question-box .thumb-content .left-img > img {
  top: 31px;
  left: 17px;
  width: 45%;
}
.thumb-question-box .thumb-content .left-img .letter-shape {
  bottom: 23px;
  left: 20px;
}
.thumb-question-box .thumb-content .left-img .letter-shape .letter {
  top: 8px;
  left: 50%;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  font-family: Salsa;
  letter-spacing: 0em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.thumb-question-box .thumb-content .right-img > img {
  top: 16px;
  right: 17px;
  width: 45%;
}
.thumb-question-box .thumb-content .right-img .letter-shape {
  bottom: 23px;
  right: 40px;
}
.thumb-question-box .thumb-content .right-img .letter-shape .letter {
  top: 8px;
  right: 22%;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  font-family: Salsa;
  letter-spacing: 0em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.thumb-question-box .question-title .title.title-style3 {
  color: #004165;
  font-size: 34px;
  font-weight: 400;
  line-height: 50px;
  font-family: Salsa;
}

.question-box .thumb-question-content {
  max-width: 700px;
  margin: 60px auto 0px;
  z-index: 222;
}
.question-box .thumb-question-content .left-img .letter-shape {
  top: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.question-box .thumb-question-content .left-img .letter-shape .letter {
  top: 8px;
  left: 50%;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  font-family: Salsa;
  letter-spacing: 0em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.question-box .thumb-question-content .right-img .letter-shape {
  top: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.question-box .thumb-question-content .right-img .letter-shape .letter {
  top: 8px;
  left: 50%;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  font-family: Salsa;
  letter-spacing: 0em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.question-box .question-title .title.title-style3 {
  color: #004165;
  font-size: 34px;
  font-weight: 400;
  line-height: 50px;
  font-family: Salsa;
}

.question-title {
  padding: 14px 16px;
  margin-bottom: 30px;
  border-radius: 28px;
  border: 2px solid #004165;
  z-index: 333;
}

.error-message {
  height: 5px;
  font-size: 18px;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

.question-lists {
  top: 0 !important;
  position: absolute;
}
.question-lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
}

.step-progress {
  top: 152px;
  left: 50px;
  z-index: 333;
}
.step-progress .step:after {
  content: "";
  top: 60px;
  left: 29px;
  width: 6px;
  height: 28px;
  position: absolute;
  background-color: #fff;
}
.step-progress .step svg path {
  fill: #fff;
}
.step-progress .step .number {
  top: 3px;
  left: 22px;
  color: #004165;
  font-family: Salsa;
  font-size: 36px;
  font-weight: 400;
  line-height: 54px;
  z-index: 999999;
}
.step-progress .step:last-child:after {
  display: none;
}
.step-progress .step.active {
  color: #00C2FF !important;
}
.step-progress .step.active::after {
  background-color: #fff;
}
.step-progress .step.active svg path {
  fill: #fff;
}
.step-progress .step.active .number {
  color: #01293f;
}
.step-progress .step.finish {
  border-color: #00C2FF;
}
.step-progress .step.finish::after {
  background-color: #00C2FF;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-sky {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-sky .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-sky .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-sky.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-sky .reg-btn .submit-btn {
  border: 2px solid #00C2FF;
  background-color: #00C2FF;
}
.theme-sky .form-title {
  color: #00C2FF;
}
.theme-sky .title {
  color: #00C2FF;
}
.theme-sky svg > path {
  fill: #00C2FF;
}
.theme-sky .counter_box svg path {
  fill: #00C2FF;
}
.theme-sky .question-content svg > path {
  fill: #fff;
  stroke: #00C2FF;
}
.theme-sky .form_items .item-block svg > path {
  stroke: #00C2FF;
}
.theme-sky .form_items .conditional-label {
  color: #00C2FF;
  font-size: 20px;
  font-family: Salsa;
}
.theme-sky .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #00C2FF;
}
.theme-sky .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-sky .form_items ul li label {
  color: #00C2FF;
  border: 2px solid #00C2FF;
}
.theme-sky .form_items ul li label.form-label {
  color: #00C2FF;
}
.theme-sky .form_items ul li .message-field textarea:focus {
  border: 2px solid #00C2FF;
}
.theme-sky .form-field .form-label {
  color: #00C2FF;
}
.theme-sky .form-field .form-control {
  border: 1px solid #00C2FF;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-green {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-green .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-green .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-green.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-green .reg-btn .submit-btn {
  border: 2px solid #1DBF73;
  background-color: #1DBF73;
}
.theme-green .form-title {
  color: #1DBF73;
}
.theme-green .title {
  color: #1DBF73;
}
.theme-green svg > path {
  fill: #1DBF73;
}
.theme-green .counter_box svg path {
  fill: #1DBF73;
}
.theme-green .question-content svg > path {
  fill: #fff;
  stroke: #1DBF73;
}
.theme-green .form_items .item-block svg > path {
  stroke: #1DBF73;
}
.theme-green .form_items .conditional-label {
  color: #1DBF73;
  font-size: 20px;
  font-family: Salsa;
}
.theme-green .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #1DBF73;
}
.theme-green .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-green .form_items ul li label {
  color: #1DBF73;
  border: 2px solid #1DBF73;
}
.theme-green .form_items ul li label.form-label {
  color: #1DBF73;
}
.theme-green .form_items ul li .message-field textarea:focus {
  border: 2px solid #1DBF73;
}
.theme-green .form-field .form-label {
  color: #1DBF73;
}
.theme-green .form-field .form-control {
  border: 1px solid #1DBF73;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-orange {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-orange .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-orange .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-orange.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-orange .reg-btn .submit-btn {
  border: 2px solid #FF792E;
  background-color: #FF792E;
}
.theme-orange .form-title {
  color: #FF792E;
}
.theme-orange .title {
  color: #FF792E;
}
.theme-orange svg > path {
  fill: #FF792E;
}
.theme-orange .counter_box svg path {
  fill: #FF792E;
}
.theme-orange .question-content svg > path {
  fill: #fff;
  stroke: #FF792E;
}
.theme-orange .form_items .item-block svg > path {
  stroke: #FF792E;
}
.theme-orange .form_items .conditional-label {
  color: #FF792E;
  font-size: 20px;
  font-family: Salsa;
}
.theme-orange .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #FF792E;
}
.theme-orange .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-orange .form_items ul li label {
  color: #FF792E;
  border: 2px solid #FF792E;
}
.theme-orange .form_items ul li label.form-label {
  color: #FF792E;
}
.theme-orange .form_items ul li .message-field textarea:focus {
  border: 2px solid #FF792E;
}
.theme-orange .form-field .form-label {
  color: #FF792E;
}
.theme-orange .form-field .form-control {
  border: 1px solid #FF792E;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-purple {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-purple .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-purple .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-purple.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-purple .reg-btn .submit-btn {
  border: 2px solid #7000FF;
  background-color: #7000FF;
}
.theme-purple .form-title {
  color: #7000FF;
}
.theme-purple .title {
  color: #7000FF;
}
.theme-purple svg > path {
  fill: #7000FF;
}
.theme-purple .counter_box svg path {
  fill: #7000FF;
}
.theme-purple .question-content svg > path {
  fill: #fff;
  stroke: #7000FF;
}
.theme-purple .form_items .item-block svg > path {
  stroke: #7000FF;
}
.theme-purple .form_items .conditional-label {
  color: #7000FF;
  font-size: 20px;
  font-family: Salsa;
}
.theme-purple .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #7000FF;
}
.theme-purple .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-purple .form_items ul li label {
  color: #7000FF;
  border: 2px solid #7000FF;
}
.theme-purple .form_items ul li label.form-label {
  color: #7000FF;
}
.theme-purple .form_items ul li .message-field textarea:focus {
  border: 2px solid #7000FF;
}
.theme-purple .form-field .form-label {
  color: #7000FF;
}
.theme-purple .form-field .form-control {
  border: 1px solid #7000FF;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-yellow {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-yellow .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-yellow .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-yellow.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-yellow .reg-btn .submit-btn {
  border: 2px solid #FFBF00;
  background-color: #FFBF00;
}
.theme-yellow .form-title {
  color: #FFBF00;
}
.theme-yellow .title {
  color: #FFBF00;
}
.theme-yellow svg > path {
  fill: #FFBF00;
}
.theme-yellow .counter_box svg path {
  fill: #FFBF00;
}
.theme-yellow .question-content svg > path {
  fill: #fff;
  stroke: #FFBF00;
}
.theme-yellow .form_items .item-block svg > path {
  stroke: #FFBF00;
}
.theme-yellow .form_items .conditional-label {
  color: #FFBF00;
  font-size: 20px;
  font-family: Salsa;
}
.theme-yellow .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #FFBF00;
}
.theme-yellow .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-yellow .form_items ul li label {
  color: #FFBF00;
  border: 2px solid #FFBF00;
}
.theme-yellow .form_items ul li label.form-label {
  color: #FFBF00;
}
.theme-yellow .form_items ul li .message-field textarea:focus {
  border: 2px solid #FFBF00;
}
.theme-yellow .form-field .form-label {
  color: #FFBF00;
}
.theme-yellow .form-field .form-control {
  border: 1px solid #FFBF00;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-navy {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-navy .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-navy .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-navy.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-navy .reg-btn .submit-btn {
  border: 2px solid #004165;
  background-color: #004165;
}
.theme-navy .form-title {
  color: #004165;
}
.theme-navy .title {
  color: #004165;
}
.theme-navy svg > path {
  fill: #004165;
}
.theme-navy .counter_box svg path {
  fill: #004165;
}
.theme-navy .question-content svg > path {
  fill: #fff;
  stroke: #004165;
}
.theme-navy .form_items .item-block svg > path {
  stroke: #004165;
}
.theme-navy .form_items .conditional-label {
  color: #004165;
  font-size: 20px;
  font-family: Salsa;
}
.theme-navy .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #004165;
}
.theme-navy .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-navy .form_items ul li label {
  color: #004165;
  border: 2px solid #004165;
}
.theme-navy .form_items ul li label.form-label {
  color: #004165;
}
.theme-navy .form_items ul li .message-field textarea:focus {
  border: 2px solid #004165;
}
.theme-navy .form-field .form-label {
  color: #004165;
}
.theme-navy .form-field .form-control {
  border: 1px solid #004165;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-pest {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-pest .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-pest .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-pest.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-pest .reg-btn .submit-btn {
  border: 2px solid #58D3B9;
  background-color: #58D3B9;
}
.theme-pest .form-title {
  color: #58D3B9;
}
.theme-pest .title {
  color: #58D3B9;
}
.theme-pest svg > path {
  fill: #58D3B9;
}
.theme-pest .counter_box svg path {
  fill: #58D3B9;
}
.theme-pest .question-content svg > path {
  fill: #fff;
  stroke: #58D3B9;
}
.theme-pest .form_items .item-block svg > path {
  stroke: #58D3B9;
}
.theme-pest .form_items .conditional-label {
  color: #58D3B9;
  font-size: 20px;
  font-family: Salsa;
}
.theme-pest .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #58D3B9;
}
.theme-pest .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-pest .form_items ul li label {
  color: #58D3B9;
  border: 2px solid #58D3B9;
}
.theme-pest .form_items ul li label.form-label {
  color: #58D3B9;
}
.theme-pest .form_items ul li .message-field textarea:focus {
  border: 2px solid #58D3B9;
}
.theme-pest .form-field .form-label {
  color: #58D3B9;
}
.theme-pest .form-field .form-control {
  border: 1px solid #58D3B9;
}

.wrapper {
  width: 100%;
}
.wrapper.theme-light_red {
  max-width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wrapper.theme-light_red .left-shape svg {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
}
.wrapper.theme-light_red .logo-area2 {
  top: 30px;
  right: 80px;
  z-index: 222;
}

.theme-light_red.section-bg {
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.theme-light_red .reg-btn .submit-btn {
  border: 2px solid #FA5354;
  background-color: #FA5354;
}
.theme-light_red .form-title {
  color: #FA5354;
}
.theme-light_red .title {
  color: #FA5354;
}
.theme-light_red svg > path {
  fill: #FA5354;
}
.theme-light_red .counter_box svg path {
  fill: #FA5354;
}
.theme-light_red .question-content svg > path {
  fill: #fff;
  stroke: #FA5354;
}
.theme-light_red .form_items .item-block svg > path {
  stroke: #FA5354;
}
.theme-light_red .form_items .conditional-label {
  color: #FA5354;
  font-size: 20px;
  font-family: Salsa;
}
.theme-light_red .form_items textarea {
  font-weight: 400;
  font-family: Salsa;
  border: 1px solid #FA5354;
}
.theme-light_red .form_items textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.theme-light_red .form_items ul li label {
  color: #FA5354;
  border: 2px solid #FA5354;
}
.theme-light_red .form_items ul li label.form-label {
  color: #FA5354;
}
.theme-light_red .form_items ul li .message-field textarea:focus {
  border: 2px solid #FA5354;
}
.theme-light_red .form-field .form-label {
  color: #FA5354;
}
.theme-light_red .form-field .form-control {
  border: 1px solid #FA5354;
}

.video-player {
  width: 85%;
  margin: -45px auto 0px;
  border-radius: 36px;
  overflow: hidden;
}
.video-player > img {
  z-index: 1;
}
.video-player .popup-btn {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 100%;
  opacity: 90%;
  z-index: 22;
}

.video2-player {
  max-width: 100%;
  height: 274px;
  margin-top: 60px;
  border-radius: 16px;
  margin: 60px 25px 0px;
}
.video2-player > img {
  max-width: none;
  height: auto;
  z-index: 1;
}
.video2-player .popup-btn {
  top: 85px;
  left: 50%;
  width: 105px;
  height: 105px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #ffffff;
  border-radius: 100%;
  opacity: 60%;
  z-index: 22;
}

#videoPopup .modal-header {
  border-bottom: none;
  padding: 0px;
}
#videoPopup .modal-header .btn-close {
  top: -22px;
  right: -3px;
  width: 25px;
  height: 25px;
  background-color: var(--theme-white);
  z-index: 333;
  -webkit-filter: invert(1);
          filter: invert(1);
  opacity: 1;
}
#videoPopup .modal-header .btn-close:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#videoPopup .modal-body {
  height: 420px;
}
#videoPopup .modal-body iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1599.98px) {
  .left-content {
    width: 45%;
  }
  .right-content {
    width: 55%;
  }
  .shape-style-1 svg {
    max-width: 50%;
    top: -115px;
  }
  .block-shadow-shape.selector-position-top-right .selector {
    bottom: 46%;
    right: 20px;
  }
  .question-content svg,
  .item-block svg {
    max-width: 100%;
  }
  .reg_form_panel {
    background: none !important;
  }
}
@media screen and (max-width: 1439.99px) {
  .item-block {
    width: 240px;
    margin: auto;
  }
  .item-block svg {
    top: 0px;
    left: 6px;
  }
  .question-content .title {
    font-size: 28px;
    line-height: 42px;
  }
  .thumb-question-box .thumb-content .left-img > img {
    top: 23px;
    left: 11px;
  }
  .thumb-question-box .thumb-content .right-img > img {
    top: 12px;
    right: 11px;
    width: 45%;
  }
  .thumb-question-box .question-title .title.title-style3 {
    font-size: 28px;
    line-height: 42px;
  }
  .question-box .question-title .title.title-style3 {
    font-size: 28px;
    line-height: 42px;
  }
  .checkbox-style1 label .selector {
    left: -5px;
  }
  .checkbox-style1 label .selector:before {
    bottom: 15px;
    background-size: 30px;
  }
  .checkbox-style1 label .selector:after {
    -webkit-mask-size: 50px;
  }
  .selector-position-middle-right .selector {
    right: 10px;
  }
  .selector-position-middle-right .selector:after {
    -webkit-mask-size: 45px;
  }
  .selector-position-bottom-left .selector:before {
    bottom: 32px;
    left: 14px;
  }
  .selector-position-bottom-left .selector:after {
    -webkit-mask-size: 45px;
  }
  .block-shadow-shape.selector-position-top-right .selector {
    bottom: 42%;
  }
  .audio-content {
    width: 85%;
  }
  .error-message {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 1229.98px) {
  .item-block {
    width: 220px;
  }
}
@media screen and (max-width: 1199.98px) {
  .shape-style-1 svg {
    display: none;
  }
  .theme-sky .shape-style-1 {
    background-color: #00C2FF;
  }
  .theme-green .shape-style-1 {
    background-color: #1DBF73;
  }
  .theme-orange .shape-style-1 {
    background-color: #FF792E;
  }
  .theme-purple .shape-style-1 {
    background-color: #7000FF;
  }
  .theme-yellow .shape-style-1 {
    background-color: #FFBF00;
  }
  .theme-navy .shape-style-1 {
    background-color: #004165;
  }
  .theme-pest .shape-style-1 {
    background-color: #58D3B9;
  }
  .theme-light_red .shape-style-1 {
    background-color: #FA5354;
  }
  .pt100 {
    padding-top: 0;
  }
  .reg_form_panel {
    margin: auto;
    width: 100%;
    padding: 0;
  }
  .left-bg {
    display: none;
  }
  .question-details {
    text-align: left;
  }
  .form-field .form-control {
    padding: 16px 24px;
  }
  .left-content {
    width: 100%;
    padding: 50px 30px 20px;
  }
  .left-content .inner-content-box .logo-area {
    margin-bottom: 20px;
  }
  .left-content .inner-content-box .logo-area img {
    width: 150px;
  }
  .left-content .inner-content-box img {
    width: 230px;
  }
  .left-content .inner-content-box .title {
    font-size: 26px;
    line-height: 36px;
  }
  .left-content .inner-content-box .desc {
    width: 70%;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .right-content {
    width: 100%;
    max-width: 850px;
    margin: auto;
    position: static;
  }
  .inner-content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
  }
  .question-content .title {
    font-size: 30px;
    line-height: 42px;
  }
  .question-content .title.title-style2, .question-content .title.title-style3 {
    font-size: 26px;
    line-height: 36px;
  }
  .thumb-question-box .thumb-content .left-img .letter-shape {
    bottom: 12px;
    left: 15px;
  }
  .thumb-question-box .thumb-content .left-img .letter-shape img {
    width: 50px;
  }
  .thumb-question-box .thumb-content .left-img .letter-shape .letter {
    font-size: 26px;
    line-height: 32px;
  }
  .thumb-question-box .thumb-content .right-img .letter-shape {
    bottom: 17px;
    right: 27px;
  }
  .thumb-question-box .thumb-content .right-img .letter-shape img {
    width: 50px;
  }
  .thumb-question-box .thumb-content .right-img .letter-shape .letter {
    top: 10px;
    right: 16%;
    font-size: 26px;
    line-height: 32px;
  }
  .thumb-question-box .question-title .title.title-style3 {
    font-size: 26px;
    line-height: 36px;
  }
  .question-box .question-title .title.title-style3 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1023.98px) {
  .thumb-question-box .thumb-content .left-img > img {
    top: 18px;
    left: 11px;
  }
}
@media screen and (max-width: 991.98px) {
  .theme-sky .section-bg:after {
    background-color: #00C2FF;
  }
  .theme-green .section-bg:after {
    background-color: #1DBF73;
  }
  .theme-orange .section-bg:after {
    background-color: #FF792E;
  }
  .theme-purple .section-bg:after {
    background-color: #7000FF;
  }
  .theme-yellow .section-bg:after {
    background-color: #FFBF00;
  }
  .theme-navy .section-bg:after {
    background-color: #004165;
  }
  .theme-pest .section-bg:after {
    background-color: #58D3B9;
  }
  .theme-light_red .section-bg:after {
    background-color: #FA5354;
  }
  .wrapper.wrapper-style2 {
    position: relative;
  }
  .wrapper.wrapper-style2::after {
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 250px;
    position: absolute;
    background-color: #004165;
  }
  .wrapper.step-progressbar_bg {
    position: relative;
  }
  .wrapper.step-progressbar_bg::after {
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 250px;
    position: absolute;
    background-color: #ff792e;
  }
  .wrapper .logo-area2 {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    position: relative !important;
  }
  .reg_form_panel.reg-form_style {
    max-width: 70%;
  }
  .video-question-box .question-content svg {
    display: none;
  }
  .video-question-box .video-player {
    margin-top: 135px;
  }
  .thumb-question-box .thumb-content {
    margin-bottom: 60px;
    z-index: 333;
  }
  .thumb-question-box .thumb-content .left-img > img {
    top: 33px;
    left: 19px;
  }
  .thumb-question-box .thumb-content .left-img .letter-shape {
    bottom: 40px;
    left: 40px;
  }
  .thumb-question-box .thumb-content .right-img > img {
    top: 18px;
    right: 17px;
  }
  .thumb-question-box .thumb-content .right-img .letter-shape {
    bottom: 39px;
    right: 55px;
  }
  .thumb-question-box .question-title {
    width: 90%;
    margin: auto auto 30px;
  }
  .right-content {
    max-width: 750px;
  }
  .left-shape .logo-area2 {
    top: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .theme-sky .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-sky .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-sky .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-sky .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-sky .step-progress .step:after {
    display: none;
  }
  .theme-sky .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .theme-green .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-green .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-green .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-green .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-green .step-progress .step:after {
    display: none;
  }
  .theme-green .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .theme-orange .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-orange .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-orange .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-orange .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-orange .step-progress .step:after {
    display: none;
  }
  .theme-orange .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .theme-purple .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-purple .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-purple .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-purple .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-purple .step-progress .step:after {
    display: none;
  }
  .theme-purple .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .theme-yellow .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-yellow .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-yellow .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-yellow .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-yellow .step-progress .step:after {
    display: none;
  }
  .theme-yellow .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .theme-navy .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-navy .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-navy .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-navy .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-navy .step-progress .step:after {
    display: none;
  }
  .theme-navy .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .theme-pest .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-pest .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-pest .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-pest .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-pest .step-progress .step:after {
    display: none;
  }
  .theme-pest .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .theme-light_red .step-progress {
    top: 130px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-light_red .step-progress .step {
    margin-top: 0px !important;
  }
  .theme-light_red .step-progress .step:not(:last-child) {
    margin-right: 20px;
  }
  .theme-light_red .step-progress .step svg {
    width: 55px;
    height: 55px;
  }
  .theme-light_red .step-progress .step:after {
    display: none;
  }
  .theme-light_red .step-progress .step .number {
    font-size: 28px;
    line-height: 40px;
  }
  .question-content {
    max-width: 630px;
    margin: auto;
  }
  .question-content.question-content_style3 {
    max-width: 100% !important;
    margin-top: 90px;
  }
  .question-content.question-content_style3 svg {
    opacity: 0;
    visibility: hidden;
  }
  .question-content .title.title-style2 {
    top: 0px;
    color: #fff;
  }
  .question-content .title.title-style3 {
    top: -112px;
    left: 0px;
    right: 0px;
    text-align: center;
    color: #fff;
    position: absolute;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .question-content .question-title-wrapper .title.title-style3 {
    top: -45px;
    left: 50%;
    color: #fff;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .form_items {
    max-width: 90%;
    margin: auto;
    margin-top: 25px;
  }
  button#nextBtn,
  button#prevBtn,
  button#prevBtn2,
  button#prevBtn3,
  button#prevBtn4 {
    background-size: 65%;
    background-position: center;
  }
  .top-shape svg,
  .left-shape svg {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .logo-area img {
    max-width: 200px;
  }
  .content-wrapper.reg_form-content {
    padding: 30px;
  }
  .right-content .reg_form_panel {
    padding: 30px;
  }
  .reg_form_panel.reg-form_style {
    max-width: 90%;
  }
  .multisteps-form-panel.active .form-content.reg-bg-shape {
    background-position: 70%;
  }
  .question-content {
    max-width: 90%;
    margin: auto;
  }
  .question-content .title {
    font-size: 25px;
    line-height: 35px;
    padding: 10px;
    left: 35px;
  }
  .thumb-question-box .thumb-content .left-img > img {
    top: 31px;
    left: 19px;
    width: 43%;
  }
  .thumb-question-box .thumb-content .right-img > img {
    top: 20px;
    right: 17px;
    width: 43%;
  }
  .question-box .thumb-question-content {
    margin: 60px 25px 0px;
  }
  .question-box .thumb-question-content .left-img .letter-shape img {
    width: 50px;
    height: 50px;
  }
  .question-box .thumb-question-content .left-img .letter-shape .letter {
    font-size: 25px;
    line-height: 32px;
  }
  .question-box .thumb-question-content .right-img .letter-shape img {
    width: 50px;
    height: 50px;
  }
  .question-box .thumb-question-content .right-img .letter-shape .letter {
    font-size: 25px;
    line-height: 32px;
  }
  .question-box .question-title {
    margin: 0px 25px 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .logo-area img {
    max-width: 150px;
  }
  .question-content .title {
    left: 50%;
    top: 10px;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-right: 0px;
  }
  .question-content.question-content_style2 svg {
    opacity: 0;
  }
  .reg-form_style .form-field .form-label {
    font-size: 18px;
    line-height: 28px;
  }
  .right-content .form-step-style .form-field .form-label {
    font-size: 20px;
    line-height: 30px;
    margin-left: 0px;
  }
  .form_items {
    max-width: 90%;
    margin: auto;
    margin-top: 25px;
  }
  .form_items ul li label {
    font-size: 20px;
    line-height: 29px;
    padding: 15px;
  }
  .checkbox-style7 label,
  .checkbox-style6 label {
    font-size: 20px;
    line-height: 36px;
  }
  .subject-img {
    display: none;
  }
  .left-content {
    padding: 50px 40px 20px;
  }
  .left-content .inner-content-box .logo-area img {
    width: 200px;
  }
  .left-content .inner-content-box .desc {
    width: 100%;
  }
  .right-content .form-register-style .question-content {
    width: 100%;
    max-height: 70px;
  }
  .right-content .question-content {
    max-width: 100%;
    padding: 0px;
    margin: 0px;
  }
  .right-content .question-content svg {
    visibility: hidden;
    height: 140px;
  }
  .question-content svg {
    width: 100%;
  }
  .thumb-question-box .thumb-content .left-img > img {
    top: 41px;
    left: 19px;
    width: 40%;
  }
  .thumb-question-box .thumb-content .left-img .letter-shape {
    bottom: 40px;
  }
  .thumb-question-box .thumb-content .right-img > img {
    top: 29px;
    right: 17px;
    width: 40%;
  }
  .thumb-question-box .thumb-content .right-img .letter-shape {
    bottom: 48px;
    right: 48px;
  }
  .item-block {
    width: 220px;
    margin-bottom: 10px;
  }
  .item-block svg {
    top: -18px;
  }
  .select-style2 .nice-select .current {
    font-size: 20px;
  }
  .item-selection .item-selection-title .title {
    font-size: 22px;
    line-height: 32px;
  }
  .item-selection label {
    font-size: 20px;
  }
  .item-selection label:not(:last-child) {
    margin-right: 20px !important;
  }
  .upload-style3 .upload-document-title .title,
  .upload-style3 .uoload-your-resume .title {
    font-size: 22px;
    line-height: 32px;
  }
  .form-top-content .title {
    font-size: 32px !important;
    line-height: 46px;
  }
  .error-message {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .reg-btn .submit-btn {
    width: 170px;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    padding: 12px 40px;
  }
  .prev_btn svg,
  .next_btn svg {
    width: 75px;
    height: 75px;
  }
  .prev_btn.submit-btn-style svg,
  .next_btn.submit-btn-style svg {
    width: 140px;
  }
  .theme-green .radio-style4 label:before {
    right: 31px;
    width: 20px;
    height: 20px;
  }
  .theme-green .radio-style4 label:after {
    width: 32px;
    height: 32px;
  }
  .theme-purple .radio-style4 label:before {
    right: 31px;
    width: 20px;
    height: 20px;
  }
  .theme-purple .radio-style4 label:after {
    width: 32px;
    height: 32px;
  }
  .radio-style5 label:before {
    top: 17px;
  }
}
@media screen and (max-width: 419.98px) {
  .thumb-question-box .thumb-content .left-img > img {
    top: 31px;
    left: 19px;
    width: 40%;
  }
  .thumb-question-box .thumb-content .right-img > img {
    top: 20px;
    right: 17px;
    width: 40%;
  }
}
@media screen and (max-width: 399.98px) {
  .item-block svg {
    top: 0px;
    width: 90%;
  }
  .item-block label {
    padding: 10px;
  }
  .item-block label img {
    width: 83%;
    top: 32px;
    left: -11px;
  }
  .item-block label.error {
    top: -25px;
    left: 90%;
  }
  .right-content .question-content svg {
    visibility: hidden;
    height: 110px;
  }
  .right-content .question-content .title {
    font-size: 20px;
    line-height: 30px;
  }
  .right-content .col-6 {
    padding-left: 0;
    padding-right: 0;
  }
  .right-content .form-step-style .form-field .form-label {
    font-size: 16px;
    line-height: 26px;
  }
  .item-selection label:not(:last-child) {
    margin-right: 10px !important;
    margin-bottom: 10px !important;
  }
  .selector-position-bottom-right .selector {
    bottom: 22px;
    right: 25px;
  }
  .selector-position-bottom-right input[type=checkbox] {
    bottom: 22px;
    right: 25px;
  }
  .selector-position-bottom-right input[type=radio] {
    bottom: 22px;
    right: 25px;
  }
  .upload-style3 .upload-area .file-number {
    display: none;
  }
  .step-progress .step svg {
    width: 45px !important;
    height: 45px !important;
  }
  .step-progress .step .number {
    top: 4px;
    left: 17px;
    font-size: 22px !important;
    line-height: 32px !important;
  }
}