/* Colors & fonts */
:root {
    --purple1: #a685e2;
    --purple2: #6155a6;
    --logo:#955ba5;
    --grey: #C3C3D8;

    --font:'Quicksand', sans-serif;
    --fontheading:'Lobster', sans-serif;
}
body {
  font-family:var(--font);
  overflow-x: hidden;
  /* background-image: url(../imgs/bg.jpg); */
}
/* scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #8080808a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background:  linear-gradient(45deg, var(--logo), var(--purple1));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background:  var(--logo);
}

/*===================== navbar =======================================*/

.navbar {
    /* transition: all 0.4s; */
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    text-decoration: none;
}

.navbar .navbar-brand {
    color: #fff;
    font-size: 23px;
}
.nav-logo{
  width: 35px
}

.dropdown-toggle::after {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    display: none;
}
.nav-dropdown-img{
  width: 35px;
}
.notification-img{
  width: 35px;
}
.notification-dropdown-menu{
  left: -155px;
}
.profile-dropdown-menu {
    left: -110px;
}
.navbar {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    color: var(--purple1);
}


/* background */
.background-wrapper{
  margin: 25px;
  margin-top: 90px;
  border-radius: 20px;
  padding-top: 25px;
  background-image: url(../imgs/block-cover3.jpg);
  background-repeat: no-repeat;
}

.heading-text h2{
  color: #fff;
  font-family: var(--fontheading);
}
.heading-text p{
  color: #fff;
}

p {
    color: grey
}
.logo{
  width: 50px;
}
.heading{
  font-family:var(--fontheading);
  color: #a075ca;;
}
.label{
  color: var(--logo);
}
.purple-text{
  color: var(--purple1);
}
.form-card-wrapper{
  border-radius: 20px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1) !important;
}
.post-form{
    text-align: center;
    position: relative;
    margin-top: 20px
}

.form-control:focus{
  box-shadow: none !important;
    border-color: var(--purple1) !important;
}
.postInput::-webkit-input-placeholder {
  font-family:'Quicksand', sans-serif;
}
.postInput:-ms-input-placeholder {
  font-family: 'Quicksand', sans-serif;
}
.postInput:-moz-placeholder {
  font-family: 'Quicksand', sans-serif;
}
.postInput::-moz-placeholder {
  font-family: 'Quicksand', sans-serif;
}
input[type="checkbox"] {
    margin-right: 15px
}
.input-helper{
  font-size: 14px;
}
.form-check .form-check-label input {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0)
}

input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0
}
.form-check .form-check-label input[type="checkbox"]+.input-helper:before,
.form-check .form-check-label input[type="checkbox"]+.input-helper:after {
    position: absolute;
    top: 0;
    left: 0
}
.form-check .form-check-label input[type="checkbox"]+.input-helper:before,
.form-check .form-check-label input[type="checkbox"]+.input-helper:after {
    position: absolute;
    top: 5px;
    left: 0
}

.form-check .form-check-label input[type="checkbox"]:checked+.input-helper:before {
    background: var(--purple1);
    border-width: 0;
     font-family: FontAwesome;
      content: "\f00c";
      display: inline-block;
      padding-right: 3px;
      vertical-align: middle;
      color: #fff
}

.form-check .form-check-label input[type="checkbox"]+.input-helper:before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border:1px solid var(--purple1);
    -webkit-transition: all;
    -moz-transition: all;
    -ms-transition: all;
    -o-transition: all;
    transition: all;
    transition-duration: 0s;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms
}
.post-form fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}


/* ------------------------- */
.input-file {
   visibility: hidden;
    position: absolute;
  }
  .btn-upload{

    background:linear-gradient(45deg, var(--logo), var(--purple1));
    color: white;
  }
.img-form{
    text-align: -webkit-center;
  }
/* -------------------------- */

.form-card {
    text-align: left
}

.post-form fieldset:not(:first-of-type) {
    display: none
}


.post-form .action-button {
    width: 150px;
    background:linear-gradient(45deg, var(--logo), var(--purple1));
    color: white;
    border-radius: 3px;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

.action-button:hover,
.action-button:focus,
#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  border-color: var(--purple1);
  color: var(--purple1);
  background: transparent;
}

#msform .action-button-previous {
    width: 150px;
    background: linear-gradient(45deg, var(--logo), var(--purple1));
    color: white;
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: left;
}

.card {
    z-index: 0;
    border: none;
    position: relative
}


.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

.progressbar {
    overflow: hidden;
    color: lightgrey
}

.progressbar .active {
    color: #673AB7
}

.progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

.progressbar .description:before {
    font-family: FontAwesome;
    content: "\f015"
}

.progressbar .amenities:before {
    font-family: FontAwesome;
    content: "\f0e7"
}

.progressbar .images:before {
    font-family: FontAwesome;
    content: "\f030"
}

.progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c"
}

.progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 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: linear-gradient(45deg, var(--logo), var(--purple1));
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #673AB7
}

.fit-image {
    width: 100%;
    object-fit: cover
}



/* hosting info section */
.content-tittle{
  font-family: var(--fontheading);
  color: var(--purple1);
}
.content-tittle:after {
    position: absolute;
    content: "";
    bottom: -7px;
    width: 80px;
    height: 3px;
    background: var(--purple1);
    left: calc(50% - 40px);
}


.post-form-img{
  width: 80px;
  margin-top: 45px;
  margin-bottom: 15px;
}
.post-form-txt{
  font-weight: 600;
  color: var(--purple1);
}

.earn{
  background-image: url(../imgs/earn.jpg);
  height: 320px;
  background-size: cover;
  align-content: center;
}
.earn h2{
  font-family: var(--fontheading);
  font-size: 55px;
}
.check{
  font-size: 18px;
    color: var(--purple1);
}
.txt{
  font-size: 18px;
}

/*========================== footer =========================================*/
.footer-area {
  padding: 55px 0px 20px;
  background: linear-gradient(45deg, var(--logo), var(--purple1));
}
.footer-heading{
  color: #fff;
}
.footer-contect-wrapper p{
  color: #d0d0d0;
    width: 85%;
}
.footer-list li{
margin: 7px;
}
.footer-list li a{
  color: #d0d0d0;
}
.footer-list li a:hover{
  color: #fff;
  text-decoration: none;
}
.contact-list li{
  margin: 7px;
  color: #fff;
}
.footer-contect-wrapper span i{
  color: #d0d0d0;
}
.footer-contect-wrapper span i:hover{
  color: #fff;
}
.copyright{
  justify-content: center;
  margin-top: 55px;
  color: #fff;
}
