:root {
  --fz-html: 62.5%;
  --fz-base: 1.8rem;
  --fw-base: 400;
  --lh-base: 1.2;
  --ff-base: "Manrope", sans-serif;
  --c-base: #008080;
  --c-black: #262626;
  --c-gray-100: #e7e7e7;
  --c-gray-125: #ececec;
  --c-gray-150: #ebebeb;
  --c-gray-175: #e6e6e6;
  --c-gray-200: #dadada;
  --c-gray-225: #d4d4d4;
  --c-gray-250: #c4c4c4;
  --c-gray-300: #b6b5b5;
  --c-gray-350: #858585;
  --c-gray-375: #b9b9b9;
  --c-gray-400: #a2a2a2;
  --c-gray-425: #acacac;
  --c-gray-450: #aeaeae;
  --c-gray-475: #a6a4b0;
  --c-gray-500: #4c4b4b;
  --c-gray-600: #3f4038;
  --c-gray-700: #303030;
  --c-green-100: #96adb4;
  --c-green-150: #96adb3;
  --c-green-200: #54666b;
  --c-green-250: #5f7e87;
  --c-white: #ffffff;
  --c-yellow-100: #ede497;
  --c-yellow-200: #c5964e;
  --c-yellow-300: #847039;
  --c-green: #008080;
  --c-red-100: #d26b72;
  --c-red-200: #b96067;
  --c-orange: #EC8E43;
}

* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

template {
  display: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

img,
[style*=background-image] {
  image-rendering: -webkit-optimize-contrast;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}

a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=button],
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

input::placeholder {
  color: inherit;
  opacity: 1;
}

textarea::placeholder {
  color: inherit;
  opacity: 1;
}

input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype-variations"), url("../assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

html {
  font-size: var(--fz-html);
}

body {
  min-width: 320px;
  font-family: var(--ff-base);
  font-weight: var(--fw-base);
  font-size: var(--fz-base);
  line-height: var(--lh-base);
  background: #f0f0f0;
  color: #262626;
}

body.has-modal-open {
  overflow: hidden;
}

body:has(.wrapper--white) {
  background: var(--c-white);
}

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

@media (hover: hover) {
  a:where(:hover, :focus-visible) {
    text-decoration: none;
  }
}

a[href^=tel] {
  text-decoration: none;
}

.level-1,
h1,
.level-2,
h2,
.level-3,
h3,
.level-4,
h4,
.level-5,
h5,
.level-6,
h6 {
  margin-bottom: calc(var(--lh-base) * 0.5em);
}

p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: calc(var(--lh-base) * 0.5em);
}

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[hidden],
.hidden {
  display: none !important;
}

[disabled],
.disabled {
  cursor: default;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

/* ------------------------------------------------------------ *\
	Block Symbol
\* ------------------------------------------------------------ */

.block-symbol {
  font-size: 1.8rem;
  line-height: 1;
  border: 1px solid var(--c-gray-200);
  color: var(--c-black);
  padding: 0.6rem 0.2rem;
  justify-content: center;
  text-align: center;
  border-radius: 0.3rem;
  min-width: 3.2rem;
}

.block-symbol--red {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
}

.block-symbol--green {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}

/* ------------------------------------------------------------ *\
	Box Filters
\* ------------------------------------------------------------ */

.box-filters .box__head {
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 1.7rem 1.7rem 1.7rem 2.4rem;
  border-radius: 1rem;
  margin-bottom: 5rem;
}

.box-filters .box__head h6 {
  font-size: 1.6rem;
  line-height: 1.125;
  font-weight: 700;
}

.box-filters .box__head-filters {
  display: flex;
  align-items: center;
  gap: 3.3rem;
}

.box-filters .box__head-actions a.btn {
  min-height: 4.9rem;
  min-width: 12.6rem;
  padding: 0.7rem;
}

.box-filters .box__filters-entry {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.box-filters .box__filters-entry + .box__filters-entry {
  margin-left: 1.7rem;
}

.box-filters .box__body {
  max-width: 104.6rem;
}

.box-filters .box__body-entry {
  display: grid;
  grid-template-columns: 34.6rem 1fr;
  gap: 5.5rem;
}

.box-filters .box__body-entry + .box__body-entry {
  margin-top: 5.7rem;
}

.box-filters .box__body-actions {
  padding-top: 4.6rem;
}

.box-filters .box__body-actions > * {
  width: 100%;
}

.box-filters .box__body-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.box-filters .box__option-title {
  margin-bottom: 2.1rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.125;
  font-weight: 800;
}

.box-filters .box__option-list ul {
  list-style-type: none;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.box-filters .box__option-list ul span {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid var(--c-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  padding: 0.4rem;
  cursor: pointer;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}

.box-filters .box__option-list ul span.is-active {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}

/* ------------------------------------------------------------ *\
	Box Key
\* ------------------------------------------------------------ */

.box-key {
  border: 2px solid var(--c-gray-250);
  max-width: 20.3rem;
  border-radius: 2.1rem;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 1.7rem;
}

.box-key .box__head {
  position: relative;
  top: -1.9rem;
  border: 2px solid var(--c-gray-200);
  border-radius: 1.75rem;
  padding: 0.6rem 1.6rem 0.6rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--c-white);
  margin-left: 1.3rem;
}

.box-key .box__body {
  padding: 0 1.8rem 1.5rem;
  margin-top: -0.6rem;
}

.box-key .box__body ul {
  list-style-type: none;
}

.box-key .box__body ul span {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------ *\
	Box Message
\* ------------------------------------------------------------ */

.box-message {
  background: var(--c-yellow-100);
  color: var(--c-yellow-300);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.125;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 4rem;
  border-radius: 0 0 1rem 1rem;
}

/* ------------------------------------------------------------ *\
	Box
\* ------------------------------------------------------------ */

.box {
  border: 2px solid var(--c-gray-250);
  border-radius: 2rem;
  padding: 3rem 2.4rem 2.8rem;
  font-size: 1.6rem;
  line-height: 1.875;
}

.box .box__main {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--c-gray-250);
  position: relative;
  overflow: hidden;
}

.box .box__main-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  letter-spacing: -0.02em;
}

.box .box__main-content p > span {
  font-weight: 700;
}

.box .box__main-content:not(.is-highlighted) {
  position: relative;
  opacity: 1;
  visibility: visible;
  letter-spacing: 0;
}

.box.is-highlight-visible .box__main-content:not(.is-highlighted) {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.box.is-highlight-visible .box__main-content.is-highlighted {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  gap: 1.4rem;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  padding: 1.6rem;
  min-width: 15.6rem;
  background: var(--c-base);
  color: var(--c-white);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 1rem;
  outline: none;
  border: 0;
  transition: box-shadow 0.4s, background 0.4s, color 0.4s, border-color 0.4s;
}

.btn:after, .btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: luminosity;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn:before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover:after {
    opacity: 1;
  }
}

.btn:active {
  box-shadow: inset 0 5px 4px rgba(0, 0, 0, 0.3);
  background: var(--c-green-200);
}

.btn:active:before {
  opacity: 1;
}

.btn:active:after {
  opacity: 0;
}

.btn--white {
  background: var(--c-white);
  color: var(--c-base);
  border: 2px solid var(--c-base);
  padding: 1.4rem;
}
.btn--white.btn--medium {
  border-width: 1px;
}

@media (hover: hover) and (pointer: fine) {
  .btn--white:hover {
    background: var(--c-red-100);
    border-color: var(--c-red-100);
    color: var(--c-white);
  }
  .btn--white:hover:after {
    display: none;
  }
}

.btn--cancel {
  background: var(--c-white);
  color: var(--c-base);
  border: 2px solid var(--c-base);
  padding: 1.4rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn--cancel:hover {
    background: var(--c-gray-225);
    border-color: var(--c-gray-225);
    color: var(--c-base);
  }
  .btn--cancel:hover:after {
    display: none;
  }
}

.btn--light:active {
  background: var(--c-green-100);
}

.btn--red {
  background: #EC8E43;
}

.btn--red:active {
  background: #DC823B;
}

.btn--outline {
  background: transparent;
  color: var(--c-black);
  border: 2px solid var(--c-gray-375);
  padding: 1.4rem;
}

.btn--outline.btn--medium {
  border-width: 1px;
}

.btn--outline:after {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn--outline:hover {
    background: var(--c-gray-150);
  }
}

.btn--outline:active {
  box-shadow: inset 0 5px 4px rgba(0, 0, 0, 0.2);
  border-color: var(--c-gray-150);
  background: var(--c-gray-150);
}

.btn--gray {
  background: var(--c-gray-300);
}

@media (hover: hover) and (pointer: fine) {
  .btn--gray:hover {
    background: var(--c-red-100);
  }
}

.btn--gray:active {
  background: var(--c-red-200);
}

.btn--medium {
  min-width: 6.3rem;
  min-height: 2.4rem;
  padding: 0.5rem;
  font-size: 1.2rem;
  gap: 0.6rem;
  border-radius: 0.6rem;
}

.btn--medium img {
  width: 1.2rem;
  height: 1.2rem;
}

.btn--small {
  font-size: 1.4rem;
  padding: 0.65rem;
  min-width: 6.1rem;
  border-radius: 1.35rem;
}

.btn--xsmall {
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  min-width: 7.5rem;
  border-radius: 0.5rem;
}

.btn--toggle span + span {
  display: none;
}

.btn--toggle.is-active {
  box-shadow: inset 0 5px 4px rgba(0, 0, 0, 0.3);
  background: var(--c-green-200);
}

@media (hover: hover) and (pointer: fine) {
  .btn--toggle.is-active:hover {
    box-shadow: none;
  }
}

.btn--toggle.is-active span {
  display: none;
}

.btn--toggle.is-active span + span {
  display: block;
}

.btn--toggle-alt {
  background: var(--c-white);
  color: var(--c-base);
  border: 2px solid var(--c-base);
  padding: 1.4rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn--toggle-alt:hover {
    background: var(--c-base);
    border-color: var(--c-base);
    color: var(--c-white);
  }
}

.btn--toggle-alt span + span {
  display: none;
}

.btn--toggle-alt.is-active {
  background: var(--c-base);
  border-color: var(--c-base);
  color: var(--c-white);
}

.btn--toggle-alt.is-active span {
  display: none;
}

.btn--toggle-alt.is-active span + span {
  display: block;
}

.btn--block {
  width: 100%;
}

/* ------------------------------------------------------------ *\
	Checkbox
\* ------------------------------------------------------------ */

.checkbox {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  position: relative;
  font-weight: 700;
}

.checkbox:after {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 1.1rem;
  width: 0.6rem;
  border-bottom: 0.2rem solid var(--c-black);
  border-right: 0.2rem solid var(--c-black);
  position: absolute;
  top: 0.3rem;
  left: 0.7rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.9rem;
  height: 1.9rem;
  border: 2px solid var(--c-white);
  border-radius: 0.5rem;
  transition: background 0.4s;
}

.checkbox:has(input:checked):after {
  opacity: 1;
}

.checkbox:has(input:checked) input {
  background: var(--c-white);
}

/* ------------------------------------------------------------ *\
	Content
\* ------------------------------------------------------------ */

.content {
  padding: 1.8rem 4.6rem 14.6rem 3rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: var(--c-white);
  border-radius: 0.8rem 0 0 0;
  position: relative;
}

.content .content__bar {
  margin-bottom: 1.8rem;
  flex-shrink: 0;
}

.content .content__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.content .content__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.content .content__main--grid {
  display: grid;
  grid-template-columns: 1fr auto;
}

.content .content__main-entries {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 2.4rem 0;
  border: solid var(--c-gray-175);
  border-width: 1px 0;
}

.content .content__main-entries::-webkit-scrollbar {
  width: 1.2rem;
}

.content .content__main-entries::-webkit-scrollbar-track {
  background: #fbfbfb;
}

.content .content__main-entries::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 1rem;
}

.content .content__main-entry {
  padding-right: 0.4rem;
}

.content .content__main-entry + .content__main-entry {
  margin-top: 3.3rem;
}

.content .content__wrapper {
  margin-bottom: 4.6rem;
}

.content .content__wrapper ol {
  line-height: 1;
  padding: 1.1rem 0.6rem;
}

.content .content__wrapper ol li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 1.4rem;
}

.content .content__wrapper ol li + li {
  margin-top: 1.8rem;
}

.content .content__wrapper ol strong {
  font-weight: 800;
}

.content .content__search {
  flex-grow: 1;
}

.content .content__button > * {
  padding: 0.7rem;
  min-height: 4.9rem;
  min-width: 13.6rem;
}

/* Content Offset */

.content--offset {
  padding: 3.7rem 7rem 3.7rem 3.5rem;
}

/* Content Offset Bottom */

.content--offset-bottom {
  padding-bottom: 6rem;
}

/* Content No Offset Bottom */

.content--no-offset-bottom {
  padding-bottom: 0;
}

/* Content Offset Alt */

.content--offset-alt {
  padding: 3.5rem 4.6rem 0 3rem;
  overflow: auto;
}

.content--offset-alt .content__bar {
  margin-bottom: 3.2rem;
}

/* Content Alt */

.content--alt {
  padding: 3.5rem 4.6rem 3.5rem 3rem;
  overflow: auto;
}

.content--alt .content__bar {
  margin-bottom: 3.2rem;
}

.content--alt .content__main {
  overflow: visible;
  min-height: unset;
}

/* ------------------------------------------------------------ *\
	Dropdown
\* ------------------------------------------------------------ */

.dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.dropdown > input[type=checkbox] {
  display: none;
}

.dropdown .dropdown__label {
  position: relative;
  z-index: 2;
  padding: 0.7rem;
  min-height: 4.9rem;
  min-width: 13.6rem;
}

.dropdown .dropdown__menu {
  position: absolute;
  top: calc(100% - 0.7rem);
  left: 0;
  width: 100%;
  background: #fff;
  border: 0.2rem solid var(--c-green-250);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 1.4rem 0 0.4rem;
  display: none;
  z-index: 100;
}

.dropdown > input[type=checkbox]:checked ~ .dropdown__menu {
  display: block;
}

.dropdown .dropdown__menu label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 1.4rem;
}

.dropdown .dropdown__menu label:after {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 1.1rem;
  width: 0.7rem;
  border-bottom: 0.2rem solid var(--c-green-250);
  border-right: 0.2rem solid var(--c-green-250);
  position: absolute;
  top: 1.1rem;
  left: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.dropdown .dropdown__menu label:has(input[type=checkbox]:checked):after {
  opacity: 1;
}

.dropdown .dropdown__menu input {
  appearance: none;
  -webkit-appearance: none;
  border: 0.2rem solid var(--c-gray-175);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.6rem;
}

.dropdown .dropdown__menu span {
  color: #607d8b;
}

.dropdown .dropdown__menu a {
  text-decoration: none;
  transition: color 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .dropdown .dropdown__menu a:hover {
    color: var(--c-green-250);
  }
}

/* Dropdown Alt */

.dropdown--alt .dropdown__menu {
  top: calc(100% + 1.1rem);
  right: -1.7rem;
  left: unset;
  color: var(--c-black);
  border-top: 0.2rem solid var(--c-green-250);
  border-radius: 8px;
  padding: 1rem 0.8rem 0.8rem;
  min-width: 7rem;
  text-align: center;
}

.dropdown--alt .dropdown__menu:after, .dropdown--alt .dropdown__menu:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 2.8rem;
  width: 0;
  height: 0;
  border-left: 0.9rem solid transparent;
  border-right: 0.9rem solid transparent;
  border-bottom: 1rem solid var(--c-green-250);
}

.dropdown--alt .dropdown__menu:before {
  top: -0.85rem;
  left: 3rem;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-bottom: 0.9rem solid var(--c-white);
  z-index: 1;
}

.dropdown--alt .dropdown__menu label {
  padding: 0;
}

.dropdown--alt .dropdown__menu label + label {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 0.1rem solid #dfe5e7;
}

/* ------------------------------------------------------------ *\
	Field
\* ------------------------------------------------------------ */

.field {
  height: 4.8rem;
  line-height: 4.4rem;
  width: 100%;
  border: 0.2rem solid var(--c-gray-175);
  border-radius: 1rem;
  padding: 0 1.6rem;
  color: var(--c-black);
  font-size: 1.6rem;
}

.field::placeholder {
  color: var(--c-gray-400);
}

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */

.form {
  padding-top: 0.7rem;
}

.form .form__message {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.form .form__body {
  padding-bottom: 4.2rem;
  margin-bottom: 4.1rem;
  border-bottom: 1px solid var(--c-gray-125);
}

.form .form__row + .form__row {
  margin-top: 3.6rem;
}

.form .form__cols {
  display: flex;
  gap: 2.4rem;
}

.form .form__col {
  flex: 1;
}

.form .form__label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.125;
}

.form .form__label span {
  color: var(--c-gray-400);
  font-weight: 400;
}

.form .form__controls {
  position: relative;
}

.form .form__controls > button {
  background: transparent;
  border: 0;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  display: flex;
  opacity: 0.1;
  transition: opacity 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .form .form__controls > button:hover {
    opacity: 1;
  }
}

.form .form__link {
  margin-top: 2.5rem;
}

.form .form__link--alt {
  margin-top: 2srem;
}

.form .form__link a {
  color: #008080;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .form .form__link a:hover {
    color: var(--c-green-200);
  }
}

.form .form__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.form .form__foot--alt {
  flex-direction: column;
  gap: 0.9rem;
}

.form .form__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* Form Alt */

.form--alt .form__body {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.grid-flex {
  --grid-gutter: 2rem;
  display: flex;
  flex-flow: row wrap;
  margin-inline: calc(var(--grid-gutter) / 2 * -1);
}

.grid-flex .grid__col {
  --grid-cols: 1;
  padding-inline: calc(var(--grid-gutter) / 2);
  max-width: calc(100% / var(--grid-cols));
  flex: 0 0 calc(100% / var(--grid-cols));
}

.grid-flex .grid__col--1of2 {
  --grid-cols: 2;
}

.grid-flex .grid__col--1of3 {
  --grid-cols: 3;
}

.grid-flex .grid__col--1of4 {
  --grid-cols: 4;
}

.grid-flex .grid__col--1of5 {
  --grid-cols: 5;
}

.grid-flex .grid__col--1of6 {
  --grid-cols: 6;
}

.grid {
  --grid-cols: 1;
  --grid-gutter: 2rem;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gutter);
}

.grid--size-1of2 {
  --grid-cols: 2;
}

.grid--size-1of3 {
  --grid-cols: 3;
}

.grid--size-1of4 {
  --grid-cols: 4;
}

.grid--size-1of5 {
  --grid-cols: 5;
}

.grid--size-1of6 {
  --grid-cols: 6;
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.header {
  background: #e1eff5;
  color: #262626;
  padding: 2.5rem 0 1.7rem;
}

.header .header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header .header__logo {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 300;
  color: #505050;
}

.header .header__logo h1 {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 0;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--c-white);
}

.header .header__logo h1:after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 1.6rem;
  background: #c4c4c4;
}

.header .header__logo .header__logo-img {
  height: 4.8rem;
  width: auto;
}

.header .header__logo .header__logo-img + p:before {
  content: "";
  display: inline-block;
  width: 0.1rem;
  height: 1.6rem;
  background: #c4c4c4;
  margin-right: 2.4rem;
  vertical-align: middle;
}

.header .header__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header .header__nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.header .header__nav:after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 2.5rem;
  background: #c4c4c4;
  opacity: 1;
}

.header .header__actions button {
  background: transparent;
  color: #505050;
  outline: none;
  border: 0;
  transition: opacity 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .header .header__actions button:hover {
    opacity: 0.7;
  }
}

/* ------------------------------------------------------------ *\
	List Blocks
\* ------------------------------------------------------------ */

.list-blocks {
  display: flex;
  gap: 2rem;
  width: fit-content;
}

.list-blocks .list__block {
  flex-shrink: 0;
  padding: 1.4rem 1rem 1.1rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
  border: 0.1rem solid var(--c-black);
  min-width: 6.9rem;
  background: var(--c-white);
}

.list-blocks .list__block--green {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}

.list-blocks .list__block--red {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-white);
}

.list-blocks .list__block--bordered {
  position: relative;
}

.list-blocks .list__block--bordered:after {
  content: "";
  display: block;
  width: calc(100% + 1.6rem);
  height: calc(100% + 1.6rem);
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  z-index: -1;
  border: 0.6rem solid;
  border-image: repeating-linear-gradient(-45deg, var(--c-gray-475) 0 6px, #fff 1px 7px) 10;
}

.list-blocks .list__block--outlined {
  border: 0.3rem solid var(--c-gray-500);
  background: var(--c-white);
  color: var(--c-black);
}

.list-blocks .list__block p {
  margin-bottom: 0;
}

.list-blocks .list__block p:first-child {
  margin-bottom: -0.4rem;
}

.list-blocks .list__block strong {
  font-weight: 700;
}

/* ------------------------------------------------------------ *\
	List Errors
\* ------------------------------------------------------------ */

.list-errors {
  width: 100%;
  display: flex;
  gap: 0.7rem;
  list-style-type: none;
}

.list-errors li {
  flex-grow: 1;
}

.list-errors span {
  display: block;
  height: 2.2rem;
  border: 1px solid var(--c-gray-200);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */

.main {
  flex-grow: 1;
  display: grid;
  grid-template-columns: minmax(25.3rem, 17.6%) 1fr;
  gap: 0;
  min-height: 0;
}

/* ------------------------------------------------------------ *\
	Modal
\* ------------------------------------------------------------ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: -2;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.modal .modal__container {
  background: var(--c-white);
  padding: 2.4rem 2rem 2rem;
  width: 100%;
  max-width: 39.2rem;
  border-radius: 1.5rem;
}

.modal .modal__container--large {
  max-width: 48.6rem;
  padding: 2.8rem 2.6rem 2.3rem;
}

.modal .modal__content {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.125;
  font-weight: 600;
}

.modal .modal__content h6 {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.125;
  font-weight: 600;
}

.modal .modal__content h6 a {
  color: var(--c-base);
  transition: color 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .modal .modal__content h6 a:hover {
    text-decoration: underline;
    color: var(--c-green-150);
  }
}

.modal .modal__content p {
  color: var(--c-red-100);
}

.modal .modal__wrapper {
  padding: 0.6rem 1rem 0.3rem;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  line-height: 1.125;
}

.modal .modal__wrapper--grid {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  text-align: left;
  padding: 0;
}

.modal .modal__wrapper h6 {
  margin-bottom: 3rem;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}

.modal .modal__wrapper ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  text-align: left;
}

.modal .modal__actions {
  display: flex;
  justify-content: center;
  gap: 4.2rem;
}

.modal .modal__actions > *:not(:only-child) {
  flex-grow: 1;
}

.modal .modal__checkbox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
  margin: 0 auto;
}

.modal .modal__checkbox:after {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 1.1rem;
  width: 0.6rem;
  border-bottom: 0.2rem solid var(--c-black);
  border-right: 0.2rem solid var(--c-black);
  position: absolute;
  top: 0.5rem;
  left: 0.9rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.modal .modal__checkbox:has(input:checked):after {
  opacity: 1;
}

.modal .modal__checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.5rem;
  border: 2px solid var(--c-gray-175);
}

.modal .modal__checkbox label {
  color: var(--c-red-100);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.125;
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

.nav {
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.125;
}

.nav ul {
  list-style-type: none;
  display: flex;
}

.nav a {
  text-decoration: none;
  padding: 0.7rem 1.8rem;
  border-radius: 2.6rem;
  transition: color 0.4s, background 0.4s;
  color: #505050;
}

@media (hover: hover) and (pointer: fine) {
  .nav a:hover {
    color: #ffffff;
    background: #008080;
  }
}

.nav li.is-active a {
  color: #ffffff;
  background: #008080;
}

/* ------------------------------------------------------------ *\
	Paging
\* ------------------------------------------------------------ */

.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.paging ul {
  list-style-type: none;
  display: flex;
  gap: 2.7rem;
  margin-bottom: 0;
}

.paging a {
  text-decoration: none;
  transition: color 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .paging a:hover {
    color: var(--c-gray-450);
  }
}

.paging li.is-current a {
  color: var(--c-gray-450);
}

.paging .paging__prev,
.paging .paging__next {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .paging .paging__prev:hover span,
  .paging .paging__next:hover span {
    border-color: var(--c-gray-450);
  }
}

.paging .paging__prev p,
.paging .paging__next p {
  margin-bottom: 0;
}

.paging .paging__prev span,
.paging .paging__next span {
  border: solid var(--c-black);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  transition: border-color 0.4s;
}

.paging .paging__next span {
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------ *\
	Search Form
\* ------------------------------------------------------------ */

.search-form {
  display: flex;
}

.search-form label {
  flex-grow: 1;
}

.search-form .search__field {
  min-height: 4.9rem;
  line-height: 4.5rem;
  border: 0.2rem solid var(--c-green-250);
  border-right: 0;
  width: calc(100% + 0.7rem);
  margin-right: -0.7rem;
  border-radius: 1rem 0 0 1rem;
  padding: 0 1rem;
}

.search-form .search__btn {
  flex-shrink: 0;
  padding: 0.7rem;
  min-height: 4.9rem;
  background: #EC8E43;
  min-width: 13.6rem;
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */

.section {
  padding: 15.7rem 0;
}

.section .section__logo {
  text-align: center;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--c-gray-125);
  color: var(--c-green);
  letter-spacing: 0.02em;
  margin: 0 -0.4rem 2.6rem;
}

.section .section__logo--img {
  padding-bottom: 2.3rem;
}

.section .section__logo h1 {
  font-size: 6.52rem;
  font-weight: 700;
}

.section .section__logo .section__logo-img {
  height: 12rem;
  width: auto;
}

.section .section__form .btn {
  background: #EC8E43;
  color: #ffffff;
}

.section .section__form .btn--light {
  background: #ffffff;
  color: #EC8E43;
  border: 2px solid #EC8E43;
}

/* ------------------------------------------------------------ *\
	Select
\* ------------------------------------------------------------ */

.select {
  position: relative;
}

.select:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--c-black);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.7rem;
}

.select select {
  height: 4.8rem;
  line-height: 4.8rem;
  border-radius: 1rem;
  background: var(--c-white);
  color: var(--c-black);
  padding: 0 3rem 0 0;
  min-width: 8.3rem;
  font-size: 1.6rem;
  font-weight: 600;
  appearance: none;
  text-align: center;
  -webkit-appearance: none;
}

.shell {
  --shell-max-width: 138.4rem;
  --shell-gutter: 2.8rem;
  max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
  padding-inline: var(--shell-gutter);
  margin-inline: auto;
  width: 100%;
}

.shell--small {
  --shell-max-width: 45.3rem;
}

.shell--fluid {
  max-width: none;
}

/* ------------------------------------------------------------ *\
	Sidebar
\* ------------------------------------------------------------ */

.sidebar {
  background: #e1eff5;
  color: #262626;
  margin-left: calc(-50vw + var(--shell-max-width) / 2);
  padding-left: calc((-50vw + var(--shell-max-width) / 2) * -1);
  margin-right: 0;
  padding-top: 2.7rem;
}

@media (max-width: var(--shell-max-width)) {
  .sidebar {
    margin-left: 0;
    padding-left: 0;
  }
}

.sidebar .sidebar__title {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-inline: 2.8rem;
}

.sidebar .sidebar__title:not(:last-child) {
  margin-bottom: 2.2rem;
}

.sidebar .sidebar__title img {
  flex-shrink: 0;
}

.sidebar .sidebar__title h2 {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 800;
}

.sidebar .sidebar__list-title {
  padding: 0.95rem 2.8rem;
  background: #008080;
}

.sidebar .sidebar__list-title h3 {
  font-weight: 800;
  font-size: 1.6rem;
}

.sidebar .sidebar__list ul {
  list-style-type: none;
  font-size: 1.5rem;
}

.sidebar .sidebar__list ul li + li {
  margin-top: 0.1rem;
}

.sidebar .sidebar__list ul a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 1.02rem 2.8rem;
  background: var(--c-gray-700);
  transition: background 0.4s;
}

.sidebar .sidebar__list ul a p {
  transition: transform 0.4s;
}

.sidebar .sidebar__list ul a img {
  position: absolute;
  top: 50%;
  left: 2.8rem;
  transform: translate(-1.5rem, -50%);
  opacity: 0;
  transition: transform 0.4s, opacity 0.3s;
}

.sidebar .sidebar__list ul li.is-active a {
  background: #0E8988;
}

.sidebar .sidebar__list ul li.is-active a p {
  transform: translateX(1.5rem);
}

.sidebar .sidebar__list ul li.is-active a img {
  transform: translate(0, -50%);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .sidebar .sidebar__list ul a:hover p {
    transform: translateX(1.5rem);
  }
  .sidebar .sidebar__list ul a:hover img {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

.sidebar .sidebar__list-actions {
  padding: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .sidebar__list-actions .btn {
  background: #EC8E43;
  color: #ffffff;
}

/* ------------------------------------------------------------ *\
	Table Alt
\* ------------------------------------------------------------ */

.table-alt .table__actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  margin-bottom: 1.3rem;
}

.table-alt .table__wrapper {
  border: 0.2rem solid var(--c-gray-225);
}

.table-alt .table__row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.table-alt .table__entry {
  grid-column: span 1;
  border-right: 0.1rem solid var(--c-gray-225);
  border-bottom: 0.1rem solid var(--c-gray-225);
}

.table-alt .table__entry:nth-child(10n) {
  border-right: none;
}

.table-alt .table__row:last-child .table__entry {
  border-bottom: none;
}

.table-alt .table__entry button {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--c-black);
  transition: background 0.4s, color 0.4s;
}

.table-alt .table__entry button.is-active {
  background: var(--c-green);
  color: var(--c-white);
}

.table-alt .table__entry button[style*="rgb(105, 129, 48)"],
.table-alt .table__entry button[style*="rgb(208, 113, 76)"] {
  color: var(--c-white);
}

/* ------------------------------------------------------------ *\
	Table
\* ------------------------------------------------------------ */

.table {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.table .table__head,
.table .table__body-row {
  padding-inline: 1.4rem;
  display: grid;
  align-items: center;
  grid-template-columns: 19.4rem 1fr;
}

.table .table__head {
  background: var(--c-black);
  color: var(--c-white);
  padding-block: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.125;
  border-radius: 1rem;
  flex-shrink: 0;
  margin-bottom: 0.6rem;
}

.table .table__head-entry {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.table .table__head-entry > div:not([class]) button {
  display: flex;
  background: transparent;
  border: 0;
  outline: none;
  transition: opacity 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .table .table__head-entry > div:not([class]) button:hover {
    opacity: 0.7;
  }
}

.table .table__head-entry p {
  margin-bottom: 0;
}

.table .table__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.table .table__body::-webkit-scrollbar {
  width: 1.2rem;
  height: 1.2rem;
}

.table .table__body::-webkit-scrollbar-track {
  background: #fbfbfb;
}

.table .table__body::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 1rem;
}

.table .table__body:not(:last-child) {
  margin-bottom: 4.6rem;
}

.table .table__body-row {
  padding-block: 0.67rem;
  border-bottom: 1px solid var(--c-gray-125);
  position: relative;
  transition: color 0.4s;
}

.table .table__body-row:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border-radius: 1.6rem;
  transition: background 0.4s;
}

.table .table__body-row--highlighted {
  color: var(--c-white);
}

.table .table__body-row--highlighted:after {
  background: var(--c-green-100);
}

.table .table__body-entry {
  position: relative;
  z-index: 1;
}

.table .table__body-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Table Three Cols */

.table--three-cols .table__head,
.table--three-cols .table__body-row {
  grid-template-columns: 24.5rem 1fr 15.4rem;
  padding-right: 4rem;
}

.table--three-cols .table__head {
  padding-bottom: 1.8rem;
  margin-bottom: 0.4rem;
}

.table--three-cols .table__body-entry {
  font-size: 1.6rem;
}

/* Table Alt */
.table--alt {
  font-size: 1.4rem;
}

.table--alt .table__head,
.table--alt .table__body-row {
  grid-template-columns: 25.5rem 26rem 1fr auto auto auto;
  gap: 0 1rem;
  padding-block: 1.95rem;
  padding-inline: 1.4rem 0.9rem;
}

.table--alt .table__body-row {
  padding-block: 0.4rem;
  gap: 0 1rem;
}

.table--alt .table__body-row > :last-child {
  padding-left: 1.6rem;
}

.table--alt .table__head {
  margin-bottom: 1rem;
}

.table--alt .table__head-entry {
  gap: 1.8rem;
}

.table--alt .table__body {
  overflow: visible;
  flex: none;
}

.table--alt .table__body-entry .btn--small {
  margin-left: 0.5rem;
}

.table--alt .table__body-entry:nth-child(4) .btn--small {
  margin-left: 0;
}

/* Table Skills */

.table--skills {
  position: relative;
}

.table--skills:after {
  content: "";
  display: block;
  width: 6rem;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 60%);
  position: absolute;
  top: 0;
  right: 1.2rem;
  z-index: 5;
}

.table--skills .table__head,
.table--skills .table__body-row {
  grid-template-columns: 16.4rem 1fr auto;
}

.table--skills .table__head {
  padding-right: 1.8rem;
  padding-bottom: 1.8rem;
  margin-bottom: 0;
  position: relative;
  z-index: 6;
}

.table--skills .table__body-row {
  padding-block: 2.7rem;
  padding-right: 7.2rem;
  width: fit-content;
  font-size: 1.6rem;
}

/* ------------------------------------------------------------ *\
	Toggle Switch
\* ------------------------------------------------------------ */

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.toggle-switch .toggle__label {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.125;
}

.toggle-switch .toggle__button {
  position: relative;
  display: inline-block;
  width: 4.5rem;
  height: 3rem;
}

.toggle-switch .toggle__button input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 0.3rem solid var(--c-gray-425);
  border-radius: 2rem;
  transition: border-color 0.4s;
}

.toggle-switch .toggle__slider:before {
  content: "";
  position: absolute;
  height: 1.8rem;
  width: 1.8rem;
  left: 0.3rem;
  bottom: 0.3rem;
  background-color: var(--c-gray-425);
  border-radius: 50%;
  transition: background-color 0.4s, transform 0.4s;
}

.toggle-switch .toggle__button input:checked + .toggle__slider {
  border-color: var(--c-black);
}

.toggle-switch .toggle__button input:checked + .toggle__slider:before {
  background-color: var(--c-black);
  transform: translateX(1.5rem);
}

/* ------------------------------------------------------------ *\
	Tooltip
\* ------------------------------------------------------------ */

.tooltip {
  position: relative;
  z-index: 50;
  font-size: 1.4rem;
}

.tooltip .tooltip__icon {
  cursor: pointer;
  transition: opacity 0.4s;
}

.tooltip:hover .tooltip__icon {
  opacity: 0.7;
}

.tooltip .tooltip__wrapper {
  position: absolute;
  top: 100%;
  left: -2.6rem;
  padding-top: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.tooltip:hover .tooltip__wrapper {
  opacity: 1;
  visibility: visible;
}

.tooltip .tooltip__content {
  position: relative;
  background: var(--c-white);
  color: var(--c-black);
  min-width: 24.8rem;
  padding: 1.6rem 1.9rem;
  border: 2px solid var(--c-base);
  border-radius: 1rem;
}

.tooltip .tooltip__content:after, .tooltip .tooltip__content:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 2.5rem;
  width: 0;
  height: 0;
  border-left: 0.9rem solid transparent;
  border-right: 0.9rem solid transparent;
  border-bottom: 1rem solid var(--c-base);
}

.tooltip .tooltip__content:before {
  top: -0.85rem;
  left: 2.7rem;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-bottom: 0.9rem solid var(--c-white);
  z-index: 1;
}

.tooltip .tooltip__content a {
  color: var(--c-base);
  transition: color 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .tooltip .tooltip__content a:hover {
    text-decoration: underline;
    color: var(--c-black);
  }
}

.wrapper {
  position: relative;
  height: 100dvh;
  min-width: 120rem;
  display: flex;
  flex-direction: column;
}

/* ============================================
   LOGIN page color overrides
   Source: cssSaturday.txt (2026-04-26)
   Scoped to .wrapper--white (login / register / forgot password)
   ============================================ */
:root {
  --login-input-border: #dadada;
  --login-link: #52b7ae;
  --login-signin-bg: #52b7ae;
  --login-signin-text: #ffffff;
  --login-signup-border: #ec9b59;
  --login-signup-text: #ec9b59;
}

.wrapper--white .field {
  border-color: var(--login-input-border);
}

.wrapper--white .form .form__link a {
  color: var(--login-link);
}

.wrapper--white .section .section__form .btn {
  background: var(--login-signin-bg);
  color: var(--login-signin-text);
}

.wrapper--white .section .section__form .btn--light {
  background: #ffffff;
  color: var(--login-signup-text);
  border-color: var(--login-signup-border);
}

/* ============================================
   SIDEBAR color overrides
   Source: cssSaturday.txt (2026-04-26)
   ============================================ */
:root {
  --side-section-text: #ffffff;
  --side-item-bg: #d0e3ec;
  --side-item-text: #262626;
  --side-active-bg: #43aea5;
  --side-active-text: #ffffff;
}

.sidebar .sidebar__list-title h3 {
  color: var(--side-section-text);
}

.sidebar .sidebar__list ul a {
  background: var(--side-item-bg);
  color: var(--side-item-text);
}

.sidebar .sidebar__list ul li.is-active a {
  background: var(--side-active-bg);
  color: var(--side-active-text);
}

/* ============================================
   TABLE color overrides
   Source: cssSaturday.txt + user request 2026-04-26 (#858585 head bg)
   ============================================ */
:root {
  --table-head-bg: #858585;
  --table-row-selected-bg: #c4c4c3;
}

.table .table__head {
  background: var(--table-head-bg);
}

.table .table__body-row--highlighted:after {
  background: var(--table-row-selected-bg);
}