.account_section {}

.account_section .profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffaf5;
  padding: 20px;

  border: 1px solid #fff3e8;
}

.account_section .profile-header .profile-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.account_section .profile-header .profile-left .avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: white;
  border: 2px solid #884200;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: bold;
  color: #884200;
  font-size: 40px;
  font-family: Cormorant Garamond;
  aspect-ratio: 1/1;
}

.account_section .profile-header .profile-left .avatar .plus {
  position: absolute;
  bottom: -8px;
  right: 29px;
  background: #a05a2c;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  /* padding: 6px 8px; */
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
}

.account_section .profile-header .profile-left .avatar .plus .inner_icon {
  margin-left: 1px;
}

.account_section .profile-header .profile-info .name {
  margin-bottom: 10px;
  font-size: 26px;
  color: #884200;
  font-weight: 600;
  font-family: Raleway;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account_section .profile-header .profile-info .number {
  font-size: 22px;
  color: #343434;
  font-family: Roboto Slab;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* limit to 1 line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
}

.account_section .profile-header .update-btn {
  background: white;
  border: none;
  padding: 8px 15px;
  border-radius: 19px;
  cursor: pointer;
  font-size: 16px;
  font-family: Raleway;
  color: #343434;
  font-weight: 500;
}

.account_section .form_card {
  background: white;
  margin-top: 10px;
  padding: 20px;
  border-radius: 6px;
}

.account_section .form_card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account_section .form_card .info_head {
  font-size: 24px;
  color: #343434;
  font-family: Cormorant Garamond;
  font-weight: 600;
}

.account_section .form_card .edit-btn {
  background: none;
  border: none;
  color: #343434;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.account_section .form {
  gap: 20px;
  margin-top: 15px;
}

.account_section .form_data {
  border: 1px solid #c4c4c4;
  padding: 20px;
}

.account_section .form-group {
  display: flex;
  flex-direction: column;
}

.account_section .form-control {
  background: #f5f5f5 0% 0% no-repeat padding-box !important;
  border: 1px solid #d2d2d2 !important;
  border-radius: 0px;
  padding: 10px;
  box-shadow: none;
  font-size: 14px !important;
  color: #000000;
  font-weight: 600;
}

.account_section .form-control:disabled {
  background-color: #dcdcdc !important;
}

.account_section .form-label {
  font-size: 13px !important;
  color: #343434;
  font-weight: 600;
}

.account_section input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.account_section .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.account_section .icon_wrapper {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.account_section .icon_wrapper .edit-icon {
  width: 100%;
  height: 100%;
}

.account_section .avatar_wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: 7px;
}

.account_section .avatar_wrapper .avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.account_section .save-btnn .btnn {
  width: 100px;
  background: #1f2a44;
}

@media (min-width: 0px) and (max-width: 574px) {
  .account_section .profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .account_section .avatar_wrapper {
    width: 65px;
    height: 65px;
  }

  .account_section .profile-header .profile-info .number {
    font-size: 14px;
    white-space: nowrap;
    font-weight: 600;
    width: 120px;
  }

  .account_section .profile-header .profile-left {
    gap: 15px;
  }

  .account_section .profile-header .profile-left .avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .account_section .form_card .edit-btn {
    font-size: 12px;
  }

  .account_section .profile-header .profile-left .avatar .plus {
    right: 18px;
    bottom: -8px;
    font-size: 12px;
    width: 15px;
    height: 15px;
  }

  .account_section .profile-header .profile-info .name {
    font-size: 17px;
  }

  .account_section .form_card .info_head {
    font-size: 18px;
  }

  .account_section .profile-header .update-btn {
    align-self: flex-end;
    font-size: 14px;
    padding: 6px 12px;
  }

  .account_section .form_card {
    padding: 15px;
  }

  .account_section .form_data {
    padding: 15px;
  }

  .account_section .form-control {
    font-size: 12px !important;
    padding: 8px;
  }

  .account_section .form-label {
    font-size: 12px !important;
  }

  .account_section .form_data {
    padding: 8px 3px !important;
  }
}

@media (min-width: 575px) and (max-width: 767.98px) {
  .account_section .profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .account_section .avatar_wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }

  .account_section .profile-header .profile-info .number {
    font-size: 15px;
    white-space: nowrap;
    font-weight: 600;
    width: 250px;
  }

  .account_section .profile-header .profile-left {
    gap: 15px;
  }

  .account_section .profile-header .profile-left .avatar {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

  .account_section .form_card .edit-btn {
    font-size: 13px;
  }

  .account_section .profile-header .profile-left .avatar .plus {
    right: 20px;
    bottom: -10px;
    font-size: 14px;
    width: 17px;
    height: 17px;
  }

  .account_section .profile-header .profile-info .name {
    font-size: 22px;
  }

  .account_section .form_card .info_head {
    font-size: 19px;
  }

  .account_section .profile-header .update-btn {
    align-self: flex-end;
    font-size: 15px;
    padding: 6px 12px;
  }

  .account_section .form_card {
    padding: 15px;
  }

  .account_section .form_data {
    padding: 15px;
  }

  .account_section .form-control {
    font-size: 14px !important;
    padding: 8px;
  }

  .account_section .form-label {
    font-size: 13px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .account_section .avatar_wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }

  .account_section .profile-header .profile-info .number {
    font-size: 15px;
    white-space: nowrap;
    font-weight: 600;
    width: 150px;
  }

  .account_section .profile-header .profile-left {
    gap: 15px;
  }

  .account_section .profile-header .profile-left .avatar {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

  .account_section .form_card .edit-btn {
    font-size: 13px;
  }

  .account_section .profile-header .profile-left .avatar .plus {
    right: 22px;
    bottom: -10px;
    font-size: 12px;
    width: 15px;
    height: 15px;
  }

  .account_section .profile-header .profile-info .name {
    font-size: 22px;
  }

  .account_section .form_card .info_head {
    font-size: 19px;
  }

  .account_section .profile-header .update-btn {
    align-self: flex-end;
    font-size: 15px;
    padding: 6px 12px;
  }

  .account_section .form_card {
    padding: 15px;
  }

  .account_section .form_data {
    padding: 15px;
  }

  .account_section .form-control {
    font-size: 14px !important;
    padding: 8px;
  }

  .account_section .form-label {
    font-size: 13px !important;
  }
}