/**
 * @file
 * This file is used to style the account menu.
 */

@media screen and (min-width: 48em) {
  .menu--account {
    display: block;
    text-align: right; /* LTR */
  }
  [dir="rtl"] .menu--account {
    text-align: left;
  }
}
.menu-account {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  /* margin-left: 0.625rem; */
  line-height: 1.5;
  text-transform: uppercase;
}
.menu-account__item + .menu-account__item {
  margin-left: 1em; /* LTR */
}
[dir="rtl"] .menu-account__item + .menu-account__item {
  margin-right: 1em;
  margin-left: 0;
}
.menu-account__link,
.menu-account__link:hover,
.menu-account__link:focus {
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;

  display: inline-block;
  /* margin: 5px 3px;
  padding-bottom: 0.1em; */
  transition: all 0.2s;
  text-decoration: none;
  border-bottom: solid 0.1em transparent;
}
.menu-account__link:hover,
.menu-account__link:focus {
  /* text-decoration: underline; */
  text-decoration: none;
  color: #2196F3;
  border-bottom-color: #2196F3;
  background-color: inherit;
}
