/*=====================================
        SELECT-OPTION COMPONENT
======================================*/
.custom-select {
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  color: var(--placeholder);
  cursor: pointer;
}

/*=====================================
        CARD BADGE COMPONENT STYLE
======================================*/
.sale {
  background: var(--sale);
}

.rent {
  background: var(--rent);
}

.booking {
  background: var(--booking);
}

.flat-badge {
  color: var(--white);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

/*=====================================
        ACCOUNT CARD ELEMENT STYLE
======================================*/
.account-card {
  margin-bottom: 12px;
  padding: 0px 30px 30px;
  background: var(--white);
  border-radius: var(--card-radius);
}

.account-title {
  padding: 18px 0px;
  margin-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.account-title::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0px;
  width: 50px;
  height: 2px;
  background: #373373;
}

.account-title h3 {
  font-size: 20px;
}

.account-title button,
.account-title a {
  border: none;
  width: 55px;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  text-transform: capitalize;
  color: #2681db;
  background: var(--light-white);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.account-title button:hover,
.account-title a:hover {
  color: var(--white);
  background: #2681db;
  text-shadow: var(--primary-tshadow);
}

.account-card-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.account-card-list li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.account-card-list li:hover h6 {
  color: var(--white);
  background: #2681db;
}

.account-card-list li h5 {
  font-size: 16px;
  font-weight: 500;
}

.account-card-list li h6 {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: #2681db;
  background: var(--light-white);
}

.account-card-link li {
  margin-bottom: 8px;
}

.account-card-link li:last-child {
  margin-bottom: 0px;
}

.account-card-link li a {
  color: var(--body);
}

.account-card-link li a:hover {
  color: #2681db;
}

.account-card-link li a i {
  margin-right: 5px;
}

.account-card-text {
  margin-left: 20px;
}

.account-card-text li {
  list-style-type: disc;
  margin-bottom: 20px;
}

.account-card-text li:last-child {
  margin-bottom: 0px;
}

.account-card-form .form-group {
  margin-bottom: 20px;
}

.account-card-form .form-group:last-child {
  margin-bottom: 0px;
}

.account-card-form .form-group .btn {
  width: 100%;
  padding: 10px 30px;
}

@media (max-width: 575px) {
  .account-card {
    padding: 0px 20px 20px;
  }
}

/*=====================================
        SINGLE BANNER PART STYLE
======================================*/
.single-banner {
  background: url(public/images/bg/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
  z-index: 1;
}

.single-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 53, 138, 0.65)), to(rgba(5, 44, 112, 0.65)));
  background: linear-gradient(rgba(4, 53, 138, 0.65), rgba(5, 44, 112, 0.65));
  z-index: -1;
}

.single-content {
  text-align: center;
}

.single-content h2 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 13px;
}

.single-content .breadcrumb {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .single-banner {
    padding: 70px 0px;
  }
}

/*=====================================
     DASHBOARD HEADER LAYOUT STYLE
======================================*/
.single-banner {
  padding: 100px 0px 200px;
}

.dash-header-card {
  padding: 30px 30px 0px 30px;
  background: var(--white);
  border-radius: var(--card-radius);
}

.dash-header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.dash-header-alert {
  margin: 0px;
  margin-top: 30px;
  padding: 15px 25px;
  border-radius: 3px;
  background: var(--white);
  -webkit-box-shadow: var(--primary-bshadow);
          box-shadow: var(--primary-bshadow);
  border-left: 3px solid #2681db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dash-header-alert button {
  border: none;
  outline: none;
  background: none;
  margin-left: 100px;
}

.dash-header-alert button i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 3px;
  display: inline-block;
  color: #2681db;
  background: var(--light-white);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.dash-header-alert button i:hover {
  color: var(--white);
  background: #2681db;
}

/*=====================================
            ADPOST PAGE STYLE
======================================*/
.adpost-part {
  padding: 50px 0px 70px;
}

.adpost-card {
  margin-bottom: 12px;
  padding: 30px 30px 0px 30px;
  background: var(--white);
  border-radius: var(--card-radius);
}

.adpost-title {
  padding-bottom: 18px;
  margin-bottom: 25px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.adpost-title::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0px;
  width: 50px;
  height: 2px;
  background: #373373;
}

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

.form-check-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}

.form-check-list li:last-child {
  margin-bottom: 0px;
}

.form-check {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.form-check-text {
  font-weight: 500;
  line-height: 15px;
  text-transform: capitalize;
}

.adpost-plan-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.adpost-plan-content h6 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.adpost-plan-content h6 span {
  font-weight: 500;
  font-size: 12px;
  text-transform: capitalize;
}

.adpost-plan-meta {
  text-align: center;
  margin-left: 30px;
}

.adpost-plan-meta h3 {
  font-family: sans-serif;
  margin-bottom: 5px;
}

.adpost-plan-meta .btn {
  padding: 6px 20px;
}

.adpost-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 45px;
}

.adpost-agree .form-group {
  margin: 6px 0px 0px;
}

.adpost-agree p button:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .adpost-plan-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .adpost-plan-meta {
    margin: 20px 0px 0px;
  }
  .pb-4 .btn {
    padding: 14px 25px;
  }
}
