html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  word-break: break-word;
}

body {
  background: #ffffff;
  color: #2f2f2f;
}
.dark-mode body {
  color: #eaeaea;
}
body.dark-mode {
  background: #282930;
  color: #eaeaea;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  line-height: 120%;
  box-sizing: border-box;
}

p {
  line-height: 150%;
}

.notice {
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.notice :any-link {
  text-decoration: underline;
}

header {
  border-bottom: #e5e5e5 solid 1px;
}
.dark-mode header {
  border-bottom-color: #62666d;
}
header .inner {
  max-width: 65rem;
  padding: 0 1.5rem;
  height: 4rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: stretch;
}

@media screen and (min-width: 825px) {
  header .inner {
    padding: 0 1rem;
    height: 5rem;
  }
}

header .inner .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .inner .item .avatar {
  cursor: pointer;
  display: none;
  width: 2.5rem;
  height: 2.5rem;
}

@media screen and (min-width: 825px) {
  header .inner .item .avatar {
    display: flex;
  }
}

header .inner .item .menu {
  display: flex;
}

@media screen and (min-width: 825px) {
  header .inner .item .menu {
    display: none;
  }
}

header .logo {
  width: 4.125rem;
  height: 1.5rem;
  overflow: hidden;
  object-fit: cover;
  position: relative;
  display: block;
}

@media screen and (min-width: 825px) {
  header .logo {
    width: 5.5rem;
    height: 2rem;
  }
}

header .logo:hover {
  animation: hovering 0.1s ease-in-out forwards;
}

header .logo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

header .dropdown-trigger {
  position: relative;
}

header .dropdown-trigger > .dropdown-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  right: -2rem;
  z-index: 2;
}

header .dropdown-trigger > .dropdown-wrapper > .dropdown {
  background: #ffffff;
  border: #e5e5e5 solid 1px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1019607843);
  margin: 0 2rem;
}
.dark-mode header .dropdown-trigger > .dropdown-wrapper > .dropdown {
  border-color: #62666d;
}
header .dropdown-trigger > .dropdown-wrapper > .dropdown > :any-link {
  font-size: 0.875rem;
  display: inline-flex;
  width: 10rem;
  padding: 0 1rem;
  height: 2.5rem;
  align-items: center;
}

header .dropdown-trigger:hover > .dropdown-wrapper, header .dropdown-trigger:focus > .dropdown-wrapper {
  display: block;
}

.container {
  max-width: 65rem;
  margin: 0 auto;
  padding-bottom: 10rem;
  min-height: 100vh;
  position: relative;
}

.container > nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  justify-content: flex-start;
  margin: 2.5rem 0 1rem;
  padding: 0 1rem;
  color: #969696;
}

.container > nav > a:not(:first-child)::before, .container > nav > span:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(/premium/images/caret_right_gray.svg) no-repeat center;
  margin: 0 4px;
}

.container main {
  max-width: 65rem;
  width: 100%;
  background: #ffffff;
  text-align: center;
  padding: 0 1rem;
}
.dark-mode .container main {
  background: #282930;
}
.container main .content {
  margin: 0 auto;
  max-width: 42.5rem;
}

@media screen and (min-width: 825px) {
  .container main .content {
    margin-top: 5rem;
  }
}

.container main article {
  text-align: left;
}

.container main article h3 {
  font-size: 1rem;
  margin: 1.5rem auto;
}

.container main article ol, .container main article ul {
  padding-inline-start: 1.5rem;
}

.container main article ol li, .container main article ul li {
  margin-bottom: 1rem;
}

.container main article section.credit {
  text-align: right;
  margin-top: 5rem;
}

h1 {
  margin: 2.5rem auto;
  font-size: 3rem;
}

h1 .sub {
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h2 {
  color: #73af3b;
  margin: 2.5rem auto 1.5rem;
  font-size: 1.25rem;
}

h2.simple {
  color: #2f2f2f;
}
.dark-mode h2.simple {
  color: #eaeaea;
}

.plans {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  margin: 0 auto;
  max-width: 37.5rem;
}

.plans .plan {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-weight: bold;
  border-spacing: 0;
  border-radius: 0.5rem;
  border: #e5e5e5 solid 2px;
}
.dark-mode .plans .plan {
  border-color: #62666d;
}
.plans .plan .title {
  background: #e5e5e5;
  height: 2rem;
}
.dark-mode .plans .plan .title {
  background: #62666d;
}
.plans .plan .bottom {
  vertical-align: bottom;
  padding: 1.5rem;
}

.plans .plan .bottom .description {
  margin-bottom: 1rem;
  color: #73af3b;
}

.plans .plan .bottom div.price {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.plans .plan .bottom div.price span.price {
  font-size: 2.5rem;
}

.plans .plan.recommended {
  border-color: #73af3b;
}

.plans .plan.recommended .title {
  background-color: #73af3b;
  color: #ffffff;
}
.dark-mode .plans .plan.recommended .title {
  color: #282930;
}

.button {
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
  background-color: #f6a138;
  color: #ffffff;
  padding: 0 1rem;
  font-weight: bold;
  border: none;
  line-height: 2.5rem;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: ease-in-out 200ms;
}

.button:hover {
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}

.button.forward {
  background-color: #f6a138;
  background-image: url("/premium/images/caret_right.svg");
  padding: 0 2.5rem 0 1rem;
}

.button.muted {
  cursor: unset;
  background-color: #969696;
}

.button.muted:hover {
  box-shadow: none;
}

.features {
  font-size: 0.875rem;
  border-spacing: 0;
  margin: auto;
  border-top: #e5e5e5 solid 1px;
}
.dark-mode .features {
  border-top-color: #62666d;
}
@media screen and (min-width: 825px) {
  .features {
    width: 33.5rem;
  }
}

.features th, .features td {
  vertical-align: middle;
  border-bottom: #e5e5e5 solid 1px;
  padding: 0.625rem 1rem;
  word-break: keep-all;
}
.dark-mode .features th, .dark-mode .features td {
  border-bottom-color: #62666d;
}
.features th:first-child {
  text-align: left;
}

.features thead tr,
.features tbody tr:nth-child(even) {
  background: #F6F6F6;
}
.dark-mode .features thead tr,
.dark-mode .features tbody tr:nth-child(even) {
  background: #24252B;
}
.features tbody th {
  font-weight: normal;
}

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

.list li, .list dd {
  margin: 0;
  border-bottom: #e5e5e5 solid 1px;
}
.dark-mode .list li, .dark-mode .list dd {
  border-bottom-color: #62666d;
}
.list dt {
  text-align: left;
  font-size: 0.875rem;
  color: #969696;
  line-height: 1.3125rem;
}

.list li, .list dd {
  height: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list li :any-link, .list dd :any-link {
  font-size: 0.875rem;
  color: #969696;
  text-decoration: underline;
}

.list li :any-link:hover, .list dd :any-link:hover {
  color: #0187E8;
}

.list li {
  margin-bottom: 1rem;
}

.list dd {
  margin-bottom: 0.5rem;
}

nav a:hover {
  color: #0033cc;
  text-decoration: underline;
}

footer {
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  background: #F6F6F6;
  padding-top: 2.5rem;
  padding-bottom: 6.25rem;
  color: #969696;
}
.dark-mode footer {
  background: #24252B;
}
footer :any-link, footer .copyright {
  color: #2f2f2f;
}
.dark-mode footer :any-link, .dark-mode footer .copyright {
  color: #eaeaea;
}
footer :any-link:hover {
  color: #969696;
  text-decoration: underline;
}

footer > * {
  margin: 0 0.25rem;
  line-height: 1.5rem;
  word-break: keep-all;
}

a.back:any-link {
  display: block;
  margin-top: 5rem;
  font-size: 0.875rem;
  color: #0187E8;
  font-weight: bold;
}

a.back:any-link:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal .popup {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background: #ffffff;
  width: 30rem;
}
.dark-mode .modal .popup {
  background: #282930;
}
.modal .popup .title {
  margin: 0.75rem 0;
  font-weight: bold;
}

.modal .popup .body {
  padding: 0.5rem 0;
  text-align: left;
}

.modal .popup .body p {
  margin: 0;
}

.modal .popup .actions {
  display: flex;
  justify-content: right;
  padding: 1rem 0 0.5rem;
}

.modal .popup .actions button {
  margin-left: 1rem;
  cursor: pointer;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-weight: bold;
  height: 2.5rem;
  font-size: 1rem;
  color: #2f2f2f;
  border: #e5e5e5 solid 1px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: ease-in-out 200ms;
}
.dark-mode .modal .popup .actions button {
  background: #282930;
}
.dark-mode .modal .popup .actions button {
  color: #eaeaea;
}
.dark-mode .modal .popup .actions button {
  border-color: #62666d;
}
.modal .popup .actions button:hover {
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}

.modal .popup .actions button.primary {
  color: #0187E8;
  border-color: #0187E8;
}

.toast-wrapper {
  display: none;
  position: sticky;
  bottom: 10rem;
}

.toast-wrapper.active {
  display: block;
}

.toast-wrapper .toast {
  position: absolute;
  left: 2.5rem;
  background: #535353;
  border-radius: 0.25rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  padding: 0 0.75rem 0 1rem;
  bottom: -9rem;
}
.dark-mode .toast-wrapper .toast {
  color: #282930;
}
.toast-wrapper .toast .close {
  margin-left: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: transparent;
  background-image: url("/premium/images/close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  border: none;
}

@media screen and (min-width: 825px) {
  article.faq {
    margin-top: 3.5rem;
  }
}

article.faq .question {
  position: relative;
  margin-bottom: 1rem;
}

article.faq .question > * {
  line-height: 150%;
}

article.faq .question label {
  display: block;
  background-image: url("/premium/images/question.svg");
  background-repeat: no-repeat;
  background-position: left 0.5rem center;
  background-color: white;
  border: #e5e5e5 solid 1px;
  position: relative;
  cursor: pointer;
  padding: 0.5rem 2.5rem;
}
.dark-mode article.faq .question label {
  border-color: #62666d;
}
article.faq .question label:before {
  position: absolute;
  width: 1.5rem;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  content: "";
  background-image: url("/premium/images/caret_down.svg");
  background-repeat: no-repeat;
  background-position: center;
}

article.faq .question input[type=checkbox] {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: -1;
}

article.faq .question input[type=checkbox]:checked ~ .description {
  transform: scale(1, 1);
  height: 100%;
}

article.faq .question .description {
  transform: scale(1, 0);
  transform-origin: top;
  height: 0;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
  border: #e5e5e5 solid 1px;
  border-top: none;
  padding: 0.5rem 1.5rem;
}
.dark-mode article.faq .question .description {
  border-color: #62666d;
}

/*# sourceMappingURL=premium.css.map */
