@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.
 */
/**
 * Resets all the margins.
 */
body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
ol,
ul {
  margin-block: 0;
}

ol {
  padding-inline-start: 0;
}

dd {
  margin-inline-start: 0;
}

/**
 * Specific elements.
 */
div {
  box-sizing: border-box;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

button,
input {
  color: inherit;
  font-size: inherit;
}

pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere; /* or break-word for older browsers */
}

/*
Abbreviations:
- fd: From Design. (This is an exact value directly measured in the design file provided by the web designer.)
*/
:root {
  --border-radius: 8px;
  --gap: 8px;
  --gap-l: calc(var(--gap) * 2);
}

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;
  font-size: 1.125rem;
}

input {
  border-radius: var(--border-radius);
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3d9cce;
}

table {
  text-align: center;
}
table > caption {
  margin-top: 16px;
  caption-side: bottom;
  font-size: 0.8em;
  font-style: italic;
}
table > tbody > tr > th,
table > tbody > tr > td {
  padding: 16px;
}
table > tbody > tr > th {
  background-color: #05202e;
}
table > tbody > tr > td {
  background-color: #0a3f5c;
}

em {
  font-style: normal;
  font-weight: bold;
}

._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;
}

._h1 {
  font-size: 2.813rem;
  color: #72c5f0;
  font-weight: 700;
}

._h2 {
  font-size: 25px;
  color: #72c5f0;
  font-weight: 600;
}

._h3 {
  font-size: 22px;
  color: #72c5f0;
  font-weight: 400;
}

._std:not(:last-child) {
  margin-bottom: 12px;
}

._half-gap {
  --half-gap: calc(var(--gap) / 2);
  --half-gap-l: calc(var(--gap-l) / 2);
}
._half-gap > ._updategap {
  --gap: var(--half-gap);
  --gap-l: var(--half-gap-l);
}

._sr {
  position: absolute;
  left: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 424px) {
  ._revert-h-margin {
    margin-inline: calc(-1 * var(--gap));
  }
}
._marginm.-mgbottom {
  margin-bottom: 24px;
}

._txt.-bold {
  font-weight: 700;
}
._txt.-boldsemi {
  font-weight: 600;
}
._txt.-notbold {
  font-weight: 400;
}
._txt.-txtcentered {
  text-align: center;
}
._txt.-txtxs {
  font-size: 0.8rem;
}
._txt.-txts {
  font-size: 1rem;
}
._txt.-txts2 {
  font-size: 1.188rem;
}
._txt.-txtm {
  font-size: 1.2rem;
}
._txt.-txtm1 {
  font-size: 1.375rem;
}
._txt.-txtm2 {
  font-size: 1.125rem;
}
._txt.-txtm4 {
  font-size: 1.25rem;
}
._txt.-txtl {
  font-size: 1.563rem;
}
._txt.-txtl2 {
  font-size: 1.625rem;
}
._txt.-txtxl {
  font-size: 2.188rem;
}
._txt.-txtxxl {
  font-size: 2.813rem;
}

._hidden {
  display: none;
}

.glide {
  --gap: 64px;
}
.glide > .glide__track .glide__slides {
  justify-content: stretch;
}
.glide > .glide__track .glide__slides .glide__slide {
  display: flex;
  aspect-ratio: 16/9;
  height: unset;
  align-items: stretch;
  justify-content: stretch;
}
.glide > .glide__track .glide__slides .glide__slide > .link {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  padding-bottom: var(--bullets-min-height);
  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;
}
.glide.-arrows {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
}
.glide.-arrows > .controls {
  align-self: center;
  z-index: 1;
  grid-row: 1;
}
.glide.-arrows > .controls .button {
  border: none;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: center/80% no-repeat;
  background-color: #3d9cce;
}
.glide.-arrows > .controls.-left {
  grid-column: 1;
  justify-self: start;
}
.glide.-arrows > .controls.-left > .button {
  background-image: url("arrow-left.svg");
}
.glide.-arrows > .controls.-right {
  grid-column: 3;
  justify-self: end;
}
.glide.-arrows > .controls.-right > .button {
  background-image: url("arrow-right.svg");
}
.glide.-arrows > .glide__track {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row: 1;
}
.glide.-bullets {
  --bullet-max-width: 8rem;
  --bullet-min-width: 4rem;
  --bullets-min-height: calc(var(--bullet-max-width) * 1 / 2.35);
  --z-index-gradient: 2;
  --z-index-bullets: 3;
  display: grid;
  grid-template-rows: auto var(--bullets-min-height) auto;
  padding-bottom: var(--gap);
  background-color: #19577a;
}
.glide.-bullets > .blueshadow {
  align-self: stretch;
  grid-column: 1;
  grid-row: 1/3;
  z-index: var(--z-index-gradient);
  pointer-events: none;
  background: linear-gradient(to top, #19577a 5%, transparent 40%);
}
.glide.-bullets > .glide__bullets {
  --gap: 16px;
  display: flex;
  grid-column: 1;
  grid-row: 2/4;
  z-index: var(--z-index-bullets);
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
  padding-inline: var(--gap);
}
.glide.-bullets > .glide__bullets > .glide__bullet {
  --gap: 8px;
  display: flex;
  aspect-ratio: 2.35;
  flex: 1 1 0;
  min-width: var(--bullet-min-width);
  max-width: var(--bullet-max-width);
  align-items: start;
  border: none;
  padding: var(--gap);
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.glide.-bullets > .glide__bullets > .glide__bullet.glide__bullet--active {
  outline: 5px solid #3d9cce;
  outline-offset: -5px;
}
.glide.-bullets > .glide__track {
  grid-row: 1/3;
  grid-column: 1;
  align-items: stretch;
}
.glide.-bullets > .glide__track > .glide__slides {
  height: 80dvw;
  max-height: 70dvh;
  min-height: 20rem;
  align-items: stretch;
}

.editor-toolbar {
  background-color: #ffffff;
  color: #000000;
}

.mk-toc {
  background: #0a3f5c;
  border-radius: var(--border-radius);
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  padding-right: var(--gap);
}
.mk-toc > li > a {
  background: linear-gradient(currentColor, currentColor) left bottom/0% 3px no-repeat;
  font-style: normal;
  text-decoration: none;
  transition: background-size 0.2s ease;
}
.mk-toc > li > a:hover {
  background-size: 100% 3px;
}

.std-layout.-sl-area {
  margin-inline: auto;
  max-width: 80rem;
  width: 100%;
}
.std-layout.-sl-area.-sl-area-s {
  max-width: 40rem;
}
.std-layout.-sl-padded-h {
  padding-inline: var(--gap);
}
.std-layout.-sl-padded-v {
  padding-block: var(--gap);
}
.std-layout.-sl-padded-v.-sl-gap-l {
  padding-block: var(--gap-l);
}
.std-layout.-sl-rows, .std-layout.-sl-rows-2 {
  display: flex;
  flex-direction: column;
  gap: var(--gap-l);
}
.std-layout.-sl-rows.-sl-small, .std-layout.-sl-rows-2.-sl-small {
  gap: var(--gap);
}

.vertical-section {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  padding-top: 16px;
  gap: 12px;
}
.vertical-section.-gaps {
  gap: 6px;
}

.ctr-classless-html {
  overflow-wrap: break-word;
  line-height: 1.8em;
}
.ctr-classless-html h1:not(:first-child),
.ctr-classless-html h2:not(:first-child),
.ctr-classless-html h3:not(:first-child),
.ctr-classless-html h4:not(:first-child),
.ctr-classless-html h5:not(:first-child),
.ctr-classless-html h6:not(:first-child),
.ctr-classless-html p:not(:first-child),
.ctr-classless-html ul:not(:first-child) {
  margin-block-start: revert;
}
.ctr-classless-html h1:not(:last-child),
.ctr-classless-html h2:not(:last-child),
.ctr-classless-html h3:not(:last-child),
.ctr-classless-html h4:not(:last-child),
.ctr-classless-html h5:not(:last-child),
.ctr-classless-html h6:not(:last-child),
.ctr-classless-html p:not(:last-child),
.ctr-classless-html ul:not(:last-child) {
  margin-block-end: revert;
}
.ctr-classless-html img {
  display: block;
  margin: auto;
}
.ctr-classless-html 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;
}
.ctr-classless-html a {
  text-decoration: underline;
  font-style: italic;
}
.ctr-classless-html a:hover {
  text-decoration: none;
}
.ctr-classless-html h1 {
  font-size: 2.813rem;
  color: #72c5f0;
  font-weight: 700;
}
.ctr-classless-html h2 {
  font-size: 25px;
  color: #72c5f0;
  font-weight: 600;
}
.ctr-classless-html h3,
.ctr-classless-html h4,
.ctr-classless-html h5 {
  font-size: 22px;
  color: #72c5f0;
  font-weight: 400;
}
.ctr-classless-html iframe {
  max-width: 100%;
  height: unset;
  aspect-ratio: 16/9;
}
.ctr-classless-html ol,
.ctr-classless-html ul {
  padding-left: revert;
}
.ctr-classless-html ul {
  list-style-type: circle;
}
.ctr-classless-html table {
  margin-block-end: 24px;
}

.std-badge {
  display: flex;
  overflow: hidden;
  gap: var(--gap);
  padding: calc(var(--gap) / 2) var(--gap);
  background-color: #3d9cce;
  border-color: #ffffff;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 600;
  text-align: center;
  text-overflow: ellipsis;
}
.std-badge.-bordered {
  border-width: 2px;
  border-style: solid;
}
.std-badge.-round {
  border-radius: var(--border-radius);
}
.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 > .txt {
  display: none;
}
.std-badge > .img {
  height: 1.2em;
}

.std-book-link {
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--gap) / 2);
}
.std-book-link > .img {
  height: 256px;
  background-size: cover;
}
.std-book-link > .title {
  overflow: hidden;
  height: 1lh;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.std-button {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #f2f2f2;
  justify-content: center;
  padding: calc(var(--gap) / 2) var(--gap);
  background: none;
  color: #f2f2f2;
  border-radius: var(--border-radius);
}
.std-button:hover {
  color: #ffffff;
  border-color: #ffffff;
}
.std-button.-blue {
  background-color: #19577a;
  color: #ffffff;
}
.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.-wide {
  padding: calc(var(--gap) / 2) calc(var(--gap) * 2);
}
.std-button.-withicon > .text {
  display: none;
}
.std-button > .text {
  text-align: center;
}

.std-entity-header {
  display: flex;
  flex-direction: column;
}
.std-entity-header > .links {
  display: flex;
  gap: calc(var(--gap) / 2);
}

.std-error {
  background-color: rgba(255, 0, 0, 0.3333333333);
  border-radius: var(--border-radius);
  padding: var(--gap);
}

.std-heading > .permalink {
  margin-left: calc(var(--gap) / 2);
  font-style: initial;
  opacity: 0;
  text-decoration: initial;
}
.std-heading:hover > .permalink {
  opacity: 0.8;
}
.std-heading:hover > .permalink:hover {
  color: #ffffff;
}

.std-info-message {
  text-align: center;
}

.std-inline-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  text-align: center;
}
.std-inline-list > .item > .link > .img {
  height: 1em;
}
.std-inline-list > .item.-img {
  display: inline-flex;
  gap: calc(var(--gap) * 2);
  justify-content: center;
}

.std-interactive-list {
  color: var(--color-fg);
  z-index: var(--z-index);
}
.std-interactive-list > button,
.std-interactive-list > .listcontainer > .list {
  background-color: var(--color-bg);
}
.std-interactive-list > .button {
  padding: calc(var(--gap) / 2) var(--gap);
  border: none;
  border-radius: var(--border-radius);
}
.std-interactive-list > .listcontainer {
  height: 0;
}
.std-interactive-list > .listcontainer > .list {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  height: 0;
  overflow: hidden;
  background-color: var(--color-bg);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.std-interactive-list > .listcontainer > .list > .item > .link {
  display: block;
  padding: var(--gap);
}
.std-interactive-list:hover > .button {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.std-interactive-list:hover > .listcontainer > .list {
  height: auto;
}
.std-interactive-list:hover > .listcontainer > .list > .item > .link:hover {
  background-color: var(--color-bg-2);
}

.std-interactive {
  border: 3px solid #3d9cce;
  border-radius: var(--border-radius);
  padding: calc(var(--gap) / 2);
  text-align: center;
  font-weight: 500;
  border-color: #3d9cce;
  color: #19577a;
}
.std-interactive.-search {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  border-color: #f2f2f2;
  background-color: #f2f2f2;
  color: #1e1e1e;
}
.std-interactive.-search > .icon {
  display: none;
}
.std-interactive.-search > .input {
  flex: 1 1 0;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  text-overflow: ellipsis;
}

.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-link.-pretty {
  background: linear-gradient(currentColor, currentColor) left bottom/0% 3px no-repeat;
  font-style: normal;
  text-decoration: none;
  transition: background-size 0.2s ease;
}
.std-link.-pretty:hover {
  background-size: 100% 3px;
}

.std-list {
  padding-left: 32px;
  list-style-type: disc;
}
.std-list > .item:not(:last-child) {
  margin-bottom: 6px;
}

.std-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
  font-size: 1.2rem;
}
.std-metadata.-s {
  font-size: 1rem;
}
.std-metadata > .item {
  display: flex;
  gap: 8px;
  color: #428ab4;
}
.std-metadata > .item > .name {
  display: inline-block;
}
.std-metadata > .item > .sep::after {
  content: " ";
}
.std-metadata > .item > .value {
  display: flex;
  color: #ffffff;
}

.std-mosaic-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: calc(var(--gap) * 2);
}

.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;
}

.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-main {
  flex-grow: 1;
}

.site-footer {
  background-color: #0b4b6e;
}

.site-header {
  padding-block: var(--gap);
  background-color: #ffffff;
}
.site-header > .std-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto var(--gap) auto;
  justify-items: start;
}
.site-header > .std-layout > .hamburger {
  display: none;
}
.site-header > .std-layout > .text {
  grid-row: 3;
  justify-self: stretch;
}
.site-header > .std-layout > .text > .content {
  padding-inline: var(--gap);
  background-color: #ffffff;
}
.site-header > .std-layout > .text > .content > .intro {
  display: none;
}
@media (max-width: 1023px) {
  .site-header > .std-layout {
    max-width: unset;
    padding-inline: initial;
  }
  .site-header > .std-layout.-js {
    --z-index-text: 10;
    grid-template-rows: auto auto;
    grid-template-columns: var(--gap) minmax(0, 5fr) var(--gap) minmax(0, 2fr) var(--gap);
  }
  .site-header > .std-layout.-js > .logo {
    grid-column: 2;
  }
  .site-header > .std-layout.-js > .hamburger {
    display: flex;
    grid-column: 4;
    width: 100%;
    align-items: center;
    justify-content: end;
    padding: 0;
  }
  .site-header > .std-layout.-js > .hamburger > .button {
    background: none;
    border: none;
  }
  .site-header > .std-layout.-js > .hamburger > .button > .img {
    width: 48px;
  }
  .site-header > .std-layout.-js > .text {
    grid-column: 1/6;
    grid-row: 2;
    height: 0;
  }
  .site-header > .std-layout.-js > .text.-open > .content {
    height: auto;
  }
  .site-header > .std-layout.-js > .text > .content {
    position: relative;
    z-index: var(--z-index-text);
    height: 0;
    overflow: hidden;
    interpolate-size: allow-keywords;
    transition: height 0.2s;
  }
  .site-header > .std-layout.-js > .text > .content > .header-menu {
    padding-block: var(--gap);
  }
}

.site-main {
  display: flex;
  flex-direction: column;
}

.site-section-beginners-short {
  background-color: #22668c;
}
.site-section-beginners-short > .std-layout {
  align-items: center;
}
.site-section-beginners-short > .std-layout > .text {
  text-align: center;
}
.site-section-beginners-short > .std-layout > .links {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  justify-content: center;
}

.site-section-beginners {
  background-color: #22668c;
}
.site-section-beginners > .std-layout > .std-layout {
  --gap-l: 32px;
}
.site-section-beginners > .std-layout > .std-layout.-intro > .title {
  color: #45b0e9;
}
.site-section-beginners > .std-layout > .std-layout.-links > .item > .title {
  margin-bottom: calc(var(--gap) / 2);
}
.site-section-beginners > .std-layout > .std-layout.-links > .item > .content > .description {
  margin-bottom: var(--gap);
}
.site-section-beginners > .std-layout > .left,
.site-section-beginners > .std-layout > .right {
  flex: 0 0 100%;
}
.site-section-beginners > .std-layout > .left,
.site-section-beginners > .std-layout > .right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.site-section-beginners > .std-layout > .left > .title {
  font-weight: 500;
  font-size: 1.875rem;
}
.site-section-beginners > .std-layout > .left > .text {
  font-size: 1.75rem;
  font-weight: 400;
}
.site-section-beginners > .std-layout > .left > .text > .em {
  font-weight: 700;
}
.site-section-beginners > .std-layout > .right {
  box-sizing: border-box;
}
.site-section-beginners > .std-layout > .right > .item > .title,
.site-section-beginners > .std-layout > .right > .item > .description {
  font-size: 1.563rem;
}
.site-section-beginners > .std-layout > .right > .item > .title {
  font-weight: 700;
}
.site-section-beginners > .std-layout > .right > .item > .description {
  color: #45b0e9;
  font-weight: 500;
  margin-bottom: 16px;
}
.site-section-beginners > .std-layout > .right > .item > .link {
  font-size: 1.375rem;
  font-weight: 600;
}

.site-slice-breadcrumb {
  background-color: #0a3f5c;
}

.site-social-networks > .std-layout {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  justify-content: center;
}
.site-social-networks > .std-layout > .button {
  --gap: 0;
  display: flex;
  align-items: center;
  border: 3px solid #ffffff;
  border-radius: var(--border-radius);
  gap: var(--gap);
  padding: calc(var(--gap) / 2) var(--gap);
}
.site-social-networks > .std-layout > .button.-discord {
  background-color: #ffffff;
  color: #0c4b6e;
}
.site-social-networks > .std-layout > .button.-facebook {
  background-color: #19577a;
}
.site-social-networks > .std-layout > .button > .image {
  width: auto;
  height: 96px;
}
.site-social-networks > .std-layout > .button > .text {
  display: none;
}

.header-menu {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.header-menu > .item > .std-interactive {
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-l);
  justify-content: center;
}

.form-row {
  --half-gap: calc(var(--gap) / 2);
  display: flex;
  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 > .label {
  opacity: 0.8;
  transition: all 0.2s ease-in;
}
.form-row > .input {
  border-width: 0;
  padding: calc(var(--gap) / 2) var(--gap);
}
.form-row > .input.-text {
  min-width: 50%;
}
.form-row > .input.-textarea {
  width: 100%;
  height: 40dvh;
}
.form-row > .std-error {
  --gap: var(--half-gap);
  margin-top: var(--gap);
}
.form-row.-titled > .label {
  font-size: 25px;
  color: #72c5f0;
  font-weight: 600;
  margin-bottom: var(--gap);
}
.form-row.-singleimage > .image {
  height: auto;
  max-width: 256px;
  width: 100%;
}
.form-row.-singleimage > .current {
  font-size: 0.8em;
  font-style: italic;
}

.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: rgba(10, 63, 92, 0.6980392157);
  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: var(--gap);
  background-color: #428ab4;
}
.article-advice > .img {
  display: none;
}
.article-advice > .ctr-classless-html > h2 {
  color: #ffffff;
  font-size: 1.563rem;
  font-weight: 700;
}
.article-advice > .ctr-classless-html > p {
  font-size: 1.188rem;
}

.article-cols {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap);
}
.article-cols > .primary {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap);
}
.article-cols > .primary > .section.-intro {
  padding: var(--gap) 0;
}
.article-cols > .primary > .section.-gallery {
  row-gap: var(--gap);
}
.article-cols > .primary > .section > .sectioncontent {
  padding-inline: var(--gap);
}
.article-cols > .primary > .section.-intro {
  background-color: #0a3f5c;
}
.article-cols > .secondary > .section > .std-layout {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap);
  background-color: #0a3f5c;
}
.article-cols > .secondary > .section > .std-layout > .std-button {
  --gap: 32px;
}
.article-cols.-book {
  row-gap: 0;
}
.article-cols.-book > .primary {
  order: 1;
}

.article-cover {
  display: grid;
  height: 502px;
  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 {
  display: flex;
  grid-row-start: 3;
  align-items: center;
  justify-content: center;
}

.article-mosaic {
  display: flex;
  column-gap: var(--gap);
}
.article-mosaic > .article-mosaic-image,
.article-mosaic > .right {
  height: 160px;
  flex: 1 1 auto;
  width: 50%;
}
.article-mosaic > .right {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  row-gap: calc(var(--gap) / 2);
}
.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-frame {
  border: 3px solid #428ab4;
  padding: var(--gap);
}
.article-nav-frame.-secondary {
  display: none;
}
.article-nav-frame.-related {
  display: flex;
  flex-direction: column;
  row-gap: var(--gap);
}
.article-nav-frame.-related > .articles {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-nav-frame.-related > .articles > .item > .link > .image {
  margin-bottom: calc(var(--gap) / 2);
  width: 100%;
}
.article-nav-frame.-related > .std-layout.--links {
  justify-content: center;
  flex-wrap: wrap;
}
.article-nav-frame.-related > .std-layout.--links > .item > .std-button {
  display: flex;
}
.article-nav-frame > .heading,
.article-nav-frame > .subheading {
  text-align: center;
}
.article-nav-frame > .heading {
  color: #ffffff;
  font-size: 1.2rem;
}
.article-nav-frame.-book {
  border-width: 0 0 2px 0;
}

.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: rgba(0, 0, 0, 0.6);
  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;
  align-items: center;
  flex-direction: column;
  gap: var(--gap);
  padding: var(--gap);
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.review-mosaic-bare:hover > .content {
  background-color: rgba(0, 0, 0, 0.4);
}

.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 > .std-link {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  padding-bottom: var(--gap);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: var(--gap);
  padding-top: var(--gap);
  list-style-type: none;
}
.page-breadcrumb > .item {
  display: flex;
  align-items: start;
  gap: inherit;
}
.page-breadcrumb > .item > .std-link,
.page-breadcrumb > .item > .text {
  padding-bottom: var(--gap);
}
.page-breadcrumb > .item > .text {
  opacity: 0.7;
}

.side-note {
  padding: 16px;
  background-color: #428ab4;
  color: #ffffff;
}

.shadow-container > .shadow {
  width: 200%;
  box-shadow: 0 -62.75px 125.5px 62.75px #19577a;
}

.social-networks-container {
  display: flex;
  flex-direction: column;
  padding-block: var(--gap-l);
  gap: var(--gap-l);
  font-size: 1.563rem;
}

.section-heading {
  text-align: center;
}
.section-heading.-white > .text {
  color: #ffffff;
  font-weight: 400;
}
.section-heading > .image {
  width: 128px;
  height: auto;
  margin-bottom: calc(var(--gap) / 2);
}

.review-box {
  display: grid;
  align-items: end;
  padding-bottom: calc(var(--gap-l) * 2);
  overflow-wrap: break-word;
}
.review-box > .box,
.review-box > .links {
  grid-column: 1;
  grid-row: 1;
}
.review-box > .box {
  border: 4px solid #ffffff;
  padding: var(--gap-l);
}
.review-box > .box > .std-rating-container {
  float: right;
}
.review-box > .box > .heading,
.review-box > .box > .body {
  margin-bottom: var(--gap-l);
}
.review-box > .box > .heading {
  color: #ffffff;
}
.review-box > .box > .part:not(:last-child) {
  margin-bottom: var(--gap-l);
}
.review-box > .box > .part > .subheading {
  margin-bottom: var(--gap);
  color: #72c5f0;
}
.review-box > .box > .part > .markdown > ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gap-l);
  row-gap: calc(var(--gap) / 2);
  list-style-type: none;
}
.review-box > .box > .part > .markdown > ul > li {
  padding-left: calc(1.2em + var(--gap) / 2);
  background: center left/1.2em 1.2em no-repeat;
}
.review-box > .box > .part > .markdown.-pros > ul > li {
  background-image: url("list-plus.svg");
}
.review-box > .box > .part > .markdown.-cons > ul > li {
  background-image: url("list-minus.svg");
}
.review-box > .links {
  --color-bg-2: #f2f2f2;
  --color-bg: #ffffff;
  --color-fg: #19577a;
  --z-index: 1;
  display: flex;
  transform: translateY(50%);
  gap: var(--gap);
  justify-content: center;
}
.review-box > .links > .-moretests {
  display: none;
}
.review-box.-summary > .box {
  background-color: #0a3f5c;
  border: none;
}
.review-box.-summary > .box > .part > .subheading {
  color: #ffffff;
}
.review-box.-summary > .box > .part > .markdown > ul {
  flex-direction: column;
  flex-wrap: nowrap;
}

.home-main {
  --gap-l: 64px;
  --border-radius: 10px;
}
.home-main > .lastnewslist {
  background-color: #19577a;
}
.home-main > .lastnewslist > .std-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-main > .lastnewslist > .std-layout > .std-mosaic-list > .item {
  --gap: 16px;
}

.home-zone-2 {
  display: grid;
  grid-template-columns: 1fr;
}
.home-zone-2 > .site-social-networks {
  --gap: 16px;
  grid-row: 1/3;
  grid-column: 1;
  padding-block: var(--gap);
  background: linear-gradient(to bottom, #19577a 50%, transparent 50%);
}
.home-zone-2 > .reviews {
  display: grid;
  grid-column: 1;
  grid-row: 2/6;
  grid-template-rows: subgrid;
  grid-template-columns: 1fr;
}
.home-zone-2 > .reviews > .title {
  display: grid;
  grid-row: 1/3;
  width: 100%;
  grid-template-rows: subgrid;
  grid-template-columns: 1fr;
  padding-bottom: var(--gap-l);
}
.home-zone-2 > .reviews > .title > .section-heading {
  grid-row: 2;
}
.home-zone-2 > .reviews > .lastreviews {
  width: 100%;
}
.home-zone-2 > .reviews > .lastreviews > .list {
  --gap: 8px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}
.home-zone-2 > .reviews > .more {
  grid-column: 1;
  grid-row: 4;
  padding-block: var(--gap-l);
  text-align: center;
}