.woocommerce-MyAccount-navigation {
  display: none;
}
section#dashboard .top {
  padding: 150px 0;
  background-color: white;
  position: relative;
}
section#dashboard .top .menu {
  position: absolute;
  bottom: 0;
  border: 1px solid var(--color-gray);
  background-color: white;
  width: 60%;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 50px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  overflow: hidden;
}
section#dashboard .top .menu .mobile-selected {
  display: none;
  background-color: var(--color-blue);
  position: relative;
}
section#dashboard .top .menu .mobile-selected .icon {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: transform 250ms linear;
}
section#dashboard .top .menu.active .mobile-selected .icon {
  transform: translateY(-50%) rotate(-180deg);
}
section#dashboard .top .menu .mobile-selected .icon svg path {
  stroke: white;
}
section#dashboard .top .menu .mobile-selected .icon {
}
section#dashboard .top .menu .mobile-selected h6 {
  color: white;
}
section#dashboard .top .menu .options-slider,
section#dashboard .top .menu .options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  padding: 5px;
}
section#dashboard .top .menu .option {
  width: 100%;
  padding: 20px;
  border-radius: 50px;
  text-align: center;
  position: relative;
}
section#dashboard .top .menu .option:hover {
  cursor: pointer;
}
section#dashboard .top .menu h6 {
  font-weight: 500;
  color: var(--color-gray);
  transition: color 500ms ease-in;
}
section#dashboard .top .menu .option.selected h6 {
  color: white;
}
section#dashboard .top .menu > div.logout a {
  border-left: 1px solid var(--color-gray);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms linear;
}
section#dashboard .top .menu > div.logout a h6 {
  color: var(--color-red);
}
section#dashboard .top .menu > div.logout a:hover h6 {
  color: white;
}
section#dashboard .top .menu > div.logout a:hover {
  background-color: var(--color-red);
}
section#dashboard .top .menu .options-slider {
  position: absolute;
  height: 100%;
  width: 75%;
  left: 0;
  top: 0;
}
section#dashboard .top .menu .options-slider > div {
  height: 100%;
  width: 100%;
  position: relative;
}
section#dashboard .top .menu .slider-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  top: 0;
  left: 0;
  border-radius: 50px;
  transition: transform 500ms ease-in-out;
}
section#dashboard .top .menu .options-slider.orders .slider-thumb {
  transform: translateX(0);
}
section#dashboard .top .menu .options-slider.wishlist .slider-thumb {
  transform: translateX(calc(100% + 5px));
}
section#dashboard .top .menu .options-slider.details .slider-thumb {
  transform: translateX(calc(2 * (100% + 5px)));
}
section#dashboard .content {
  padding: 140px 0;
}
section#dashboard .content h4 {
  margin: 50px 0 30px;
}
section#dashboard .content .orders > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#dashboard .content .orders .order {
  background-color: white;
  width: 100%;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
section#dashboard .content .orders .order p.under {
  transition: color 100ms linear;
}
section#dashboard .content .orders .order p.under:hover {
  color: var(--color-blue);
}
section#dashboard .content .orders .order > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 75%;
}
section#dashboard .content .orders .order p.bold {
  margin-top: 5px;
}
section#dashboard .content .orders.past .order > div:first-of-type p {
  color: var(--color-gray);
}
section#dashboard .content .orders.past .order > div:last-of-type {
  display: flex;
  gap: 20px;
  align-items: center;
}
section#dashboard .content .wishlist .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
section#dashboard .content .wishlist h5 {
  margin-bottom: 40px;
}
section#dashboard .content .details > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}
section#dashboard .content .details .box {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
}
section#dashboard .content .details .box .row {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
section#dashboard .content .details .box .row.close {
  gap: 10px;
}
section#dashboard .content .details .box .btn {
  width: 100%;
  padding: 15px 0;
  text-align: center;
  margin-top: 25px;
}
section#dashboard .content .details .box p {
  font-weight: 500;
  font-size: 22px;
}
section#dashboard .content .details .box .title {
  color: var(--color-gray);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
}
section#dashboard .content .details .box .hidable {
  overflow: hidden;
  max-height: 100px;
  transition: max-height 250ms ease-out;
}
section#dashboard .content .details .box .hidable.hidden {
  max-height: 0;
}
section#dashboard #details-wrap,
section#dashboard #wishlist-wrap {
  display: none;
}
div#edit-payment,
div#billing,
div#shipping,
div#edit-account {
  padding: var(--header-height) 0;
  max-width: 1400px;
  margin: auto;
  width: calc(100% - 120px);
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  display: block;
}
@media screen and (max-width: 1200px) {
  section#dashboard .content .details > div {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px;
    row-gap: 20px;
  }
  div#edit-payment,
  div#billing,
  div#shipping,
  div#edit-account {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
  section#dashboard .top .menu {
    width: 90%;
  }
  section#dashboard .content .orders .order {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: baseline;
  }
  section#dashboard .content .orders .order > div:first-of-type {
    width: 100%;
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last {
    width: 100%;
  }
  section#dashboard .content .details .box .row {
    flex-direction: column;
    gap: 30px;
  }
  section#dashboard .content .orders .order {
    padding: 20px;
  }
  section#dashboard .content .details .box .row.close {
    flex-direction: row;
  }
  section#dashboard .content .orders .order > div:first-of-type {
    grid-template-columns: 1fr 1fr;
  }
  section#dashboard .top .menu,
  section#dashboard .top .menu .options-slider,
  section#dashboard .top .menu .options {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  section#dashboard .top .menu > div.logout a,
  section#dashboard .top .menu .option {
    padding: 21px 40px;
  }
  section#dashboard .top .menu .options .option {
    border-radius: 0;
  }
  section#dashboard .top .menu .options .option:hover {
    background-color: #cbd1e4;
  }
  section#dashboard .top .menu .options .option:hover h6 {
    color: var(--color-blue);
  }
  section#dashboard .top .menu > div.logout a {
    justify-content: flex-start;
  }
  section#dashboard .top .menu .option h6 {
    text-align: left;
  }
  section#dashboard .top .menu .options-slider {
    display: none;
  }
  section#dashboard .top .menu .option.selected {
    display: none;
  }
  section#dashboard .top .menu > div.logout a {
    border: none;
  }
  section#dashboard .top .menu {
    max-width: 300px;
    max-height: 60px;
    transition: max-height 250ms linear;
  }
  section#dashboard .top .menu.active {
    max-height: 250px;
  }
  section#dashboard .top .menu .mobile-selected {
    display: block;
  }
  section#dashboard .content {
    padding: 60px 0 100px;
  }
  section#dashboard .top {
    padding: 120px 0 70px;
  }
}
@media screen and (max-width: 1000px) {
  section#dashboard .content .wishlist .items {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  section#dashboard .content .wishlist .items {
    grid-template-columns: 1fr;
  }
}