/*=====================================
        ACCOUNT CARD ELEMENT STYLE
======================================*/
.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 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;
}

/*=====================================
        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-right {
  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;
}

.dash-avatar {
  margin-right: 20px;
}

.dash-avatar a {
  border-radius: 50%;
  border: 3px solid #2681db;
}

.dash-avatar a img {
  width: 140px;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.dash-intro h4 a {
  color: var(--heading);
  text-transform: capitalize;
}

.dash-intro h5 {
  font-size: 14px;
  line-height: 18px;
  color: var(--body);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.dash-meta li {
  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: 5px;
}

.dash-meta li:last-child {
  margin-bottom: 0px;
}

.dash-meta li i {
  font-size: 14px;
  margin-top: 5px;
  margin-right: 10px;
  color: #2681db;
}

.dash-meta li span {
  font-size: 14px;
  line-height: 22px;
}

.dash-meta li a {
  font-size: 14px;
  line-height: 22px;
  color: #777777;
}

.dash-focus {
  width: 100%;
  padding: 25px 0px;
  text-align: center;
  margin-right: 10px;
  border-radius: var(--card-radius);
  background: url(public/images/bg/04.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.dash-focus::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  background: #2681db;
  opacity: 0.8;
  z-index: -1;
}

.dash-focus:last-child {
  margin-right: 0px;
}

.dash-focus h2 {
  color: var(--white);
  font-family: sans-serif;
}

.dash-focus p {
  color: var(--white);
  text-transform: capitalize;
  white-space: nowrap;
  padding: 0 3px;
}

.dash-list::before {
  background: #072F5F;
}

.dash-book::before {
  background: #1261A0;
}

.dash-rev::before {
  background: #3895D3;
}

.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;
}

.dash-menu-list {
  margin-top: 30px;
}

.dash-menu-list ul {
  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;
}

.dash-menu-list ul li {
  width: 100%;
}

.dash-menu-list ul li button {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 0px;
  color: var(--heading);
  background: var(--white);
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid var(--white);
}

.dash-menu-list ul li .active {
  color: #2681db;
  background-color: aliceblue;
  text-shadow: var(--primary-tshadow);
  border-bottom: 2px solid #2681db;
}

@media (max-width: 991px) {
  .dash-menu-list {
    overflow-x: scroll;
  }
  .dash-menu-list ul {
    width: 900px;
  }
}

@media (max-width: 575px) {
  .single-banner {
    padding: 60px 0px 160px;
  }
  .dash-header-card {
    padding: 20px 20px 0px 20px;
  }
  .dash-header-left {
    -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;
  }
  .dash-avatar {
    margin-right: 0px;
    margin-bottom: 5px;
  }
  .dash-intro h5 {
    margin-bottom: 12px;
  }
  .dash-meta {
    margin-bottom: 25px;
  }
  .dash-header-alert button {
    margin-left: 0px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .dash-header-right {
    margin-top: 30px;
  }
  .dash-focus h2 {
    font-size: 32px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .single-banner {
    padding: 80px 0px 180px;
  }
  .dash-header-right {
    margin-top: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dash-avatar {
    margin-right: 20px;
  }
  .dash-avatar a img {
    width: 120px;
  }
}

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

@media (max-width: 767px) {
  .profile-part {
    padding: 50px 0px 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .profile-part {
    padding: 50px 0px 50px;
  }
}
