@font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/muli/Muli-Regular.ttf");
}

@font-face {
  font-family: "Muli-SemiBold";
  src: url("../fonts/muli/Muli-SemiBold.ttf");
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.error {
  border-color: #dc3545 !important;
  white-space: nowrap;
}

body {
  font-family: "Muli-Regular";
  font-size: 15px;
  color: #999;
  margin: 0;
}

:focus {
  outline: none;
}

textarea {
  resize: none;
}

input,
textarea,
select,
button {
  font-family: "Muli-Regular";
  font-size: 15px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

textarea {
  resize: none;
}

img {
  max-width: 100%;
}

.d-none {
  display: none;
}

.wrapper {
  height: 100vh;
  display: flex;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: url('../img/bg.svg') transparent;
  background-size: auto 100%;
  z-index: -1;
}

.alert {
  padding: .12rem 1.25rem;
  border-radius: 4rem;
}

.alert-danger {
  border-color: transparent;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert {
  position: relative;
  padding: .15rem 1.25rem;
  font-size: 18px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 100px;
}

.text-success {
  color: #28a745 !important;
}

.wizard {
  width: 920px;
  border-radius: 12px;
  overflow: hidden;
  transition: .2s;
  position: relative;
}

.wizard>.steps {
  position: absolute;
  top: 27.44%;
  right: 30%;
  transform: translateX(50%);
  z-index: 9;
}

.wizard>.steps .current-info,
.wizard>.steps .number {
  display: none;
}

.wizard>.steps ul {
  display: flex;
  justify-content: center;
}

.wizard>.steps li a {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a7d9b4;
  margin-right: 78px;
  position: relative;
}

.wizard>.steps li a:before {
  content: "";
  width: 58px;
  height: 2px;
  background: #a7d9b4;
  position: absolute;
  right: 22px;
  top: 5px;
}

.wizard>.steps li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #33a852;
  position: absolute;
  left: -68px;
  top: 5px;
  transition: all 0.6s ease;
}

.wizard>.steps li.first a {
  background: #33a852;
}

.wizard>.steps li.checked a {
  background: #33a852;
}

.wizard>.steps li.checked a:after {
  width: 58px;
}

.wizard>.steps li:last-child a {
  margin-right: 0;
}

.wizard>.steps li:first-child a:before {
  display: none;
}

.wizard>.steps li:first-child a:after {
  display: none;
}

.wizard>.content {
  position: relative;
  height: 521px;
}

.inner {
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.image-holder {
  width: 40%;
  color: #4c4c4c;
  background: #d1ecd7;
  text-align: center;
  border-right: 1px solid #eee;
  height: 521px;
}

.image-holder h1 {
  font-size: 22px;
  font-weight: 600;
  color: #28a745;
  text-transform: uppercase;
  display: block;
  line-height: 24px;
  margin-top: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.image-holder h5 {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #448b54;
  margin-bottom: 30px;
  text-align: center;
  padding: 10px 40px;
}

.form-content {
  width: 60%;
  padding-top: 65px;
  padding-left: 51px;
  padding-right: 51px;
}

.form-header {
  text-align: center;
}

h3 {
  font-family: "Muli-SemiBold";
  font-size: 22px;
  color: #28a745;
  text-transform: uppercase;
  letter-spacing: 7px;
  padding: 5px 15px;
  display: inline-block;
  border: 1px solid #28a745;
  margin-bottom: 75px;
}

p {
  font-family: "Muli-SemiBold";
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 26px;
}

.form-row {
  display: flex;
  margin-bottom: 18px;
}

.form-row .form-holder {
  width: 50%;
  margin-right: 30px;
}

.form-row .form-holder:last-child {
  margin-right: 0;
}

.form-row .form-holder.w-100 {
  width: 100%;
  margin-right: 0;
}

.form-row .select {
  width: 50%;
  margin-right: 30px;
}

.form-row .select .form-holder {
  width: 100%;
  margin-right: 0;
}

.select {
  position: relative;
}

.select .select-control {
  height: 37px;
  border-bottom: 2px solid #e6e6e6;
  width: 100%;
  color: #999;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.select .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background: #fff;
  z-index: 9;
  border: 1px solid #81acee;
}

.select .dropdown li {
  padding: 5px 10px;
}

.select .dropdown li:hover {
  background: #81acee;
  color: #fff;
}

.form-holder {
  position: relative;
}

.form-holder i {
  position: absolute;
  bottom: 7px;
  right: 0;
  font-size: 17px;
}

.form-control {
  height: 40px;
  border: 1px solid #e6e6e6;
  width: 100%;
  padding-left: 10px;
  color: #666;
}

.form-control:focus {
  border-color: #e9e0cf;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-moz-placeholder {
  color: #999;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control:-moz-placeholder {
  color: #999;
}

.form-control:disabled {
  background-color: #eee;
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #999;
}

select.form-control option[value=""][disabled] {
  display: none;
}

textarea.form-control {
  padding: 8px 8px;
  background: url("../images/textarea-bg.png") no-repeat right bottom 3px;
}

a#create-acc,
a#hv-acc,
#forgot {
  color: #4d4d4d;
  text-decoration: underline;
  font-size: 14px;
  padding-top: 8px;
}

a#create-acc:hover,
a#hv-acc:hover,
#forgot:hover {
  color: #000000;
}

.float-right {
  float: right;
}

.wrapper form section {
  overflow-x: hidden;
}

.lng-btn {
  padding: 2px 10px;
  z-index: 3;
  user-select: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 6px;
  border: none;
  background: #28a745;
  font-family: "Muli-SemiBold";
  color: #fff;
  cursor: pointer;
}

.actions {
  position: absolute;
  bottom: 26px;
  right: 51px;
}

.actions ul {
  display: flex;
}

.actions li a,
.btn {
  padding: 12px 36px;
  border: none;
  background: #28a745;
  font-family: "Muli-SemiBold";
  color: #fff;
  cursor: pointer;
}

.actions li a:before {
  content: '\f301';
  position: absolute;
  top: 14px;
  right: 28px;
  font-family: Material-Design-Iconic-Font;
}

a.btn.login:before {
  content: '\f26b';
  position: absolute;
  top: 13px;
  right: 28px;
  font-family: Material-Design-Iconic-Font;
}

.actions li a:hover,
.btn:hover,
.lng-btn:hover {
  background: #46b35f;
}

.actions li:first-child a {
  width: 125px;
  padding-left: 48px;
}

.actions li:first-child a:before {
  content: '\f2ff';
  position: absolute;
  top: 14px;
  left: 26px;
  font-family: Material-Design-Iconic-Font;
}

.actions li:nth-child(2) a,
.actions li:last-child a {
  margin-left: 20px;
}

.actions li:last-child a {
  width: 124px;
  background: #28a745;
  color: #fff;
}

.actions li:last-child a:hover {
  background: #28a745;
}

.actions li:last-child a:before {
  content: '\f26b';
  position: absolute;
  top: 13px;
  right: 28px;
  font-family: Material-Design-Iconic-Font;
}

.actions li[aria-disabled="true"] a {
  opacity: 0;
  transition: all 1s;
}

.actions li[aria-disabled="false"]~li a {
  background: #28a745;
  color: #fff;
}

.actions li[aria-disabled="false"]~li a:hover {
  background: #33a852;
}

.checkbox-tick label {
  cursor: pointer;
  display: inline-block;
  padding-left: 23px;
  position: relative;
}

.checkbox-tick label.male {
  margin-right: 26px;
}

.checkbox-tick input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-tick input:checked~.checkmark {
  background: #999;
}

.checkbox-tick input:checked~.checkmark:after {
  display: block;
}

.checkbox-tick .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 13px;
  width: 13px;
  border: 1px solid #999;
  border-radius: 50%;
  font-family: Material-Design-Iconic-Font;
  color: #fff;
  font-size: 11px;
}

.checkbox-tick .checkmark:after {
  top: 0;
  left: 2px;
  position: absolute;
  display: none;
  content: '\f26b';
}

.checkbox-circle {
  position: relative;
  padding-left: 23px;
  margin-top: 41px;
  margin-bottom: 10px;
  width: 63%;
}

.checkbox-circle.mt-24 {
  margin-top: 24px;
}

.checkbox-circle label {
  cursor: pointer;
  color: #999;
  user-select: none;
  margin-left: 10px;
  line-height: 2.3;
  transform: translateY(-5px);
}

.checkbox-circle label a {
  color: #d1ecd7;
}

.checkbox-circle label a:hover {
  color: #89b843;
}

.checkbox-circle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-circle input:checked~.checkmark:after {
  display: block;
}

.checkbox-circle .checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  padding: 2px;
  height: 22px;
  width: 22px;
  /* border-radius: 0.25rem; */
  border: 1px solid #999;
}

.checkbox-circle .checkmark:after {
  content: "";
  width: 16.5px;
  height: 16.5px;
  /* border-radius: 0.25rem; */
  background: #4CAF50;
  position: absolute;
  display: none;
}

.image-holder img {
  margin-top: 100px;
  width: 200px;
}

.msg {
  text-align: center;
  padding: 0 8%;
}

@media (max-width: 991px) {
  .wizard {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .msg {
    margin-left: 0;
  }

  .inner {
    display: block;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
  }

  .image-holder {
    width: 100%;
  }

  .form-content {
    width: 100%;
    padding-top: 30px;
    padding-left: 21px;
    padding-right: 21px;
  }

  .form-row {
    display: block;
  }

  .form-row .form-holder,
  .form-row .select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 18px;
  }

  .wrapper {
    height: 1201px;
    background: none;
  }

  .checkbox-circle {
    width: 100%;
  }

  .wizard {
    height: 100%;
  }

  .wizard>.steps {
    right: 50%;
    top: 38%;
    transform: translateX(50%);
  }

  .actions {
    right: 20px;
    transform: none;
    bottom: 5%;
  }

  .image-holder img {
    margin-top: 0;
  }

  .image-holder {
    height: auto;
    padding: 30px 12px;
  }
}


.loading {
  display: none;
  left: 0 !important;
  opacity: 0.8;
  background: #ffffff66;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* that is one new CSS for loging */
.fs-42 {
  font-size: 42px;
}

.lgo_btn {
  background-color: #1DBF74;
  border: 1px solid #1DBF74;
  color: white;
}

.cb {
  color: #1DBF74;
}

.cb:hover {
  color: #d7e60e;
}

.img_side_m {
  height: 100vh;

}

.img_side {
  background-image: url('/../../images/profile/imgside.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -99;
}

.img-first {
  background-image: url('/../../images/profile/body.png');
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -99;
}

.whit_bg {
  background-color: white;
}

.fivePIX {
  font-size: 56px;
  font-weight: 800;
}

.carousel-inner {
  margin-top: -9rem;
}

.carousel-indicators {
  position: absolute;
  top: 52%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}

.carousel-dark .carousel-indicators [data-bs-target] {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #1DBF74;
}

/* =================================== */
@media screen and (max-width: 600px) {
  .img_side {
    display: none;

  }

  .img_side_m {
    background-image: url('/../../images/profile/imgside.png');
    height: 100vh;

  }

  .img_side_m form {
    padding: 20px;
    border-radius: 20px;
    background-color: white;
  }

  .fs-42 {
    font-size: 42px;
    color: white !important;
  }
}