
/* Customer menu styles moved to main style.css */
/*  */
.filter-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.filter-card {
  padding: 18px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: solid 1px var(--light-gray);
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.13);
}
.filter-card .filter-inner {
  position: relative;
  z-index: 8;
}
.filter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px;
}
.filter-top .count {
  font-size: var(--font-32);
  font-weight: 700;
  line-height: normal;
  color: var(--text-color);
}
.filter-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 2.43px 0px 0px rgba(0, 0, 0, 0.25);
}
.bg-shap {
  position: absolute;
  height: 100%;
  width: 300px;
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.filter-card:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 300px;
  border-radius: 50%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.05;
}
.bg-shap:before,
.bg-shap:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 300px;
  border-radius: 50%;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.04;
  z-index: 1;
}
.bg-shap:after {
  top: 80px;
  z-index: 2;
}
.filter-card .filter-title{
  font-size: var(--font-large);
  font-weight: 700;
  text-transform: capitalize;
  line-height: normal;

}


.filter-card.primary .filter-icon{
  background-color:rgba(252, 227, 207, 1);
}
.filter-card.proposed .filter-icon{
  background-color:rgba(249, 219, 233, 1);
}
.filter-card.awarded .filter-icon{
  background-color: rgba(220, 241, 252, 1);
}
.filter-card.cancelled .filter-icon{
  background-color:rgba(254, 226, 226, 1);
}
.filter-card.completed .filter-icon{
  background-color:rgba(211, 251, 249, 1);
}

.filter-card.primary .filter-title{
  color:var(--color-primary);
}
.filter-card.proposed .filter-title{
  color:var(--color-pink);
}
.filter-card.awarded .filter-title{
  color:var(--color-lightblue);
}
.filter-card.cancelled .filter-title{
  color:var(--color-red-600);
}
.filter-card.completed .filter-title{
  color:var(--typo-primary);
}

.filter-card.primary:before,
.filter-card.primary .bg-shap:before,
.filter-card.primary .bg-shap:after {
  background-color: var(--color-primary);
}
.filter-card.proposed:before,
.filter-card.proposed .bg-shap:before,
.filter-card.proposed .bg-shap:after{
  background-color:var(--color-pink);
}
.filter-card.awarded:before,
.filter-card.awarded .bg-shap:before,
.filter-card.awarded .bg-shap:after{
  background-color:var(--color-lightblue);
}
.filter-card.cancelled:before,
.filter-card.cancelled .bg-shap:before,
.filter-card.cancelled .bg-shap:after{
  background-color:var(--color-red-600);
}
.filter-card.completed:before,
.filter-card.completed .bg-shap:before,
.filter-card.completed .bg-shap:after{
  background-color:var(--typo-primary);
}



.filter-card.primary.active{
  border: solid 1px var(--color-primary);
}
.filter-card.proposed.active{
  border: solid 1px var(--color-pink);
}
.filter-card.awarded.active{
  border: solid 1px var(--color-lightblue);
}
.filter-card.cancelled.active{
  border: solid 1px var(--color-red-600);
}
.filter-card.completed.active{
  border: solid 1px var(--typo-primary);
}

/*  */

.project-section {
  display: none;
  opacity: 0;
  padding: 40px 0 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.project-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tab-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.tab-title h5{
  position: relative;
  width: fit-content;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.tab-title h5::after{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 40px;
}
.project-filter {
  display: flex;
  gap: 10px;
}
.project-filter .custom-btn {
  padding: 7px 7px;
}
.search-wrapper {
  border: 1px solid #FCE3CF;
  border-radius: 4px;
  padding: 7px 12px;
  max-width: 322px;
  display: flex;
  align-items: center;
}

.search-wrapper svg {
width: 16px;
height: 16px;
margin-right: 8px;
color: #ff7a00;
}

.search-wrapper input {
  border: none;
  outline: none;
  flex-grow: 1;
  font-size: var(--font-small);
  color: #FCE3CF;
}
.search-wrapper input::placeholder {
  color: var(--color-primary);
}
.custom-select {
position: relative;
}

.custom-select select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
padding:5px 35px 5px 12px;
border: 1px solid #FCE3CF;
border-radius: 4px;
width: 100%;
}

.custom-select::after {
content: "";
position: absolute;
top: 50%;
right: 12px;
width: 18px;
height: 9px;
pointer-events: none;
transform: translateY(-50%);
background-image: url('data:image/svg+xml,<svg width="18" height="9" viewBox="0 0 18 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.99953 8.80062C8.29953 8.80062 7.59953 8.53063 7.06953 8.00063L0.549531 1.48062C0.259531 1.19062 0.259531 0.710625 0.549531 0.420625C0.839531 0.130625 1.31953 0.130625 1.60953 0.420625L8.12953 6.94062C8.60953 7.42062 9.38953 7.42062 9.86953 6.94062L16.3895 0.420625C16.6795 0.130625 17.1595 0.130625 17.4495 0.420625C17.7395 0.710625 17.7395 1.19062 17.4495 1.48062L10.9295 8.00063C10.3995 8.53063 9.69953 8.80062 8.99953 8.80062Z" fill="%230E9493"/></svg>');
background-size: 100% 100%;
background-repeat: no-repeat;
}

.project-card-outer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-card {
  border: solid 1px var(--border-plight);
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.work-outer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.work-outer .work-profile {
  align-self: flex-end;
  padding: 13px 0 0 20px;
  color: var(--typo-primary);
  font-size: var(--font-small);
  line-height: normal;
  display: flex;
  gap: 8px;
}
.work-time {
  background: var(--light-orange);
  display: flex;
  align-items: center;
  padding: 8px 10px;
  gap: 6px;
  font-size: var(--font-xs);
  align-items: center;
  line-height: normal;
  border-bottom-left-radius: 5px;
}
.project-info {
  padding: 10px 20px 20px;
}
.project-info .project-title {
  font-size: var(--font-20);
  line-height: normal;
  font-weight: 600;
  color: var(--h-color);    
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.project-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.pu-profile .pu-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: solid 1px #FCE3CF;
  padding: 5px;
}
.pu-profile .pu-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pu-profile  .pu-content {
  padding-left: 10px;
}
.pu-profile .pu-content h5 {
  font-size: var(--font-large);
  line-height: 30px;
  margin-bottom: 2px;
}
.pu-content > div {
  font-size: 12px;
  color: var(--h-color);
  line-height: normal;
}
.project-user .pu-share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-user .pu-share .view-bid {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: solid 1px var(--border-plight);
  line-height: normal;
  border-radius: 5px;
  font-size: var(--font-small);
  color: #404A62;
  font-weight: 500;
}
.project-user .pu-share  .share-profile {
  padding: 4px 10px;
  background: var(--border-plight);
  line-height: normal;
  border-radius: 6px;
}
.project-info .project-dis {
  font-size: var(--font-small);
  line-height: normal;
  color: var(--h-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.project-bid-oter {
  display: flex;
  justify-content: space-between;
  padding: 8px 24px;
  background-color: var(--light-orange);
  gap: 20px;
}
.project-bid-oter .project-bid {
  display: flex;
  gap: 10px;
}
.project-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}
.project-bid-oter .project-bid .secondary-outline {
  padding: 7px 7px;
}

.loadmore {
  padding-top: 32px;
}

.no-projects-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  width: 100%;
  grid-column: 1 / -1;
}

.no-projects-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  padding: 40px 20px;
}

.no-projects-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--h-color);
  margin: 0;
}

.no-projects-content p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}






/* sidebar */

/* Submenu styles moved to main style.css */
/* custom modal */
.custom-modal .modal-dialog {
  max-width: 961px;
  border: none !important;
}
.modal .modal-dialog .modal-content {
  padding: 30px;
  border: none;
  box-shadow: none;
  background-color: var(--light-gray);
  border-radius: 8px;
}
.modal .modal-dialog .modal-content .tab-title{
  align-items: center;
}
.modal .modal-dialog .modal-content .tab-title  h5 {
  margin: 0;
}
.modal .modal-dialog .modal-content .tab-title button.btn-close {
  border: solid 2px #564B43;
  border-radius: 50%;
  background-size: 10px !important;
  background-position: center;
  font-size: 0;
  height: 22px;
  width: 22px;
}
.custom-modal label {
  font-size: var(--font-small);
  line-height: normal;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--h-color);
}
.input-icon input {
  font-size: var(--font-small);
  min-height: 40px;
  background-color: var(--color-white);
  border-color: var(--color-white);    
  border-radius: 8px;
}
.input-icon textarea {
  font-size: var(--font-small);
  min-height: 180px;
  background-color: var(--color-white);
  border-color: var(--color-white);    
  border-radius: 8px;
  resize: none;
}
.input-icon input:focus,
.input-icon textarea:focus{
  box-shadow: none;
  border-color: var(--color-primary);
}
.pop-dis{
  margin: 20px 0 40px;
}
.pop-dis p{
  font-size: var(--font-small);
  line-height: normal;
}
.pop-dis p a{
  font-weight: 700;
  color: var(--typo-primary);
}
/*  */
.deal-price-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deal-price-outer .deal-price {
  display: flex;
  flex-direction: column;
  text-align: right;
  justify-content: center;
  font-size: var(--font-small);
  line-height: normal;
  font-weight: 600;
  color: var(--color-primary);
}
.deal-price-outer .deal-price .mybid{
  font-size: 10px;
  line-height: normal;
  color: #787676;
}
span.price-b span.days:before {
  content: "";
  margin-left: 5px;
  padding-left: 5px;
  border-left: solid 1px var(--border-clight);
  line-height: normal;
  height: 11px;
  display: inline-block;
}

.project-user .pu-share .completed,
.project-user .pu-share .ongoing {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: normal;
  border-radius: 5px;
  font-size: var(--font-small);
  background: rgba(14, 148, 147, 0.1);
  color: var(--typo-primary);
  font-weight: 500;
}
.project-user .pu-share .ongoing{
  background-color: var(--light-gray);
  color: var(--text-color);
}
.custom-btn.cancelled {
  border: none;
  color: #F24747;
  font-weight: 500;
  font-size: var(--font-regular);
}
.custom-btn.complete {
  border: none;
  color: var(--typo-primary);
  font-weight: 500;
  font-size: var(--font-regular);
}
/*  */
.category-list-wrap{ display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 20px;}
.category-list-wrap li { position: relative;background-color: var(--color-white); overflow: hidden; border-radius: 8px; border: solid 1px var(--border-plight); padding: 10px; transition: all 0.35s ease-in-out;}
.category-list-wrap li .cat-img { width: 27px; height: 27px; position: relative;}
.cat-outer{display: flex; justify-content: space-between; gap: 20px; margin-bottom: 8px;}
.category-list-wrap li .cat-img img { position: relative; z-index: 1;}
.category-list-wrap li .title-h{ font-size: var(--font-regular); font-weight: 600; line-height: 24px; color: var(--text-color); margin-bottom: 0; display: block;}
.category-list-wrap li .cat-img:before { content: ""; position: absolute; height: 16px; width: 16px; background: #FCE3CF; border-radius: 50%; right: -1px; bottom: 2px; transition: auto; transition: all 0.35s ease-in-out;}
.plan-validaty {
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  padding: 2px 8px;
  border-radius: 4px;
  align-self: flex-start;
}
.plan-validaty.active,
.badge-active{
  background-color: rgba(14, 148, 147, 0.2);
  color: var(--typo-primary);
}
.plan-validaty.experie,
.badge-expired{
  background-color: rgba(254, 226, 226, 1);
  color: rgba(242, 71, 71, 1);
}
.tab-title .project-filter .custom-btn:hover svg {
  filter: inherit;
}
.tab-title .project-filter .secondary-btn:hover svg path {
  stroke: var(--typo-primary) !important;
}
.category-listing {
  padding-top: 60px;
}
.membership-list {
  margin-top: 40px;
}
.table-container {
    overflow-x: auto;
  }
.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
  border: solid 1px var(--light-gray);
}

  .custom-table thead {
    background-color: #322e2b;
    color: #fff;
    font-weight: 600;
  }
  .category-listing .project-filter .custom-btn {
  padding: 7px 16px;
}
.custom-table th{white-space: nowrap;}
  .custom-table th,
  .custom-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
    border-right: solid 1px rgba(230, 230, 230, 1);
  }
  .custom-table th:last-child,
  .custom-table td:last-child {
    border-right: none;

  }
  .custom-table tbody tr:nth-child(odd) {
    background-color: #f2f6fb;
  }

  .custom-table tbody tr:nth-child(even) {
    background-color: #fff;
  }

  .custom-table th:first-child {
    border-top-left-radius: 10px;
  }

  .custom-table th:last-child {
    border-top-right-radius: 10px;
  }

  .custom-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
  }

  .custom-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
  }

  .badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    border-radius: 4px;
  }

  .payment {
    font-weight: 500;
    color: #374151;
  }
.select2-container {
  width: 100% !important;
}
.payment-fields {
  margin-top: 20px;
  display: none;
}
.payment-methods {
  display: flex;
  gap: 25px;
}
.payment-methods .payment-option {
  width: 100%;
  background: #fff;
  border: solid 1px #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: var(--font-small);
}
.payment-methods .payment-option.active{
  border: solid 1px var(--border-plight);
  color: var(--color-primary);

}
.payment-fields.active {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
/*  */
@media(max-width:1199px){

}
@media(max-width:767px){

}
@media(max-width:580px){

}
@media(max-width:480px){
  
}
