/* myaccount */
.myaccount-header {
  padding: 20px 30px;
  border-bottom: 1px solid #f2f2f2;
}
.myaccount-header-inner {
  position: relative;
  width: 1120px;
}
.myaccount-header-inner .login-logout-btns {
  position: absolute;
  top: 0;
  right: 0;
}
.myaccount {
  width: 1120px;
  margin: 0 30px 60px;
}
.myaccount .account-header {
  position: relative;
  height: 36px;
}
.myaccount-title {
  display: flex;
}
.myaccount-title img {
  width: 175px;
  margin-right: 10px;
}

#login-announce {
  margin: 30px auto;
  line-height: 1.6;
}
.myaccount-totop {
  margin-top: 15px;
}
.myaccount-totop:first-of-type {
  margin-top: 80px;
}
.myaccount-totop a {
  font-weight: 700;
  color: #2379CA;
  border-bottom: solid 1px #2379CA;
}
.myaccount-offer-button {
  --hover-background-color: rgb(255 165 0 / 0.7);
  display: none;
  color: inherit;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  appearance: none !important;
  background-color: orange;
  border: 0;
  border-radius: calc(Infinity * 1px);
  margin-bottom: 10px;
  padding: 0.5em 2em;
  cursor: pointer;
  transition: background-color 0.3s;
}
.myaccount-offer-button:focus-visible {
  background-color: var(--hover-background-color);
}
@media (any-hover: hover) {
  .myaccount-offer-button:hover {
    background-color: var(--hover-background-color);
  }
}
