.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: 600;
}

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

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

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

.profile-block .img-block {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 6px #00000054;
  position: relative;
}

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

.profile-page .profile-block .upload-block {
  position: absolute;
  bottom: 4px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--pri);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffffffe3;
  z-index: 1;
}
.upload-block .icon-edit {
  color: #fff;
  font-size: 15px;
  display: block;
  margin-top: -3px;
}

.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;
}

.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;
}

.users-list-block .table-card-ui .status {
  margin-left: 15px;
}

.profile-info-right {
  width: 100%;
}

/* @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: 1100px) {
  .profile-page .form-wrapper .form-control {
    flex-basis: 100%;
    margin: 0 0 25px;
  }
  .profile-page .form-wrapper {
    margin: 0px;
  }
  .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;
  }
  .inner-wrapper.profile-outer {
    flex-wrap: wrap;
  }
  .profile-page .wrapper .main .two-step.card {
    padding: 22px 18px;
  }
  .status-block .MuiInputLabel-formControl {
    font-size: 10px;
  }
  .status-block .MuiFormControl-root {
    min-width: 98px;
  }
  .profile-page .form-wrapper .form-control {
    margin: 0 0 16px;
  }
}

@media screen and (max-width: 575px) {
  .tabs-wrapper ul li span {
    font-size: 12px;
  }
  .tabs-wrapper ul li {
    padding: 0 12px;
    margin-right: 20px;
  }
}
