.customer-profile {
  padding-top: 64px;
}
.profile-edit-block {
  text-align: center;
  position: relative;
  background-color: var(--light-gray);
  border-radius: 10px;
  padding-top: 71px;
  padding-bottom: 12px;
}
.profile-edit-block .profile-img {
  margin: 0 auto;
  width: 122px;
  height: 122px;
  background-color: var(--color-white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translate(-50%, 0);
}
.profile-edit-block .profile-img .profile-update-img{
  border-radius: 50%;
  max-width: 100px;
  height: 100px;
}
.profile-edit-block .profile-img .edit-btn {
  position: absolute;
  bottom: -6px;
}
.profile-edit-block .profile-img .edit-btn .edit-btn-link{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  background-color: var(--color-primary);
  border-radius: 40px;
  border: 1px solid var(--color-primary);
}
.profile-edit-block .profile-img .edit-btn .edit-btn-link:hover{
  background-color: var(--color-white);
}
.profile-edit-block .profile-img .edit-btn .edit-btn-link img{
  filter: brightness(0) invert(1);
}
.profile-edit-block .profile-img .edit-btn .edit-btn-link:hover img{
  filter: none;
}
.profile-edit-block h5 {
  color: var(--text-color);
}
.profile-reviews {
  font-size: var(--font-xs);
  color: var(--typo-secondary);
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.customer-menu {
  padding-top: 20px;
}
.customer-menu> ul> li {
  position: relative;
}
.add-membership-btn {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.customer-menu> ul> li:not(:last-child){
  border-bottom: solid 1px var(--light-gray);
}
.customer-menu> ul> li>a {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  gap: 10px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  color:var(--text-color);
  position: relative;
}
.customer-menu li a span.massage-count {
  background: #F24747;
  color: #fff;
  height: 15px;
  width: 15px;
  font-size: 10px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.customer-menu li a svg path{
  fill: var(--text-color);
}
.customer-menu> ul>li.active > a{
  border-bottom: none;
  background-color: rgba(14, 148, 147, 0.2);
  color: var(--typo-primary);
}
.customer-menu li a:hover {
  color: var(--typo-primary);
}
.customer-menu> ul> li.active > a svg path,
.customer-menu li a:hover svg path,
.customer-menu ul li .submenus li.active > a svg path{
  fill: var(--typo-primary);
}
.customer-menu> ul> li:last-child> a{
  color: rgba(242, 71, 71, 1);
}
.customer-menu> ul> li:last-child> a svg path{
  fill: rgba(242, 71, 71, 1);
}

.customer-menu .arrow {
  transition: transform 0.3s ease;
}

.customer-menu .submenus {
  display: none;
}
.customer-menu ul li .submenus li > a {
  padding: 12px 30px;
  font-size: var(--font-regular);
  line-height: normal;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  color: #787676;
  display: flex;
  align-items: center;
  gap: 10px;
}
.customer-menu ul li .submenus li.active > a,
.customer-menu ul li .submenus li > a:hover{
  color: var(--typo-primary);
}
.customer-menu .active > a .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.customer-menu .active > .submenus {
  display: block;
}
.customer-menu> ul> li>a > .arrow{
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
/*  */
.form-wrap{
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
}
.form-wrap label {
  font-size: var(--font-small);
  line-height: normal;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--h-color);
}
.form-wrap label span{
  font-size: var(--font-xs);
  line-height: normal;
  color: var(--text-color);
}
.input-icon {
  position: relative;
}
.input-icon input,
.input-icon textarea {
  font-size: var(--font-small);
  min-height: 40px;
  background-color: var(--color-white);
  border-color: var(--color-white);
  padding-right: 35px;
  border-radius: 8px;
  resize: none;
}
.input-icon input:focus,
.input-icon textarea:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}
.input-icon .icon {
  position: absolute;
  left: 8px;
  top: 11px;
}
.password-show-hide .icon {
  left: auto;
  right: 8px;
  cursor: pointer;
}

.custom-modal .modal-dialog {
  max-width: 961px;
  border: none !important;
}
.modal .modal-dialog .modal-content {
  padding: 30px;
  border: none;
  box-shadow: none;
  border-radius: 8px;
      background-color: var(--light-gray);
}
.custom-modal label {
  font-size: var(--font-small);
  line-height: normal;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--h-color);
}
.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;
}


.upload-area {
  border: 1px dashed var(--typo-primary);
  cursor: pointer;
  transition: border-color 0.3s ease;
  background-color: #fff;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
}

.upload-area:hover {
border-color: #127066;
}

.upload-placeholder {
color: #666;
}
.upload-placeholder p {
  color: var(--h-color);
  font-weight: 600;
  margin: 25px 0 5px;
}
.upload-placeholder p a{
  color: var(--typo-primary);
}
div#previewBox {
  max-width: 161px;
  width: 100%;
  border: solid 1px var(--light-gray);
  border-radius: 8px;
  height: 165px;
  padding: 8px 10px;
}
div#previewBox img#previewImage {
  width: 100% !important;
  height: 100% !important;
}
.remove-btn {
  width: 22px;
  height: 22px;
  line-height: 18px;
  border: solid 2px #F24747 !important;
  color: #F24747;
}

.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;
}
.form-wrap{
  margin-bottom: 40px;
}
.welcome-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 10px;
  padding: 0 40px;
  margin-top: 65px;
  margin-bottom: 40px;
  background: rgba(239, 115, 16, 0.1);
}
.welcome-left {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px 0;
}
.welcome-head .welcome-content h6{
  font-size: var(--font-20);
  line-height: 27px;
  margin-bottom: 5px;
}

.welcome-head .welcome-content p {
  margin: 0;
  font-size: var(--font-regular);
  line-height: 24px;
  color: var(--typo-secondary);
}

/*  */
.progress-container {
width: 56px;
height: 56px;
}

.progress-circle {
position: relative;
width: 56px;
height: 56px;
box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.14);
border-radius: 50%;

}

.progress-circle svg {
transform: rotate(-90deg);
}

.progress-circle circle {
fill: none;
stroke-width: 6;
stroke-linecap: round;
}

.progress-circle .bg {
stroke: #fff;
box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.14);

}

.progress {
stroke: #f37300;
stroke-dasharray: 150.72; /* 2πr = 2*π*24 */
stroke-dashoffset: 150.72;
transition: stroke-dashoffset 1s ease-out;
}

.percentage {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;
font-weight: bold;
color: #2f3c50;
}
/*  */

.work-exp-outer .work-exp-card:not(:last-child){
  margin-bottom: 20px;
}
.work-exp-card{
  padding: 20px;
  border-radius: 8px;
  background-color: var(--color-white);
}
.work-exp-title {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 10px;
}
.work-exp-title .work-exp-action {
  display: flex;
  gap: 16px;
  align-self: flex-start;
}
.work-exp-card h4{
  font-size: var(--font-large);
  line-height: normal;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--typo-secondary);
}
.work-exp-card .work-loaction{
  font-size: 10px;
  line-height: normal;
  font-weight: 700;
  color: var(--typo-primary);
}
.work-exp-card .work-dis{
  margin-bottom: 10px;
}
.work-exp-card .work-dis p{
  font-size: var(--font-small);
  line-height: normal;
}
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.doc-card {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-plight);
  border-radius: 10px;
  padding: 8px;
  padding-right: 15px;
  justify-content: space-between;
  transition: 0.2s ease;
}
.doc-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.doc-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #ffe5db;
}
.img .icon-box {
  background: #FCE3CF;
}
.icon-box img {
  width: 24px;
}
.doc-text {
  display: flex;
  flex-direction: column;
  font-size: var(--font-small);
  font-weight: 600;
  line-height: normal;
  color: var(--text-color);
}
.doc-text .size {
  font-size: 12px;
  font-weight: 400;
  color: #787676;
}
.download-arrow {
  color: #f58220;
  font-size: 18px;
}
.content-box-inner .secondary-btn:hover svg path{
  stroke: var(--typo-primary) !important;
}
.content-box-inner .custom-btn:hover svg {
  filter: inherit;
}
.preview-image{
  max-width: 200px;
  max-height: 200px;
}

.no-experience-found {
  text-align: center;
}
.no-experience-found h4 {
  font-size: var(--font-20);
  line-height: 30px;
  font-weight: 700;
  color: var(--text-color);
  margin: 15px 0 20px;
}