
/*

=====================
  5.13  profile style start
==========================

*/

.profile-section .profile-sidebar {
  width: 100%;
  background-color: var(--ed-color-grey-1);
  border-radius: 6px 6px 0 0;
}
.profile-section .profile-sidebar.sticky-top {
  top: 30px;
  z-index: 1;
}
.profile-section .profile-sidebar .profile-cover {
  position: relative;
  width: 100%;
  height: 150px;
  background: linear-gradient(333.77deg, #ff8d2f 9.66%, #ffd3b0 101.81%);
  border-radius: 10px 10px 0px 0px;
}
.profile-section .profile-sidebar .profile-cover .profile-pic {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 100px;
  height: 100px;
  border-radius: 100%;
  padding: 5px;
  background-color: rgba(var(--ed-color-common-white), 1);
}
.profile-section .profile-sidebar .profile-name {
  margin-top: 55px;
}
.profile-section .profile-sidebar .profile-name .user-name {
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
  color: var(--ed-color-heading-primary);
}
.profile-section .profile-sidebar .profile-name h6 {
  margin-top: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: var(----ed-color-text-body);
}

.profile-section .profile-sidebar .profile-name h4 {
  font-size: 22px;
  color: var(--ed-color-theme-primary);
  text-align:center;
}
.profile-section .profile-sidebar .profile-list {
  padding-left: calc(10px + 10 * (100vw - 320px) / 1600);
  padding-bottom: calc(10px + 10 * (100vw - 320px) / 1600);
  margin-top: calc(20px + 20 * (100vw - 320px) / 1600);
}
[dir=rtl] .profile-section .profile-sidebar .profile-list {
  padding-left: unset;
  padding-right: calc(10px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 991px) {
  .profile-section .profile-sidebar .profile-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    overflow: auto;
    margin: calc(10px + 20 * (100vw - 320px) / 1600) 10px 0;
  }
}
.profile-section .profile-sidebar .profile-list li {
  width: 100%;
  padding: 0;
  padding-block: 10px;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
  cursor: pointer;
}
[dir=rtl] .profile-section .profile-sidebar .profile-list li {
  text-align: right;
}
.profile-section .profile-sidebar .profile-list li:hover i,
.profile-section .profile-sidebar .profile-list li:hover a {
  color: var(--ed-color-theme-primary);
}
@media (min-width: 991px) {
  .profile-section .profile-sidebar .profile-list li:first-child {
    padding-top: 0;
  }
}
.profile-section .profile-sidebar .profile-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 991px) {
  .profile-section .profile-sidebar .profile-list li {
    padding: 0;
    border: none;
  }
}
.profile-section .profile-sidebar .profile-list li a {
  width: 100%;
  color: var(--ed-color-text-body);
  cursor: pointer;
}
.profile-section .profile-sidebar .profile-list li i {
  color: var(--ed-color-text-body);
}
.profile-section .profile-sidebar .profile-list li.active {
  position: relative;
}
.profile-section .profile-sidebar .profile-list li.active a {
  color:var(--ed-color-theme-primary);
  font-weight: 500;
}
.profile-section .profile-sidebar .profile-list li.active::after {
	content: "";
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	border-right: 3px solid var(--ed-color-theme-primary);
}
[dir=rtl] .profile-section .profile-sidebar .profile-list li.active::after {
	right: unset;
	left: 0;
	border-right: unset;
	border-left: 3px solid var(--ed-color-theme-primary);
}
@media (max-width: 991px) {
  .profile-section .profile-sidebar .profile-list li.active::after {
	display: none;
  }
}
.profile-section .profile-sidebar .profile-list li.active i {
  color:var(--ed-color-theme-primary);
}
.profile-section .change-profile-content {
  width: 100%;
  height: 100%;
  padding: calc(20px + 20 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600);
  background-color: var(--ed-color-grey-1);
}
.profile-section .change-profile-content .profile-details-list li {
  width: 100%;
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
  background-color: var(--ed-color-common-white);
  border-radius: 6px;
  margin-bottom: calc(10px + 10 * (100vw - 320px) / 1600);
}
.profile-section .change-profile-content .profile-details-list li:last-child {
  margin-bottom: 0;
}
.profile-section .change-profile-content .profile-details-list li .profile-content i {
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  color: var(--ed-color-theme-primary);
}
.profile-section .change-profile-content .profile-details-list li .profile-content span {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: var(--ed-color-text-body);
}
.profile-section .change-profile-content .profile-details-list li .profile-content h6 {
  font-weight: 400;
  color: rgba(var(--content-color), 1);
  padding-left: calc(22px + 8 * (100vw - 320px) / 1600);
  margin-top: 4px;
}
[dir=rtl] .profile-section .change-profile-content .profile-details-list li .profile-content h6 {
  padding-left: unset;
  padding-right: calc(22px + 8 * (100vw - 320px) / 1600);
}
.profile-section .change-profile-content .profile-details-list li .btn {
  padding: 3px 15px;
}
.profile-section .my-order-content {
  width: 100%;
  height: 100%;
  padding: calc(20px + 20 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600);
  background-color: var(--ed-color-grey-1);
}
.profile-section .my-order-content .title {
  position: relative;
}

[dir=rtl] .profile-section .my-order-content .title .loader-line::before {
  left: unset;
  right: 0;
}
.profile-section .my-order-content .order-box-list li {
  width: 100%;
  background-color: var(--ed-color-common-white);
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  margin-bottom: calc(10px + 10 * (100vw - 320px) / 1600);
  border-radius: 6px;
  list-style:none;
}
.profile-section .my-order-content .order-box-list li:last-child {
  margin-bottom: 0;
}
.profile-section .my-order-content .order-box-list li .order-box {
  position: relative;
  background-color:transparent;
}
@media (max-width: 430px) {
  .profile-section .my-order-content .order-box-list li .order-box {
    display: block;
  }
}
.profile-section .my-order-content .order-box-list li .order-box .order-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: calc(10px + 10 * (100vw - 320px) / 1600);
  border-bottom: 1px dashed var(--ed-color-grey-1);
}
@media (max-width: 375px) {
  .profile-section .my-order-content .order-box-list li .order-box .order-box-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.profile-section .my-order-content .order-box-list li .order-box .order-box-content .brand-icon .icon {
  width: calc(60px + 10 * (100vw - 320px) / 1600);
  height: calc(60px + 10 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
}
.profile-section .my-order-content .order-box-list li .order-box .order-box-content .order-details {
  width: calc(100% - (60px + 10 * (100vw - 320px) / 1600) - 10px);
}
@media (max-width: 430px) {
  .profile-section .my-order-content .order-box-list li .order-box .order-box-content .order-details {
    margin-top: 5px;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .profile-section .my-order-content .order-box-list li .order-box .order-box-content .order-details .details-btn {
    position: absolute;
    top: 20px;
    right: 10px;
  }
}
.profile-section .my-order-content .order-title {
  font-weight: 600;
  font-size: calc(15px + 5 * (100vw - 320px) / 1600);
  color: var(--ed-color-text-body);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--dark-text), 0.15);
}
.profile-section .cards-content {
  width: 100%;
  height: 100%;
  padding: calc(20px + 20 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600);
  background-color: rgba(var(--box-bg), 1);
}
.profile-section .cards-content .debit-card {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  border: rgba(61, 61, 61, 0.15);
  border-radius: 6px;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}
.profile-section .cards-content .debit-card .card-details {
  padding: 20px;
}
.profile-section .cards-content .debit-card .card-details .card-name {
  color: rgba(255, 255, 255, 0.5);
}
.profile-section .cards-content .debit-card .card-details .chip {
  margin-top: 12px;
}
.profile-section .cards-content .debit-card .card-details h6 {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.profile-section .cards-content .debit-card .card-details h5 {
  font-weight: 600;
  color: #fff;
}
.profile-section .cards-content .debit-card .card-details .ac-details {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile-section .cards-content .debit-card .card-details .ac-details h6 {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.profile-section .cards-content .debit-card .card-details .ac-details h3 {
  font-weight: 600;
  color: #fff;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
}
.profile-section .cards-content .debit-card .card-details .user-name {
  margin-top: 10px;
}
.profile-section .cards-content .debit-card .card-details .user-name h6 {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.profile-section .cards-content .debit-card .card-details .user-name h5 {
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.profile-section .cards-content .debit-card:hover .card-hover {
  opacity: 1;
  border-radius: 6px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.profile-section .cards-content .debit-card .card-hover {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.profile-section .cards-content .debit-card .card-hover .edit-icon {
  color: rgba(var(--white), 1);
}
.profile-section .cards-content .debit-card.color-1 {
  background-color: rgb(75, 119, 160);
}
.profile-section .cards-content .debit-card.color-2 {
  background-color: rgb(119, 120, 118);
}
.profile-section .cards-content .debit-card.color-3 {
  background-color: rgb(134, 184, 207);
}
.profile-section .cards-content .add-card {
  width: 100%;
  min-height: 227px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .profile-section .cards-content .add-card {
    min-height: 100%;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .profile-section .cards-content .add-card {
    padding: 70px;
  }
}
.profile-section .cards-content .add-card .add-icon {
  font-size: 25px;
  color: var(--ed-color-text-body);
}
.profile-section .address-content {
  width: 100%;
  height: 100%;
  padding: calc(20px + 20 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600);
  background-color: rgba(var(--box-bg), 1);
}
.profile-section .address-content .address-box {
  border: 1px solid rgba(var(--dark-text), 0.15);
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
}
.profile-section .address-content .address-box.new-address-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 15px;
}
@media (max-width: 767px) {
  .profile-section .address-content .address-box.new-address-box .new-address-btn {
    width: 100%;
  }
}
.profile-section .address-content .address-box .address-title {
  border-bottom: 1px solid rgba(var(--dark-text), 0.15);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.profile-section .address-content .address-box .address-title h6 {
  font-weight: 500;
  color: var(--ed-color-text-body);
}
.profile-section .address-content .address-box .address-title .icon {
  font-size: 22px;
  color: var(--ed-color-theme-primary);
}
.profile-section .address-content .address-box .address-title .edit-btn {
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}
.profile-section .address-content .address-box .address-details {
  padding: 15px;
}
.profile-section .address-content .address-box .address-details h6 {
  color: rgba(var(--content-color), 1);
}
.profile-section .address-content .address-box .address-details .phone-number {
  margin-top: 12px;
  color: rgba(var(--content-color), 1);
}
.profile-section .address-content .address-box .address-details .option-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(var(--dark-text), 0.15);
}
.profile-section .setting-content {
  width: 100%;
  height: 100%;
  padding: calc(20px + 20 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600);
  background-color: rgba(var(--box-bg), 1);
}
.profile-section .setting-content .notification-setting {
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  background: rgba(var(--white), 1);
  border-radius: 6px;
}
.profile-section .setting-content .notification-setting li {
  display: block;
  border-bottom: 1px solid rgba(var(--dashed-line), 0.5);
}
.profile-section .setting-content .notification-setting li:last-child {
  border-bottom: none;
}
.profile-section .setting-content .notification-setting li .notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 15px 0;
}
.profile-section .setting-content .notification-setting li .notification h6 {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.profile-section .setting-content .notification-setting li .notification input[type=checkbox] {
  position: relative;
  width: 37px;
  height: 22px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: rgba(var(--box-bg), 1);
  outline: none;
  border-radius: 50px;
  cursor: pointer;
}
.profile-section .setting-content .notification-setting li .notification input[type=checkbox]:checked {
  background: rgba(var(--theme-color), 0.1);
}
.profile-section .setting-content .notification-setting li .notification input[type=checkbox]:checked::before {
  -webkit-transform: translateX(80%) translateY(-50%);
          transform: translateX(80%) translateY(-50%);
  background: var(--ed-color-theme-primary);
}
[dir=rtl] .profile-section .setting-content .notification-setting li .notification input[type=checkbox]:checked::before {
  -webkit-transform: translateX(-80%) translateY(-50%);
          transform: translateX(-80%) translateY(-50%);
}
.profile-section .setting-content .notification-setting li .notification input[type=checkbox]:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(var(--content-color), 0.5);
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
[dir=rtl] .profile-section .setting-content .notification-setting li .notification input[type=checkbox]:before {
  left: unset;
  right: 5px;
}
.profile-section .setting-content .delete-account {
  margin-top: calc(15px + 15 * (100vw - 320px) / 1600);
}
.profile-section .setting-content .delete-account h3 {
  margin-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
}
@media (max-width: 375px) {
  .profile-section .setting-content .delete-account h3 {
    margin-bottom: 10px;
  }
}
.my-order-content .cart-table, .my-order-content .cart-table thead tr th, .my-order-content .cart-table tbody tr td {
    background-color:#ffffff;
}
.my-order-content .cart-table thead tr th {
    padding: 25px;
}
.my-order-content .avatar img {
	width: 50px;
    border-radius: 50px;
    height: 50px;
}

.profile-section .wallet-transaction-content {
    width: 100%;
    height: 100%;
    padding: calc(20px + 20*(100vw - 320px) / 1600) calc(10px + 10*(100vw - 320px) / 1600);
    background-color: var(--ed-color-grey-1);
}

.profile-section .wallet-transaction-content .cart-table tbody tr td, .profile-section .wallet-transaction-content .cart-table thead tr th {
	background-color: #ffffff;
	padding: 10px;
	font-size: 14px;
}

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

.profile-cover .profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ddd;
}

/* Always visible edit icon */
.profile-cover .edit-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-cover .edit-icon i {
    font-size: 18px;
}

/* Tooltip Styling */
.profile-cover .edit-icon::after {
    content: "Edit Profile Picture"; /* Tooltip text */
    position: absolute;
    bottom: 120%; /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.profile-cover .edit-icon:hover::after {
    opacity: 1;
    visibility: visible;
}
