.woocommerce-form {
  padding-left: 10%;
  padding-right: 10%;
}

.woocommerce-account input:not([type="submit"], [type="checkbox"], [type="radio"], [type="file"], [type="search"]),
.woocommerce-form input:not([type="submit"], [type="checkbox"], [type="radio"], [type="file"], [type="search"]) {
  border-radius: 8px;
  border: 2px solid #2F2F2F05;
  background: var(--white-100, #fff);
  box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.04);
  padding: 1rem 5rem 1rem 1.5rem;
  width: calc(100% - 6.5rem);
}

.woocommerce-account input:focus,
.woocommerce-form input:focus {
  border-color: #00a3b8;
}

.woocommerce-account button[type="submit"], .woocommerce-account a.button,
.woocommerce-form button[type="submit"], .woocommerce-form a.button {
  border-radius: 8px;
  background: #00a3b8;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  letter-spacing: 1px;
}
.woocommerce-form a {
  color: #1b1f54;
  text-align: center;
}

.woocommerce-account .the-content {
  padding: 10vh 10%;
  min-height: auto;
}
.woocommerce-account .the-content .woocommerce {
  width: 100%;
}
.woocommerce-account a {
  color: #1b1f54;
}
.woocommerce-MyAccount-navigation-link:not(:last-child) {
  margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation-link::before {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
.woocommerce-MyAccount-navigation-link.is-active::before {
  filter: brightness(0) saturate(100%) invert(49%) sepia(82%) saturate(4279%) hue-rotate(159deg) brightness(99%) contrast(101%);
}
.woocommerce-MyAccount-navigation-link.is-active a {
  color: #00A3B8;
}
.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #db3e3e;
}
.woocommerce-MyAccount-navigation-link--customer-logout::before {
  background-image: url(../assets/images/close-circle.svg);
}
.woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}
.woocommerce-MyAccount-navigation-link--dashboard::before {
  background-image: url(../assets/images/rocket.svg);
}

.woocommerce-MyAccount-navigation-link--edit-address::before {
  background-image: url(../assets/images/delivery.svg);
}

.woocommerce-MyAccount-navigation-link--orders::before {
  background-image: url(../assets/images/task.svg);
}

.woocommerce-MyAccount-navigation-link--wishlist::before {
  background-image: url(../assets/images/Favorite.svg);
}

.woocommerce-MyAccount-navigation-link--edit-account::before {
  background-image: url(../assets/images/avatar.svg);
}

.woocommerce-MyAccount-navigation-link--payment-methods::before {
  background-image: url(../assets/images/cb.svg);
}

.woocommerce-account address {
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.04);
  margin-top: 10px;
}
.woocommerce-Address-title {
  margin-top: 20px;
}

.woocommerce-Address-title h2 {
  font-size: 20px;
  margin-bottom: 2rem;
}

.woocommerce-account a.button {
  padding: 8px 16px !important;
}

.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
  padding: 12px !important;
}

@media screen and (max-width: 768px) {
  .woocommerce-account .the-content .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .woocommerce-MyAccount-navigation {
    width: fit-content !important;
    margin: auto;
  }
}