/*=====================================
        PAGINATION COMPONENTS STYLE
======================================*/
.pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px 25px;
  border-radius: var(--card-radius);
  background: var(--light-white);
  border: 1px solid var(--border);
}

.page-item {
  margin: 0px 6px;
}

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

/*=====================================
        REVIEW LIST ELEMENT STYLE
======================================*/
.review-item {
  padding: 30px 45px;
  background: var(--light-white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  margin-bottom: 25px;
}

.review-item:last-child {
  margin-bottom: 0px;
}

.review {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.review:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
  margin-left: 50px;
}

.review:first-child {
  margin-left: 0px;
}

.review-head {
  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;
  margin-bottom: 20px;
}

.review-author {
  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;
}

.review-avatar {
  margin-right: 15px;
}

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

.review-avatar a img {
  width: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.review-meta h6 {
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.review-meta h6 a {
  color: var(--heading);
}

.review-meta h6 span {
  font-weight: 400;
  font-size: 14px;
}

.review-meta ul li {
  display: inline-block;
  margin-right: 3px;
}

.review-meta ul li i {
  font-size: 14px;
  color: #bbbbbb;
}

.review-meta ul li .active {
  color: #ffcc23;
}

.review-meta ul li h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.review-widget {
  position: relative;
}

.review-dots-btn {
  border: none;
  outline: none;
  background: none;
}

.review-form {
  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-top: 30px;
}

.review-form .form-control {
  height: 35px;
  border-bottom: none;
  border-radius: 3px;
  background: var(--white);
  border: 1px solid #dddddd;
}

.review-form .form-control:focus {
  background: var(--white);
  border-color: #2681db;
}

.review-form button {
  border: none;
  height: 35px;
  width: 115px;
  font-size: 14px;
  margin-left: 15px;
  border-radius: 3px;
  text-align: center;
  color: var(--white);
  background: #2681db;
}

.review-form button i {
  margin-right: 5px;
}

@media (max-width: 575px) {
  .review-item {
    padding: 20px 20px;
  }
  .review:last-child {
    margin-left: 30px;
  }
  .review:first-child {
    margin-left: 0px;
  }
  .review-author {
    -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;
  }
  .review-avatar {
    margin: 0px 0px 15px;
  }
  .review-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review-form button {
    margin-left: 0px;
    margin-top: 15px;
  }
}

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

/*=====================================
            DASHBOARD PAGE STYLE
======================================*/
body {
  background: #F8F9F9;
}

.dashboard-part {
  padding: 0px 0px 70px;
}

.dash-review-widget {
  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;
  margin-bottom: 25px;
}

.dash-review-widget h4 {
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 5px;
}

.dash-review-widget .custom-select {
  width: 160px;
  border: none;
  font-weight: 500;
  border-radius: 0px;
  border-bottom: 2px solid #2681db;
}

.dash-review-widget .custom-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.review-list {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .dash-review-widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dash-review-widget h4 {
    margin-top: 0px;
    margin-bottom: 15px;
  }
}

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

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