.clients-recover .navbar-container {
  display: none;
}

.clients-reset_password .navbar-container {
  display: none;
}

.clients-login section.site-search {
  display: none;
}



.login-image-bg::after {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  content: '';
  background: linear-gradient(0deg, #00B39D 0%, rgba(22, 22, 22, 0.00) 100%);
  
}

.login-image-bg::before {
  position: absolute;
  width: 100%;
  height: 200px;
  top: 0;
  left: 0;
  content: '';
  background: linear-gradient(180deg, #00B39D 0%, rgba(22, 22, 22, 0.00) 100%);
  z-index: 1;
}

/* Login Right start */
.bg-home7 {
  width: 825px;
  height: 622px;
  transform: rotate(-25deg);
  display: flex;
  gap: 30px;
  position: absolute;
  right: 70px;
  top: 0;
  z-index: 0;
}

.bg-home7 .swiper-container {
  overflow: unset;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.bg-home7 .swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}


.bg-home7 .swiper-container .swiper-slide {
  height: auto;
  opacity: .9;
}

.bg-home7 img {
  width: 255px;
  height: 384px;
}

.swiper-wrapper {
  display: flex;
  flex-direction: column;
}
/* Login Right start */

.zindex-login {
  z-index: 2;
}

.login-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  justify-content: center;
  margin: 0 auto;
}

.login-form .backbtn {
  font-size: 14px;
  font-weight: 600;
  color: #aeaeae;
}

.login-header {
  position: absolute;
  top: 40px;
}

.backbtn img {
  max-width: 24px;
  background: #eee;
  padding: 5px;
  border-radius: 5px;
  margin-right: 5px;
}

.page-template.login {
  max-height: 100vh;
  overflow: hidden;
}

.alert-notification {
  background: #4c68ff03;
  border: 1px solid #4c68ff14;
  display: flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 1rem 0;
}
.alert-notification i {
  font-size: 26px;
  margin-right: 14px;
}

.nowrap {
  flex-wrap: nowrap;
}

.marquee {
  opacity: 0.3;
  position: relative;
}

.marquee::before {
  content: "";
  /* background: linear-gradient; */
  background: #5f5bfe;
  background: linear-gradient(
    90deg,
    var(--primary-color) 20%,
    rgba(220, 236, 249, 0) 100%
  );
  width: 20%;
  height: 105%;
  position: absolute;
  left: -50px;
  z-index: 1;
  top: 0px;
}

.marquee::after {
  content: "";
  /* background: linear-gradient; */
  background: #5f5bfe;
  background: linear-gradient(
    270deg,
    var(--primary-color) 20%,
    rgba(220, 236, 249, 0) 100%
  );
  width: 20%;
  height: 105%;
  position: absolute;
  right: -50px;
  z-index: 1;
  top: 0px;
}

.login-logo {
  opacity: 0.9;
}

.login-image-bg {
  height: 100vh;
  background: var(--primary-color);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.login-image-bg h2 {
  font-weight: 600;
  font-size: 27px;
}

.login-image-bg h2 i {
  color: #ffc107;
}

.login-image-bg .announcement-card.bg-white.p-4.border.rounded-3 {
  border-radius: 20px !important;
}

.login-form .form-control {
  border-radius: 9px;
  background-color: #f2f3f6;
  border: none;
  padding: 14px;
  font-size: 14px;
}



.vertical-scrolling-infinite {
  animation: bannermove 11s linear infinite;
}

.vertical-scrolling-infinite-bottom {
  padding-top: 2.35em;
  animation: marqueeTop 108s linear infinite reverse;
  animation-direction: reverse;
  animation-delay: -84s;
}

@keyframes bannermove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeTop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes marqueeBottom {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.terms-and-conditions {
  font-size: 14px;
}

.terms-and-conditions a {
  font-weight: 500;
  border-bottom: 1px dotted;
}

.recover-img {
  justify-content: center;
}

.recover-img img {
  mix-blend-mode: multiply;
}

/* Dashboard */
.dashboard-page {
  border-top: 1px solid #ddd;
}
.top-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.top-menu ul li {
  margin-right: 20px;
}

.top-menu ul li a {
  color: #7f9799;
  padding: 5px;
  display: block;
  font-size: 14px;
}
.top-menu ul li a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  font-weight: 500;
}

.top-menu ul li a.logout {
  color: #ff0000;
  font-weight: 500;
  margin-left: auto;
  background: #ffeaea;
  border-radius: 5px;
  padding: 3px 15px;
}

.account-card input {
  border-radius: 9px;
  background-color: #fff;
  border: none;
  padding: 14px;
  font-size: 14px;
  border: 1px solid #ddd;
}

.us-item {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  background: #f8f9fa;
  padding: 7px 10px;
  border-radius: 5px;
  line-height: 1;
  width: 100%;
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  background-color: #1f295e;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  display: none;
  z-index: 100;
}

.us-item.show-tooltip .tooltip-content,
.us-item:hover .tooltip-content {
  display: block;
}

.us-item .us-item-text {
  font-weight: 300;
  color: #6c757d;
  font-size: 12px;
  display: none;
}

.us-item i {
  font-size: 16px;
  margin-right: 5px;
}

.announcement-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.user-statistics {
  gap: 5px;
}

.acf-buttons {
  display: flex;
  gap: 5px;
}

.acf-buttons a {
  border-radius: 5px;
  padding: 5px 17px;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  display: flex;
  background: #f2f3f6;
}

.acf-buttons .delete-item {
  background: #ffeaea;
  color: #ff3f42;
  border: 1px solid #ff3f42;
}

.delete-item img {
  max-width: 18px;
  margin-right: 5px;
}

.acf-buttons a i {
  margin-right: 5px;
}

.ac-badge {
  position: absolute;
  top: -11px;
  padding: 5px 17px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
}

.ac-badge.expired {
  background: #ffeaea;
  color: #ff3f42;
}
.ac-badge.pending {
  color: #0ca75e;
  background: #e2f1ec;
}
.ac-badge.rejected {
  color: #e27217;
  background: #ffede4;
}

.ac-badge.deactivated {
  background: #f0dbe4;
  color: #c2185b;
}

.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 0.25rem;
  font-weight: 300;
  font-size: 14px;
  padding: 0.25rem 1rem;
}

.listing-buttons.see-comments a {
  border: 2px solid #333;
  color: #333;
  font-weight: 600;
}

.listing-buttons.see-comments a:hover {
  border: 2px solid #333;
  color: #fff;
  background: #333;
  font-weight: 600;
}

.unread-offer {
  background: rgba(255, 82, 82, 1);
  box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
  animation: pulse-red 2s infinite;
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  position: absolute;
  right: -1px;
  top: -5px;
  border: 2px solid #fff;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}

.response {
  background: #f0f2f5;
  padding: 10px;
  border-radius: 12px;
  position: relative;
  padding-left: 20px;
}

.response::before {
  content: "\0022";
  font-size: 41px;
  font-style: italic;
  top: -12px;
  left: 0;
  position: absolute;
  color: #c8c8c8;
}

.add-new-post .form-label.required {
  position: relative;
}

.add-new-post .form-label.required::after {
  content: "*";
  color: #ff0000;
}
/* Dashboard */

.clients-new_pass .navbar-container {
  display: none;
}

.reset-title img {
  max-width: 33px;
  margin-right: 5px;
}

.my_profile .account-card {
  padding: 2rem;
  background: #fff;
}

.form-label.required {
  position: relative;
}

.form-label.required {
  position: relative;
}

.form-label.required::after {
  content: "*";
  color: #ff0000;
  margin-left: 2px;
  font-size: 12px;
  vertical-align: top;
}

.rest-pass-form img {
  max-width: 50px;
  margin-right: 10px;
}

@media (max-width: 767px) {
.login-image-bg {
    height: 300px;
    background: var(--primary-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  
  .bg-home7 {
    right:-90px
  }
  .login-image-bg p {
    font-weight: 600;
    font-size:14px;
  }
  .backbtn.d-md-none {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
  }
  .zindex-login.w-75 {
    width: 100% !important;
  }
  .bg-home7 .swiper-container .swiper-slide {
    height: auto;
    opacity: .5;
  }
  .page-template.login {
    max-height: 100%;
    overflow: hidden;
  }
  .login-form {
    padding: 30px 30px 90px;
    overflow-x: hidden;
    position: relative;
  }
  .login-header {
    position: relative;
    top: 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
  }
  .login-form .backbtn {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
  }
  .text-no-account {
    text-align: center;
  }
  .text-no-account a {
    display: block;
  }
  .page-template.login .row.full-width > .col-md-6 {
    padding: 0;
  }

  .clients-recover .login-form::before {
    height: 208px !important;
  }

  .clients-recover .login-form::after {
    top: 96px;
  }
  .reset-title img {
    max-width: 23px;
    margin-right: 5px;
  }
  .login-form h1,
  .login-form p {
    color: #fff;
  }
  .login-form h1 {
    font-size: 20px;
    margin-top: 10px;
  }

  .login-form p {
    line-height: 1.3;
  }

  .top-menu ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .top-menu ul li {
    margin-right: 5px;
    flex-shrink: 0;
  }
  .top-menu ul li a {
    padding: 7px;
    border-radius: 5px;
    font-size: 12px;
    background: #257aff1a;
    color: #1f295e;
    font-weight: 400;
  }
  .top-menu ul li a.logout {
    padding: 7px 15px;
  }
  .announcement-card-footer {
    align-items: start;
  }
  .user-statistics {
    gap: 5px;
    margin-top: 10px;
  }
}
