/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: 'COPIED';
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #28c76f;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  padding: 30px;
  color: #fff;
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 999999;
  transition: all 0.5s;
  transition: all 0.5s;
  background: linear-gradient(
    90deg,
    rgba(17, 35, 40, 0.67) 0%,
    rgba(26, 52, 59, 0.67) 100%
  );
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.la-cookie-bite {
  font-size: 85px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.cookies-card__btn {
  width: 168px;
}

.cookies-card__btn .policy {
  background: var(--hire-primary, #00b0e7);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookies-card__content a {
  color: #fff !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__content {
  margin-bottom: 0;
  text-align: left;
  padding: 0px 40px 0px 20px;
}


.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media only screen and (max-width: 600px) {
  .cookies-card {
    display: flex;
    flex-direction: column;
    right: 12px;
    left: 12px;
    bottom: 12px;
    align-items: flex-start;
  }

  .cookies-card__content {
    margin-bottom: 0;
    text-align: left;
    padding: 0px;
    padding-bottom: 3px;
    font-size: 14px;

  }

}



@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: '\f057';
  color: #ea5455;
}

.input-popup p.success::before {
  content: '\f058';
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* home page style */
.add-new-job-btn {
  display: flex;
  height: 35px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #00b0e7;
}

.side-bar-top-title {
  display: flex;
  padding: 30px 16px 22px 16px;
  border-bottom: 1px solid #292c3d;
  width: 100%;
}

.side-bar-top-title .filter-title {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  /* 100% */
  padding: 0;
  margin: 0;
}

.sidebar > form {
  padding: 22px 16px;
  width: 100%;
}

.side-bar-categories {
  padding: 22px 16px;
  width: 100%;
}
.category-list {
  width: 100%;
  display: flex;
  column-gap: 5px;
  flex-wrap: wrap;
}
.category-list li {
  margin-bottom: 10px;
}

.side-bar-categories .widget-title {
  width: 100%;
}

.filter-now-btn {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #292c3d;
  background: #1c1c1c;
  margin-top: 30px;
  background-color: #00b0e7;
}

.footer-meta-data {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-meta-data .job-time,
.footer-meta-data .bides-total {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
}

.footer-meta-data .request-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00b0e7;
  /* margin-right: 10px; */
}

/* home page end style */

/* job details page style */
.order-now-btn {
  border-radius: 12px;
  background-color: #00b0e7;
  padding: 13px auto;
  width: 100%;
}

.level-text-color {
  color: hsla(194, 100%, 45%, 1);
}

.hire-me-btn {
  border-radius: 12px;
  background: #00b0e7;
  padding: 13px auto;
}

.public-profile .section-title {
  color: #fff !important;
}

.product-details-section-title {
  color: #fff;
  /* text-align: center; */

  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
}

textarea.comment-text-area {
  height: 76px;
  padding: 12px;
  border-radius: 12px;
  background: #333;
  color: #cccccc;
  border: none;
}

.submit-comment-btn {
  /* padding: 8px 24px; */
  border-radius: 12px;
  border: 1px solid #00b0e7;
  color: #00b0e7;
  background-color: transparent;
}

.item-card-custom {
  border: none !important;
  border-bottom: 1px solid #292c3d !important;
  border-radius: 0;
}

.item-card-title-custom {
  color: #fff !important;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

/* job details page end style */
/* profile settings style */
.card-custom-stye {
  background-color: #1c1c1c;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.card-header-style {
  background-color: #1c1c1c;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #292c3d;
}

.card-title-text {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.6px;
  /* 120% */
}

.view-public-profile-btn {
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #00b0e7 !important;
  color: #00b0e7;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.profile-settings-wrapper {
  padding: 32px;
}

.profile-wallpaper-cover-page {
  border-radius: 16px;
  overflow: hidden;
}

.profile-settings-wrapper .preview-thumb.profile-wallpaper .avatar-edit label {
  padding: 0px 8px;
  border-radius: 16px;
  background: #00b0e7;
  color: #fff;
}

.profile-settings-form-card {
  padding: 32px;
}

.form-label-style {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.form-input-style {
  padding: 12px !important;
  border-radius: 12px !important;
  background: #333 !important;
  backdrop-filter: blur(50px) !important;
  border: none !important;
  color: #fff;
}

.profile-settings-submit-btn {
  padding-top: 16px !important;
  padding-bottom: 16px;
  border-radius: 12px;
  background: #00b0e7 !important;
  color: #fff !important;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* profile settings end style */

/* --------------------- */
.mt-cards {
  margin-top: 32px;
}

.mb-dash-cards {
  margin-bottom: 32px;
}

.mt-dash-cards {
  margin-top: 48px;
}

table .action-btn,
.action--btn {
  background-color: #333333;
  border: 0;
  border-radius: 4px;
  padding: 2px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-info {
  font-size: 12px;
  font-weight: 400;
  line-height: 24.5px;
  text-align: left;
  color: #ffffffb2;
}

.line-height-normal {
  line-height: normal;
}

.flex-1 {
  flex: 1;
}

p.small {
  font-size: 12px;
  color: #ffffffb2;
}

/*---------------------------------------
    Dashboard Sidebar
-----------------------------------------*/
.dashboard-widget {
  padding: 20px;
  display: flex;
  position: relative;
  isolation: isolate;
  border-radius: 30px;
  background: #1c1c1c;
}

.dashboard-widget__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #ffffff0d;
  font-size: 20px;
  color: #ffffffb2;
}

.dashboard-widget__icon.red {
  background: #ff303066;
}

.dashboard-widget__amount {
  color: white;
  margin-top: 3px;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-widget__amount span {
  font-size: 14px;
  font-weight: 500;
}

.dashboard-widget__content {
  padding-left: 16px;
  overflow: hidden;
  line-height: normal;
}

.dashboard-widget__title {
  font-size: 16px;
  font-weight: 400;
  color: #ffffffb2;
  margin: 0;
}

/*---------------------------------------
    Custom Progress
-----------------------------------------*/
.custom--progress {
  width: 100%;
  height: 5px;
}

.custom--progress .progress-bar {
  background: hsl(var(--base));
}

.custom--progress-text {
  display: block;
  font-size: 13px;
  color: hsl(var(--text));
}

/*---------------------------------------
    Dashboard Menu Open
-----------------------------------------*/
.dashboard-menu-open .dashboard-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

/*---------------------------------------
    Dashboard Menu
-----------------------------------------*/
.dashboard-menu {
  position: fixed;
  inset: 0;
  background: hsl(var(--dark));
  z-index: 1021;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .dashboard-menu {
    position: unset;
    inset: unset;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    background: transparent;
  }
}

.dashboard-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid hsl(var(--light) / 0.3);
  background: hsl(var(--dark-600));
}

@media screen and (min-width: 992px) {
  .dashboard-menu__head {
    display: none;
  }
}

.dashboard-menu__head-text {
  display: block;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.2;
  color: hsl(var(--light));
}

.dashboard-menu__head-close {
  padding: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  font-size: 24px;
  color: hsl(var(--light));
  border: 0;
  border-left: 1px solid hsl(var(--light) / 0.3);
  border-radius: 0;
}

.dashboard-menu__head-close:hover {
  color: hsl(var(--light));
  border-left: 1px solid hsl(var(--light) / 0.3);
}

.dashboard-menu__head-close:focus {
  color: hsl(var(--light));
  border-left: 1px solid hsl(var(--light) / 0.3);
}

/* .dashboard-menu__body {
  max-height: calc(100vh - 41px);
  background: hsl(var(--dark-500));
} */

@media all and (orientation: landscape) {
  .dashboard-menu__body {
    min-height: 320px;
  }
}

/* @media screen and (min-width: 992px) {
  .dashboard-menu__body {
    min-height: 100%;
    max-height: calc(100vh - 346px);
    background: transparent;
    border: 1px solid #292c3d;
    border-radius: 12px;
  }
} */

@media screen and (min-width: 1200px) {
  .dashboard-menu__body {
    max-height: unset;
  }
}

.dashboard-menu__body .accordion-header {
  margin-top: 0;
}

.dashboard-menu__body .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion-item:first-of-type .accordion-button {
    border-radius: 3px;
  }
}

.dashboard-menu__body .accordion-button:not(.collapsed) {
  background: hsl(var(--dark-site-bg));
  color: hsla(0, 0%, 100%, 1);
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion-button:not(.collapsed) {
    background: hsl(var(--dark-site-bg));
    box-shadow: none;
    color: hsla(0, 0%, 100%, 1);
  }
}

.dashboard-menu__body .accordion-button:not(.collapsed)::after {
  content: '\f106';
  transform: rotate(0);
}

.dashboard-menu__body
  .accordion-button:not(.collapsed)[aria-expanded='false']::after {
  content: '\f107';
}

.dashboard-menu__body .accordion-item:last-of-type {
  border-radius: 0;
}

.dashboard-menu__body .accordion-item {
  border: none;
  background: hsl(var(--dark-300));
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion-item {
    background: transparent;
  }
}

.dashboard-menu__body .accordion-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: hsl(var(--dark));
  font-family: var(--body-font);
  color: hsl(var(--light));
  font-size: 14px;
  line-height: 1.2;
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion-button {
    background: #1c1c1c;
    color: hsla(0, 0%, 100%, 1);
  }
}

.dashboard-menu__body .accordion-button:focus {
  box-shadow: none;
}

.dashboard-menu__body .accordion-button:hover {
  color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion-button:hover {
    color: hsl(var(--white));
    background: #1c1c1c;
  }

  .dashboard-menu__body .accordion-button:hover .accordion-button__icon {
    color: hsl(var(--white));
  }
}

.dashboard-menu__body .accordion-button::after {
  content: '\f107';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  background-image: unset;
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion-button[aria-expanded='true'] {
    background: #1c1c1c;
    color: hsla(0, 0%, 100%, 1);
  }

  .dashboard-menu__body
    .accordion-button[aria-expanded='true']
    .accordion-button__icon {
    color: hsla(0, 0%, 100%, 1);
  }
}

.dashboard-menu__body .accordion-button__icon {
  display: inline-block;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  color: hsla(0, 0%, 100%, 1);
}

.dashboard-menu__body .accordion-body {
  padding: 0;
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion-body {
    background: hsl(var(--light-100) / 0.5);
  }
}

.dashboard-menu__body .accordion.has-sub .accordion-button {
  padding-left: 48px;
  padding-right: 15px;
  background: hsl(var(--dark-300));
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion.has-sub .accordion-button {
    background: hsl(var(--light));
    color: hsl(var(--dark));
  }
}

.dashboard-menu__body .accordion.has-sub .accordion-button:hover {
  box-shadow: none;
  color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion.has-sub .accordion-button:hover {
    color: hsl(var(--base));
  }
}

.dashboard-menu__body .accordion.has-sub .accordion-button:focus {
  box-shadow: none;
  color: hsl(var(--light));
}

@media screen and (min-width: 992px) {
  .dashboard-menu__body .accordion.has-sub .accordion-button:focus {
    color: hsl(var(--base));
  }
}

.dashboard-menu__list {
  --gap: 1px;
  background: hsl(var(--dark-site-bg));
  border-radius: 4px !important;
}

.menu-header-title_ {
  font-size: 14px;
  font-weight: 500;
  color: white;
  padding-bottom: 15px;
  /* margin-left: 24px; */
  margin-right: 24px;
  font-family: Inter;
  line-height: 16.8px;
  text-align: left;
}

@media screen and (min-width: 992px) {
  .dashboard-menu__list {
    background: transparent;
    --gap: 0;
    padding-bottom: 15px;
    margin-left: 24px;
    margin-right: 24px;
  }
}

.dashboard-menu__list li {
  background: hsl(var(--dark-600));
}

@media screen and (min-width: 992px) {
  .dashboard-menu__list li {
    background: transparent;
  }

  .dashboard-menu__list li:last-child {
    border-bottom: none;
  }
}

.dashboard-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  /* background: hsl(var(--dark)); */
  font-size: 14px;
  line-height: 1.2;
  color: hsla(0, 0%, 100%, 1);
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 2px;
}

.dashboard-menu__link:hover {
  background: #1c1c1c;
  color: #00b0e7;
}

.dashboard-menu__link.open {
  /* background: #1c1c1c; */
  background: rgb(0,176,231);
background: linear-gradient(281deg, rgba(0,176,231,1) 0%, rgba(1,181,238,1) 30%, rgba(0,0,0,1) 100%);
  color: #00b0e7;
}

.menu__link-color-seller.open {
  background: linear-gradient(0deg, rgba(0, 176, 231, 0.3), rgba(0, 176, 231, 0.3)), linear-gradient(90deg, #000000 0%, rgba(1, 181, 238, 0.1) 100%);

}

.menu__link-color-buyer.open {
  background: linear-gradient(113.78deg, #F77600 36.57%, #8C0000 59.21%, #000833 83.32%, #003C97 99.07%),
linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52));

}


.dashboard-sidebar.seller .dashboard-menu__link.open,
.dashboard-sidebar.seller .dashboard-menu__link:hover {
  background: linear-gradient(
      0deg,
      rgba(0, 176, 231, 0.3),
      rgba(0, 176, 231, 0.3)
    ),
    linear-gradient(90deg, #000000 0%, rgba(1, 181, 238, 0.1) 100%);
}

.dashboard-sidebar.buyer .dashboard-menu__link.open,
.dashboard-sidebar.buyer .dashboard-menu__link:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    linear-gradient(
      113.78deg,
      #f77600 36.57%,
      #8c0000 59.21%,
      #000833 83.32%,
      #003c97 99.07%
    );
}

.dashboard-menu__link .dashboard-menu__icon,
.dashboard-menu__link .dashboard-menu__text {
  color: #ffffffb2;
}

.dashboard-menu__link:hover .dashboard-menu__icon,
.dashboard-menu__link:hover .dashboard-menu__text,
.dashboard-menu__link.open .dashboard-menu__icon,
.dashboard-menu__link.open .dashboard-menu__text {
  color: white;
}

.dashboard-menu__icon {
  display: inline-block;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  color: hsla(0, 0%, 100%, 1);
}

.dashboard-menu__text {
  display: block;
  flex-grow: 1;
font-family: 'Inter';
font-size: 14px;
font-weight: 400;
line-height: 24.5px;
text-align: left;

}


.dashboard-menu__inner {
  --gap: 0;
}

.dashboard-menu__inner > li {
  background: hsl(var(--dark-site-bg));
  border-bottom: 1px solid hsl(var(--light) / 0.1);
}

@media screen and (min-width: 992px) {
  .dashboard-menu__inner > li {
    background: hsl(var(--dark-site-bg));
    border-bottom: 1px solid hsl(var(--base) / 0.01);
  }
}

.dashboard-menu__inner > li:last-child {
  border-bottom: none;
}

.dashboard-menu__inner-link {
  background-color: #212529 !important;
  border-bottom: 1px solid #292c3d;
  display: block;
  padding: 13px 13px 13px 40px;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffffb2;
  text-decoration: none;
}

.dashboard-menu__inner-link:hover,
.dashboard-menu__inner-link.open {
  color: hsla(0, 0%, 100%, 1);
  background: #1c1c1c;
}

/*---------------------------------------
    Dashboard Sidebar
-----------------------------------------*/
@media screen and (min-width: 992px) {
  .dashboard-sidebar {
    position: sticky;
    top: 90px;
    height: 100%;
  }
}

.dashboard-sidebar__nav-toggle {
  display: flex;
  align-items: center;
  padding: 16px 35px;
  margin-bottom: 15px;
  border-radius: 32px;
  background: #333333;
}

@media screen and (min-width: 992px) {
  .dashboard-sidebar__nav-toggle {
    display: none;
  }
}

.dashboard-sidebar__nav-toggle-text {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: white;
  font-weight: 500;
  padding-top: 3px;
}

.dashboard-sidebar__nav-toggle-btn {
  margin-right: 16px;
  padding: 0;
  border: none;
  line-height: 1;
  font-size: 24px;
  background: transparent;
  color: hsl(var(--base-dark));
}

.dashboard-sidebar__nav-toggle-btn:hover {
  border: none;
  color: hsl(var(--base-dark));
  box-shadow: none;
}

.dashboard-sidebar__nav-toggle-btn:focus {
  border: none;
  box-shadow: none;
  color: hsl(var(--base-dark));
}

/*---------------------------------------
    Dashboard Submenu
-----------------------------------------*/
.dashboard-submenu {
  --gap: 0;
}

.dashboard-submenu > li {
  border-bottom: 1px solid hsl(var(--light) / 0.1);
}

.dashboard-submenu > li:last-child {
  border-bottom: none;
}

.dashboard-submenu__link {
  display: flex;
  padding: 8px 10px 8px 48px;
  font-size: 13px;
  color: hsl(var(--light));
  transition: all 0.3s ease;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .dashboard-submenu__link {
    background: hsl(var(--light-100));
    color: hsl(var(--dark));
  }
}

.dashboard-submenu__link:hover {
  color: hsl(var(--base));
}

/*---------------------------------------
    Profile
-----------------------------------------*/
.profile {
  display: none;
  position: relative;
}

@media screen and (min-width: 992px) {
  .profile {
    display: block;
  }
}

.profile__bg {
  width: 100%;
  height: 136px;
  border-radius: 10px 10px 0 0;
  background-color: hsl(var(--base));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.profile__user {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  overflow: hidden;
  border: 5px solid hsl(var(--white));
  position: absolute;
  top: 85%;;
  left: 50%;
  /* bottom: -40px; */
  transform: translateX(-50%);
  z-index: 1;
}


.profile__img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.profile-page-textarea {
  min-height: 76px !important;
  height: 76px !important;
}

.action--btn {
  background-color: #333333;
  border: 0;
  border-radius: 4px;
  padding: 2px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-msg-component {
  display: flex;
  align-items: center;
  border-radius: 12px;
  background-color: #333333;
  height: 54px;
  padding-right: 5px;
}

.send-msg-text-box {
  display: flex;
  align-items: center;
  border-radius: 0px !important;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
  background-color: #333333;
  height: 54px;
  padding-right: 5px;
}


.send-msg-component .message {
  flex: 1;
  background-color: transparent;
  border: 0;
  padding-inline: 12px;
  height: 100%;
  font-size: 14px;
  color: #ffffffb2;
}

.send-msg-component .upload--attachment {
  width: 30px;
  height: 30px;
  position: relative;
}

.send-msg-component .upload--attachment input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
/* bootstrap list group dark styles */
.preview-details .list-group-item {
  background-color: #131313;
  color: white;
}
/* ------ */

textarea.form-control.small {
  min-height: auto !important;
  height: 70px !important;
}

/* tinymce theme changes */
.tox .tox-menubar,
.tox:not(.tox-tinymce-inline) .tox-editor-header,
.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary,
.tox .tox-tbtn--bespoke,
.tox .tox-statusbar,
.tox .tox-menu {
  background-color: #333 !important;
}

.tox .tox-statusbar {
  background-color: #292929 !important;
}

/* Profile switcher */
.profile-switch.seller {
  background: linear-gradient(
      0deg,
      rgba(0, 176, 231, 0.3),
      rgba(0, 176, 231, 0.3)
    ),
    linear-gradient(90deg, #000000 0%, rgba(1, 181, 238, 0.1) 100%);
}
.profile-switch.buyer {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    linear-gradient(
      113.78deg,
      #f77600 36.57%,
      #8c0000 59.21%,
      #000833 83.32%,
      #003c97 99.07%
    );
}
.profile-switch {
  width: 100%;
  padding: 32px;
  border-radius: 30px;
  box-shadow: 0px 0px 18px 0px #292c3d08;
}
.profile-switch .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 10;
  object-fit: cover;
}
.profile-switch .avatar:last-of-type {
  margin-left: -16px;
  z-index: inherit;
}
.profile-switch h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: white;
  text-align: left;
  margin: 0 0 0 16px;
}
.profile-switch.seller .switch-btn {
  background-color: #0b3948;
}
.profile-switch.buyer .switch-btn {
  background-color: #131313;
}
.switch-btn {
  height: 36px;
  padding: 4px 16px;
  font-size: 15px;
  border: 0;
  border-radius: 15px;
}
/* skeleton style */

.tile {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 200px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton {
  background: linear-gradient(90deg, #3a3a3a 25%, #4a4a4a 50%, #3a3a3a 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  width: 100%;
  height: 20px;
  animation: shimmer 1.5s infinite;
}
.text {
  height: 16px;
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* skeleton end style */
/* footer style */
.footer__copyright {
  background: #000;
}

.footer-section {
  background: #131313 !important;
}

.footer-widget-title {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin: 1.5rem 0;
}

.social-list {
  --gap: 0.5rem;
}

.register-form-social .social-list__icon,
.login-form-social .social-list__icon {
  background-color: #e52b2a;
  border-radius: 50%;
}

.social-list__icon {
  display: inline-block;
  text-decoration: none;
}

.social-list__icon i,
.social-list__icon span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  /* background: hsl(var(--base)); */
  color: hsl(var(--white));
}

.social-list__icon i:hover,
.social-list__icon span:hover {
  box-shadow: 0 5px 15px 0 hsl(var(--dark) / 0.3);
}

.social-list__icon [class*='google'] {
  /* background: #db4437; */
  color: #fff;
}

.social-list__icon [class*='facebook'] {
  /* background: #1877f2; */
  color: #fff;
}

.social-list__icon [class*='linkedin'] {
  /* background: #0077b5; */
  color: #fff;
}

.social-list__icon [class*='instagram'] {
  /* background: #d6249f; */
  /* background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  ); */
  color: #fff;
}

.social-list__icon [class*='twitter'] {
  /* background: #1da1f2; */
  color: #fff;
}

.social-list__icon [class*='pinterest'] {
  /* background: #e60023; */
  color: #fff;
}

.twitter-custom-icon {
  padding: 3px;
}

.social-list--xl i {
  width: 50px;
  height: 50px;
  font-size: 24px;
}
.photo-modal .social-list__icon i,
.photo-modal .social-list__icon span {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.list--row {
  flex-direction: row !important;
}
.list {
  display: flex;
  flex-direction: column;
  gap: var(--gap, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding-bottom: 10px;
}

.primary-menu__divider {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #e1e7ec;
  width: 1px;
  height: 50%;
}

.browse-assets-btn {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
}

.browse-assets-btn:hover {
  color: #0000009a !important;
}

.footer-link-text {
  font-size: 0.875rem;
  color: #ffffffba;
}

.short-menu-style {
  background-color: #000;
  gap: 10px;
}
.short-menu-close-btn {
  background-color: #1c1c1c !important;
  color: white !important;
}

/* footer end style */


/* custom style */
.custom-card{
  position: relative;
}

.custom-card-footer{
  position: absolute;
    width: 100%;
    bottom: 0;
}
.custom-card-content{
  margin-bottom: 85px;
}


.full-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 10;
}


::-webkit-scrollbar {
  width: 3px !important;
  scrollbar-width: thin;
}


::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 

::-webkit-scrollbar-thumb {
  background: #3333; 
 border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.table-responsive{
  scrollbar-width: thin;
}

.select2-container {
  width: 100% !important;
}


.tox-toolbar{
  scrollbar-width: thin;
}

.sidebar-heading {
font-family: Inter;
font-size: 14px;
font-weight: 500;
line-height: 16.8px;
text-align: left;

}

.curve-class {
  border-radius: 15px;
}

.upper-border {
  border-top: 1px solid #292C3D
}

.pitch-card-title-custom {
  color: #fff !important;
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.small-text-custom {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  color: #FFFFFFB2;
}

.custom-row{
  height: 82px;
}

.pitch-range-card{
  border-radius: 15px;
    background-color: #292929;
}

.section-custom{
  margin-top: 11px;
    text-align: center;
    border-right: 1px solid #535668;
}

.section-custom p{
  font-size: 14px;
  font-weight: 500s;
}
.set-poition{
  display: flex;
  align-items: center;
}
.empty-box{
  content: "";
  display: inline-block;
  width: 41px;
  height: 21px;
  background-color: #383838;
  border-radius: 8px;
  margin-right: 11px;
}
.white-color{
  color:#fff !important;
}
.link-non-member{
  color: #00B0E7;
  text-decoration: none;
}
.link-non-member:hover{
  color: #00B0E7;
}

.job-hiring .badge--warning {
  color: #FFC107 !important; /* or any other color you prefer */
}

.list-badge{
  font-weight: 500 !important;
  font-size: 12px !important;
}


.upload-file {
  display: none; / Hide the default file input /
}

.upload-file-icon {
  cursor: pointer;
  display: inline-block;
  font-size: 24px; / Adjust the size of the icon if needed /
}

/ Add hover effect /
.upload-file-icon:hover {
  color: #0056b3;
}
.set-messsage-send-button-position{
  position: absolute;
    top: 10px;
    right: 1%;
   
}

.button-background{
  background-color: transparent;
}

.form-control-space{
  
  padding-right: 129px;

}
@media (max-width: 540px) {
.chat-send-btn{
  width: 47px  !important;
}.chat-send-file{
  width: 20px;
}
.chat-send-btn button svg{
  width: 32px;
}
.chat-send-file{
  width: 20px;
}
.trade-chat-file-upload{
  width: 20px;
}
}

.table-avatar{
  height: 24px !important;
  width: 24px !important;
}


.btn-close {
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  opacity: 1
 
}

.btn-close:hover {
  opacity: 1;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
  opacity: 1;
}

.btn-close::before,
.btn-close::after {
  position: absolute;
 
  right: 1%;
  width: 1.2em;
  height: 0.1em;
  content: '';
  background-color: white; 
}

.btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-title{
  font-weight: 700;
}
.description-text {
  opacity: 0.7;
}

.filter-label {
 font-weight: 700;
 opacity: 0.7;
}

.attachment-box {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #292929;
}

.attachment-box .img{
  width:150px;
  margin:10px;
  border-radius: 10px;
}
.attachment-box .cross{
  width: 21px;
  position: absolute;
  top: 4%;
  right: 13%;
}

.clickable-row{
  cursor: pointer;
}

.mobile-btn{
  display: none;
}
.mobile-logo{
  display: none;
}
.destop-logo{
  display: block;
    }
@media only screen and (max-width: 991px) {
  .mobile-btn{
    display: block;
  }
  .mobile-logo{
    display: block;
  }
  .destop-logo{
display: none;
  }
  .btn-login{
    display: none !important;
  }
  .dropdown-mobile{
    display: block;
  } 
  .drop-down-menu{
     margin-left: -109px;
    margin-top: 11px;
  }
  .full-screen-dropdown{
    display: none;
  }
}

@media only screen and (min-width: 991px) {
  .categories-header{
   display: none;
  }
  .dropdown-mobile{
    display: none;
  } 
}

.categories-header{
  text-align: center;
  margin-top: 12px;
}


.table_avatar
{  
    width: 24px !important;
    height: 24px !important;
}
.img_avatar
{  
    border-radius: 50px !important;
}

.select2-selection{
  height: auto !important;
}