.my-account-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.my-account-sidebar {
  width: 260px;
  flex: 0 0 260px;
  padding: 20px;
  background: #fff;
  min-height: 50vh;
}

.my-account-sidebar__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-account-sidebar__menu li + li {
  margin-top: 10px;
}

.my-account-sidebar__menu a {
  display: block;
  padding: 12px 16px;
  /*background: #f5f5f5;*/
  color: var(--ib-text);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s linear;
}

.my-account-sidebar__menu a:hover{
  color: #55BAAC;
}

.my-account-sidebar__menu a.is-active {
  background: var(--ib-primary);
  color: #fff;
}
.my-account-sidebar__menu a.is-active:hover {
  background: #55BAAC;
  color: var(--ib-text);
}

.my-account-content {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  background: #fff;
  padding: 0 20px 20px;
  min-height: 50vh;
}

.store-selector-list {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.store-selector-card {
  width: auto;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.store-selector-card__title {
  margin: 0 0 12px;
  font-size: 25px;
}

.store-selector-card__title a{
  text-decoration: none;
}

.store-selector-card .actions{
  display: flex;
  gap: 10px;
}

.store-selector-card .store-logo{
  width: 150px;
  height: auto;
}

@media (max-width: 900px) {
  .my-account-wrap {
    flex-direction: column;
  }

  .my-account-sidebar {
    width: 100%;
    flex: none;
  }
  .my-account-sidebar,
  .my-account-content{
    min-height: auto;
  }
}
@media (max-width: 600px) {
  .store-selector-card{
    flex-direction: column-reverse;
    width: 100%;
  }
}