@charset "UTF-8";
/**
 * reset: (done) Reset user agent default CSS.
 * body: Consists only of blocks that must form a partition of the viewport.
 * block (block-…): Direct child of the body. Element that is meant to take the entire viewport width, without any margin.
 * helpers (_…): Classes for frequent formatting directives, such as font size, padding, flex parameters…
 * standard elements (std-…): Classes for specific HTML structures and more complex formatting. They can adapt to various resolutions.
 */
/* We suppose that the user can set their font size to any arbitrary value within sensible ranges, i.e. small enough for a few words to fit on a single line.
To do so, we can use pixels for horizontal dimensions and rem for vertical ones.
When the vertical dimensions need to match the horizontal dimensions, we can use px for vertical dimensions too.
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: unset;
  text-decoration: none;
}
body {
  background-color: #0c4b6e;
  color: #ffffff;
  font-family: "Montserrat", sans-serif, "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  color: #3d9cce;
  font-size: unset;
}
em {
  font-style: normal;
  font-weight: bold;
}
img {
  max-width: 100%;
}
ul {
  list-style-type: none;
}
._flex {
  display: flex;
}
._flex.-col {
  flex-direction: column;
}
._flex.-centered {
  align-items: center;
}
._flex.-gap {
  gap: 24px;
}
._flex.-gapl {
  gap: 32px;
}
._flex.-gaps {
  gap: 16px;
}
._flex.-row {
  flex-direction: row;
}
._gap.-gap-col-xs {
  column-gap: 12px;
}
._gap.-gap-col-s {
  column-gap: 16px;
}
._gap.-gap-col-l {
  column-gap: 32px;
}
._gap.-gap-col-l2 {
  column-gap: 40px;
}
._gap.-gap-row-xs {
  row-gap: 12px;
}
._gap.-gap-row-s {
  row-gap: 16px;
}
._gap.-gap-row-s2 {
  row-gap: 20px;
}
._gap.-gap-row-m {
  row-gap: 24px;
}
._gap.-gap-row-l {
  row-gap: 32px;
}
._gap.-gap-row-l2 {
  row-gap: 40px;
}
._gap.-gap-row-xl {
  row-gap: 64px;
}
._h1 {
  font-size: 1.7rem;
  color: #72c5f0;
  font-weight: 700;
  margin-bottom: 32px;
}
._h1:not(:first-child) {
  margin-top: 32px;
}
._h2 {
  font-size: 25px;
  color: #72c5f0;
  font-weight: 600;
  margin-bottom: 20px;
}
._h2:not(:first-child) {
  margin-top: 20px;
}
._h3 {
  font-size: 22px;
  color: #72c5f0;
  font-weight: 400;
  margin-bottom: 12px;
}
._h3:not(:first-child) {
  margin-top: 12px;
}
._std:not(:last-child) {
  margin-bottom: 12px;
}
._horizontal-container {
  padding-left: 6px;
  padding-right: 6px;
}
._img.-heightauto {
  height: auto;
}
._marginm.-mgbottom {
  margin-bottom: 24px;
}
._padded {
  padding-left: 24px;
  padding-right: 24px;
}
._padded.-a, ._padded.-t {
  padding-top: 24px;
}
._padded.-a, ._padded.-b {
  padding-bottom: 24px;
}
._padded.-g {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
._padding.-padding-xs {
  padding: 10px;
}
._padding.-padding-s {
  padding: 16px;
}
._padding.-padding-m {
  padding: 24px;
}
._padding.-padding-hori-s {
  padding-left: 16px;
  padding-right: 16px;
}
._padding.-padding-hori-s2 {
  padding-left: 20px;
  padding-right: 20px;
}
._padding.-padding-hori-mobile {
  padding-left: 8px;
  padding-right: 8px;
}
._padding.-padding-vert-s {
  padding-bottom: 16px;
  padding-top: 16px;
}
._padding.-padding-vert-l {
  padding-bottom: 32px;
  padding-top: 32px;
}
._padding.-padding-vert-l2 {
  padding-bottom: 40px;
  padding-top: 40px;
}
._padding.-padding-vert-xl {
  padding-bottom: 64px;
  padding-top: 64px;
}
._padding.-padding-bottom-l {
  padding-bottom: 40px;
}
._padding.-padding-bottom-m {
  padding-bottom: 24px;
}
._rtxt.-txtl {
  font-size: 20px;
}
._sectionpadded {
  padding-bottom: 32px;
  padding-top: 32px;
}
._txt.-bold {
  font-weight: 700;
}
._txt.-textcentered {
  text-align: center;
}
._txt.-txtxs {
  font-size: 12px;
}
._txt.-txts {
  font-size: 16px;
}
._txt.-txtm {
  font-size: 20px;
}
._txt.-txtm2 {
  font-size: 22px;
}
._txt.-txtl {
  font-size: 25px;
}
._txt.-txtxl {
  font-size: 2.2rem;
}
._vertical-container {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  padding-top: 24px;
}
._vertical-container.-sm {
  gap: 12px;
  padding-bottom: 12px;
  padding-top: 12px;
}
._vertical-container.-l {
  gap: 32px;
}
._hidden {
  display: none;
}
.glide.-arrows {
  display: flex;
}
.glide.-arrows > .controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0;
}
.glide.-arrows > .controls .button {
  border: none;
  flex-shrink: 0;
  height: 38px;
  width: 38px;
  z-index: 1;
  border-radius: 50%;
  background: center / 80% no-repeat;
  background-color: #3d9cce;
}
.glide.-arrows > .controls .button.-left {
  background-image: url("arrow-left.svg");
}
.glide.-arrows > .controls .button.-right {
  transform: translateX(-100%);
  background-image: url("arrow-right.svg");
}
.glide > .glide__bullets {
  display: flex;
  gap: 16px;
  height: 0;
  justify-content: center;
}
.glide > .glide__bullets > .glide__bullet {
  transform: translateY(-100%);
  z-index: 1;
  border: 5px solid transparent;
  width: 180px;
  height: 102px;
  background-color: transparent;
  background-clip: content-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.glide > .glide__bullets > .glide__bullet.glide__bullet--active {
  border-color: #3d9cce #3d9cce;
}
.glide > .glide__bullets > .glide__bullet > .image {
  display: block;
  height: 100%;
  padding: 8px;
  text-align: left;
}
.glide > .glide__bullets > .glide__bullet > .image > .std-badge {
  display: inline-block;
}
.glide > .glide__track {
  width: 100%;
}
.glide > .glide__track .glide__slides .glide__slide > .link {
  display: flex;
  flex-direction: column;
  height: 502px;
  justify-content: center;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 0.2em #000000;
}
.glide > .glide__track .glide__slides .glide__slide > .link > .title {
  font-weight: 600;
}
.editor-toolbar {
  background-color: #ffffff;
}
.page-breadcrumb {
  background-color: #0a3f5c;
  padding-top: 24px;
  padding-bottom: 24px;
}
.page-breadcrumb.-thin {
  padding-top: 6px;
  padding-bottom: 6px;
}
.page-breadcrumb > .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  gap: 6px;
  list-style-type: none;
}
.page-breadcrumb > .list > .item > .link, .page-breadcrumb > .list > .item > .text {
  display: block;
}
.page-breadcrumb > .list > .item > .link:hover {
  text-decoration: underline;
}
.page-breadcrumb > .list > .item > .text {
  opacity: 0.7;
}
.page-breadcrumb > .list > .item:not(:first-child) > .link, .page-breadcrumb > .list > .item:not(:first-child) > .text {
  padding-left: 1rem;
  background: no-repeat url("simple-arrow-right.webp") center left / auto 0.8rem;
}
.page-article {
  background-color: #0c4b6e;
}
.page-home > .glide > .glide__track > .blueshadow {
  height: 30%;
  position: absolute;
  transform: translateY(-95%);
  width: 100%;
  pointer-events: none;
  background-image: url("/public/blue-shadow.png");
  background-size: 100% 100%;
}
.page-home > .site-maps-and-mods-tests > ._wrapper, .page-home > .site-social-networks > .content {
  padding-top: 124px;
}
.page-home > .site-maps-and-mods-tests {
  padding-top: 0;
}
.page-home > .site-social-networks > .content {
  background-color: #19577a;
  height: 0;
}
.page-section {
  padding-bottom: 32px;
  padding-top: 32px;
}
.side-note {
  padding: 16px;
  background-color: #428ab4;
  color: #ffffff;
}
.site-admin-nav {
  background-color: #000000;
}
.site-admin-nav > .list {
  list-style-type: none;
}
.site-admin-nav > .list > .item {
  display: inline-block;
}
.site-admin-nav > .list > .item > .link {
  color: #ffffff;
  display: block;
  padding: 12px;
  text-decoration: none;
}
.site-admin-nav > .list > .item > .link:hover {
  background-color: #2a2a2a;
}
.site-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.site-body > .site-header, .site-body > .site-footer {
  flex: 0 0 0;
}
.site-body > .site-main {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: center;
}
.site-footer {
  background-color: #0b4b6e;
  color: #ffffff;
}
.site-footer > .logo > .img {
  display: block;
  height: auto;
  margin: auto;
  width: 189px;
}
.site-header {
  background-color: #ffffff;
  padding: 16px 0;
}
.site-header > ._wrapper {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
}
.site-header > ._wrapper > .button, .site-header > ._wrapper > .text {
  display: none;
}
.site-header > ._wrapper > .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header > ._wrapper > .logo > .img {
  height: 96px;
  width: auto;
  display: block;
}
.site-header > ._wrapper > .text > .header-menu {
  display: flex;
}
.site-header > ._wrapper > .text > .header-menu > .item > .std-interactive {
  display: block;
}
@media (max-width: 1023px) {
  .site-header > ._wrapper.-js {
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-header > ._wrapper.-js > .button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
  }
  .site-header > ._wrapper.-js > .text {
    width: 100%;
    order: 1;
  }
  .site-header > ._wrapper.-js > .text.-open {
    display: block;
  }
  .site-header > ._wrapper.-js > .text > .intro {
    display: none;
  }
  .site-header > ._wrapper.-js > .text > .header-menu {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }
}
.site-main {
  background-color: #19577a;
}
.site-maps-and-mods-tests {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #0c4b6e;
}
.site-maps-and-mods-tests > .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1270px;
  margin: auto;
  gap: 32px;
  text-align: center;
  padding-top: 112px;
}
.site-maps-and-mods-tests > .content > .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.site-maps-and-mods-tests > .content > .list > .item {
  overflow: hidden;
  flex: 0 0 50%;
  height: 176px;
}
.site-section-beginners-short {
  background-color: #22668c;
}
.site-section-beginners-short > ._wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.site-section-beginners-short > ._wrapper > .text {
  text-align: center;
}
.site-section-beginners-short > ._wrapper > .links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  width: 100%;
}
.site-section-beginners {
  background-color: #22668c;
}
.site-section-beginners > ._wrapper {
  display: flex;
  flex-wrap: wrap;
}
.site-section-beginners > ._wrapper > .left, .site-section-beginners > ._wrapper > .right {
  flex: 0 0 100%;
}
.site-section-beginners > ._wrapper > .left, .site-section-beginners > ._wrapper > .right, .site-section-beginners > ._wrapper > .right > .item {
  display: flex;
  flex-direction: column;
}
.site-section-beginners > ._wrapper > .left > .title {
  color: #45b0e9;
  font-weight: normal;
}
.site-section-beginners > ._wrapper > .right > .item > .subject {
  font-weight: bold;
}
.site-section-beginners > ._wrapper > .right > .item > .text {
  color: #45b0e9;
}
@media (max-width: 767px) {
  .site-section-beginners > ._wrapper > .left {
    padding-bottom: 0;
  }
  .site-section-beginners > ._wrapper > .right {
    padding-top: 0;
  }
}
.site-section-news-articles {
  background-color: #19577a;
  color: #ffffff;
}
.site-section-news-articles > ._wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 94px;
  align-items: center;
}
.site-section-news-articles > ._wrapper > .list {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 0 100%;
}
.site-section-news-articles > ._wrapper > .list > .item {
  flex: 0 0 100%;
}
.site-social-networks > .content {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  gap: 20px;
  justify-content: center;
}
.site-social-networks > .content > .button {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 3px solid #ffffff;
  gap: 8px;
  padding: 8px 16px;
}
.site-social-networks > .content > .button.-discord {
  background-color: #ffffff;
  color: #0c4b6e;
}
.site-social-networks > .content > .button.-facebook {
  background-color: #19577a;
}
.site-social-networks > .content > .button > .image {
  width: auto;
  height: 92px;
}
.site-social-networks > .content > .button > .text {
  display: none;
}
.shadow-container > .shadow {
  width: 200%;
  box-shadow: 0 -62.75px 125.5px 62.75px #19577a;
}
.social-networks-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.social-networks-container > ._horizontal-container > .text {
  font-weight: 700;
  text-align: center;
  font-size: 1.2rem;
}
.section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.section-heading.-white > .text {
  color: #ffffff;
  font-weight: 400;
}
.section-heading > .image {
  width: 118px;
  height: auto;
}
.std-article > .columns {
  display: flex;
  flex-direction: column;
}
.std-article > .columns > .content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.std-article > .columns > .content:first-child {
  padding-top: 0;
}
.std-article > .columns > .content > .section > .sectioncontent {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-left: 12px;
  padding-right: 12px;
}
.std-article > .columns > .content > .section.-intro {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #0a3f5c;
}
.std-badge {
  padding: 0.5rem 1rem;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-color: #ffffff;
  background-color: #3d9cce;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}
.std-badge.-bordered {
  border-width: 2px;
  border-style: solid;
}
.std-badge.-round {
  border-radius: 6px;
}
.std-badge.-orange {
  background-color: #ce923d;
  border-color: #ce923d;
}
.std-badge.-darkblue {
  background-color: #0b3951;
  border-color: #0b3951;
}
.std-badge.-nobackground {
  background: none;
}
.std-badge.-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #19577a;
}
.std-badge.-small {
  padding: 0.5em;
}
.std-badge.-small > .txt {
  display: none;
}
.std-badge > .img {
  height: 1.2em;
  vertical-align: middle;
}
.std-button {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #f2f2f2;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: none;
  border-radius: 12px;
  color: #f2f2f2;
}
.std-button:hover {
  color: #ffffff;
  border-color: #ffffff;
}
.std-button.-blue {
  background-color: #19577a;
  color: #ffffff;
}
.std-button.-big {
  padding: 12px;
  font-size: 1rem;
}
.std-button.-bold {
  font-weight: 700;
}
.std-button.-darkblue {
  background-color: #0c4b6e;
}
.std-button.-transparent {
  background: none;
  color: #ffffff;
}
.std-button.-upper {
  text-transform: uppercase;
}
.std-button.-white {
  background-color: #ffffff;
  color: #0c4b6e;
}
.std-button.-withicon > .text {
  display: none;
}
.std-button > .text {
  text-align: center;
}
.std-info-message {
  text-align: center;
}
.std-inline-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}
.std-inline-list > .item > .link {
  color: #ffffff;
}
.std-inline-list > .item > .link > .img {
  height: 1em;
}
.std-inline-list > .item.-img {
  display: inline-flex;
  gap: 32px;
  justify-content: center;
}
.std-interactive {
  border-radius: 8px;
  border-style: solid;
  border-width: 3px;
  padding: 8px;
  text-align: center;
  font-weight: 500;
  border-color: #3d9cce;
  color: #19577a;
}
.std-interactive.-search {
  display: flex;
  gap: 16px;
  border-color: #f2f2f2;
  background-color: #f2f2f2;
  color: #1e1e1e;
  border-radius: 1vb;
}
.std-interactive.-search > .icon {
  flex: 0 0 auto;
  height: 1rem;
}
.std-interactive.-search > .input {
  border: none;
  flex-grow: 1;
  background: none;
  outline: none;
}
.std-link {
  text-decoration: underline;
}
.std-link:hover {
  text-decoration: none;
}
.std-link.-inverse {
  text-decoration: none;
}
.std-link.-inverse:hover {
  text-decoration: underline;
}
.std-list {
  padding-left: 32px;
  list-style-type: disc;
}
.std-list > .item:not(:last-child) {
  margin-bottom: 6px;
}
.std-markdown-container {
  line-height: 24px;
  font-size: 18px;
  overflow-wrap: break-word;
}
.std-markdown-container img {
  display: block;
  margin: auto;
}
.std-markdown-container img + em {
  display: block;
  width: fit-content;
  max-width: 90%;
  padding: 12px;
  transform: translateX(20px) translateY(-35px);
  margin-bottom: -35px;
  font-weight: 400;
  font-style: italic;
  background-color: #3d9cce;
}
.std-markdown-container a {
  text-decoration: underline;
  font-style: italic;
}
.std-markdown-container a:hover {
  text-decoration: none;
}
.std-markdown-container h1 {
  font-size: 1.7rem;
  color: #72c5f0;
  font-weight: 700;
  margin-bottom: 40px;
}
.std-markdown-container h1:not(:first-child) {
  margin-top: 40px;
}
.std-markdown-container h2 {
  font-size: 25px;
  color: #72c5f0;
  font-weight: 600;
  margin-bottom: 32px;
}
.std-markdown-container h2:not(:first-child):not(h1 + h2) {
  margin-top: 32px;
}
.std-markdown-container h3, .std-markdown-container h4, .std-markdown-container h5 {
  font-size: 22px;
  color: #72c5f0;
  font-weight: 400;
  margin-bottom: 20px;
}
.std-markdown-container h3:not(:first-child):not(h2 + h3) {
  margin-top: 20px;
}
.std-markdown-container iframe {
  max-width: 100%;
  height: unset;
  aspect-ratio: 1.7777777778;
}
.std-markdown-container ol, .std-markdown-container ul {
  padding-left: 24px;
}
.std-markdown-container ul {
  list-style-type: circle;
}
.std-markdown-container p:not(:last-child), .std-markdown-container li:not(:last-child), .std-markdown-container ul:not(:last-child), .std-markdown-container ol:not(:last-child), .std-markdown-container img:not(:last-child), .std-markdown-container .side-note:not(:last-child) {
  margin-bottom: 12px;
}
.std-metadata {
  display: flex;
  gap: 12px;
  flex-direction: column;
  font-weight: 600;
  font-size: 1.2rem;
}
.std-metadata.-s {
  font-size: 1rem;
}
.std-metadata > .item {
  display: flex;
  gap: 12px;
}
.std-metadata > .item > .def {
  display: flex;
}
.std-metadata > .item > .term {
  display: inline-block;
}
.std-metadata > .item > .term {
  color: #428ab4;
}
.std-mosaic-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  list-style-type: none;
}
.std-mosaic-list > .item {
  width: 100%;
  flex: 0 0 auto;
}
.std-ol {
  padding-left: 16px;
}
.std-rating-container {
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border: 5px solid #ffffff;
  color: #ffffff;
}
.std-rating-container > .rating > .whole {
  font-size: 76px;
  font-weight: 600;
}
.std-rating-container > .rating > .decimal {
  font-size: 40px;
}
.std-rating-container > .heading {
  color: #ffffff;
}
.std-rating-container.-s {
  width: 80px;
  height: 80px;
  border-width: 5px;
}
.std-rating-container.-s > .rating {
  font-size: 50px;
}
.std-review {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8em;
  border: 4px solid #ffffff;
  line-height: 24px;
  font-size: 18px;
  overflow-wrap: break-word;
}
.std-review > .box {
  padding: 24px 24px 48px 24px;
}
.std-review > .box > .std-rating-container {
  float: right;
}
.std-review > .box > .heading {
  margin-bottom: 32px;
  color: #ffffff;
}
.std-review > .box > .prosandcons {
  display: flex;
  flex-direction: column;
}
.std-review > .box > .prosandcons > .part > .heading {
  color: #ffffff;
}
.std-review > .box > .prosandcons > .part > .markdown > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: none;
}
.std-review > .box > .prosandcons > .part > .markdown > ul > li {
  padding-left: 24px;
  background: center left / 16px 16px no-repeat;
}
.std-review > .box > .prosandcons > .part > .markdown.-pros > ul > li {
  background-image: url("list-plus.svg");
}
.std-review > .box > .prosandcons > .part > .markdown.-cons > ul > li {
  background-image: url("list-minus.svg");
}
.std-review > .relatedlinks {
  display: flex;
  height: 0;
  align-items: flex-start;
  gap: 6px;
  justify-content: center;
  font-size: 0.8em;
}
.std-review > .relatedlinks > .std-button, .std-review > .relatedlinks > .list > .std-button {
  border-radius: 6px;
}
.std-review > .relatedlinks > .list > .std-button, .std-review > .relatedlinks > .std-button {
  transform: translateY(-50%);
  padding: 6px 12px;
}
.std-review > .relatedlinks > .-moretests {
  display: none;
}
.std-review > .relatedlinks > .list {
  display: flex;
  flex-direction: column;
  z-index: 1;
  border-radius: 6px;
  max-width: 30%;
  word-wrap: break-word;
}
.std-review > .relatedlinks > .list > .std-button, .std-review > .relatedlinks > .list > .link {
  color: #0c4b6e;
  background: #ffffff;
}
.std-review > .relatedlinks > .list > .std-button {
  display: block;
  border: none;
}
.std-review > .relatedlinks > .list > .link {
  height: 0;
  padding: 0 12px;
  overflow-y: hidden;
}
.std-review > .relatedlinks > .list > .link:hover {
  text-decoration: underline;
}
.std-review > .relatedlinks > .list > .link.-guide {
  font-style: italic;
}
.std-review > .relatedlinks > .list:hover, .std-review > .relatedlinks > .list:focus-within, .std-review > .relatedlinks > .list:active {
  background-color: #ffffff;
  border-radius: 0 0 6px 6px;
}
.std-review > .relatedlinks > .list:hover > .std-button, .std-review > .relatedlinks > .list:focus-within > .std-button, .std-review > .relatedlinks > .list:active > .std-button {
  border-radius: 6px 6px 0 0;
}
.std-review > .relatedlinks > .list:hover > .link, .std-review > .relatedlinks > .list:focus-within > .link, .std-review > .relatedlinks > .list:active > .link {
  height: auto;
  transform: translateY(-25%);
  padding-bottom: 6px;
  padding-top: 6px;
}
.std-review.-summary {
  background-color: #0a3f5c;
  border: none;
}
.std-review.-summary > .box > .heading {
  color: #ffffff;
  margin-bottom: 32px;
}
.std-review.-summary > .box > .body {
  margin-bottom: 40px;
}
.std-review.-summary > .box > .prosandcons {
  display: flex;
}
.std-review.-summary > .box > .prosandcons > .part > .subheading {
  color: #ffffff;
}
.std-review.-summary > .box > .prosandcons > .part > .markdown > ul {
  flex-direction: column;
  flex-wrap: nowrap;
}
.std-text-input {
  display: block;
  border: none;
  border-radius: 8px;
  padding: 6px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.form-row {
  display: flex;
  gap: 2px;
  flex-direction: column;
}
.form-row.-buttons {
  align-items: center;
}
.form-row.-checkbox {
  flex-direction: row;
}
.form-row:focus-within > .label, .form-row:hover > .label {
  opacity: 1;
}
.form-row > .input, .form-row > .label {
  display: block;
}
.form-row > .label {
  font-size: 0.8rem;
  opacity: 0.8;
  transition: all 0.2s ease-in;
}
.form-row > .input {
  border-radius: 1rem;
  font-size: 1rem;
  border-width: 0;
  padding: 6px 12px;
}
.form-row > .input.-text {
  min-width: 50%;
}
.form-row > .input.-textarea {
  width: 100%;
  height: 40dvh;
}
.form-row.-titled > .label {
  font-size: 25px;
  color: #72c5f0;
  font-weight: 600;
  margin-bottom: 12px;
}
.form-row.-singleimage > .image {
  height: auto;
  max-width: 256px;
  width: 100%;
}
.form-row.-singleimage > .current {
  font-size: 0.8em;
  font-style: italic;
}
.form-row-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.img-preview-container {
  all: unset;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  background: #0a3f5cb2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.img-preview-container > .invisible {
  position: fixed;
  font-size: 0.8em;
  background: none;
  opacity: 0;
  border: none;
}
.img-preview-container > .invisible.-gotostart {
  top: 0;
}
.img-preview-container > .invisible.-gotoend {
  bottom: 0;
}
.img-preview-container > .text {
  position: fixed;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.img-preview-container > .text > .advice {
  color: #ffffff;
  font-size: 0.8em;
  font-style: italic;
  text-shadow: 0 0 0.2em #000000;
}
.img-preview-container > .link {
  max-width: 98dvw;
  max-height: 80dvh;
}
.img-preview-container > .link > .img {
  display: block;
  max-height: 100%;
  box-shadow: 0 0 16px #000000;
  margin: auto;
}
.img-preview-container.-hidden {
  display: none;
}
.author-link > .link {
  display: flex;
  gap: 12px;
  align-items: center;
}
.article-advice {
  padding: 16px;
  background-color: #428ab4;
}
.article-advice > h2 {
  color: #ffffff;
  font-size: 25px;
  font-weight: bold;
}
.article-advice > p {
  font-size: 19px;
}
.article-cover {
  display: grid;
  height: 502px;
  gap: 32px;
  grid-template-rows: 1fr auto 1fr;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
}
.article-cover > .titles {
  grid-row-start: 2;
  font-size: 2.2rem;
  text-align: center;
  text-shadow: 0 0 0.2em #000000;
}
.article-cover > .titles > .subtitle, .article-cover > .titles > .title {
  color: #ffffff;
}
.article-cover > .titles > .title {
  font-weight: 600;
}
.article-cover > .titles > .subtitle {
  font-weight: 400;
}
.article-cover > .badges {
  grid-row-start: 3;
}
.article-cover > .badges > .-starred {
  display: inline-block;
}
.article-mosaic {
  display: flex;
}
.article-mosaic > .article-mosaic-image, .article-mosaic > .right {
  height: 160px;
  flex: 1 1 auto;
  width: 50%;
}
.article-mosaic > .right {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-mosaic > .right > .date, .article-mosaic > .right > .title, .article-mosaic > .right > .excerpt {
  overflow: hidden;
}
.article-mosaic > .right > .date, .article-mosaic > .right > .title {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-mosaic > .right > .title {
  color: #ffffff;
  font-weight: 600;
}
.article-mosaic > .right > .date {
  color: #71c4ef;
  font-weight: 600;
}
.article-mosaic > .right > .excerpt {
  flex: 0 1 auto;
  color: #f5f5f5;
  font-weight: 300;
}
.article-mosaic-image {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 8px;
  padding-top: 8px;
  font-size: 0.875rem;
  background-size: cover;
  background-position: center;
}
.article-mosaic-image.-onlycategory {
  flex-direction: column-reverse;
}
.article-mosaic-image > .-category {
  transform: translateY(50%);
  max-width: 80%;
}
.article-nav {
  display: flex;
  flex-direction: column;
  background-color: #0a3f5c;
}
.article-nav > .frame {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border: 3px solid #428ab4;
}
.article-nav > .frame.-book, .article-nav > .frame.-related {
  row-gap: 24px;
}
.article-nav > .frame.-articlenav {
  display: none;
}
.article-nav > .frame.-related > .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.article-nav > .frame.-related > .list > .item > .link {
  color: #ffffff;
  font-weight: 400;
}
.article-nav > .frame.-related > .list > .item > .link > .image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 6px;
}
.article-nav > .frame.-related > .list > .item > .list {
  display: flex;
  flex-direction: column;
}
.article-nav > .frame > .heading, .article-nav > .frame > .subheading {
  text-align: center;
}
.article-nav > .frame > .heading {
  color: #ffffff;
  font-size: 1.2rem;
}
.section-content > .box.-centered {
  text-align: center;
}
.review-mosaic-bare {
  display: block;
  height: 100%;
  text-align: center;
  background-position: center;
  background-size: cover;
  color: #ffffff;
}
.review-mosaic-bare > .content {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr auto 1fr;
  background-color: #00000099;
  transition: background-color 0.2s ease;
}
.review-mosaic-bare > .content > .name {
  grid-row-start: 2;
  font-size: 1.563rem;
  font-weight: 600;
}
.review-mosaic-bare > .content > .badges {
  display: flex;
  grid-row-start: 3;
  font-size: 0.875rem;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.review-mosaic-bare > .content > .badges > .std-badge {
  font-weight: 700;
}
.review-mosaic-bare:hover > .content {
  background-color: #00000066;
}
.review-mosaic {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review-mosaic > .article-mosaic-image {
  height: 280px;
}
.review-mosaic > .article-mosaic-image > .std-badge {
  font-size: 18px;
}
.review-mosaic > .text {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.review-mosaic > .text > .left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.review-mosaic > .text > .left > .date, .review-mosaic > .text > .left > .title {
  font-size: 1rem;
}
.review-mosaic > .text > .left > .date {
  color: #72c5f0;
  font-size: 18px;
}
.review-mosaic > .text > .left > .title {
  color: #ffffff;
  font-size: 20px;
}
.subcategory-list.subcategory-list, .subcategory-list > .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.subcategory-list > .text {
  font-size: 0.8rem;
}
.profile-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.profile-header > .title {
  text-align: center;
  font-size: 1.7rem;
}
.previous-link > .link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.previous-link > .link:hover {
  border-bottom: 3px solid #3d9cce;
}
.vertical-section {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  padding-top: 16px;
  gap: 12px;
}
.vertical-section.-gaps {
  gap: 6px;
}
