.profile-page .title-block h2 {
  color: var(--black);
  margin-bottom: 8px;
  font-size: 24px;
}

.profile-page .tabs-wrapper {
  margin-bottom: 20px;
}

.tabs-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--greylt3);
  align-items: center;
  box-shadow: none;
}

.tabs-wrapper ul li {
  position: relative;
  float: left;
  display: inline-flex;
  align-items: center;
  margin-right: 35px;
  padding: 0 15px;
  min-height: 47px;
  cursor: pointer;
}

.tabs-wrapper ul li span {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.tabs-wrapper ul li.active:after {
  content: "";
  background: var(--pri);
  height: 4px;
  width: 100%;
  bottom: -3px;
  border-radius: 5px;
  left: 0;
  right: 0;
  position: absolute;
}

.tabs-wrapper ul li.active span {
  color: var(--pri);
  font-weight: 500;
}

.tabs-wrapper button {
  margin-bottom: 15px;
  min-height: 35px;
}

.profile-page .profile-page .tabs-wrapper {
  margin-bottom: 15px;
}

.profile-page .profile-block {
  position: relative;
  display: inline-block;
}

.profile-page .profile-block .img-block {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: none;
  box-shadow: 0px 0px 11.5px rgb(0 0 0 / 15%);
}

.profile-page .profile-block .img-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.profile-page .profile-block .upload-block {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: var(--pri);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #eef1f3;
  z-index: 1;
  cursor: pointer;
  padding-top: 2px;
}

.profile-page .profile-block .upload-block label {
  cursor: pointer;
}

.profile-page .profile-block .upload-block img {
  max-width: 16px;
}

.profile-page .profile-wrapper {
  margin: 3px 3px 20px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  flex: 0 0 220px;
}

.profile-page .profile-wrapper button {
  margin-top: 10px;
  font-size: 13px;
  min-height: 35px;
}

.profile-page .form-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
}

.profile-page .form-wrapper .form-control.half {
  width: 48%;
}

.profile-page .form-wrapper .form-control {
  flex: 0 0 calc(50% - 30px);
  margin: 0 15px 25px;
}

.profile-page .profile-block .img-block .delete-block {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  background: #0000008a;
  z-index: 0;
  display: none;
  cursor: pointer;
}

.profile-page .profile-block .img-block:hover .delete-block {
  display: flex;
}

.profile-page .profile-block .img-block .delete-block img {
  max-width: 35px;
  height: auto;
}

/* .profile-page .form-wrapper .form-control .error {
  top: 68px;
} */

.profile-outer {
  padding-bottom: 60px;
}

.inner-wrapper.profile-outer {
  padding-bottom: 0;
  display: flex;
  align-items: flex-start;
}

.profile-page .tabs-wrapper ul {
  width: calc(100% - 160px);
  overflow: visible;
}

.profile-page .tabs-wrapper > ul::-webkit-scrollbar {
  height: 4px;
  width: auto;
}

.profile-page .wrapper .main {
  width: 100%;
}

.profile-page .wrapper .main .two-step {
  margin: 0;
  padding: 0;
}

.profile-page .wrapper .main .two-step.card {
  margin: 0;
  padding: 30px 30px 22px;
}

.profile-outer .copy-field button {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 41px;
  height: 48px;
  background-color: #f3f3f9;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transform: none;
}

.profile-outer .copy-field button .copied {
  bottom: 52px;
  right: -6px;
}

/* @media screen and (min-width: 1800px) {
  .profile-page .title-block h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .tabs-wrapper ul li span {
    font-size: 18px;
  }
  .profile-page .profile-block .upload-block {
    width: 38px;
    height: 38px;
  }
  .profile-page .profile-block .upload-block img {
    max-width: 15px;
  }
  .profile-page .profile-block .img-block .delete-block img {
    max-width: 42px;
  }
  .copy-field button img {
    max-width: 22px;
  }
  .copy-field button {
    top: 37px;
  }
  .profile-page .tabs-wrapper ul {
    width: calc(100% - 200px);
  }
} */

@media screen and (max-width: 1600px) {
  .profile-outer .copy-field button {
    border-radius: 0 6px 6px 0;
    height: 38px;
  }
}

@media screen and (max-width: 1100px) {
  .profile-page .form-wrapper .form-control {
    flex-basis: 100%;
    margin: 0 0 25px;
  }
  .profile-page .form-wrapper {
    margin: 0px;
  }
  .profile-page .profile-block .img-block {
    width: 160px;
    height: 160px;
  }
  .profile-page .profile-wrapper {
    flex: 0 0 170px;
  }
}

@media screen and (max-width: 1024px) {
  .profile-page .form-wrapper {
    width: calc(100% - 15px);
    max-width: 550px;
  }
}

@media screen and (max-width: 767px) {
  .profile-page .tabs-wrapper button {
    margin: 0;
    position: absolute;
    right: 0;
    top: -40px;
  }
  .profile-page .tabs-wrapper {
    border: none;
    position: relative;
  }
  .profile-page .tabs-wrapper ul {
    width: 100%;
    padding-bottom: 0;
    border-bottom: 1px solid var(--greylt3);
  }
  /* .profile-outer {
    max-height: calc(100vh - 222px);
  } */
  .tabs-wrapper ul li.active:after {
    bottom: -2px;
  }
}
