@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:400,500,600,700|Source+Sans+Pro:400,600,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

*,
*:after,
*:before {
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
  --background-size: 50vw;
  --fieldbackground: #f6f6f7;
  --maincolor: #7f3c48;
  /* background-position: left top; */
  /* background-repeat: no-repeat; */
}

body {
  background: rgb(241, 241, 241);
  /* background: linear-gradient(132deg, rgba(94, 38, 38, 1) 0%, rgba(208, 62, 62, 1) 100%); */
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

p {
  color: rgb(43, 43, 43);
  font-weight: 500;
}

b {
  color: rgb(43, 43, 43);
  font-weight: 600;
}

#heading {
  text-transform: uppercase;
  color: var(--maincolor);
  font-weight: normal;
}

#preloader {
  background: #fff url(/static/landingassets/assets/img/preloader.gif) no-repeat
    center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
}
#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
  box-shadow: 0 15px 60px 0 rgba(90, 116, 148, 0.4);
  border-radius: 20px;
  padding: 35px 35px 15px 35px;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

/* jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj */
.wrapper {
  min-height: 100vh;
  display: flex;
  padding: 0px 15px;
  justify-content: center;
}

@media screen and (max-width: 700px), (max-height: 500px) {
  .wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.card-form {
  max-width: 800px;
  margin: auto;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .card-form {
    max-width: 800px;

    margin: 0 auto;
  }
}

.card-form__inner {
  background: #fff;
  box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
  border-radius: 20px;
  padding: 35px;
}

.card-form img {
  width: 30%;
  padding-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 480px) {
  .card-form__inner {
    padding: 25px;
    padding-top: 65px;
  }
}

@media screen and (max-width: 360px) {
  .card-form__inner {
    padding: 15px;
    padding-top: 65px;
  }
}

.card-form__row {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 480px) {
  .card-form__row {
    flex-wrap: wrap;
  }
}

.card-form__col {
  flex: auto;
  margin-right: 35px;
}

.card-form__col:last-child {
  margin-right: 0;
}

@media screen and (max-width: 480px) {
  .card-form__col {
    margin-right: 0;
    flex: unset;
    width: 100%;
    margin-bottom: 20px;
  }

  .card-form__col:last-child {
    margin-bottom: 0;
  }
}

.card-form__col.-cvv {
  max-width: 150px;
}

@media screen and (max-width: 480px) {
  .card-form__col.-cvv {
    max-width: initial;
  }
}

.card-form__group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.card-form__group .card-input__input_select {
  flex: 1;
  margin-right: 5px;
}

.card-form__group #ydob {
  margin-right: 5px;
  border-radius: 25px 0px 0px 25px;
}

.card-form__group #mdob {
  margin-right: 5px;
  border-radius: 0px 0px 0px 0px;
}

.card-form__group .card-input__input_select:last-child {
  margin-right: 0;
  border-radius: 0px 25px 25px 0px;
}

.card-form__button {
  width: 100%;
  height: 55px;
  background: var(--maincolor);
  border: none;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 500;
  font-family: "Source Sans Pro", sans-serif;
  box-shadow: 3px 10px 20px 0px rgba(35, 100, 210, 0.3);
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
}

.card-form__button :hover {
  width: 100%;
  height: 55px;
  background: #83a8e7;
  border: none;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 500;
  font-family: "Source Sans Pro", sans-serif;
  box-shadow: 3px 10px 15px 0px rgba(35, 100, 210, 0.3);
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .card-form__button {
    margin-top: 10px;
  }
}

.form-card .row {
  flex-wrap: nowrap;
  padding: 0px 15px 15px 15px;
}

.form-card .row .vaction-button {
  font-weight: 700;
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 0px 20px 20px 0px;

  width: 40%;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  color: #0d1c2b;
  background-color: var(--fieldbackground);
  font-size: 16px;
  letter-spacing: 1px;
}

.form-card .row .vaction-button:hover,
.form-card .row .vaction-button:focus {
  background-color: #c0caee;
}

#msform .verify-input {
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 20px 0px 0px 20px;
  margin: 0 5px 0px 0;

  width: 100%;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  color: #2c3e50;
  background-color: var(--fieldbackground);
  font-size: 16px;
  letter-spacing: 1px;
}

.card-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.card-radio .card-radio__label {
  background-color: var(--fieldbackground);
  display: flex;
  justify-content: center;
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
}

.male {
  margin-right: 5px;
  border-radius: 25px 0px 0px 25px;
}

.female {
  margin-left: 5px;
  border-radius: 0px 25px 25px 0px;
}

.card-radio .card-input__radio {
  display: none;
}

#male:checked ~ .male,
#female:checked ~ .female {
  background-color: var(--maincolor);
  color: var(--fieldbackground);
}

.card-input__input_select {
  /* -webkit-appearance: none; */
  /* background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUxJREFUeNrM1sEJwkAQBdCsngXPHsQO9O5FS7AAMVYgdqAd2IGCDWgFnryLFQiCZ8EGnJUNimiyM/tnk4HNEAg/8y6ZmMRVqz9eUJvRaSbvutCZ347bXVJy/ZnvTmdJ862Me+hAbZCTs6GHpyUi1tTSvPnqTpoWZPUa7W7ncT3vK4h4zVejy8QzM3WhVUO8ykI6jOxoGA4ig3BLHcNFSCGqGAkig2yqgpEiMsjSfY9LxYQg7L6r0X6wS29YJiYQYecemY+wHrXD1+bklGhpAhBDeu/JfIVGxaAQ9sb8CI+CQSJ+QmJg0Ii/EE2MBiIXooHRQhRCkBhNhBcEhLkwf05ZCG8ICCOpk0MULmvDSY2M8UawIRExLIQIEgHDRoghihgRIgiigBEjgiFATBACAgFgghEwSAAGgoBCBBgYAg5hYKAIFYgHBo6w9RRgAFfy160QuV8NAAAAAElFTkSuQmCC"); */
  background-size: 12px;

  /* background-position: 3px bottom  ; */
  /* background-position-y: center; */
  background-repeat: no-repeat;
  padding-right: 30px;

  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  color: #2c3e50;
  background-color: var(--fieldbackground);
  font-size: 16px;
  letter-spacing: 1px;
}

.card-form__row .card-form__col .card-form__group .fieldlabels {
  width: 100%;
}

.card-check {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
}

.card-check input {
  display: none;
}

.card-check label {
  background-color: var(--fieldbackground);
  display: flex;
  justify-content: center;
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 25px;
  font-weight: 700;
}

.card-check input:checked + label {
  background-color: #00d369;
  color: #fff;
}

.passcontainer {
  position: relative;
  max-width: 460px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  /*   
  position: relative;
  max-width: 460px;
  width: 100%;
  background: #fff;
  border-radius: 4px; */
  /* padding: 30px;
  margin: 0 20px; */
  /* box-shadow: 0 5px 10px rgba(0,0,0,0.2); */
}

.passcontainer .input-box {
  position: relative;
}

.input-text i {
  position: absolute;
  right: 40px;
  top: 200px;
  /* transform: translateY(-50%); */
  color: #a6a6a6;
  padding: 5px;
  cursor: pointer;
}

.input-text input {
  border: 2px solid #d3d3d3;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  outline: none;
  padding: 0 50px 0 16px;

  /* border: 2px solid #d3d3d3;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  outline: none;
  padding: 0 50px 0 16px; */
}

.passcontainer .indicator {
  display: none;
}
.passcontainer .indicator .active {
  display: block;
  margin-top: 14px;
}
.indicator .icon-text {
  display: flex;
  align-items: center;
}
.icon-text .error_icon {
  margin-right: 8px;
}
.icon-text .text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
/* ///////////////////////////////////// */
/* .passwrapper {
  width: 450px;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
} */

.passwrapper .input-text {
  /* height: 65px;
  width: 100%; */
  position: relative;
}
.input-text input {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 17px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 1px solid #999;
}

.input-text input:focus {
  padding: 0 16px;
  border: 2px solid #4285f4;
}

.field .error {
  display: flex;
  align-items: center;
  margin-top: 6px;
  color: #d93025;
  font-size: 13px;
  display: none;
}
.invalid .error {
  display: flex;
}
.error .error-icon {
  margin-right: 6px;
  font-size: 15px;
}
.create-password .error {
  align-items: flex-start;
}
.create-password .error-icon {
  margin-top: 4px;
}
.button {
  margin: 25px 0 6px;
}
.button input {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background-color: #4070f4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input:hover {
  background-color: #0e4bf1;
}

.passwrapper .content {
  margin: 20px 0 10px;
}
.content p {
  color: #333;
  font-size: 16px;
  display: flex;
}
.content .requirement-list {
  margin-top: 20px;
}
.requirement-list li {
  font-size: 14px;
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.requirement-list li i {
  width: 20px;
  color: #aaa;
  font-size: 0.2rem;
}
.requirement-list li.valid i {
  font-size: 0.6rem;
  color: #00d369;
}
.requirement-list li span {
  margin-left: 12px;
  color: #333;
}
.requirement-list li.valid span {
  color: #00d369;
}

/* #check:checked~ .Acknowledgement {
  background-color: #124db3;
} */

/* llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll   */

.form-card {
  text-align: left;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input,
#msform textarea {
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  color: #2c3e50;
  background-color: var(--fieldbackground);
  font-size: 16px;
  letter-spacing: 1px;
}

#msform input:focus,
#msform textarea:focus {
  background-color: #ffffff;

  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid var(--maincolor);
  outline-width: 0;
}

#msform .action-button {
  width: 100px;
  background: var(--maincolor);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right;
}
#msform .submit {
  /* width: 100px; */
  background: var(--maincolor);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 25px 5px;
  float: right;
}
#msform .action-button:hover,
#msform .action-button:focus {
  background-color: #5e7fb8;
}
#msform .submit:focus {
  /* width: 100px; */
  background: #e0bb49;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 25px 5px;
  float: right;
}

#msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  background-color: #000000;
}

.card {
  z-index: 0;
  border: none;
  position: relative;
}

.card p {
  margin-bottom: 0;
  font-weight: 700;
}

.fs-title {
  font-size: 25px;
  color: var(--maincolor);
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

.purple-text {
  color: var(--maincolor);
  font-weight: normal;
}

.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

.fieldlabels {
  color: gray;
  text-align: left;
}

#progressbar {
  /* margin-bottom: 30px; */
  overflow: hidden;
  color: lightgrey;
}

#progressbar .active {
  color: var(--maincolor);
}

#progressbar li {
  list-style-type: none;
  font-size: 10px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
}

#progressbar #account:before {
  font-family: FontAwesome;
  content: "1";
}

#progressbar #personal:before {
  font-family: FontAwesome;
  content: "2";
}

#progressbar #payment:before {
  font-family: FontAwesome;
  content: "3";
}

#progressbar #confirm:before {
  font-family: FontAwesome;
  content: "4";
}

#progressbar li:before {
  width: 30px;
  height: 30px;
  line-height: 20px;
  display: block;
  font-size: 15px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 10px auto 10px auto;
  padding: 2px;
}

#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--maincolor);
}

.progress {
  height: 10px;
  border-radius: 0px;
}

.progress-bar {
  background-color: var(--maincolor);
}

.fit-image {
  width: 100%;
  object-fit: cover;
}
