@charset "UTF-8";
@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-Regular.ttf") format("truetype"), url("../fonts/WorkSans-Regular.woff") format("woff"), url("../fonts/WorkSans-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-Medium.ttf") format("truetype"), url("../fonts/WorkSans-Medium.woff") format("woff"), url("../fonts/WorkSans-Medium.woff2") format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-SemiBold.ttf") format("truetype"), url("../fonts/WorkSans-SemiBold.woff") format("woff"), url("../fonts/WorkSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
}

@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-Bold.ttf") format("truetype"), url("../fonts/WorkSans-Bold.woff") format("woff"), url("../fonts/WorkSans-Bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-Italic.ttf") format("truetype"), url("../fonts/WorkSans-Italic.woff") format("woff"), url("../fonts/WorkSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-MediumItalic.ttf") format("truetype"), url("../fonts/WorkSans-MediumItalic.woff") format("woff"), url("../fonts/WorkSans-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-SemiBoldItalic.ttf") format("truetype"), url("../fonts/WorkSans-SemiBoldItalic.woff") format("woff"), url("../fonts/WorkSans-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Work Sans';
  src: url("../fonts/WorkSans-BoldItalic.ttf") format("truetype"), url("../fonts/WorkSans-BoldItalic.woff") format("woff"), url("../fonts/WorkSans-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype"), url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype"), url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-Italic.ttf") format("truetype"), url("../fonts/OpenSans-Italic.woff") format("woff"), url("../fonts/OpenSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-SemiBoldItalic.ttf") format("truetype"), url("../fonts/OpenSans-SemiBoldItalic.woff") format("woff"), url("../fonts/OpenSans-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans-BoldItalic.ttf") format("truetype"), url("../fonts/OpenSans-BoldItalic.woff") format("woff"), url("../fonts/OpenSans-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}

.animation--fade-in-vertical-down {
  -webkit-animation: fadeInVerticalDown 0.15s;
          animation: fadeInVerticalDown 0.15s;
  opacity: 1;
}

@-webkit-keyframes fadeInVerticalDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInVerticalDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animation--fade-in-horizontal {
  -webkit-animation: fadeInHorizontal 0.15s;
          animation: fadeInHorizontal 0.15s;
  opacity: 1;
}

@-webkit-keyframes fadeInHorizontal {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInHorizontal {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animation--fade-in-vertical-up {
  -webkit-animation: fadeInVerticalUp 0.15s;
          animation: fadeInVerticalUp 0.15s;
  opacity: 1;
}

@-webkit-keyframes fadeInVerticalUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInVerticalUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  box-sizing: border-box;
  height: 100%;
}

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

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

body {
  background-color: #ffffff;
  height: 100%;
  margin: 0;
  padding: 0;
}

body.path-webform, body.error-page {
  background-color: #f4f4f4;
}

body {
  color: #2c2c2c;
  font-family: "Work Sans", "Arial", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
}

a {
  color: #00959c;
  text-decoration: none;
  transition: all .25s linear;
}

a:hover, a:focus {
  color: #00959c;
}

strong {
  font-weight: 600;
}

small {
  font-size: 80%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-family: "Work Sans", "Arial", sans-serif;
  font-weight: 600;
  margin-bottom: 32px;
  margin-top: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

h1,
.h1 {
  font-size: 2rem;
  line-height: 1.33;
}

@media screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}

h2,
.h2 {
  font-size: 1.625rem;
  line-height: 1.56;
}

@media screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 2.375rem;
  }
}

h3,
.h3 {
  font-size: 1.25rem;
  line-height: 1.36;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  h3,
  .h3 {
    font-size: 1.625rem;
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}

h4,
.h4 {
  font-size: 1.125rem;
  line-height: 1.64;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  h4,
  .h4 {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.375rem;
  }
}

h5,
.h5 {
  font-size: 1.125rem;
  line-height: 1.33;
  margin-bottom: 8px;
}

h6,
.h6 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.43;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  margin-top: 0;
}

p a:not(.button) {
  text-decoration: underline;
}

p + h2,
ul + h2,
ol + h2 {
  margin-top: 32px;
}

p + h3,
ul + h3,
ol + h3 {
  margin-top: 32px;
}

p + h4,
ul + h4,
ol + h4 {
  margin-top: 32px;
}

ul {
  list-style-type: square;
}

ul,
ol {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 16px;
}

ul + p,
ol + p {
  margin-top: 16px;
}

blockquote {
  font-size: 1.25rem;
  background-color: #f4f4f4;
  border-left: 5px solid #007379;
  color: #000000;
  letter-spacing: .25px;
  line-height: 1.5;
  margin: 32px 0;
  padding: 32px 24px;
}

@media screen and (min-width: 768px) {
  blockquote {
    font-size: 1.375rem;
    margin: 48px 0;
    padding: 48px;
  }
}

@media screen and (min-width: 1200px) {
  blockquote {
    font-size: 1.5rem;
  }
}

blockquote p:last-child {
  margin: 0;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1452px;
  padding: 0 16px;
}

@media screen and (min-width: 577px) {
  .container {
    max-width: 1516px;
    padding: 0 48px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 1548px;
    padding: 0 64px;
  }
}

.container--small {
  max-width: 732px;
}

@media screen and (min-width: 577px) {
  .container--small {
    max-width: 796px;
  }
}

@media screen and (min-width: 768px) {
  .container--small {
    max-width: 828px;
  }
}

.container--form {
  max-width: 532px;
}

@media screen and (min-width: 577px) {
  .container--form {
    max-width: 596px;
  }
}

@media screen and (min-width: 768px) {
  .container--form {
    max-width: 628px;
  }
}

.page-error {
  background-color: #fbfbfb;
}

.error-page {
  margin-top: 128px;
}

@media screen and (min-width: 992px) {
  .error-page {
    margin-top: 192px;
  }
}

.error-page__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 15rem;
}

.error-page__title {
  margin-bottom: 16px;
}

.error-page__subtitle {
  color: #2c2c2c;
  font-weight: normal;
  margin-bottom: 24px;
}

.page-footer__item--first {
  background-color: #ffffff;
  padding: 64px 0;
}

.page-footer__item--last {
  background-color: #eeeeee;
  padding: 16px 0;
}

@media screen and (min-width: 992px) {
  .page-footer__item--first .page-footer__container {
    display: flex;
  }
}

.page-footer__top {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
}

@media screen and (min-width: 992px) {
  .page-footer__top {
    align-items: flex-start;
    flex: 0 1 250px;
    margin-bottom: 0;
    padding-right: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .page-footer__top {
    flex: 0 1 350px;
  }
}

@media screen and (min-width: 992px) {
  .page-footer__middle {
    flex-grow: 1;
  }
}

.page-footer__social-media {
  align-items: center;
  display: flex;
  list-style: none;
  margin-top: 32px;
}

.page-footer__social-media li {
  margin-left: 8px;
}

.page-footer__social-media li:first-of-type {
  margin-left: 0;
}

.page-footer__social-media a {
  border-radius: 3px;
  display: block;
  height: 30px;
  width: 30px;
  overflow: hidden;
}

.page-footer__social-media a svg {
  height: 100%;
  width: 100%;
}

.page-header {
  background-color: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  position: relative;
}

.page-header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  padding-top: 16px;
  position: relative;
}

@media screen and (min-width: 992px) {
  .page-header__container {
    padding-bottom: 0;
    padding-top: 8px;
  }
}

.page-top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

@media screen and (max-width: 991px) {
  .page-top-bar {
    display: none;
    visibility: hidden;
  }
}

.page-top-bar__container {
  display: grid;
  grid-column-gap: 16px;
  grid-template-columns: repeat(2, auto);
  padding-bottom: 8px;
  padding-top: 8px;
}

@media screen and (min-width: 1300px) {
  .page-top-bar__container {
    grid-template-columns: 1fr repeat(1, auto) 1fr;
    justify-items: center;
  }
}

.page-top-bar__item--center {
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1300px) {
  .page-top-bar__item--center {
    grid-column-start: 2;
  }
}

.page-top-bar__item--center p {
  font-size: 1rem;
  margin: 0;
}

.page-top-bar__item--right {
  align-items: center;
  display: flex;
  margin-left: auto;
  position: relative;
}

.page-top-bar__item--right .language-switch,
.page-top-bar__item--right .login-link {
  margin-right: 16px;
}

.sticky-footer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sticky-footer > main {
  flex-grow: 1;
}

.branding {
  display: flex;
}

@media screen and (min-width: 992px) {
  .branding {
    padding-bottom: 8px;
  }
}

.logo {
  display: inline-block;
}

.logo svg {
  display: flex;
  height: 100%;
  width: 100%;
}

.logo.logo--header {
  height: 45px;
  max-width: 120px;
  width: 100%;
}

@media screen and (min-width: 577px) {
  .logo.logo--header {
    height: 56px;
    max-width: 150px;
  }
}

@media screen and (min-width: 1200px) {
  .logo.logo--header {
    height: 66px;
    max-width: 175px;
  }
}

.logo.logo--footer {
  max-width: 100px;
  width: 100%;
}

.page-header__cta {
  padding-bottom: 8px;
}

@media screen and (max-width: 992px) {
  .page-header__cta {
    display: none;
    visibility: hidden;
  }
}

.dashboard-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 32px;
}

@media screen and (min-width: 992px) {
  .dashboard-block {
    width: 100%;
  }
}

.dashboard-block h2,
.dashboard-block h3,
.dashboard-block h4 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.dashboard-block > h3 {
  margin-bottom: 8px;
}

.dashboard-block p:last-child {
  margin-bottom: 0;
}

.pelaamattomuuslaskuri__luku + .dashboard-block,
.new-comment-count-block + .dashboard-block {
  border-top: 1px solid #f4f4f4;
}

@media screen and (min-width: 1350px) {
  .pelaamattomuuslaskuri__luku + .dashboard-block,
  .new-comment-count-block + .dashboard-block {
    border-left: 1px solid #f4f4f4;
    border-top: 0;
  }
}

.footer-information {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

@media screen and (min-width: 992px) {
  .footer-information {
    align-items: baseline;
  }
}

.footer-information .button {
  font-size: 1rem;
  color: #000000;
  font-weight: normal;
  margin-top: 8px;
}

.footer-information .button:not(:first-of-type) {
  margin-top: 32px;
}

.footer-information .button .button__icon svg {
  fill: #00b6be;
}

@media screen and (max-width: 991px) {
  .footer-information__text {
    text-align: center;
  }
}

.new-comment-count-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 32px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .new-comment-count-block {
    flex: 1 0 50%;
  }
}

@media screen and (min-width: 1350px) {
  .new-comment-count-block {
    flex: 1 0 25%;
  }
}

.new-comment-count-block > h3 {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  font-weight: normal;
  margin-bottom: 8px;
}

.new-comment-count-block > h3 span {
  font-size: 2rem;
  font-weight: bold;
  word-break: break-all;
}

.new-comment-count-block > a {
  font-size: 1rem;
  display: inline-block;
}

.pelaamattomuuslaskuri__luku + .new-comment-count-block {
  border-top: 1px solid #f4f4f4;
}

@media screen and (min-width: 768px) {
  .pelaamattomuuslaskuri__luku + .new-comment-count-block {
    border-left: 1px solid #f4f4f4;
    border-top: 0;
  }
}

.newsletter-block {
  border-top: 1px solid #d9d9d9;
  margin-top: 32px;
  padding-top: 32px;
}

.newsletter-block > h3 {
  font-size: 1.625rem;
  margin-bottom: 32px;
}

.omapeluuri__lifted-title + .pelaamattomuuslaskuri {
  margin-bottom: 48px;
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .pelaamattomuuslaskuri__content {
    border-radius: 3px;
    box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  }
}

@media screen and (min-width: 1380px) {
  .pelaamattomuuslaskuri__content {
    display: flex;
  }
}

.pelaamattomuuslaskuri__luku > h3 {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  font-weight: normal;
  margin-bottom: 8px;
}

.pelaamattomuuslaskuri__luku > h3 span {
  font-size: 2rem;
  font-weight: bold;
  word-break: break-all;
}

.pelaamattomuuslaskuri__luku > a {
  font-size: 1rem;
  display: inline-block;
}

.pelaamattomuuslaskuri .pelaamattomuuslaskuri__luku {
  align-items: center;
  border-bottom: 1px solid #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 16px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .pelaamattomuuslaskuri .pelaamattomuuslaskuri__luku {
    padding: 32px;
  }
}

@media screen and (min-width: 1380px) {
  .pelaamattomuuslaskuri .pelaamattomuuslaskuri__luku {
    border-bottom: 0;
    border-right: 1px solid #f4f4f4;
    flex: 1 0 225px;
  }
}

.omapeluuri__dashboard .pelaamattomuuslaskuri__luku {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 32px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .omapeluuri__dashboard .pelaamattomuuslaskuri__luku {
    flex: 1 0 50%;
  }
}

@media screen and (min-width: 1350px) {
  .omapeluuri__dashboard .pelaamattomuuslaskuri__luku {
    flex: 1 0 25%;
  }
}

.omapeluuri__dashboard .pelaamattomuuslaskuri__luku > h3 span {
  font-size: 1.625rem;
}

.pelaamattomuuslaskuri__form {
  padding-top: 16px;
}

@media screen and (min-width: 768px) {
  .pelaamattomuuslaskuri__form {
    padding: 32px;
  }
}

@media screen and (min-width: 1380px) {
  .pelaamattomuuslaskuri__form {
    flex-grow: 1;
  }
}

.pelaamattomuuslaskuri__description {
  font-size: 1.125rem;
  font-weight: normal;
  margin-bottom: 32px;
}

.pelaamattomuuslaskuri-form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .pelaamattomuuslaskuri-form {
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 1380px) {
  .pelaamattomuuslaskuri-form {
    flex-wrap: nowrap;
  }
}

.pelaamattomuuslaskuri-form .form-item {
  margin-bottom: 16px;
}

@media screen and (min-width: 1380px) {
  .pelaamattomuuslaskuri-form .form-item {
    margin-bottom: 0;
    margin-right: 16px;
  }
}

.pelaamattomuuslaskuri-form .form-item label {
  font-size: 0.875rem;
  font-weight: bold;
}

.pelaamattomuuslaskuri-form input[type=date] {
  width: 100%;
}

@media screen and (min-width: 1380px) {
  .pelaamattomuuslaskuri-form input[type=date] {
    max-width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .pelaamattomuuslaskuri-form .button {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .pelaamattomuuslaskuri-form .button {
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1380px) {
  .pelaamattomuuslaskuri-form .button {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .pelaamattomuuslaskuri-form .button:last-of-type {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .pelaamattomuuslaskuri-form .button:last-of-type {
    margin-left: 16px;
  }
}

.pelaamattomuuslaskuri__title {
  margin-bottom: 16px;
}

:root {
  /*
   * Color Palette.
   */
  --color-absolutezero: #003cc5;
  --color-white: #fff;
  --color-text: #222330;
  --color-text-light: var(--color-grayblue);
  --color-whitesmoke: #f3f4f9;
  --color-whitesmoke-light: #fafbfd;
  --color-whitesmoke-o-40: rgba(243, 244, 249, 0.4);
  /* Secondary. */
  --color-lightgray: #d4d4d8;
  --color-lightgray-o-80: rgba(212, 212, 218, 0.8);
  --color-grayblue: #8e929c;
  --color-oldsilver: #82828c;
  --color-davysgrey: #545560;
  --color-maximumred: #d72222;
  --color-sunglow: #ffd23f;
  --color-sunglow-shaded: #977405;
  --color-lightninggreen: #26a769;
  --color-focus: var(--color-lightninggreen);
  /* Variations. */
  --color-lightgray-hover: #c2c3ca;
  /* 5% darker than base. */
  --color-lightgray-active: #adaeb3;
  /* 10% darker than base. */
  --color-absolutezero-hover: #0036b1;
  /* 10% darker than base. */
  --color-absolutezero-active: #00339a;
  /* 20% darker than base. */
  --color-maximumred-hover: #c11f1f;
  /* 5% darker than base. */
  --color-maximumred-active: #ab1b1b;
  /* 10% darker than base. */
  --color-bgblue-hover: #f0f5fd;
  /* 5% darker than base. */
  --color-bgblue-active: #e6ecf8;
  /* 10% darker than base. */
  --color-bgred-hover: #fdf5f5;
  /* 5% darker than base. */
  --color-bgred-active: #fceded;
  /* 10% darker than base. */
  /*
   * Base.
   */
  --color-fg: var(--color-text);
  --color-bg: var(--color-white);
  --color-link: var(--color-absolutezero);
  --color-link-hover: var(--color-absolutezero-hover);
  --color-link-active: var(--color-absolutezero-active);
  --color-divider: rgba(142, 146, 156, 0.5);
  /*
   * Typography.
   */
  --font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --line-height: 1.5;
  --line-height-heading: 1.3;
  --font-size-base: 1rem;
  /* 1rem = 16px if font root is 100% ands browser defaults are used. */
  --font-size-h1: 2.027rem;
  /* ~32px */
  --font-size-h2: 1.802rem;
  /* ~29px */
  --font-size-h3: 1.602rem;
  /* ~26px */
  --font-size-h4: 1.424rem;
  /* ~23px */
  --font-size-h5: 1.266rem;
  /* ~20px */
  --font-size-h6: 1.125rem;
  /* 18px */
  --font-size-s: 0.889rem;
  /* ~14px */
  --font-size-xs: 0.79rem;
  /* ~13px */
  --font-size-xxs: 0.702rem;
  /* ~11px */
  --font-size-label: var(--font-size-s);
  --font-size-description: var(--font-size-xs);
  /**
   * Spaces.
   */
  --space-xl: 3rem;
  /* 3 * 16px = 48px */
  --space-l: 1.5rem;
  /* 1.5 * 16px = 24px */
  --space-m: 1rem;
  /* 1 * 16px = 16px */
  --space-s: 0.75rem;
  /* 0.75 * 16px = 12px */
  --space-xs: 0.5rem;
  /* 0.5 * 16px = 8px */
  /*
   * Common.
   */
  --speed-transition: 0.2s;
  --transition: all var(--speed-transition) ease-out;
  --base-border-radius: 2px;
  --focus-border-size: 3px;
  --focus-border-offset-size: 2px;
  --outline-size: 2px;
  --focus-outline: var(--outline-size) dotted transparent;
  --focus-box-shadow: 0 0 0 var(--focus-border-offset-size) var(--color-white), 0 0 0 calc(var(--focus-border-size) + var(--focus-border-offset-size)) var(--color-focus);
  /*
   * Inputs.
   */
  --input-fg-color: var(--color-fg);
  --input-bg-color: var(--color-bg);
  --input-fg-color--description: var(--color-davysgrey);
  --input-fg-color--placeholder: var(--color-grayblue);
  --input-border-color: var(--color-grayblue);
  --input--hover-border-color: var(--color-text);
  --input--focus-border-color: var(--color-absolutezero);
  --input--focus-shadow-color: rgba(0, 74, 220, 0.3);
  /* Absolute zero with opacity. */
  --input--error-color: var(--color-maximumred);
  --input--error-border-color: var(--color-maximumred);
  --input--disabled-color: rgba(84, 85, 96, 0.6);
  /* Davy's grey with 0.6 opacity. */
  --input--disabled-fg-color: var(--color-oldsilver);
  --input--disabled-bg-color: #f2f2f3;
  /* Light gray with 0.3 opacity on white bg. */
  --input--disabled-border-color: #bababf;
  /* Old silver with 0.5 opacity on white bg. */
  --input--disabled-border-opacity: 0.5;
  --input-border-radius-size: 0.125rem;
  /* (1/8)em ~ 2px */
  --input-border-size: 1px;
  /* (1/16)em ~ 1px */
  --input--error-border-size: 2px;
  --input-padding-vertical: calc(var(--space-s) - var(--input-border-size));
  --input-padding-horizontal: calc(var(--space-m) - var(--input-border-size));
  --input-font-size: var(--font-size-base);
  --input-line-height: var(--space-l);
  --input--extrasmall-padding-vertical: calc(0.15rem - var(--input-border-size));
  --input--extrasmall-padding-horizontal: calc(var(--space-xs) - var(--input-border-size));
  --input--extrasmall-font-size: var(--font-size-s);
  --input--extrasmall-line-height: calc(var(--space-m) + 0.2rem);
  /* Font size is too big to use 1rem for extrasmall line-height */
  --input--required-mark-size: 0.4375rem;
  /* 7px inside the form element label. */
  --input--label-spacing: 1.6875rem;
  /* 8px with the checkbox width of 19px */
  /*
   * Details.
   */
  --details-bg-color: rgba(243, 244, 249, 0.4);
  --details-border-color: rgba(216, 217, 224, 0.8);
  --details-summary-shadow-color: var(--color-focus);
  --details-summary-focus-border-size: var(--focus-border-size);
  --details-desktop-wrapper-padding-start: calc(var(--space-m) + var(--space-s) + var(--space-xs));
  --details-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --details-border-size: 1px;
  --details-border-size-radius: 2px;
  --details-accordion-border-size-radius: var(--base-border-radius);
  --details-spread-box-shadow-radius: 2px;
  --details-bg-color-transition-duration: 0.12s;
  --details-box-shadow-transition-duration: 0.2s;
  --details-transform-transition-duration: 0.12s;
  /**
   * Buttons.
   */
  --button--focus-border-color: #5a8bed;
  --button-border-radius-size: var(--base-border-radius);
  --button-fg-color: var(--color-text);
  --button-bg-color: var(--color-lightgray);
  --button--hover-bg-color: var(--color-lightgray-hover);
  --button--active-bg-color: var(--color-lightgray-active);
  --button--disabled-bg-color: #ebebed;
  --button--disabled-fg-color: var(--color-grayblue);
  --button-fg-color--primary: var(--color-white);
  --button-bg-color--primary: var(--color-absolutezero);
  --button--hover-bg-color--primary: var(--color-absolutezero-hover);
  --button--active-bg-color--primary: var(--color-absolutezero-active);
  --button--focus-bg-color--primary: var(--button-bg-color--primary);
  --button--disabled-bg-color--primary: var(--color-lightgray);
  --button--disabled-fg-color--primary: var(--color-oldsilver);
  --button-fg-color--danger: var(--color-white);
  --button-bg-color--danger: var(--color-maximumred);
  --button--hover-bg-color--danger: var(--color-maximumred-hover);
  --button--active-bg-color--danger: var(--color-maximumred-active);
  /**
   * jQuery.UI dropdown.
   */
  --jui-dropdown-fg-color: var(--color-davysgrey);
  --jui-dropdown-bg-color: var(--color-white);
  --jui-dropdown--active-fg-color: var(--color-white);
  --jui-dropdown--active-bg-color: var(--color-absolutezero);
  --jui-dropdown-border-color: rgba(216, 217, 224, 0.8);
  /* Light gray with 0.8 opacity. */
  --jui-dropdown-shadow-color: rgba(34, 35, 48, 0.1);
  /* Text color with 0.1 opacity. */
  /**
   * Progress bar.
   */
  --progress-bar-border-size: 1px;
  --progress-bar-small-size: calc(var(--space-xs) - (2 * var(--progress-bar-border-size)));
  --progress-bar-small-size-radius: var(--space-xs);
  --progress-bar-spacing-size: var(--space-xs);
  --progress-bar-transition: width 0.5s ease-out;
  --progress-bar-label-color: var(--color-text);
  --progress-bar-description-color: var(--color-davysgrey);
  --progress-bar-description-font-size: var(--font-size-xs);
  --progress-track-border-color: var(--color-grayblue);
  --progress-track-bg-color: var(--color-lightgray);
  /**
   * Tabledrag icon size.
   */
  --tabledrag-handle-icon-size: calc(17rem / 16);
  /* 17px */
  /**
   * Ajax progress.
   */
  --ajax-progress-margin-horizontal: var(--space-s);
  /**
   * Breadcrumb.
   */
  --breadcrumb-height: 1.25rem;
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/2815083
 * @preserve
 */
:root {
  /*
   * Color Palette.
   */
  /* Secondary. */
  /* Variations. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /* 10% darker than base. */
  /* 20% darker than base. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /*
   * Base.
   */
  /*
   * Typography.
   */
  /* 1rem = 16px if font root is 100% ands browser defaults are used. */
  /* ~32px */
  /* ~29px */
  /* ~26px */
  /* ~23px */
  /* ~20px */
  /* 18px */
  /* ~14px */
  /* ~13px */
  /* ~11px */
  /**
   * Spaces.
   */
  /* 3 * 16px = 48px */
  /* 1.5 * 16px = 24px */
  /* 1 * 16px = 16px */
  /* 0.75 * 16px = 12px */
  /* 0.5 * 16px = 8px */
  /*
   * Common.
   */
  /*
   * Inputs.
   */
  /* Absolute zero with opacity. */
  /* Davy's grey with 0.6 opacity. */
  /* Light gray with 0.3 opacity on white bg. */
  /* Old silver with 0.5 opacity on white bg. */
  /* (1/8)em ~ 2px */
  /* (1/16)em ~ 1px */
  /* Font size is too big to use 1rem for extrasmall line-height */
  /* 7px inside the form element label. */
  /* 8px with the checkbox width of 19px */
  /*
   * Details.
   */
  /**
   * Buttons.
   */
  /**
   * jQuery.UI dropdown.
   */
  /* Light gray with 0.8 opacity. */
  /* Text color with 0.1 opacity. */
  /**
   * Progress bar.
   */
  /**
   * Tabledrag icon size.
   */
  /* 17px */
  /**
   * Ajax progress.
   */
  /**
   * Breadcrumb.
   */
}

/**
 * @file media-library.pcss.css

 * Styling for Media Library.
 */
.media-library-wrapper {
  display: flex;
  margin: -1em;
}

/**
 * @todo Reuse or build on vertical tabs styling for the media library menu.
 *   https://www.drupal.org/project/drupal/issues/3023767
 */
.media-library-menu {
  display: block;
  width: 600px;
  max-width: 20%;
  margin: 0;
  /* LTR */
  padding: 0;
  border-bottom: 1px solid #ccc;
  background-color: #e6e5e1;
  line-height: 1;
}

[dir="rtl"] .media-library-menu {
  margin: 0;
}

/**
 * @todo Use a class instead of the li element.
 *   https://www.drupal.org/project/drupal/issues/3029227
 */
.media-library-menu li {
  display: block;
  padding: 0;
  list-style: none;
}

.media-library-menu li a {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 15px;
  text-decoration: none;
  border-bottom: 1px solid #b3b2ad;
  background-color: #f2f2f0;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
}

.media-library-menu li a:active,
.media-library-menu li a:hover,
.media-library-menu li a:focus {
  background: #fcfcfa;
  text-shadow: none;
}

.media-library-menu li a:focus,
.media-library-menu li a:active {
  outline: none;
}

.media-library-menu li a.active {
  z-index: 1;
  margin-right: -1px;
  /* LTR */
  color: #000;
  border-right: 1px solid #fcfcfa;
  /* LTR */
  border-bottom: 1px solid #b3b2ad;
  background-color: #fff;
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .media-library-menu li a.active {
  margin-right: 0;
  margin-left: -1px;
  border-right: 0;
  border-left: 1px solid #fcfcfa;
}

.media-library-content {
  width: 100%;
  padding: 1em;
  border-left: 1px solid #b3b2ad;
  /* LTR */
  outline: none;
}

[dir="rtl"] .media-library-content {
  border-right: 1px solid #b3b2ad;
  border-left: 0;
}

/* Generic media add form styles. */
.media-library-add-form--without-input .form-item {
  margin: 0 0 1em;
}

/**
 * Remove outline from added media list.
 *
 * The added media list receives focus after adding new media, but since it is
 * not an interactive element, it does not need an outline.
 */
.media-library-add-form__added-media {
  margin: 0;
  padding: 0;
  outline: none;
}

.media-library-add-form__input-wrapper {
  padding: 16px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  background: #fcfcfa;
}

/* Style the media add upload form. */
.media-library-add-form--upload.media-library-add-form--without-input .form-item-upload {
  margin-bottom: 0;
}

.media-library-add-form .file-upload-help {
  margin: 8px 0 0;
}

/* Style the media add oEmbed form. */
.media-library-add-form--oembed .media-library-add-form__input-wrapper {
  display: flex;
}

@media screen and (max-width: 37.5em) {
  .media-library-add-form--oembed .media-library-add-form__input-wrapper {
    display: block;
  }
}

.media-library-add-form--oembed.media-library-add-form--without-input .form-item-url {
  margin-bottom: 0;
}

.media-library-add-form-oembed-url {
  width: 100%;
}

/**
 * @todo Remove .button when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-add-form-oembed-submit {
  align-self: center;
}

/* Media add form selection styles. */
.media-library-add-form__selected-media {
  margin-top: 1em;
}

/* Change to padding to account for the negative margin for flex grid. */
.media-library-add-form__selected-media .details-wrapper {
  padding: 0 10px 1em 10px;
}

.media-library-add-form__selected-media .media-library-item .field--name-thumbnail img {
  height: 100px;
}

/* Generic media library view styles. */
.media-library-select-all {
  flex-basis: 100%;
  width: 100%;
  margin: 10px 8px;
}

.media-library-select-all input {
  margin-right: 10px;
}

[dir="rtl"] .media-library-select-all input {
  margin-left: 10px;
}

.media-library-views-form,
.media-library-selection,
.media-library-add-form__selected-media .details-wrapper,
.media-library-views-form__bulk_form,
.media-library-view .form--inline {
  display: flex;
  flex-wrap: wrap;
}

.media-library-views-form > .form-actions {
  flex-basis: 100%;
}

.media-library-views-form__header {
  flex-basis: 100%;
}

.media-library-views-form__header .form-item {
  margin-right: 8px;
  /* @TODO RTL? */
}

.media-library-views-form__rows {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 0 -8px;
}

/**
 * Override the table display of the visually hidden labels.
 *
 * The width, height and overflow properties in the styles for the
 * .visually-hidden class do not work correctly if the element has a table
 * display.
 */
.media-library-item label {
  display: inline-block;
}

/* Media library widget view styles. */
.media-library-wrapper .media-library-view {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.media-library-wrapper .view-header {
  align-self: flex-end;
  margin: 1em 0;
  text-align: right;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .view-header {
  text-align: left;
}

.media-library-wrapper .media-library-view .view-filters,
.media-library-wrapper .media-library-view .view-content {
  flex: 0 0 100%;
}

.media-library-wrapper .views-display-link {
  margin: 0;
  padding-left: 22px;
  /* LTR */
  color: #333;
  font-size: 15px;
  line-height: 16px;
}

[dir="rtl"] .media-library-wrapper .views-display-link {
  padding-right: 22px;
  padding-left: 0;
}

.media-library-wrapper .views-display-link.is-active {
  font-weight: bold;
}

.media-library-wrapper .views-display-link-widget {
  margin-right: 15px;
  background: url(../images/grid.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget {
  background-position: right 0;
}

.media-library-wrapper .views-display-link-widget_table {
  background: url(/core/misc/333333/table.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget_table {
  background-position: right 0;
}

/**
 * Style the media library grid items.
 */
.media-library-item {
  position: relative;
}

/**
* The media library item container receives screen reader focus when items are
* removed. Since it is not an interactive element, it does not need an
* outline.
*/
.media-library-item--grid {
  justify-content: center;
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
  vertical-align: top;
  outline: none;
  background: #fff;
}

.media-library-item--grid:before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  pointer-events: none;
  border: 1px solid #dbdbdb;
}

/* Media library widget weight field styles. */
.media-library-item--grid .form-item {
  margin: 0.75em;
}

/* The selected items in the add form should be shown a bit smaller. */
.media-library-add-form__selected-media .media-library-item--small {
  width: 33.3%;
}

.media-library-widget-modal .ui-dialog-buttonpane {
  display: flex;
  align-items: center;
}

.media-library-widget-modal .ui-dialog-buttonpane .form-actions {
  flex: 1;
}

/**
 * By default, the dialog is too narrow to be usable.
 * @see Drupal.ckeditor.openDialog()
 */
.ui-dialog--narrow.media-library-widget-modal {
  max-width: 75%;
}

@media screen and (min-width: 45em) {
  .media-library-item--grid {
    width: 33.3%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 50%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 25%;
  }
}

@media screen and (min-width: 60em) {
  .media-library-item--grid {
    width: 25%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 33.3%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

@media screen and (min-width: 77em) {
  .media-library-item--grid {
    width: 16.6%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 25%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

.media-library-item--grid .field--name-thumbnail {
  overflow: hidden;
  text-align: center;
  background-color: #ebebeb;
}

.media-library-item--grid .field--name-thumbnail img {
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.media-library-item--grid.is-hover:before,
.media-library-item--grid.checked:before,
.media-library-item--grid.is-focus:before {
  top: 5px;
  left: 5px;
  border-width: 3px;
  border-color: #40b6ff;
  border-radius: 3px;
}

.media-library-item--grid.checked:before {
  border-color: #0076c0;
}

.media-library-item__click-to-select-checkbox {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  /* LTR */
  display: block;
}

[dir="rtl"] .media-library-item__click-to-select-checkbox {
  right: 16px;
  left: auto;
}

.media-library-item__click-to-select-checkbox input {
  width: 20px;
  height: 20px;
}

.media-library-item__click-to-select-checkbox .form-item {
  margin: 0;
}

.media-library-item__click-to-select-trigger {
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

/* Media library item table styles. */
.media-library-item--table img {
  max-width: 100px;
  height: auto;
}

/* Media library entity view display styles. */
.media-library-item__preview {
  padding-bottom: 34px;
  cursor: move;
}

.media-library-item__status {
  position: absolute;
  top: 40px;
  left: 5px;
  /* LTR */
  padding: 5px 10px;
  pointer-events: none;
  color: #e4e4e4;
  background: #666;
  font-size: 12px;
  font-style: italic;
}

[dir="rtl"] .media-library-item__status {
  right: 5px;
  left: auto;
}

.media-library-item__attributes {
  position: absolute;
  bottom: 0;
  display: block;
  overflow: hidden;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 50px);
  padding: 5px;
  background: white;
}

.media-library-item__name {
  font-size: 14px;
}

.media-library-item__name {
  display: block;
  overflow: hidden;
  margin: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.media-library-item__attributes:hover .media-library-item__name,
.media-library-item--grid.is-focus .media-library-item__name,
.media-library-item--grid.checked .media-library-item__name {
  white-space: normal;
}

.media-library-item__type {
  color: #696969;
  font-size: 12px;
}

.media-library-item--disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Media library widget styles. */
.media-library-widget {
  position: relative;
}

/**
 * @todo Change to .media-library-open-button when styles are moved to the
 *   seven theme in https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-open-button {
  margin-bottom: 1em;
  margin-left: 0;
  /* LTR */
}

[dir="rtl"] .button.media-library-open-button {
  margin-right: 0;
  margin-left: 1em;
}

.media-library-widget__toggle-weight {
  position: absolute;
  top: 5px;
  right: 5px;
  /* LTR */
}

[dir="rtl"] .media-library-widget__toggle-weight {
  right: auto;
  left: 5px;
}

/* Add negative margin for flex grid. */
.media-library-selection {
  margin: 1em -8px;
}

/**
 * Media library widget edit and delete button styles.
 *
 * We have to override the .button styles since buttons make heavy use of
 * background and border property changes.
 */
.media-library-item__edit,
.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  position: absolute;
  z-index: 1;
  top: 10px;
  overflow: hidden;
  width: 21px;
  height: 21px;
  margin: 5px;
  padding: 0;
  transition: 0.2s border-color;
  color: transparent;
  border: 2px solid #ccc;
  border-radius: 20px;
  background-size: 13px;
  text-shadow: none;
  font-size: 0;
}

.media-library-item__edit {
  right: 40px;
  /* LTR */
}

[dir="rtl"] .media-library-item__edit {
  right: auto;
  left: 40px;
}

.media-library-item__remove {
  right: 10px;
  /* LTR */
}

[dir="rtl"] .media-library-item__remove {
  right: auto;
  left: 10px;
}

.media-library-item__edit {
  background: url("../images/pencil.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__remove,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  background: url("../images/787878/ex.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus,
.media-library-item__remove.button:disabled:active {
  border-color: #40b6ff;
}

/**
 * Style the added media item container.
 *
 * The added media container receives screen reader focus since it is has the
 * role 'listitem'. Since it is not an interactive element, it does not need
 * an outline.
 */
.media-library-add-form__media {
  position: relative;
  display: flex;
  padding: 1em 0;
  border-bottom: 1px solid #c0c0c0;
  outline: none;
}

/* Do not show the top padding for the first item. */
.media-library-add-form__media:first-child {
  padding-top: 0;
}

/**
 * Change the position of the remove button for the first item.
 *
 * The first item doesn't have a top padding, change the location of the remove
 * button as well.
 */
.media-library-add-form__media:first-child .media-library-add-form__remove-button[type="submit"] {
  top: 5px;
}

/* Do not show the bottom border and padding for the last item. */
.media-library-add-form__media:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.media-library-add-form__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  margin-right: 20px;
  /* LTR */
  background: #ebebeb;
}

[dir="rtl"] .media-library-add-form__preview {
  margin-right: 0;
  margin-left: 20px;
}

.media-library-add-form__fields {
  flex-grow: 1;
}

/**
 * @todo Remove [type="submit"] when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.media-library-add-form__remove-button[type="submit"] {
  position: absolute;
  top: 25px;
  right: 6px;
  margin-right: 0;
}

[dir="rtl"] .media-library-add-form__remove-button[type="submit"] {
  right: auto;
  left: 13px;
  margin-left: 0;
}

/* @todo Remove in https://www.drupal.org/project/drupal/issues/3064914 */
.views-live-preview .media-library-view div.views-row + div.views-row {
  margin-top: 0;
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/2815083
 * @preserve
 */
/**
 * @file media-library.pcss.css

 * Styling for Media Library.
 */
.media-library-wrapper {
  display: flex;
  margin: -1em;
}

/**
 * @todo Reuse or build on vertical tabs styling for the media library menu.
 *   https://www.drupal.org/project/drupal/issues/3023767
 */
.media-library-menu {
  display: block;
  width: 600px;
  max-width: 20%;
  margin: 0;
  /* LTR */
  padding: 0;
  border-bottom: 1px solid #ccc;
  background-color: #e6e5e1;
  line-height: 1;
}

[dir="rtl"] .media-library-menu {
  margin: 0;
}

/**
 * @todo Use a class instead of the li element.
 *   https://www.drupal.org/project/drupal/issues/3029227
 */
.media-library-menu li {
  display: block;
  padding: 0;
  list-style: none;
}

.media-library-menu__link {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 15px;
  text-decoration: none;
  border-bottom: 1px solid #b3b2ad;
  background-color: #f2f2f0;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
}

.media-library-menu__link:active,
.media-library-menu__link:hover,
.media-library-menu__link:focus {
  background: #fcfcfa;
  text-shadow: none;
}

.media-library-menu__link:focus,
.media-library-menu__link:active {
  outline: none;
}

.media-library-menu__link.active {
  z-index: 1;
  margin-right: -1px;
  /* LTR */
  color: #000;
  border-right: 1px solid #fcfcfa;
  /* LTR */
  border-bottom: 1px solid #b3b2ad;
  background-color: #fff;
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .media-library-menu__link.active {
  margin-right: 0;
  margin-left: -1px;
  border-right: 0;
  border-left: 1px solid #fcfcfa;
}

.media-library-content {
  width: 100%;
  padding: 1em;
  border-left: 1px solid #b3b2ad;
  /* LTR */
  outline: none;
}

[dir="rtl"] .media-library-content {
  border-right: 1px solid #b3b2ad;
  border-left: 0;
}

/* Generic media add form styles. */
.media-library-add-form--without-input .form-item {
  margin: 0 0 1em;
}

/**
 * Remove outline from added media list.
 *
 * The added media list receives focus after adding new media, but since it is
 * not an interactive element, it does not need an outline.
 */
.media-library-add-form__added-media {
  margin: 0;
  padding: 0;
  outline: none;
}

.media-library-add-form__input-wrapper {
  padding: 16px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  background: #fcfcfa;
}

/* Style the media add upload form. */
.media-library-add-form--upload.media-library-add-form--without-input .form-item-upload {
  margin-bottom: 0;
}

.media-library-add-form .file-upload-help {
  margin: 8px 0 0;
}

/* Style the media add oEmbed form. */
.media-library-add-form--oembed .media-library-add-form__input-wrapper {
  display: flex;
}

@media screen and (max-width: 37.5em) {
  .media-library-add-form--oembed .media-library-add-form__input-wrapper {
    display: block;
  }
}

.media-library-add-form--oembed.media-library-add-form--without-input .form-item-url {
  margin-bottom: 0;
}

.media-library-add-form-oembed-url {
  width: 100%;
}

/**
 * @todo Remove .button when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-add-form-oembed-submit {
  align-self: center;
}

/* Media add form selection styles. */
.media-library-add-form__selected-media {
  margin-top: 1em;
}

/* Change to padding to account for the negative margin for flex grid. */
.media-library-add-form__selected-media .details-wrapper {
  padding: 0 10px 1em 10px;
}

.media-library-add-form__selected-media .media-library-item .field--name-thumbnail img {
  height: 100px;
}

/* Generic media library view styles. */
.media-library-select-all {
  flex-basis: 100%;
  width: 100%;
  margin: 10px 8px;
}

.media-library-select-all input {
  margin-right: 10px;
}

[dir="rtl"] .media-library-select-all input {
  margin-left: 10px;
}

.media-library-views-form,
.media-library-selection,
.media-library-add-form__selected-media .details-wrapper,
.media-library-views-form__bulk_form,
.media-library-view .form--inline {
  display: flex;
  flex-wrap: wrap;
}

.media-library-views-form > .form-actions {
  flex-basis: 100%;
}

.media-library-views-form__header {
  flex-basis: 100%;
}

.media-library-views-form__header .form-item {
  margin-right: 8px;
  /* @TODO RTL? */
}

.media-library-views-form__rows {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 0 -8px;
}

/**
 * Override the table display of the visually hidden labels.
 *
 * The width, height and overflow properties in the styles for the
 * .visually-hidden class do not work correctly if the element has a table
 * display.
 */
.media-library-item label {
  display: inline-block;
}

/* Media library widget view styles. */
.media-library-wrapper .media-library-view {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.media-library-wrapper .view-header {
  align-self: flex-end;
  margin: 1em 0;
  text-align: right;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .view-header {
  text-align: left;
}

.media-library-wrapper .media-library-view .view-filters,
.media-library-wrapper .media-library-view .view-content {
  flex: 0 0 100%;
}

.media-library-wrapper .views-display-link {
  margin: 0;
  padding-left: 22px;
  /* LTR */
  color: #333;
  font-size: 15px;
  line-height: 16px;
}

[dir="rtl"] .media-library-wrapper .views-display-link {
  padding-right: 22px;
  padding-left: 0;
}

.media-library-wrapper .views-display-link.is-active {
  font-weight: bold;
}

.media-library-wrapper .views-display-link-widget {
  margin-right: 15px;
  background: url(../images/grid.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget {
  background-position: right 0;
}

.media-library-wrapper .views-display-link-widget_table {
  background: url(/core/misc/icons/333333/table.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget_table {
  background-position: right 0;
}

/**
 * Style the media library grid items.
 */
.media-library-item {
  position: relative;
}

/**
* The media library item container receives screen reader focus when items are
* removed. Since it is not an interactive element, it does not need an
* outline.
*/
.media-library-item--grid {
  justify-content: center;
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
  vertical-align: top;
  outline: none;
  background: #fff;
}

.media-library-item--grid:before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  pointer-events: none;
  border: 1px solid #dbdbdb;
}

/* Media library widget weight field styles. */
.media-library-item--grid .form-item {
  margin: 0.75em;
}

/* The selected items in the add form should be shown a bit smaller. */
.media-library-add-form__selected-media .media-library-item--small {
  width: 33.3%;
}

.media-library-widget-modal .ui-dialog-buttonpane {
  display: flex;
  align-items: center;
}

.media-library-widget-modal .ui-dialog-buttonpane .form-actions {
  flex: 1;
}

/**
 * By default, the dialog is too narrow to be usable.
 * @see Drupal.ckeditor.openDialog()
 */
.ui-dialog--narrow.media-library-widget-modal {
  max-width: 75%;
}

@media screen and (min-width: 45em) {
  .media-library-item--grid {
    width: 33.3%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 50%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 25%;
  }
}

@media screen and (min-width: 60em) {
  .media-library-item--grid {
    width: 25%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 33.3%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

@media screen and (min-width: 77em) {
  .media-library-item--grid {
    width: 16.6%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 25%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

.media-library-item--grid .field--name-thumbnail {
  overflow: hidden;
  text-align: center;
  background-color: #ebebeb;
}

.media-library-item--grid .field--name-thumbnail img {
  height: 180px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.media-library-item--grid.is-hover:before,
.media-library-item--grid.checked:before,
.media-library-item--grid.is-focus:before {
  top: 5px;
  left: 5px;
  border-width: 3px;
  border-color: #40b6ff;
  border-radius: 3px;
}

.media-library-item--grid.checked:before {
  border-color: #0076c0;
}

.media-library-item__click-to-select-checkbox {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  /* LTR */
  display: block;
}

[dir="rtl"] .media-library-item__click-to-select-checkbox {
  right: 16px;
  left: auto;
}

.media-library-item__click-to-select-checkbox input {
  width: 20px;
  height: 20px;
}

.media-library-item__click-to-select-checkbox .form-item {
  margin: 0;
}

.media-library-item__click-to-select-trigger {
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

/* Media library item table styles. */
.media-library-item--table img {
  max-width: 100px;
  height: auto;
}

/* Media library entity view display styles. */
.media-library-item__preview {
  padding-bottom: 34px;
  cursor: move;
}

.media-library-item__status {
  position: absolute;
  top: 40px;
  left: 5px;
  /* LTR */
  padding: 5px 10px;
  pointer-events: none;
  color: #e4e4e4;
  background: #666;
  font-size: 12px;
  font-style: italic;
}

[dir="rtl"] .media-library-item__status {
  right: 5px;
  left: auto;
}

.media-library-item__attributes {
  position: absolute;
  bottom: 0;
  display: block;
  overflow: hidden;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 50px);
  padding: 5px;
  background: white;
}

.media-library-item__name {
  font-size: 14px;
}

.media-library-item__name {
  display: block;
  overflow: hidden;
  margin: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.media-library-item__attributes:hover .media-library-item__name,
.media-library-item--grid.is-focus .media-library-item__name,
.media-library-item--grid.checked .media-library-item__name {
  white-space: normal;
}

.media-library-item__type {
  color: #696969;
  font-size: 12px;
}

.media-library-item--disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Media library widget styles. */
.media-library-widget {
  position: relative;
}

/**
 * @todo Change to .media-library-open-button when styles are moved to the
 *   seven theme in https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-open-button {
  margin-bottom: 1em;
  margin-left: 0;
  /* LTR */
}

[dir="rtl"] .button.media-library-open-button {
  margin-right: 0;
  margin-left: 1em;
}

.media-library-widget__toggle-weight {
  position: absolute;
  top: 5px;
  right: 5px;
  /* LTR */
}

[dir="rtl"] .media-library-widget__toggle-weight {
  right: auto;
  left: 5px;
}

/* Add negative margin for flex grid. */
.media-library-selection {
  margin: 1em -8px;
}

/**
 * Media library widget edit and delete button styles.
 *
 * We have to override the .button styles since buttons make heavy use of
 * background and border property changes.
 */
.media-library-item__edit,
.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  position: absolute;
  z-index: 1;
  top: 10px;
  overflow: hidden;
  width: 21px;
  height: 21px;
  margin: 5px;
  padding: 0;
  transition: 0.2s border-color;
  color: transparent;
  border: 2px solid #ccc;
  border-radius: 20px;
  background-size: 13px;
  text-shadow: none;
  font-size: 0;
}

.media-library-item__edit {
  right: 40px;
  /* LTR */
}

[dir="rtl"] .media-library-item__edit {
  right: auto;
  left: 40px;
}

.media-library-item__remove {
  right: 10px;
  /* LTR */
}

[dir="rtl"] .media-library-item__remove {
  right: auto;
  left: 10px;
}

.media-library-item__edit {
  background: url("../images/pencil.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__remove,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  background: url("../images/ex.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus,
.media-library-item__remove.button:disabled:active {
  border-color: #40b6ff;
}

/**
 * Style the added media item container.
 *
 * The added media container receives screen reader focus since it is has the
 * role 'listitem'. Since it is not an interactive element, it does not need
 * an outline.
 */
.media-library-add-form__media {
  position: relative;
  display: flex;
  padding: 1em 0;
  border-bottom: 1px solid #c0c0c0;
  outline: none;
}

/* Do not show the top padding for the first item. */
.media-library-add-form__media:first-child {
  padding-top: 0;
}

/**
 * Change the position of the remove button for the first item.
 *
 * The first item doesn't have a top padding, change the location of the remove
 * button as well.
 */
.media-library-add-form__media:first-child .media-library-add-form__remove-button[type="submit"] {
  top: 5px;
}

/* Do not show the bottom border and padding for the last item. */
.media-library-add-form__media:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.media-library-add-form__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  margin-right: 20px;
  /* LTR */
  background: #ebebeb;
}

[dir="rtl"] .media-library-add-form__preview {
  margin-right: 0;
  margin-left: 20px;
}

.media-library-add-form__fields {
  flex-grow: 1;
}

/**
 * @todo Remove [type="submit"] when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.media-library-add-form__remove-button[type="submit"] {
  position: absolute;
  top: 25px;
  right: 6px;
  margin-right: 0;
}

[dir="rtl"] .media-library-add-form__remove-button[type="submit"] {
  right: auto;
  left: 13px;
  margin-left: 0;
}

/* @todo Remove in https://www.drupal.org/project/drupal/issues/3064914 */
.views-live-preview .media-library-view div.views-row + div.views-row {
  margin-top: 0;
}

.media-library-widget-modal .js-media-library-add-form > div.message {
  padding: unset;
  margin: 15px auto;
}

.media-library-widget-modal .media-library-add-form--oembed .media-library-add-form__input-wrapper .form-item-url {
  margin-bottom: unset;
}

.media-library-widget-modal .media-library-add-form--oembed .media-library-add-form__input-wrapper .form-item-url input[data-drupal-selector="edit-url"] {
  padding: 11px;
}

.media-library-widget-modal .media-library-add-form--oembed .media-library-add-form__input-wrapper .form-item-url .description {
  padding-left: unset;
}

.media-library-widget-modal .media-library-add-form--oembed .media-library-add-form__input-wrapper input[type="submit"] {
  padding: 10px;
  margin: 7px 0 0 10px;
}

@media screen and (max-width: 600px) {
  .media-library-widget-modal .media-library-add-form--oembed .media-library-add-form__input-wrapper input[type="submit"] {
    margin-left: unset;
  }
}

.media-library-widget-modal .media-library-add-form__added-media li {
  display: flex;
  align-items: center;
}

.media-library-widget-modal .media-library-add-form__added-media li > div:first-of-type {
  margin-right: 10px;
  min-width: 125px;
}

@media screen and (max-width: 600px) {
  .media-library-widget-modal .media-library-add-form__added-media li > div:first-of-type {
    margin-bottom: 10px;
  }
}

.media-library-widget-modal .media-library-add-form__added-media li > div:nth-of-type(2) {
  margin-right: 10px;
}

.media-library-widget-modal .media-library-add-form__added-media li > div:nth-of-type(2) label {
  margin-bottom: unset;
}

.media-library-widget-modal .media-library-add-form__added-media li > div:nth-of-type(2) input[type="text"] {
  width: 100%;
  padding: 11px;
}

.media-library-widget-modal .media-library-add-form__added-media li input[data-drupal-selector="edit-remove-button"] {
  padding: 10px;
  background-color: #007379;
  border: 2px solid #007379;
  color: #ffffff;
  border-radius: 5px;
  margin-top: 12px;
}

@media screen and (max-width: 600px) {
  .media-library-widget-modal .media-library-add-form__added-media li input[data-drupal-selector="edit-remove-button"] {
    margin-top: unset;
  }
}

@media screen and (max-width: 600px) {
  .media-library-widget-modal .media-library-add-form__added-media li {
    display: block;
  }
}

.media-library-widget-modal #media-library-view {
  margin-top: 10px;
}

.media-library-widget-modal #media-library-view .views-exposed-form input[data-drupal-selector="edit-name"] {
  padding: 11px;
}

.media-library-widget-modal #media-library-view .views-exposed-form select[data-drupal-selector="edit-sort-by"] {
  padding-top: 11px;
  padding-bottom: 11px;
}

.media-library-widget-modal .ui-dialog-buttonpane .form-actions button {
  font-weight: 600;
  padding: 10px;
  border-width: 1px;
}

.media-library-widget-modal .ui-dialog-buttonpane .form-actions button:hover {
  font-weight: 600;
  padding: 10px;
}

@media screen and (max-width: 600px) {
  .media-library-widget-modal #drupal-modal.ui-widget-content {
    min-height: 250px !important;
  }
}

/**
 * @file media-library.pcss.css

 * Styling for Media Library.
 */
.media-library-wrapper {
  display: flex;
  margin: -1em;
}

/**
 * @todo Reuse or build on vertical tabs styling for the media library menu.
 *   https://www.drupal.org/project/drupal/issues/3023767
 */
.media-library-menu {
  display: block;
  width: 600px;
  max-width: 20%;
  margin: 0;
  /* LTR */
  padding: 0;
  border-bottom: 1px solid #ccc;
  background-color: #e6e5e1;
  line-height: 1;
}

[dir="rtl"] .media-library-menu {
  margin: 0;
}

/**
 * @todo Use a class instead of the li element.
 *   https://www.drupal.org/project/drupal/issues/3029227
 */
.media-library-menu li {
  display: block;
  padding: 0;
  list-style: none;
}

.media-library-menu__link {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 15px;
  text-decoration: none;
  border-bottom: 1px solid #b3b2ad;
  background-color: #f2f2f0;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
}

.media-library-menu__link:active,
.media-library-menu__link:hover,
.media-library-menu__link:focus {
  background: #fcfcfa;
  text-shadow: none;
}

.media-library-menu__link:focus,
.media-library-menu__link:active {
  outline: none;
}

.media-library-menu__link.active {
  z-index: 1;
  margin-right: -1px;
  /* LTR */
  color: #000;
  border-right: 1px solid #fcfcfa;
  /* LTR */
  border-bottom: 1px solid #b3b2ad;
  background-color: #fff;
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .media-library-menu__link.active {
  margin-right: 0;
  margin-left: -1px;
  border-right: 0;
  border-left: 1px solid #fcfcfa;
}

.media-library-content {
  width: 100%;
  padding: 1em;
  border-left: 1px solid #b3b2ad;
  /* LTR */
  outline: none;
}

[dir="rtl"] .media-library-content {
  border-right: 1px solid #b3b2ad;
  border-left: 0;
}

/* Generic media add form styles. */
.media-library-add-form--without-input .form-item {
  margin: 0 0 1em;
}

/**
 * Remove outline from added media list.
 *
 * The added media list receives focus after adding new media, but since it is
 * not an interactive element, it does not need an outline.
 */
.media-library-add-form__added-media {
  margin: 0;
  padding: 0;
  outline: none;
}

.media-library-add-form__input-wrapper {
  padding: 16px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  background: #fcfcfa;
}

/* Style the media add upload form. */
.media-library-add-form--upload.media-library-add-form--without-input .form-item-upload {
  margin-bottom: 0;
}

.media-library-add-form .file-upload-help {
  margin: 8px 0 0;
}

/* Style the media add oEmbed form. */
.media-library-add-form--oembed .media-library-add-form__input-wrapper {
  display: flex;
}

@media screen and (max-width: 37.5em) {
  .media-library-add-form--oembed .media-library-add-form__input-wrapper {
    display: block;
  }
}

.media-library-add-form--oembed.media-library-add-form--without-input .form-item-url {
  margin-bottom: 0;
}

.media-library-add-form-oembed-url {
  width: 100%;
}

/**
 * @todo Remove .button when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-add-form-oembed-submit {
  align-self: center;
}

/* Media add form selection styles. */
.media-library-add-form__selected-media {
  margin-top: 1em;
}

/* Change to padding to account for the negative margin for flex grid. */
.media-library-add-form__selected-media .details-wrapper {
  padding: 0 10px 1em 10px;
}

.media-library-add-form__selected-media .media-library-item .field--name-thumbnail img {
  height: 100px;
}

/* Generic media library view styles. */
.media-library-select-all {
  flex-basis: 100%;
  width: 100%;
  margin: 10px 8px;
}

.media-library-select-all input {
  margin-right: 10px;
}

[dir="rtl"] .media-library-select-all input {
  margin-left: 10px;
}

.media-library-views-form,
.media-library-selection,
.media-library-add-form__selected-media .details-wrapper,
.media-library-views-form__bulk_form,
.media-library-view .form--inline {
  display: flex;
  flex-wrap: wrap;
}

.media-library-views-form > .form-actions {
  flex-basis: 100%;
}

.media-library-views-form__header {
  flex-basis: 100%;
}

.media-library-views-form__header .form-item {
  margin-right: 8px;
  /* @TODO RTL? */
}

.media-library-views-form__rows {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 0 -8px;
}

/**
 * Override the table display of the visually hidden labels.
 *
 * The width, height and overflow properties in the styles for the
 * .visually-hidden class do not work correctly if the element has a table
 * display.
 */
.media-library-item label {
  display: inline-block;
}

/* Media library widget view styles. */
.media-library-wrapper .media-library-view {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.media-library-wrapper .view-header {
  align-self: flex-end;
  margin: 1em 0;
  text-align: right;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .view-header {
  text-align: left;
}

.media-library-wrapper .media-library-view .view-filters,
.media-library-wrapper .media-library-view .view-content {
  flex: 0 0 100%;
}

.media-library-wrapper .views-display-link {
  margin: 0;
  padding-left: 22px;
  /* LTR */
  color: #333;
  font-size: 15px;
  line-height: 16px;
}

[dir="rtl"] .media-library-wrapper .views-display-link {
  padding-right: 22px;
  padding-left: 0;
}

.media-library-wrapper .views-display-link.is-active {
  font-weight: bold;
}

.media-library-wrapper .views-display-link-widget {
  margin-right: 15px;
  background: url(../images/grid.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget {
  background-position: right 0;
}

.media-library-wrapper .views-display-link-widget_table {
  background: url(/core/misc/icons/333333/table.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget_table {
  background-position: right 0;
}

/**
 * Style the media library grid items.
 */
.media-library-item {
  position: relative;
}

/**
* The media library item container receives screen reader focus when items are
* removed. Since it is not an interactive element, it does not need an
* outline.
*/
.media-library-item--grid {
  justify-content: center;
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
  vertical-align: top;
  outline: none;
  background: #fff;
}

.media-library-item--grid:before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  pointer-events: none;
  border: 1px solid #dbdbdb;
}

/* Media library widget weight field styles. */
.media-library-item--grid .form-item {
  margin: 0.75em;
}

/* The selected items in the add form should be shown a bit smaller. */
.media-library-add-form__selected-media .media-library-item--small {
  width: 33.3%;
}

.media-library-widget-modal .ui-dialog-buttonpane {
  display: flex;
  align-items: center;
}

.media-library-widget-modal .ui-dialog-buttonpane .form-actions {
  flex: 1;
}

/**
 * By default, the dialog is too narrow to be usable.
 * @see Drupal.ckeditor.openDialog()
 */
.ui-dialog--narrow.media-library-widget-modal {
  max-width: 75%;
}

@media screen and (min-width: 45em) {
  .media-library-item--grid {
    width: 33.3%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 50%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 25%;
  }
}

@media screen and (min-width: 60em) {
  .media-library-item--grid {
    width: 25%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 33.3%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

@media screen and (min-width: 77em) {
  .media-library-item--grid {
    width: 16.6%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 25%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

.media-library-item--grid .field--name-thumbnail {
  overflow: hidden;
  text-align: center;
  background-color: #ebebeb;
}

.media-library-item--grid .field--name-thumbnail img {
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.media-library-item--grid.is-hover:before,
.media-library-item--grid.checked:before,
.media-library-item--grid.is-focus:before {
  top: 5px;
  left: 5px;
  border-width: 3px;
  border-color: #40b6ff;
  border-radius: 3px;
}

.media-library-item--grid.checked:before {
  border-color: #0076c0;
}

.media-library-item__click-to-select-checkbox {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  /* LTR */
  display: block;
}

[dir="rtl"] .media-library-item__click-to-select-checkbox {
  right: 16px;
  left: auto;
}

.media-library-item__click-to-select-checkbox input {
  width: 20px;
  height: 20px;
}

.media-library-item__click-to-select-checkbox .form-item {
  margin: 0;
}

.media-library-item__click-to-select-trigger {
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

/* Media library item table styles. */
.media-library-item--table img {
  max-width: 100px;
  height: auto;
}

/* Media library entity view display styles. */
.media-library-item__preview {
  padding-bottom: 34px;
  cursor: move;
}

.media-library-item__status {
  position: absolute;
  top: 40px;
  left: 5px;
  /* LTR */
  padding: 5px 10px;
  pointer-events: none;
  color: #e4e4e4;
  background: #666;
  font-size: 12px;
  font-style: italic;
}

[dir="rtl"] .media-library-item__status {
  right: 5px;
  left: auto;
}

.media-library-item__attributes {
  position: absolute;
  bottom: 0;
  display: block;
  overflow: hidden;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 50px);
  padding: 5px;
  background: white;
}

.media-library-item__name {
  font-size: 14px;
}

.media-library-item__name {
  display: block;
  overflow: hidden;
  margin: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.media-library-item__attributes:hover .media-library-item__name,
.media-library-item--grid.is-focus .media-library-item__name,
.media-library-item--grid.checked .media-library-item__name {
  white-space: normal;
}

.media-library-item__type {
  color: #696969;
  font-size: 12px;
}

.media-library-item--disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Media library widget styles. */
.media-library-widget {
  position: relative;
}

/**
 * @todo Change to .media-library-open-button when styles are moved to the
 *   seven theme in https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-open-button {
  margin-bottom: 1em;
  margin-left: 0;
  /* LTR */
}

[dir="rtl"] .button.media-library-open-button {
  margin-right: 0;
  margin-left: 1em;
}

.media-library-widget__toggle-weight {
  position: absolute;
  top: 5px;
  right: 5px;
  /* LTR */
}

[dir="rtl"] .media-library-widget__toggle-weight {
  right: auto;
  left: 5px;
}

/* Add negative margin for flex grid. */
.media-library-selection {
  margin: 1em -8px;
}

/**
 * Media library widget edit and delete button styles.
 *
 * We have to override the .button styles since buttons make heavy use of
 * background and border property changes.
 */
.media-library-item__edit,
.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  position: absolute;
  z-index: 1;
  top: 10px;
  overflow: hidden;
  width: 21px;
  height: 21px;
  margin: 5px;
  padding: 0;
  transition: 0.2s border-color;
  color: transparent;
  border: 2px solid #ccc;
  border-radius: 20px;
  background-size: 13px;
  text-shadow: none;
  font-size: 0;
}

.media-library-item__edit {
  right: 40px;
  /* LTR */
}

[dir="rtl"] .media-library-item__edit {
  right: auto;
  left: 40px;
}

.media-library-item__remove {
  right: 10px;
  /* LTR */
}

[dir="rtl"] .media-library-item__remove {
  right: auto;
  left: 10px;
}

.media-library-item__edit {
  background: url("../images/pencil.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__remove,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  background: url("../images/ex.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus,
.media-library-item__remove.button:disabled:active {
  border-color: #40b6ff;
}

/**
 * Style the added media item container.
 *
 * The added media container receives screen reader focus since it is has the
 * role 'listitem'. Since it is not an interactive element, it does not need
 * an outline.
 */
.media-library-add-form__media {
  position: relative;
  display: flex;
  padding: 1em 0;
  border-bottom: 1px solid #c0c0c0;
  outline: none;
}

/* Do not show the top padding for the first item. */
.media-library-add-form__media:first-child {
  padding-top: 0;
}

/**
 * Change the position of the remove button for the first item.
 *
 * The first item doesn't have a top padding, change the location of the remove
 * button as well.
 */
.media-library-add-form__media:first-child .media-library-add-form__remove-button[type="submit"] {
  top: 5px;
}

/* Do not show the bottom border and padding for the last item. */
.media-library-add-form__media:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.media-library-add-form__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  margin-right: 20px;
  /* LTR */
  background: #ebebeb;
}

[dir="rtl"] .media-library-add-form__preview {
  margin-right: 0;
  margin-left: 20px;
}

.media-library-add-form__fields {
  flex-grow: 1;
}

/**
 * @todo Remove [type="submit"] when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.media-library-add-form__remove-button[type="submit"] {
  position: absolute;
  top: 25px;
  right: 6px;
  margin-right: 0;
}

[dir="rtl"] .media-library-add-form__remove-button[type="submit"] {
  right: auto;
  left: 13px;
  margin-left: 0;
}

/* @todo Remove in https://www.drupal.org/project/drupal/issues/3064914 */
.views-live-preview .media-library-view div.views-row + div.views-row {
  margin-top: 0;
}

/**
 * @file
 * Styles for Classy's modal windows.
 */
.ui-dialog--narrow {
  max-width: 500px;
}

@media screen and (max-width: 600px) {
  .ui-dialog--narrow {
    min-width: 95%;
    max-width: 95%;
  }
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/2815083
 * @preserve
 */
/**
 * @file media-library.pcss.css

 * Styling for Media Library.
 */
.media-library-wrapper {
  display: flex;
  margin: -1em;
}

/**
 * @todo Reuse or build on vertical tabs styling for the media library menu.
 *   https://www.drupal.org/project/drupal/issues/3023767
 */
.media-library-menu {
  display: block;
  width: 600px;
  max-width: 20%;
  margin: 0;
  /* LTR */
  padding: 0;
  border-bottom: 1px solid #ccc;
  background-color: #e6e5e1;
  line-height: 1;
}

[dir="rtl"] .media-library-menu {
  margin: 0;
}

/**
 * @todo Use a class instead of the li element.
 *   https://www.drupal.org/project/drupal/issues/3029227
 */
.media-library-menu li {
  display: block;
  padding: 0;
  list-style: none;
}

.media-library-menu__link {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 15px;
  text-decoration: none;
  border-bottom: 1px solid #b3b2ad;
  background-color: #f2f2f0;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
}

.media-library-menu__link:active,
.media-library-menu__link:hover,
.media-library-menu__link:focus {
  background: #fcfcfa;
  text-shadow: none;
}

.media-library-menu__link:focus,
.media-library-menu__link:active {
  outline: none;
}

.media-library-menu__link.active {
  z-index: 1;
  margin-right: -1px;
  /* LTR */
  color: #000;
  border-right: 1px solid #fcfcfa;
  /* LTR */
  border-bottom: 1px solid #b3b2ad;
  background-color: #fff;
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .media-library-menu__link.active {
  margin-right: 0;
  margin-left: -1px;
  border-right: 0;
  border-left: 1px solid #fcfcfa;
}

.media-library-content {
  width: 100%;
  padding: 1em;
  border-left: 1px solid #b3b2ad;
  /* LTR */
  outline: none;
}

[dir="rtl"] .media-library-content {
  border-right: 1px solid #b3b2ad;
  border-left: 0;
}

/* Generic media add form styles. */
.media-library-add-form--without-input .form-item {
  margin: 0 0 1em;
}

/**
 * Remove outline from added media list.
 *
 * The added media list receives focus after adding new media, but since it is
 * not an interactive element, it does not need an outline.
 */
.media-library-add-form__added-media {
  margin: 0;
  padding: 0;
  outline: none;
}

.media-library-add-form__input-wrapper {
  padding: 16px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  background: #fcfcfa;
}

/* Style the media add upload form. */
.media-library-add-form--upload.media-library-add-form--without-input .form-item-upload {
  margin-bottom: 0;
}

.media-library-add-form .file-upload-help {
  margin: 8px 0 0;
}

/* Style the media add oEmbed form. */
.media-library-add-form--oembed .media-library-add-form__input-wrapper {
  display: flex;
}

@media screen and (max-width: 37.5em) {
  .media-library-add-form--oembed .media-library-add-form__input-wrapper {
    display: block;
  }
}

.media-library-add-form--oembed.media-library-add-form--without-input .form-item-url {
  margin-bottom: 0;
}

.media-library-add-form-oembed-url {
  width: 100%;
}

/**
 * @todo Remove .button when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-add-form-oembed-submit {
  align-self: center;
}

/* Media add form selection styles. */
.media-library-add-form__selected-media {
  margin-top: 1em;
}

/* Change to padding to account for the negative margin for flex grid. */
.media-library-add-form__selected-media .details-wrapper {
  padding: 0 10px 1em 10px;
}

.media-library-add-form__selected-media .media-library-item .field--name-thumbnail img {
  height: 100px;
}

/* Generic media library view styles. */
.media-library-select-all {
  flex-basis: 100%;
  width: 100%;
  margin: 10px 8px;
}

.media-library-select-all input {
  margin-right: 10px;
}

[dir="rtl"] .media-library-select-all input {
  margin-left: 10px;
}

.media-library-views-form,
.media-library-selection,
.media-library-add-form__selected-media .details-wrapper,
.media-library-views-form__bulk_form,
.media-library-view .form--inline {
  display: flex;
  flex-wrap: wrap;
}

.media-library-views-form > .form-actions {
  flex-basis: 100%;
}

.media-library-views-form__header {
  flex-basis: 100%;
}

.media-library-views-form__header .form-item {
  margin-right: 8px;
  /* @TODO RTL? */
}

.media-library-views-form__rows {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  margin: 0 -8px;
}

/**
 * Override the table display of the visually hidden labels.
 *
 * The width, height and overflow properties in the styles for the
 * .visually-hidden class do not work correctly if the element has a table
 * display.
 */
.media-library-item label {
  display: inline-block;
}

/* Media library widget view styles. */
.media-library-wrapper .media-library-view {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.media-library-wrapper .view-header {
  align-self: flex-end;
  margin: 1em 0;
  text-align: right;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .view-header {
  text-align: left;
}

.media-library-wrapper .media-library-view .view-filters,
.media-library-wrapper .media-library-view .view-content {
  flex: 0 0 100%;
}

.media-library-wrapper .views-display-link {
  margin: 0;
  padding-left: 22px;
  /* LTR */
  color: #333;
  font-size: 15px;
  line-height: 16px;
}

[dir="rtl"] .media-library-wrapper .views-display-link {
  padding-right: 22px;
  padding-left: 0;
}

.media-library-wrapper .views-display-link.is-active {
  font-weight: bold;
}

.media-library-wrapper .views-display-link-widget {
  margin-right: 15px;
  background: url(../images/grid.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget {
  background-position: right 0;
}

.media-library-wrapper .views-display-link-widget_table {
  background: url(/core/misc/icons/333333/table.svg) left 0 no-repeat;
  /* LTR */
}

[dir="rtl"] .media-library-wrapper .views-display-link-widget_table {
  background-position: right 0;
}

/**
 * Style the media library grid items.
 */
.media-library-item {
  position: relative;
}

/**
* The media library item container receives screen reader focus when items are
* removed. Since it is not an interactive element, it does not need an
* outline.
*/
.media-library-item--grid {
  justify-content: center;
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
  vertical-align: top;
  outline: none;
  background: #fff;
}

.media-library-item--grid:before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  pointer-events: none;
  border: 1px solid #dbdbdb;
}

/* Media library widget weight field styles. */
.media-library-item--grid .form-item {
  margin: 0.75em;
}

/* The selected items in the add form should be shown a bit smaller. */
.media-library-add-form__selected-media .media-library-item--small {
  width: 33.3%;
}

.media-library-widget-modal .ui-dialog-buttonpane {
  display: flex;
  align-items: center;
}

.media-library-widget-modal .ui-dialog-buttonpane .form-actions {
  flex: 1;
}

/**
 * By default, the dialog is too narrow to be usable.
 * @see Drupal.ckeditor.openDialog()
 */
.ui-dialog--narrow.media-library-widget-modal {
  max-width: 75%;
}

@media screen and (min-width: 45em) {
  .media-library-item--grid {
    width: 33.3%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 50%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 25%;
  }
}

@media screen and (min-width: 60em) {
  .media-library-item--grid {
    width: 25%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 33.3%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

@media screen and (min-width: 77em) {
  .media-library-item--grid {
    width: 16.6%;
  }
  /* Change the width for the modal and widget since there is less space. */
  .media-library-widget-modal .media-library-item--grid,
  .media-library-selection .media-library-item--grid {
    width: 25%;
  }
  /* The selected items in the add form should be shown a bit smaller. */
  .media-library-add-form__selected-media .media-library-item--small {
    width: 16.6%;
  }
}

.media-library-item--grid .field--name-thumbnail {
  overflow: hidden;
  text-align: center;
  background-color: #ebebeb;
}

.media-library-item--grid .field--name-thumbnail img {
  height: 180px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.media-library-item--grid.is-hover:before,
.media-library-item--grid.checked:before,
.media-library-item--grid.is-focus:before {
  top: 5px;
  left: 5px;
  border-width: 3px;
  border-color: #40b6ff;
  border-radius: 3px;
}

.media-library-item--grid.checked:before {
  border-color: #0076c0;
}

.media-library-item__click-to-select-checkbox {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  /* LTR */
  display: block;
}

[dir="rtl"] .media-library-item__click-to-select-checkbox {
  right: 16px;
  left: auto;
}

.media-library-item__click-to-select-checkbox input {
  width: 20px;
  height: 20px;
}

.media-library-item__click-to-select-checkbox .form-item {
  margin: 0;
}

.media-library-item__click-to-select-trigger {
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

/* Media library item table styles. */
.media-library-item--table img {
  max-width: 100px;
  height: auto;
}

/* Media library entity view display styles. */
.media-library-item__preview {
  padding-bottom: 34px;
  cursor: move;
}

.media-library-item__status {
  position: absolute;
  top: 40px;
  left: 5px;
  /* LTR */
  padding: 5px 10px;
  pointer-events: none;
  color: #e4e4e4;
  background: #666;
  font-size: 12px;
  font-style: italic;
}

[dir="rtl"] .media-library-item__status {
  right: 5px;
  left: auto;
}

.media-library-item__attributes {
  position: absolute;
  bottom: 0;
  display: block;
  overflow: hidden;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 50px);
  padding: 5px;
  background: white;
}

.media-library-item__name {
  font-size: 14px;
}

.media-library-item__name {
  display: block;
  overflow: hidden;
  margin: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.media-library-item__attributes:hover .media-library-item__name,
.media-library-item--grid.is-focus .media-library-item__name,
.media-library-item--grid.checked .media-library-item__name {
  white-space: normal;
}

.media-library-item__type {
  color: #696969;
  font-size: 12px;
}

.media-library-item--disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Media library widget styles. */
.media-library-widget {
  position: relative;
}

/**
 * @todo Change to .media-library-open-button when styles are moved to the
 *   seven theme in https://www.drupal.org/project/drupal/issues/2980769
 */
.button.media-library-open-button {
  margin-bottom: 1em;
  margin-left: 0;
  /* LTR */
}

[dir="rtl"] .button.media-library-open-button {
  margin-right: 0;
  margin-left: 1em;
}

.media-library-widget__toggle-weight {
  position: absolute;
  top: 5px;
  right: 5px;
  /* LTR */
}

[dir="rtl"] .media-library-widget__toggle-weight {
  right: auto;
  left: 5px;
}

/* Add negative margin for flex grid. */
.media-library-selection {
  margin: 1em -8px;
}

/**
 * Media library widget edit and delete button styles.
 *
 * We have to override the .button styles since buttons make heavy use of
 * background and border property changes.
 */
.media-library-item__edit,
.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  position: absolute;
  z-index: 1;
  top: 10px;
  overflow: hidden;
  width: 21px;
  height: 21px;
  margin: 5px;
  padding: 0;
  transition: 0.2s border-color;
  color: transparent;
  border: 2px solid #ccc;
  border-radius: 20px;
  background-size: 13px;
  text-shadow: none;
  font-size: 0;
}

.media-library-item__edit {
  right: 40px;
  /* LTR */
}

[dir="rtl"] .media-library-item__edit {
  right: auto;
  left: 40px;
}

.media-library-item__remove {
  right: 10px;
  /* LTR */
}

[dir="rtl"] .media-library-item__remove {
  right: auto;
  left: 10px;
}

.media-library-item__edit {
  background: url("../images/pencil.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__remove,
.media-library-item__remove.button,
.media-library-item__remove.button:first-child,
.media-library-item__remove.button:disabled,
.media-library-item__remove.button:disabled:active,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus {
  background: url("../images/ex.svg") #fff center no-repeat;
  background-size: 13px;
}

.media-library-item__edit:hover,
.media-library-item__edit:focus,
.media-library-item__remove:hover,
.media-library-item__remove:focus,
.media-library-item__remove.button:hover,
.media-library-item__remove.button:focus,
.media-library-item__remove.button:disabled:active {
  border-color: #40b6ff;
}

/**
 * Style the added media item container.
 *
 * The added media container receives screen reader focus since it is has the
 * role 'listitem'. Since it is not an interactive element, it does not need
 * an outline.
 */
.media-library-add-form__media {
  position: relative;
  display: flex;
  padding: 1em 0;
  border-bottom: 1px solid #c0c0c0;
  outline: none;
}

/* Do not show the top padding for the first item. */
.media-library-add-form__media:first-child {
  padding-top: 0;
}

/**
 * Change the position of the remove button for the first item.
 *
 * The first item doesn't have a top padding, change the location of the remove
 * button as well.
 */
.media-library-add-form__media:first-child .media-library-add-form__remove-button[type="submit"] {
  top: 5px;
}

/* Do not show the bottom border and padding for the last item. */
.media-library-add-form__media:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.media-library-add-form__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  margin-right: 20px;
  /* LTR */
  background: #ebebeb;
}

[dir="rtl"] .media-library-add-form__preview {
  margin-right: 0;
  margin-left: 20px;
}

.media-library-add-form__fields {
  flex-grow: 1;
}

/**
 * @todo Remove [type="submit"] when styles are moved to the seven theme in
 *   https://www.drupal.org/project/drupal/issues/2980769
 */
.media-library-add-form__remove-button[type="submit"] {
  position: absolute;
  top: 25px;
  right: 6px;
  margin-right: 0;
}

[dir="rtl"] .media-library-add-form__remove-button[type="submit"] {
  right: auto;
  left: 13px;
  margin-left: 0;
}

/* @todo Remove in https://www.drupal.org/project/drupal/issues/3064914 */
.views-live-preview .media-library-view div.views-row + div.views-row {
  margin-top: 0;
}

/**
 * @file
 * Styles for Claro's Pagination.
 */
:root {
  /**
  * Pager.
  */
  --pager-size: 2rem;
  /* --space-m Ã— 2 */
  --pager-border-width: 0.125rem;
  /* 2px */
  --pager-fg-color: var(--color-davysgrey);
  --pager-bg-color: var(--color-white);
  --pager--hover-bg-color: var(--color-bgblue-active);
  --pager--focus-bg-color: var(--color-focus);
  --pager--active-fg-color: var(--color-white);
  --pager--active-bg-color: var(--color-absolutezero);
  --pager-border-radius--action: var(--pager-border-width);
}

.pager {
  margin-top: var(--space-m);
  margin-bottom: var(--space-m);
}

.pager__items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin: var(--space-m) 0;
  /* LTR */
  list-style: none;
  text-align: center;
  font-weight: bold;
}

[dir="rtl"] .pager__items {
  margin: var(--space-m) 0;
}

.pager__item {
  display: inline-block;
  margin-right: calc(var(--space-xs) / 2);
  margin-left: calc(var(--space-xs) / 2);
  vertical-align: top;
}

.pager__link,
.pager__item--current {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: var(--pager-size);
  height: var(--pager-size);
  padding-right: var(--space-xs);
  padding-left: var(--space-xs);
  text-decoration: none;
  color: var(--pager-fg-color);
  border-radius: var(--space-m);
  /* Pager size ÷ 2 */
  background: var(--pager-bg-color);
  /* Make sure that the text is visible on dark background. */
  line-height: 1;
}

.pager__link:hover,
.pager__link:focus,
.pager__link:active {
  text-decoration: none;
}

.pager__link:hover,
.pager__link.is-active:hover {
  color: var(--pager-fg-color);
  background: var(--pager--hover-bg-color);
}

.pager__link--action-link {
  border-radius: var(--pager-border-radius--action);
}

/* Active number link. */
.pager__link.is-active,
.pager__item--current {
  color: var(--pager--active-fg-color);
  background: var(--pager--active-bg-color);
}

.pager__item--first .pager__link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2V14' stroke='%23545560' stroke-width='2'/%3E%3Cpath d='M14 2L8 8L14 14' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--previous .pager__link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2L5 8L11 14' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--next .pager__link::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14L11 8L5 2' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--last .pager__link::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L14 2.00001' stroke='%23545560' stroke-width='2'/%3E%3Cpath d='M2 14L8 8.00001L2 2.00001' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--first .pager__link::before,
.pager__item--previous .pager__link::before,
.pager__item--next .pager__link::after,
.pager__item--last .pager__link::after {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}

[dir="rtl"] .pager__item--first .pager__link::before,
[dir="rtl"] .pager__item--previous .pager__link::before,
[dir="rtl"] .pager__item--next .pager__link::after,
[dir="rtl"] .pager__item--last .pager__link::after {
  transform: scaleX(-1);
}

.pager__item--mini {
  margin-right: calc(var(--space-m) / 2);
  margin-left: calc(var(--space-m) / 2);
}

.pager__link--mini {
  border-radius: 50%;
}

/**
 * On the mini pager, remove margins for the previous and next icons.
 * Margins are not needed here as there is no accompanying text.
 */
.pager__link--mini::before {
  margin-right: 0;
  margin-left: 0;
}

.pager__item-title--backwards {
  margin-left: 0.5rem;
  /* LTR */
}

[dir="rtl"] .pager__item-title--backwards {
  margin-right: 0.5rem;
  margin-left: 0;
}

.pager__item-title--forward {
  margin-right: 0.5rem;
  /* LTR */
}

[dir="rtl"] .pager__item-title--forward {
  margin-right: 0;
  margin-left: 0.5rem;
}

@media (-ms-high-contrast: active) {
  .pager__item a:hover {
    text-decoration: underline;
  }
  .pager__link.is-active {
    border: var(--pager-border-width) solid var(--color-white);
  }
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/2815083
 * @preserve
 */
/**
 * @file
 * Styles for Claro's Pagination.
 */
:root {
  /*
   * Color Palette.
   */
  /* Secondary. */
  /* Variations. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /* 10% darker than base. */
  /* 20% darker than base. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /* 5% darker than base. */
  /* 10% darker than base. */
  /*
   * Base.
   */
  /*
   * Typography.
   */
  /* 1rem = 16px if font root is 100% ands browser defaults are used. */
  /* ~32px */
  /* ~29px */
  /* ~26px */
  /* ~23px */
  /* ~20px */
  /* 18px */
  /* ~14px */
  /* ~13px */
  /* ~11px */
  /**
   * Spaces.
   */
  /* 3 * 16px = 48px */
  /* 1.5 * 16px = 24px */
  /* 1 * 16px = 16px */
  /* 0.75 * 16px = 12px */
  /* 0.5 * 16px = 8px */
  /*
   * Common.
   */
  /*
   * Inputs.
   */
  /* Absolute zero with opacity. */
  /* Davy's grey with 0.6 opacity. */
  /* Light gray with 0.3 opacity on white bg. */
  /* Old silver with 0.5 opacity on white bg. */
  /* (1/8)em ~ 2px */
  /* (1/16)em ~ 1px */
  /* Font size is too big to use 1rem for extrasmall line-height */
  /* 7px inside the form element label. */
  /* 8px with the checkbox width of 19px */
  /*
   * Details.
   */
  /**
   * Buttons.
   */
  /**
   * jQuery.UI dropdown.
   */
  /* Light gray with 0.8 opacity. */
  /* Text color with 0.1 opacity. */
  /**
   * Progress bar.
   */
  /**
   * Tabledrag icon size.
   */
  /* 17px */
  /**
   * Ajax progress.
   */
  /**
   * Breadcrumb.
   */
}

:root {
  /**
  * Pager.
  */
  /* --space-m Ã— 2 */
  /* 2px */
}

.pager {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pager__items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin: 1rem 0;
  /* LTR */
  list-style: none;
  text-align: center;
  font-weight: bold;
}

[dir="rtl"] .pager__items {
  margin: 1rem 0;
}

.pager__item {
  display: inline-block;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  vertical-align: top;
}

.pager__link,
.pager__item--current {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 2rem;
  height: 2rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  text-decoration: none;
  color: #545560;
  border-radius: 1rem;
  /* Pager size ÷ 2 */
  background: #fff;
  /* Make sure that the text is visible on dark background. */
  line-height: 1;
}

.pager__link:hover,
.pager__link:focus,
.pager__link:active {
  text-decoration: none;
}

.pager__link:hover,
.pager__link.is-active:hover {
  color: #545560;
  background: #e6ecf8;
}

.pager__link--action-link {
  border-radius: 0.125rem;
}

/* Active number link. */
.pager__link.is-active,
.pager__item--current {
  color: #fff;
  background: #003cc5;
}

.pager__item--first .pager__link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2V14' stroke='%23545560' stroke-width='2'/%3E%3Cpath d='M14 2L8 8L14 14' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--previous .pager__link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2L5 8L11 14' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--next .pager__link::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14L11 8L5 2' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--last .pager__link::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L14 2.00001' stroke='%23545560' stroke-width='2'/%3E%3Cpath d='M2 14L8 8.00001L2 2.00001' stroke='%23545560' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.pager__item--first .pager__link::before,
.pager__item--previous .pager__link::before,
.pager__item--next .pager__link::after,
.pager__item--last .pager__link::after {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}

[dir="rtl"] .pager__item--first .pager__link::before,
[dir="rtl"] .pager__item--previous .pager__link::before,
[dir="rtl"] .pager__item--next .pager__link::after,
[dir="rtl"] .pager__item--last .pager__link::after {
  transform: scaleX(-1);
}

.pager__item--mini {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.pager__link--mini {
  border-radius: 50%;
}

/**
 * On the mini pager, remove margins for the previous and next icons.
 * Margins are not needed here as there is no accompanying text.
 */
.pager__link--mini::before {
  margin-right: 0;
  margin-left: 0;
}

.pager__item-title--backwards {
  margin-left: 0.5rem;
  /* LTR */
}

[dir="rtl"] .pager__item-title--backwards {
  margin-right: 0.5rem;
  margin-left: 0;
}

.pager__item-title--forward {
  margin-right: 0.5rem;
  /* LTR */
}

[dir="rtl"] .pager__item-title--forward {
  margin-right: 0;
  margin-left: 0.5rem;
}

@media (-ms-high-contrast: active) {
  .pager__item a:hover {
    text-decoration: underline;
  }
  .pager__link.is-active {
    border: 0.125rem solid #fff;
  }
}

.article-teaser {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  border-radius: 3px;
  height: 100%;
  width: 100%;
}

.article-teaser__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-teaser__image {
  margin: 0;
}

.article-teaser__image img {
  width: 100%;
}

.article-teaser__content {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  padding: 48px 32px;
}

.article-teaser--liftup .article-teaser__content {
  padding: 32px;
}

.article-teaser__category {
  font-size: 0.875rem;
  background-color: #d1ecef;
  border-radius: 3px;
  color: #2c2c2c;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 32px;
  padding: 10px;
}

.article-teaser--liftup .article-teaser__title {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.article-teaser__created {
  font-size: 1rem;
  color: #828282;
  line-height: 1;
  margin-bottom: auto;
}

.article_teaser__button {
  margin-top: 32px;
}

.article_teaser__button .button__icon svg {
  fill: #007379;
}

.article__content {
  padding: 32px 0 64px;
}

@media screen and (min-width: 992px) {
  .article__content {
    padding: 64px 0 128px;
  }
}

.article__category {
  font-size: 0.875rem;
  background-color: #d1ecef;
  border-radius: 3px;
  color: #2c2c2c;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  padding: 10px;
}

.comment {
  margin-top: 32px;
}

.comment + .indented {
  margin-top: 32px;
}

.comment + .comment-form {
  margin-top: 32px;
}

.comment--no-reply .comment-reply {
  display: none;
  visibility: hidden;
}

.comment:first-of-type {
  margin-top: 0;
}

.comment__information {
  align-items: center;
  display: flex;
  padding-bottom: 16px;
  position: relative;
}

.comment__information mark {
  background-color: #ffffff;
  border-radius: 100%;
  font-size: 0;
  height: 12px;
  left: 48px;
  position: absolute;
  top: 0;
  transform: translate(-50%, -1px);
  width: 12px;
}

.comment__information mark:after {
  background-color: #f78200;
  border-radius: 100%;
  content: "";
  display: block;
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}

.comment--thread .comment__information mark {
  height: 8px;
  left: 24px;
  width: 8px;
}

.comment--thread .comment__information mark:after {
  height: 4px;
  width: 4px;
}

.comment-reply-page .comment__information mark {
  height: 12px;
  left: 48px;
  width: 12px;
}

.comment-reply-page .comment__information mark:after {
  height: 8px;
  width: 8px;
}

.comment__profile-picture {
  border-radius: 100%;
  flex-shrink: 0;
  height: 64px;
  margin-right: 16px;
  width: 64px;
}

.comment__profile-picture--missing {
  background-color: #f4f4f4;
  display: inline-block;
}

.comment--thread .comment__profile-picture {
  height: 32px;
  width: 32px;
}

.comment-reply-page .comment__profile-picture {
  height: 64px;
  width: 64px;
}

.comment__data {
  display: flex;
  flex-direction: column;
}

.comment__author {
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.5;
}

.comment--thread .comment__author {
  font-size: 0.875rem;
}

.comment-reply-page .comment__author {
  font-size: 1.125rem;
}

.comment__created {
  font-size: 0.875rem;
  color: #828282;
  line-height: 1;
}

.comment--thread .comment__created {
  font-size: 0.75rem;
}

.comment-reply-page .comment__created {
  font-size: 0.75rem;
}

.comment__content {
  font-size: 1rem;
  word-wrap: break-word;
}

.comment__content pre,
.comment__content code {
  white-space: pre-wrap;
}

.comment--thread .comment__content {
  font-size: 0.875rem;
}

.comment-reply-page .comment__content {
  font-size: 1rem;
}

.comment__content blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
  margin-top: 0;
  padding: 16px;
}

.comment--thread .comment__content blockquote {
  font-size: 0.875rem;
  margin-bottom: 16px;
  margin-top: 0;
  padding: 16px;
}

.comment-reply-page .comment__content blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
  margin-top: 0;
  padding: 16px;
}

.comment__content p:last-child {
  margin-bottom: 0;
}

.comment__content + .comment__motto {
  margin-top: 16px;
}

.comment__content + .comment__tools {
  margin-top: 16px;
}

@media screen and (min-width: 992px) {
  .comment__content iframe {
    width: calc((100% - 80px) * 0.7) !important;
  }
}

.comment__motto {
  font-size: 0.75rem;
  background-color: #eeeeee;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  word-break: break-word;
}

.comment-comment-forum-delete-form .form-actions {
  margin-top: 16px;
}

.comment-comment-forum-delete-form .form-actions button + a {
  font-size: 0.875rem;
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  .comment__tools {
    align-items: center;
    display: flex;
  }
}

.comment__rating {
  display: inline-block;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .comment__rating {
    margin-bottom: 0;
    margin-right: 16px;
  }
}

.faq {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  border-radius: 3px;
}

.faq.is-open .faq__icon  {
  transform: rotate(90deg);
}

.faq__button {
  font-size: 1rem;
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-family: "Work Sans", "Arial", sans-serif;
  font-weight: 600;
  justify-content: space-between;
  margin: 0;
  padding: 16px;
  text-align: left;
  width: 100%;
}

.faq__icon {
  display: flex;
}

.faq__answer {
  font-size: 1rem;
  border-top: 1px solid #f4f4f4;
  color: #000000;
  display: none;
  padding: 16px;
  visibility: hidden;
  width: 100%;
}

.faq__answer p:last-of-type {
  margin-bottom: 0;
}

.is-open .faq__answer {
  display: block;
  visibility: visible;
}

.forum-post__header {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 32px;
}

.forum-post__title {
  margin-bottom: 0;
  word-break: break-word;
}

.forum-post__information {
  align-items: center;
  display: flex;
  padding: 32px 0;
}

@media screen and (min-width: 992px) {
  .forum-post__information {
    padding: 32px 0 16px;
  }
}

.forum-post__profile-picture {
  border-radius: 100%;
  flex-shrink: 0;
  height: 64px;
  margin-right: 16px;
  width: 64px;
}

.forum-post__profile-picture--missing {
  background-color: #f4f4f4;
  display: inline-block;
}

.forum-post__data {
  display: flex;
  flex-direction: column;
}

.forum-post__author {
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.5;
}

.forum-post__created {
  font-size: 0.875rem;
  color: #828282;
  line-height: 1;
}

.forum-post__content {
  word-break: break-word;
}

@media screen and (min-width: 992px) {
  .forum-post__content {
    padding-left: 80px;
  }
}

.forum-post__content p:last-child {
  margin-bottom: 0;
}

.forum-post__content + .forum-post__motto {
  margin-top: 16px;
}

.forum-post__content + .forum-post__rating {
  margin-top: 16px;
}

.forum-post__motto {
  font-size: 0.75rem;
  background-color: #eeeeee;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  word-break: break-word;
}

@media screen and (min-width: 992px) {
  .forum-post__motto {
    margin-left: 80px;
  }
}

.forum-post__attachments {
  margin-top: 32px;
}

.forum-post__attachments .file {
  word-break: break-all;
}

.forum-post__attachments + .forum-post__rating {
  margin-top: 16px;
}

.forum-post__comment-count {
  margin-bottom: -16px;
  margin-top: 32px;
}

.forum-post__comments {
  border-top: 1px solid #f4f4f4;
  margin-top: 32px;
  padding-top: 32px;
}

.forum-post__comments .indented {
  position: relative;
}

@media screen and (max-width: 991px) {
  .forum-post__comments .indented {
    padding-left: 8px;
  }
}

@media screen and (min-width: 992px) {
  .forum-post__comments .indented {
    padding-left: 40px;
  }
}

@media screen and (max-width: 991px) {
  .forum-post__comments .indented:before {
    background-color: #eeeeee;
    bottom: 0;
    content: "";
    height: 100%;
    left: -32px;
    position: absolute;
    width: 8px;
  }
}

@media screen and (min-width: 992px) {
  .forum-post__comments .indented:before {
    background-color: #d9d9d9;
    bottom: 0;
    content: "";
    height: calc(100% - 16px);
    left: 20px;
    position: absolute;
    transform: translateX(-50%);
    width: 1px;
  }
}

.forum-post__comments .indented > .comment,
.forum-post__comments .indented + .comment {
  margin-top: 32px;
}

@media screen and (max-width: 991px) {
  .forum-post__comments .comment--thread--lvl--1 + .indented:before {
    background: #d9d9d9;
  }
}

@media screen and (max-width: 991px) {
  .forum-post__comments .comment--thread--lvl--2 + .indented:before {
    background: #aeaeae;
  }
}

.forum-post__form {
  border-top: 1px solid #f4f4f4;
  margin-top: 32px;
  padding-top: 32px;
}

.comment-form .form-item-comment-body-0-value > label {
  display: none;
}

.forum-teaser {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

@media screen and (min-width: 992px) {
  .forum-teaser {
    flex-direction: row;
  }
}

.forum-teaser__icon {
  align-items: center;
  background-color: #007379;
  border-radius: 100%;
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  margin-bottom: 16px;
  width: 48px;
}

@media screen and (min-width: 992px) {
  .forum-teaser__icon {
    margin-bottom: 0;
    margin-right: 32px;
  }
}

.forum-teaser__icon svg {
  fill: #ffffff;
  height: 50%;
  width: 50%;
}

.is-upcoming .forum-teaser__icon {
  background-color: #f78200;
}

.forum-teaser__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.forum-teaser__title {
  color: #000000;
  margin-bottom: 0;
}

.forum-teaser__type {
  font-size: 1rem;
  color: #575757;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  margin-top: 4px;
}

.forum-teaser__link {
  margin-top: 16px;
}

.forum-teaser__link .button__icon svg {
  fill: #007379;
}

.group-teaser {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

@media screen and (min-width: 992px) {
  .group-teaser {
    flex-direction: row;
  }
}

.group-teaser__icon {
  align-items: center;
  background-color: #007379;
  border-radius: 100%;
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  margin-bottom: 16px;
  width: 48px;
}

@media screen and (min-width: 992px) {
  .group-teaser__icon {
    margin-bottom: 0;
    margin-right: 32px;
  }
}

.group-teaser__icon svg {
  fill: #ffffff;
  height: 50%;
  width: 50%;
}

.is-registration-open .group-teaser__icon {
  background-color: #f78200;
}

.group-teaser__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.group-teaser__title {
  color: #000000;
  margin-bottom: 0;
}

.group-teaser__type {
  font-size: 1rem;
  color: #575757;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  margin-top: 4px;
}

.group-teaser__link {
  margin-top: 16px;
}

.group-teaser__link .button__icon svg {
  fill: #007379;
}

.hero {
  overflow: hidden;
  position: relative;
}

.hero--light {
  background-color: #f4f4f4;
}

.hero--dark {
  background-color: #007379;
}

.hero-background-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: .3;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.hero__background-image {
  position: relative;
}

.hero--view .hero__background-image:after {
  background-image: url("../images/lumi_turk_rgb.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 500px auto;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: -50%;
  top: 100%;
  transform: translateY(-200px) rotate(25deg);
}

@media screen and (min-width: 577px) {
  .hero--view .hero__background-image:after {
    background-size: 600px auto;
    right: -85%;
    top: 85%;
    transform: translateY(-200px) rotate(15deg);
  }
}

@media screen and (min-width: 768px) {
  .hero--view .hero__background-image:after {
    background-size: 800px auto;
    right: -95%;
    top: 75%;
    transform: translateY(-200px) rotate(10deg);
  }
}

@media screen and (min-width: 992px) {
  .hero--view .hero__background-image:after {
    background-size: 800px auto;
    right: -55%;
    top: 55%;
    transform: translateY(-200px) rotate(0deg);
  }
}

.hero__breadcrumb {
  padding-top: 32px;
  position: relative;
  z-index: 10;
}

.hero__container {
  padding-bottom: 64px;
  padding-top: 64px;
  position: relative;
  z-index: 10;
}

.hero--article .hero__container {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .hero--article .hero__container {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
}

.hero--article .hero__container:after {
  background-image: url("../images/sade_turk_rgb.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: -5%;
  top: 35%;
  transform: translateY(25%);
}

@media screen and (min-width: 992px) {
  .hero--article .hero__container:after {
    right: 0;
    transform: translate(352px, 35%);
    top: 0;
  }
}

@media screen and (min-width: 1200px) {
  .hero--article .hero__container:after {
    transform: translate(416px, 35%);
  }
}

@media screen and (min-width: 1375px) {
  .hero--article .hero__container:after {
    transform: translate(480px, 35%);
  }
}

@media screen and (min-width: 1500px) {
  .hero--article .hero__container:after {
    transform: translate(544px, 35%);
  }
}

@media screen and (min-width: 992px) {
  .hero--article .hero__content {
    flex-shrink: 0;
    width: 50%;
  }
}

.hero__title {
  margin-bottom: 16px;
}

.hero--article .hero__title {
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .hero--article .hero__title {
    font-size: 2.375rem;
    line-height: 1.56;
  }
}

.hero__lead {
  font-size: 1.125rem;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .hero__lead {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 992px) {
  .hero__lead {
    font-size: 1.5rem;
  }
}

.hero--view .hero__lead {
  max-width: 650px;
  position: relative;
  z-index: 10;
}

.hero--article .hero__image {
  margin-top: 32px;
  z-index: 10;
}

.hero--article .hero__image img {
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
}

@media screen and (min-width: 992px) {
  .hero--article .hero__image img {
    margin-left: auto;
  }
}

@media screen and (min-width: 992px) {
  .hero--article .hero__image {
    margin-top: 0;
    padding-left: 48px;
    width: 50%;
  }
}

.liftup-articles-liftup__link {
  display: flex;
  flex-direction: column;
}

.liftup-articles-liftup__image {
  margin: 0;
}

.liftup-articles-liftup__image img {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
}

.liftup-articles-liftup__content {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 3px;
  padding: 24px 16px;
  flex-direction: column;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.liftup-articles-liftup__created {
  font-size: 0.875rem;
  color: #828282;
}

.article_teaser__button {
  margin-top: 32px;
}

.article_teaser__button .button__icon svg {
  fill: #007379;
}

.livechat__content {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 5px;
  min-height: 300px;
  padding: 32px;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .livechat__content {
    margin-left: auto;
    width: 70%;
  }
}

.ryhmat__content {
  padding: 32px;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ryhmat__content {
    margin-left: auto;
    width: 70%;
  }
}

.most-read-articles-liftup__link {
  display: flex;
}

.most-read-articles-liftup__image {
  flex-shrink: 0;
  margin: 0 16px 0 0;
  width: 35%;
}

.most-read-articles-liftup__image img {
  border-radius: 5px;
  width: 100%;
}

.most-read-articles-liftup__content {
  display: flex;
  flex-direction: column;
}

.most-read-articles-liftup__created {
  font-size: 0.875rem;
  color: #828282;
}

.omapeluuri__banner {
  background-color: #007379;
  width: 100%;
}

.omapeluuri__banner .omapeluuri__container {
  padding-bottom: 32px;
  padding-top: 32px;
  position: relative;
}

.omapeluuri--lifted .omapeluuri__banner .omapeluuri__container {
  padding-bottom: 192px;
}

@media screen and (min-width: 992px) {
  .omapeluuri--lifted .omapeluuri__banner .omapeluuri__container {
    padding-bottom: 160px;
  }
}

@media screen and (min-width: 992px) {
  .omapeluuri__background-image:after {
    background-image: url("../images/laineet_turk_rgb.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto 500px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.omapeluuri__breadcrumbs {
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .omapeluuri__breadcrumbs {
    margin-bottom: 64px;
  }
}

.omapeluuri__banner-content {
  color: #ffffff;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .omapeluuri__banner-content {
    margin-left: auto;
    width: 70%;
  }
}

@media screen and (max-width: 991px) {
  .omapeluuri__banner-content .omapeluuri__content {
    margin-top: 32px;
  }
}

.omapeluuri__title {
  color: #ffffff;
  margin-bottom: 8px;
}

.omapeluuri__title.black {
  color: #000000;
}

.omapeluuri__title + p {
  margin-bottom: 0;
}

.omapeluuri__lifted-title {
  align-items: center;
  display: flex;
  margin-bottom: 16px;
}

.omapeluuri__lifted-title span {
  display: inline-block;
  height: 24px;
  margin-right: 8px;
  width: 24px;
}

.omapeluuri__lifted-title span svg {
  height: 100%;
  width: 100%;
}

.omapeluuri__content-container {
  display: flex;
  position: relative;
}

.omapeluuri__content-container .omapeluuri__content {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .omapeluuri__content-container .omapeluuri__content {
    width: 70%;
  }
}

.omapeluuri--lifted .omapeluuri__content-container .omapeluuri__content {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 5px;
  margin-top: -160px;
  min-height: 300px;
  padding: 32px;
}

.omapeluuri:not(.omapeluuri--lifted) .omapeluuri__content-container .omapeluuri__content {
  margin-top: 32px;
}

.omapeluuri__content-container .omapeluuri__content a {
  color: #005357;
  text-decoration: underline;
}

.omapeluuri__content-container .omapeluuri__content a:hover {
  text-decoration: none;
}

.workbook-table-of-contents {
  list-style-type: none;
}

.workbook-table-of-contents h3 {
  font-size: 1.375rem;
  margin: 16px 0;
}

.workbook-table-of-contents .omapeluuri-checkmark {
  display: inline;
  width: 15px;
  height: 15px;
}

@media screen and (min-width: 992px) {
  .omapeluuri__sidebar {
    margin-top: -160px;
    padding-right: 32px;
    width: 30%;
  }
}

@media screen and (min-width: 1200px) {
  .omapeluuri__sidebar {
    padding-right: 64px;
  }
}

.omapeluuri-dropdown__button {
  font-size: 1rem;
  align-items: center;
  background-color: #ffffff;
  border-radius: 3px;
  border: 0;
  color: #828282;
  cursor: pointer;
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 16px;
  transition: none;
  width: 100%;
}

.omapeluuri-dropdown__button[aria-expanded="true"]  .omapeluuri-dropdown__expand {
  transform: rotate(180deg);
}

.omapeluuri-dropdown__button .omapeluuri-dropdown__icon {
  display: flex;
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

.omapeluuri-dropdown__button .omapeluuri-dropdown__icon svg {
  fill: #828282;
  width: 100%;
  height: 100%;
}

.omapeluuri-dropdown__button .omapeluuri-dropdown__expand {
  display: flex;
  height: 22px;
  margin-left: auto;
  pointer-events: none;
  width: 22px;
}

.omapeluuri-dropdown__button .omapeluuri-dropdown__expand svg {
  fill: #828282;
  width: 100%;
  height: 100%;
}

.omapeluuri__dashboard {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

@media screen and (min-width: 768px) {
  .omapeluuri__dashboard {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1350px) {
  .omapeluuri__dashboard {
    flex-wrap: nowrap;
  }
}

.omapeluuri .iframe-container {
  background-color: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  position: relative;
  padding: 0px;
}

@media screen and (min-width: 768px) {
  .omapeluuri .iframe-container:after {
    background-image: url("../images/lumi_turk_rgb.svg");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 400px auto;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(3.5rem, 2.5rem);
    z-index: -1;
  }
}

.omapeluuri .iframe-container iframe {
  border: none;
  width: 1px;
  min-width: 100%;
}

.omapeluuri #content iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .omapeluuri #content iframe {
    width: 70%;
  }
}

@media screen and (min-width: 992px) {
  .omapeluuri #content .captcha__element iframe {
    width: 100%;
  }
}

fieldset.captcha {
  margin-bottom: 15px;
}

.plain-private-message {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 5px;
  padding: 24px;
}

.plain-private-message__header {
  font-size: 1rem;
  align-items: center;
  color: #828282;
  display: flex;
  margin-bottom: 8px;
}

.plain-private-message__sender {
  margin-left: 8px;
}

.plain-private-message__content p:last-of-type {
  margin-bottom: 0;
}

.private-message-thread + .private-message-thread {
  border-top: 1px solid #f4f4f4;
  margin-top: 32px;
  padding-top: 32px;
}

.private-message-wrapper + .private-message-wrapper {
  margin-top: 16px;
}

.private-message-thread-full .private_message_thread_delete_link_wrapper a {
  font-size: 0.875rem;
  align-items: center;
  background-color: #007379;
  border-radius: 5px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  padding: 10px 16px;
  text-indent: .25px;
  transition: .25s background-color, .25s color;
}

.private-message-thread-full .private_message_thread_delete_link_wrapper a:hover, .private-message-thread-full .private_message_thread_delete_link_wrapper a:focus {
  background-color: #005357;
  color: #ffffff;
}

.private-message-thread-full .private_message_thread_delete_link_wrapper a:disabled {
  background-color: #007379;
  cursor: not-allowed;
  opacity: .5;
}

.private-message-thread-full .private-message-recipients {
  margin: 16px 0;
}

.private-message-thread-full .private-message-recipients > span {
  display: none;
  visibility: hidden;
}

.private-message-thread-full .private-message-recipients > article {
  font-size: 0.875rem;
  align-items: center;
  background-color: #f4f4f4;
  border: 0;
  color: #2c2c2c;
  cursor: default;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  padding: 10px 16px;
  text-indent: .25px;
}

.private-message-thread-full .private-message-recipients > article .username {
  margin: 0;
}

.private-message-thread-full .private-message-recipients > article .username a {
  color: #2c2c2c;
  pointer-events: none;
  text-decoration: none;
}

.private-message-thread-full .private-message-recipients > article .username a:hover, .private-message-thread-full .private-message-recipients > article .username a:focus {
  outline: 0;
}

.private-message-thread-full .private-message-thread-messages > div > div {
  margin-bottom: 8px;
}

.private-message-thread-full .private-message-form .button {
  font-size: 0.875rem;
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  padding: 10px 16px;
  text-indent: .25px;
}

.private-message-thread-delete-form .form-actions {
  margin-top: 16px;
}

.private-message-thread-delete-form .form-actions input {
  font-size: 0.875rem;
  align-items: center;
  background-color: #007379;
  border-radius: 5px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  margin-right: 8px;
  padding: 10px 16px;
  text-indent: .25px;
  transition: .25s background-color, .25s color;
}

.private-message-thread-delete-form .form-actions input:hover, .private-message-thread-delete-form .form-actions input:focus {
  background-color: #005357;
  color: #ffffff;
}

.private-message-thread-delete-form .form-actions input:disabled {
  background-color: #007379;
  cursor: not-allowed;
  opacity: .5;
}

.private-message-thread-delete-form .form-actions a {
  font-size: 1rem;
}

.search-result-teaser {
  border-radius: 3px;
  border: 1px solid #f4f4f4;
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  padding: 32px;
}

.search-result-teaser__link .button__icon svg {
  fill: #007379;
}

.form-page {
  padding-bottom: 64px;
  padding-top: 64px;
}

.form-page--login {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .form-page--login {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
  }
}

.form-page--login .form-page__item {
  max-width: 500px;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .form-page--login .form-page__item {
    width: 50%;
  }
}

.form-page--login .form-page__item:first-child {
  margin-bottom: 64px;
}

@media screen and (min-width: 992px) {
  .form-page--login .form-page__item:first-child {
    margin-bottom: 0;
    margin-right: 64px;
  }
}

.form.user-login-form .description {
  display: none;
  visibility: hidden;
}

.form.user-pass p {
  display: none;
  visibility: hidden;
}

.form.user-register-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.form.user-register-form legend {
  padding: 0;
  margin-bottom: 16px;
}

.form.user-register-form legend .fieldset-legend {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0;
}

.form.user-register-form select,
.form.user-register-form input {
  width: 100%;
}

.form.user-register-form .field--widget-profile-form {
  margin-top: 32px;
}

.form.user-register-form .field--name-role-change .form-item input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.form.user-register-form .field--name-role-change .form-item input:checked + label {
  background-color: #d1ecef;
  border-color: #007379;
}

.form.user-register-form .field--name-role-change .form-item input:checked + label:before {
  background-color: #007379;
  border-radius: 100%;
  content: "";
  display: block;
  height: 8px;
  left: 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}

.form.user-register-form .field--name-role-change .form-item input:checked + label:after {
  border-color: #007379;
}

.form.user-register-form .field--name-role-change .form-item input:focus + label {
  outline: 1px solid #007379;
}

.form.user-register-form .field--name-role-change .form-item label {
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  display: block;
  padding: 16px 16px 16px 48px;
  position: relative;
}

.form.user-register-form .field--name-role-change .form-item label:before {
  display: none;
}

.form.user-register-form .field--name-role-change .form-item label:after {
  border-radius: 100%;
  border: 2px solid #d9d9d9;
  content: "";
  height: 16px;
  left: 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}

.form.user-login-form .button, .form.user-register-form .button, .form.user-pass .button {
  width: 100%;
}

.form details#edit-terms-of-use summary {
  visibility: hidden;
}

.form details#edit-terms-of-use .form-item-terms-of-use-checkbox {
  align-items: center;
  display: flex;
}

.form__title {
  margin-bottom: 48px;
  text-align: center;
}

.form__actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 16px;
}

@media screen and (min-width: 577px) {
  .user-login-form .form__actions,
  .user-pass .form__actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

.form__action-link {
  font-size: 1rem;
}

.form-item {
  margin-bottom: 16px;
  width: 100%;
}

.form-item label,
.form-item .fieldset-legend {
  font-size: 1rem;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
}

.form-item .fieldset-legend {
  display: inline-block;
}

input[type=tel],
input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=url],
input[type=password] {
  font-size: 1rem;
  background-color: #fbfbfb;
  border-radius: 3px;
  border: 1px solid #aeaeae;
  color: #575757;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  max-width: 100%;
  padding: 16px;
}

input[type=tel]:hover,
input[type=text]:hover,
input[type=date]:hover,
input[type=email]:hover,
input[type=number]:hover,
input[type=url]:hover,
input[type=password]:hover {
  border-color: #575757;
}

input[type=tel]:focus,
input[type=text]:focus,
input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=url]:focus,
input[type=password]:focus {
  outline-color: #007379;
  color: #2c2c2c;
}

input[type=tel]:invalid,
input[type=text]:invalid,
input[type=date]:invalid,
input[type=email]:invalid,
input[type=number]:invalid,
input[type=url]:invalid,
input[type=password]:invalid {
  outline-color: #c80a31;
}

input[type=tel]:disabled,
input[type=text]:disabled,
input[type=date]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=url]:disabled,
input[type=password]:disabled {
  border-color: #f4f4f4;
  color: #d9d9d9;
}

input[type=tel] + .description,
input[type=text] + .description,
input[type=date] + .description,
input[type=email] + .description,
input[type=number] + .description,
input[type=url] + .description,
input[type=password] + .description {
  font-size: 0.75rem;
  color: #828282;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-top: 8px;
  padding-left: 16px;
}

input[type=checkbox] {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

input[type=checkbox]:checked + label:before {
  background-color: #007379;
  border-color: #007379;
}

input[type=checkbox]:checked + label:after {
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: '';
  display: block;
  height: 5px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg) translate(50%, -25%);
  width: 12px;
}

input[type=checkbox]:focus + label {
  outline: 1px solid #007379;
}

input[type=checkbox] + label {
  cursor: pointer;
  display: block;
  padding: 0 0 0 32px;
  position: relative;
}

input[type=checkbox] + label:before {
  border-radius: 3px;
  border: 2px solid #d9d9d9;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.gambling-test-form {
  background-color: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  max-width: 650px;
  position: relative;
  padding: 0px 32px 0px 32px;
}

@media screen and (min-width: 768px) {
  .gambling-test-form:after {
    background-image: url("../images/lumi_turk_rgb.svg");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 400px auto;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(3.5rem, 2.5rem);
    z-index: -1;
  }
}

.gambling-test-form fieldset {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.gambling-test-form fieldset legend {
  padding: 0;
}

.gambling-test-form fieldset .form-item input {
  opacity: 0;
  position: absolute;
}

.gambling-test-form fieldset .form-item input:checked + label {
  background-color: #d1ecef;
  border-color: #007379;
}

.gambling-test-form fieldset .form-item input:checked + label:before {
  background-color: #007379;
  border-radius: 100%;
  content: "";
  height: 8px;
  left: 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}

.gambling-test-form fieldset .form-item input:checked + label:after {
  border-color: #007379;
}

.gambling-test-form fieldset .form-item input:focus + label {
  outline: 1px solid #007379;
}

.gambling-test-form fieldset .form-item label {
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  display: block;
  padding: 16px 16px 16px 48px;
  position: relative;
}

.gambling-test-form fieldset .form-item label:after {
  border-radius: 100%;
  border: 2px solid #d9d9d9;
  content: "";
  height: 16px;
  left: 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}

.gambling-test-form .fieldset-legend {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.gambling-test-form .webform-progress {
  border-bottom: 1px solid #f4f4f4;
  padding: 24px 32px;
  margin-bottom: 24px;
}

@media screen and (min-width: 577px) {
  .gambling-test-form .webform-progress {
    padding: 24px 48px;
  }
}

.gambling-test-form .webform-elements {
  padding: 48px 32px 0;
}

@media screen and (min-width: 577px) {
  .gambling-test-form .webform-elements {
    padding: 48px 48px 0;
  }
}

.gambling-test-form .webform-elements .form-item:last-of-type {
  margin-bottom: 0;
}

.gambling-test-form .form-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 16px 0px 64px;
}

@media screen and (min-width: 577px) {
  .gambling-test-form .form-actions {
    padding: 16px 0px 64px;
  }
}

.gambling-test-form .form-actions .button[data-twig-suggestion="gambling_test_form_next_button"] {
  margin-left: auto;
}

.gambling-test-form .form-actions > *:first-child:nth-last-child(1) {
  margin-left: auto;
}

.gambling-test-form .webform-confirmation__header {
  border-bottom: 1px solid #f4f4f4;
  padding: 24px 32px;
  text-align: center;
}

@media screen and (min-width: 577px) {
  .gambling-test-form .webform-confirmation__header {
    padding: 24px 48px;
  }
}

.gambling-test-form .webform-confirmation__title {
  margin-bottom: 0;
}

.gambling-test-form .webform-confirmation__message {
  margin-bottom: 0;
  padding: 48px 32px;
  text-align: center;
}

@media screen and (min-width: 577px) {
  .gambling-test-form .webform-confirmation__message {
    padding: 48px;
  }
}

.gambling-test-form #answer-recap {
  margin-bottom: 20px;
}

.gambling-test-form #answer-recap ul {
  list-style: none;
}

.gambling-test-form #edit-reverse-day-order p {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 0 1rem 0;
}

.gambling-test-form .gambling-diary .calendar-save-button,
.gambling-test-form .button.reverse-day-order {
  width: 100%;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #007379;
  color: #003234;
  padding: 8px 12px;
  transition: 0.25s background-color, 0.25s color;
}

.gambling-test-form .gambling-diary .calendar-save-button:hover, .gambling-test-form .gambling-diary .calendar-save-button:focus,
.gambling-test-form .button.reverse-day-order:hover,
.gambling-test-form .button.reverse-day-order:focus {
  background-color: #007379;
  color: #ffffff;
}

.gambling-test-form .webform-submission-omapeluuri-1-4-form {
  max-width: 700px;
}

.gambling-test-form .webform-submission-omapeluuri-1-4-form .form-item {
  margin: auto;
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.gambling-test-form .webform-submission-omapeluuri-1-4-form .form-item:last-of-type {
  margin-bottom: 1rem;
}

.gambling-test-form .reasons-and-means label, .gambling-test-form .cession label, .gambling-test-form .persons label, .gambling-test-form .additional-comments label {
  width: 100%;
  white-space: pre-wrap;
}

.gambling-test-form .reasons-and-means table, .gambling-test-form .cession table, .gambling-test-form .persons table, .gambling-test-form .additional-comments table {
  word-break: break-all;
  max-width: 570px;
}

.gambling-test-form .reasons-and-means table tr, .gambling-test-form .cession table tr, .gambling-test-form .persons table tr, .gambling-test-form .additional-comments table tr,
.gambling-test-form .reasons-and-means table td,
.gambling-test-form .cession table td,
.gambling-test-form .persons table td,
.gambling-test-form .additional-comments table td,
.gambling-test-form .reasons-and-means table div,
.gambling-test-form .cession table div,
.gambling-test-form .persons table div,
.gambling-test-form .additional-comments table div,
.gambling-test-form .reasons-and-means table *,
.gambling-test-form .cession table *,
.gambling-test-form .persons table *,
.gambling-test-form .additional-comments table * {
  width: 100%;
}

.gambling-test-form .additional-comments textarea {
  outline: 1px solid;
  width: 100%;
}

.gambling-test-form .force-checkboxes {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.gambling-test-form .force-checkboxes legend {
  padding: 0;
}

.gambling-test-form .force-checkboxes .form-item input {
  opacity: 0;
  position: absolute;
}

.gambling-test-form .force-checkboxes .form-item input:checked {
  background-color: #d1ecef;
  border-color: #007379;
  margin-left: 8px;
}

.gambling-test-form .force-checkboxes .form-item input:checked:before {
  background-color: #007379;
  border-radius: 100%;
  content: "";
  height: 8px;
  left: 5%;
  position: absolute;
  top: 50%;
  transform: translate(-5%, -50%);
  width: 8px;
}

.gambling-test-form .force-checkboxes .form-item input:checked:after {
  top: 50%;
  left: 5%;
  transform: translate(-3%, -50%);
  border-color: #007379;
}

@media screen and (max-width: 576px) {
  .gambling-test-form .force-checkboxes .form-item input:checked:before, .gambling-test-form .force-checkboxes .form-item input:checked:after {
    top: 50%;
    left: 5%;
    transform: translate(-5%, -50%);
  }
}

.gambling-test-form .force-checkboxes .form-item label {
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  display: block;
  padding: 16px 16px 16px 48px;
  position: relative;
}

.gambling-test-form .force-checkboxes .form-item label::before {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translate(-3%, -50%);
}

.gambling-test-form .force-checkboxes .form-item label::after {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translate(-3%, -50%);
}

@media screen and (max-width: 576px) {
  .gambling-test-form .force-checkboxes .form-item label::before, .gambling-test-form .force-checkboxes .form-item label::after {
    left: 5%;
    transform: translate(-5%, -50%);
  }
}

@media screen and (max-width: 355px) {
  .gambling-test-form .force-checkboxes .form-item label::before, .gambling-test-form .force-checkboxes .form-item label::after {
    left: 5.6%;
    transform: translate(-5.6%, -50%);
  }
}

.gambling-test-form .force-checkboxes .form-item input[type="checkbox"]:checked + label {
  background-color: #d1ecef;
  border: 1px solid #007379;
}

.gambling-test-form .force-checkboxes .form-item input[type="checkbox"]:checked + label:after {
  position: absolute;
  top: 47.5%;
  left: 3.5%;
  transform: rotate(-45deg) translate(-3.5%, -47.5%);
}

@media screen and (max-width: 576px) {
  .gambling-test-form .force-checkboxes .form-item input[type="checkbox"]:checked + label:after {
    top: 48%;
    left: 5.5%;
    transform: rotate(-45deg) translate(-5.5%, -48%);
  }
}

@media screen and (max-width: 355px) {
  .gambling-test-form .force-checkboxes .form-item input[type="checkbox"]:checked + label:after {
    top: 48%;
    left: 6.5%;
    transform: rotate(-45deg) translate(-6.5%, -48%);
  }
}

.gambling-test-form .webform-button--submit.button.button--primary.js-form-submit.form-submit,
.gambling-test-form .webform-button--next.button.js-form-submit.form-submit,
.gambling-test-form .webform-button--previous.button.js-form-submit.form-submit,
.gambling-test-form .webform-multiple-add .form-submit {
  padding: 16px;
  background-color: #007379;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.gambling-test-form .webform-button--submit.button.button--primary.js-form-submit.form-submit:hover,
.gambling-test-form .webform-button--next.button.js-form-submit.form-submit:hover,
.gambling-test-form .webform-button--previous.button.js-form-submit.form-submit:hover,
.gambling-test-form .webform-multiple-add .form-submit:hover {
  border: 2px solid #007379;
  transition: all 0.3s;
  background-color: #ffffff;
  color: #005357;
}

.gambling-test-form .gambling-diary {
  color: #ffffff;
  border-radius: 5px;
  background-color: #007379;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 0.5rem;
  padding: 10px;
}

.gambling-test-form .gambling-diary .calendar-button-placeholder {
  display: block;
  background-color: transparent;
}

.gambling-test-form .gambling-diary .calendar-button {
  margin: auto;
  text-align: center;
  border: none;
  width: 100%;
  height: 100%;
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
}

.gambling-test-form .gambling-diary .calendar-button[open] summary {
  font-weight: bold;
}

.gambling-test-form .gambling-diary .calendar-button summary {
  padding: 1rem;
  outline: none;
  list-style: none;
}

.gambling-test-form .gambling-diary .calendar-button summary::-webkit-details-marker {
  display: none;
}

.gambling-test-form .gambling-diary .calendar-button-form-fields {
  margin: auto auto 1rem auto;
  width: 95%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
}

.gambling-test-form .gambling-diary .calendar-save-button {
  width: 90%;
  margin-bottom: 16px;
}

@media screen and (max-width: 577px) {
  .gambling-test-form .gambling-diary .calendar-save-button {
    width: 80%;
  }
}

.gambling-test-form .gambling-diary .wins-losses-total {
  color: #ffffff;
}

.gambling-test-form .gambling-diary .wins-losses-total,
.gambling-test-form .gambling-diary .summary {
  text-align: center;
}

.gambling-test-form .gambling-diary input[type="text"] {
  max-width: 90%;
  width: 90%;
}

@media screen and (max-width: 577px) {
  .gambling-test-form .gambling-diary input[type="text"] {
    width: 80%;
  }
}

.gambling-test-form textarea {
  resize: none;
}

.pgsi-form {
  background-color: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  max-width: 850px;
  position: relative;
  padding: 0px 32px 0px 32px;
}

.pgsi-form:after {
  background-image: url("../images/lumi_turk_rgb.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 400px auto;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(3.5rem, 2.5rem);
  z-index: -1;
}

.pgsi-form fieldset {
  margin-left: 0;
  margin-right: 0;
}

.pgsi-form fieldset:not(:last-of-type) {
  margin-bottom: 32px;
}

.pgsi-form fieldset legend {
  padding: 0;
}

.pgsi-form fieldset .form-item input {
  opacity: 0;
  position: absolute;
}

.pgsi-form fieldset .form-item input:checked + label {
  background-color: #d1ecef;
  border-color: #007379;
}

.pgsi-form fieldset .form-item input:checked + label:before {
  background-color: #007379;
  border-radius: 100%;
  content: "";
  height: 8px;
  left: 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}

.pgsi-form fieldset .form-item input:checked + label:after {
  border-color: #007379;
}

.pgsi-form fieldset .form-item input:focus + label {
  outline: 1px solid #007379;
}

.pgsi-form fieldset .form-item label {
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  display: block;
  padding: 16px 16px 16px 48px;
  position: relative;
}

.pgsi-form fieldset .form-item label:after {
  border-radius: 100%;
  border: 2px solid #d9d9d9;
  content: "";
  height: 16px;
  left: 24px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}

.pgsi-form .fieldset-legend {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.pgsi-form .webform-progress {
  border-bottom: 1px solid #f4f4f4;
  padding: 24px 32px;
  margin-bottom: 24px;
}

@media screen and (min-width: 577px) {
  .pgsi-form .webform-progress {
    padding: 24px 48px;
  }
}

.pgsi-form .webform-elements {
  padding: 48px 32px 0;
}

@media screen and (min-width: 577px) {
  .pgsi-form .webform-elements {
    padding: 48px 48px 0;
  }
}

.pgsi-form .webform-elements .form-item:last-of-type {
  margin-bottom: 0;
}

.pgsi-form .form-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 16px 0px 64px;
}

@media screen and (min-width: 577px) {
  .pgsi-form .form-actions {
    padding: 16px 0px 64px;
  }
}

.pgsi-form .form-actions .button[data-twig-suggestion=pgsi_form_next_button] {
  margin-left: auto;
}

.pgsi-form .webform-confirmation__message {
  margin-bottom: 0;
  padding: 48px 32px;
  text-align: center;
}

@media screen and (min-width: 577px) {
  .pgsi-form .webform-confirmation__message {
    padding: 48px;
  }
}

.private-message-form #thread-members-display-container label {
  margin-right: 16px;
}

.private-message-form #thread-members-display-container .private-message-member-display-item {
  font-size: 1rem;
  align-items: center;
  display: flex;
  margin-bottom: 8px;
}

.private-message-form #thread-members-display-container .private-message-member-display-item .pm-username {
  margin-left: 8px;
  order: 2;
}

.private-message-form #thread-members-display-container .private-message-member-display-item .pm-username-remove-link {
  font-size: 1rem;
  align-items: center;
  background: #007379;
  border-radius: 3px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  height: 24px;
  justify-content: center;
  order: 1;
  width: 24px;
}

.private-message-form #thread-members-display-container .private-message-member-display-item:last-of-type {
  margin-bottom: 16px;
}

.private-message-form .field--name-field-m-title {
  margin-top: 32px;
}

.private-message-form .field--name-field-m-title::before  {
  content: "Subject";
}

.private-message-form .field--name-message {
  margin-top: 16px;
}

.private-message-form .field--name-message .filter-wrapper {
  display: none;
  visibility: hidden;
}

.private-message-form .field--name-message::before  {
  content: "Message";
}

select:not([multiple]) {
  font-size: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fbfbfb url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23828282' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 10px;
  border-radius: 3px;
  border: 1px solid #aeaeae;
  color: #575757;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  max-width: 100%;
  padding: 16px 32px 16px 16px;
}

select:not([multiple]):hover {
  border-color: #575757;
  cursor: pointer;
}

select:not([multiple]):focus {
  outline-color: #007379;
  color: #2c2c2c;
}

select:not([multiple]):invalid {
  outline-color: #c80a31;
}

.user-cancel-form .form-actions {
  display: flex;
  margin-top: 16px;
}

@media screen and (max-width: 576px) {
  .user-cancel-form .form-actions {
    flex-direction: column;
  }
}

@media screen and (min-width: 577px) {
  .user-cancel-form .form-actions {
    align-items: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 576px) {
  .user-cancel-form .form-actions .button:not(:first-child) {
    margin-top: 16px;
  }
}

@media screen and (min-width: 577px) {
  .user-cancel-form .form-actions .button:not(:first-child) {
    margin-left: 16px;
  }
}

.form--user-edit .form-item {
  box-sizing: border-box;
}

.form--user-edit details {
  font-size: 1rem;
  border-top: 1px solid #eeeeee;
  margin-top: 32px;
  padding-top: 16px;
}

.form--user-edit details summary {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  pointer-events: none;
  text-transform: uppercase;
}

.form--user-edit details summary::-webkit-details-marker {
  display: none;
}

.form--user-edit details select {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .form--user-edit details select {
    width: 250px;
  }
}

.form--user-edit details p:last-of-type {
  margin-bottom:   32px;
}

.form--user-edit fieldset {
  margin: 0;
}

.form--user-edit .form-wrapper .form-item-profile-profiles-0-entity-field-profile-image-0 > label,
.form--user-edit .form-wrapper .form-item-profile-profiles-0-entity-field-motto-0-value > label,
.form--user-edit .form-wrapper .form-item-profile-profiles-0-entity-field-mobile-use > label,
.form--user-edit .form-wrapper .form-item-profile-profiles-0-entity-field-birth-year-0-value > label,
.form--user-edit .form-wrapper .form-item-profile-profiles-0-entity-field-sex > label,
.form--user-edit .form-wrapper .form-item-profile-profiles-0-entity-field-residence > label,
.form--user-edit .form-wrapper .form-item-current-pass > label,
.form--user-edit .form-wrapper .form-item-mail > label,
.form--user-edit .form-wrapper .form-item-pass-pass1 > label,
.form--user-edit .form-wrapper .form-item-pass-pass2 > label {
  font-size: 1rem;
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.form--user-edit .form-wrapper .fieldset-legend {
  font-size: 1rem;
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.form--user-edit .field--name-field-profile-image {
  align-items: center;
  display: flex;
  margin-bottom: 32px;
}

.form--user-edit .field--name-field-profile-image .message {
  display: none;
}

.form--user-edit .field--name-field-profile-image .description {
  display: none;
}

.form--user-edit .field--name-field-profile-image .image-widget img {
  border-radius: 100%;
  margin-right: 16px;
}

.form--user-edit .field--name-field-profile-image .image-widget .file--image,
.form--user-edit .field--name-field-profile-image .image-widget .file-size {
  display: none;
}

.form--user-edit .field--name-field-profile-image .image-widget .button {
  font-size: 0.75rem;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #007379;
  color: #003234;
  padding: 8px 12px;
  transition: .25s background-color, .25s color;
}

.form--user-edit .field--name-field-profile-image .image-widget .button:hover, .form--user-edit .field--name-field-profile-image .image-widget .button:focus {
  background-color: #007379;
  color: #ffffff;
}

.form--user-edit .field--name-field-profile-image > div {
  width: 100%;
}

.form--user-edit .field--name-field-profile-image > div > div .image-widget {
  align-items: center;
  display: flex;
}

.form--user-edit .field--name-field-mainly-play {
  margin-bottom: 32px;
}

.form--user-edit .field--name-field-mainly-play .form-item-profile-profiles-0-entity-field-mainly-play input {
  opacity: 0;
  position: absolute;
}

.form--user-edit .field--name-field-mainly-play .form-item-profile-profiles-0-entity-field-mainly-play input:checked + label:before {
  background-color: #007379;
  border-radius: 100%;
  box-sizing: border-box;
  content: "";
  height: 8px;
  left: 4px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 8px;
}

.form--user-edit .field--name-field-mainly-play .form-item-profile-profiles-0-entity-field-mainly-play input:checked + label:after {
  border-color: #007379;
}

.form--user-edit .field--name-field-mainly-play .form-item-profile-profiles-0-entity-field-mainly-play input:focus + label {
  outline: 1px solid #007379;
}

.form--user-edit .field--name-field-mainly-play .form-item-profile-profiles-0-entity-field-mainly-play label {
  cursor: pointer;
  display: block;
  padding: 0 0 0 24px;
  position: relative;
}

.form--user-edit .field--name-field-mainly-play .form-item-profile-profiles-0-entity-field-mainly-play label:after {
  border-radius: 100%;
  border: 2px solid #d9d9d9;
  box-sizing: border-box;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 16px;
}

.form--user-edit .field--name-field-mobile-use {
  margin-bottom: 32px;
}

.form--user-edit .field--name-field-user-problems .fieldset-legend {
  margin-bottom: 16px;
}

.form--user-edit .field--name-field-user-problems label {
  font-size: 0.875rem;
  display: inline-block;
}

.form--user-edit #edit-account input {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .form--user-edit #edit-account input {
    width: 350px;
  }
}

.form--user-edit #edit-account .password-strength__meter {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .form--user-edit #edit-account .password-strength__meter {
    width: 350px;
  }
}

.form--user-edit #edit-account .password-strength__title,
.form--user-edit #edit-account .password-confirm,
.form--user-edit #edit-account .password-suggestions,
.form--user-edit #edit-account .password-suggestions + .description {
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
}

.form--user-edit #edit-account .form-item-pass {
  margin-bottom: 32px;
}

.form--user-edit #edit-status--wrapper {
  margin-bottom: 32px;
}

.form--user-edit #edit-status--wrapper input {
  opacity: 0;
  position: absolute;
}

.form--user-edit #edit-status--wrapper input:checked + label:before {
  background-color: #007379;
  border-radius: 100%;
  box-sizing: border-box;
  content: "";
  height: 8px;
  left: 4px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 8px;
}

.form--user-edit #edit-status--wrapper input:checked + label:after {
  border-color: #007379;
}

.form--user-edit #edit-status--wrapper input:focus + label {
  outline: 1px solid #007379;
}

.form--user-edit #edit-status--wrapper label {
  cursor: pointer;
  display: block;
  padding: 0 0 0 24px;
  position: relative;
}

.form--user-edit #edit-status--wrapper label:after {
  border-radius: 100%;
  border: 2px solid #d9d9d9;
  box-sizing: border-box;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 16px;
}

.form--user-edit #edit-roles--wrapper {
  margin-bottom: 32px;
}

.form--user-edit .field--name-role-change {
  margin-bottom: 32px;
}

.form--user-edit .field--name-role-change p {
  font-size: 1rem;
}

.form--user-edit .field--name-role-change .form-item {
  margin-bottom: 8px;
}

.form--user-edit .field--name-role-change label {
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 0;
}

.form--user-edit .form-actions {
  display: flex;
}

@media screen and (max-width: 576px) {
  .form--user-edit .form-actions {
    flex-direction: column;
  }
}

@media screen and (min-width: 577px) {
  .form--user-edit .form-actions {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media screen and (max-width: 576px) {
  .form--user-edit .form-actions .button:not(:first-child) {
    margin-top: 16px;
  }
}

@media screen and (min-width: 577px) {
  .form--user-edit .form-actions .button:not(:first-child) {
    margin-left: 16px;
  }
}

.form--user-reset-pass .password-confirm,
.form--user-reset-pass .password-field,
.form--user-reset-pass .button--primary {
  width: 100%;
}

.form--user-reset-pass .password-strength__title,
.form--user-reset-pass .password-confirm,
.form--user-reset-pass .password-suggestions,
.form--user-reset-pass .password-suggestions + .description {
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
}

.form--user-reset-pass .form-actions {
  margin-top: 32px;
}

.webform-container {
  overflow: hidden;
}

.webform-progress-tracker.progress-tracker {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style: none;
  position: relative;
}

.webform-progress-tracker.progress-tracker::after {
  background-color: #a4d7de;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 1px);
}

@media screen and (min-width: 577px) {
  .webform-progress-tracker.progress-tracker::after {
    height: 6px;
  }
}

.webform-progress-tracker .progress-step {
  font-size: 0.875rem;
  align-items: center;
  background-color: #a4d7de;
  border-radius: 100%;
  color: #ffffff;
  display: flex;
  height: 35px;
  justify-content: center;
  width: 35px;
  z-index: 1;
}

@media screen and (min-width: 577px) {
  .webform-progress-tracker .progress-step {
    font-size: 1rem;
    height: 50px;
    width: 50px;
  }
}

.webform-progress-tracker .progress-step.is-active {
  background-color: #007379;
}

.webform-progress-tracker-percentage {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  width: 100%;
  -moz-column-gap: 2px;
       column-gap: 2px;
}

.webform-progress-tracker-percentage progress::-moz-progress-bar {
  background: #007379;
}

.webform-progress-tracker-percentage progress::-webkit-progress-value {
  background: #007379;
}

.webform-progress-tracker-percentage progress::-webkit-progress-bar {
  background: #a4d7de;
}

.webform-progress-tracker-percentage progress {
  border-radius: 0px;
  width: 100%;
}

.omapeluuri-workbook-feedback-container .omapeluuri-workbook-feedback-text,
.webform-submission-form .omapeluuri-workbook-feedback-text {
  margin-bottom: 20px;
}

.omapeluuri-workbook-feedback-container details.feedback-info,
.webform-submission-form details.feedback-info {
  border-bottom: 1px solid #007478;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.omapeluuri-workbook-feedback-container details.feedback-info summary,
.webform-submission-form details.feedback-info summary {
  display: block;
  cursor: pointer;
  color: #005357;
}

.omapeluuri-workbook-feedback-container details.feedback-info summary::before,
.webform-submission-form details.feedback-info summary::before {
  margin-right: 5px;
  display: inline-block;
  transition: 0.2s;
  content: "\2139";
  font-size: 1.1em;
  border: 1px solid;
  border-radius: 300px;
  height: 20px;
  width: 20px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
}

.omapeluuri-workbook-feedback-container details summary,
.omapeluuri-workbook-feedback-container #answer-recap summary,
.webform-submission-form details summary,
.webform-submission-form #answer-recap summary {
  cursor: pointer;
  margin-bottom: 10px;
  color: #005357;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element,
.webform-submission-form details .webform-container .webform-element,
.webform-submission-form #answer-recap .webform-container .webform-element {
  font-weight: bold;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element .workbook-submission-item-value,
.omapeluuri-workbook-feedback-container details .webform-container .webform-element > ul,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element .workbook-submission-item-value,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element > ul,
.webform-submission-form details .webform-container .webform-element .workbook-submission-item-value,
.webform-submission-form details .webform-container .webform-element > ul,
.webform-submission-form #answer-recap .webform-container .webform-element .workbook-submission-item-value,
.webform-submission-form #answer-recap .webform-container .webform-element > ul {
  margin-left: 10px;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element .workbook-submission-item-value, .omapeluuri-workbook-feedback-container details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element .workbook-submission-item-value,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary,
.webform-submission-form details .webform-container .webform-element .workbook-submission-item-value,
.webform-submission-form details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary,
.webform-submission-form #answer-recap .webform-container .webform-element .workbook-submission-item-value,
.webform-submission-form #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary {
  font-weight: normal;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element .workbook-submission-item-value .gambling-diary-label, .omapeluuri-workbook-feedback-container details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .gambling-diary-label,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element .workbook-submission-item-value .gambling-diary-label,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .gambling-diary-label,
.webform-submission-form details .webform-container .webform-element .workbook-submission-item-value .gambling-diary-label,
.webform-submission-form details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .gambling-diary-label,
.webform-submission-form #answer-recap .webform-container .webform-element .workbook-submission-item-value .gambling-diary-label,
.webform-submission-form #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .gambling-diary-label {
  font-weight: bold;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element .workbook-submission-item-value .omapeluuri-workbook-single-day-explanation, .omapeluuri-workbook-feedback-container details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .omapeluuri-workbook-single-day-explanation,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element .workbook-submission-item-value .omapeluuri-workbook-single-day-explanation,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .omapeluuri-workbook-single-day-explanation,
.webform-submission-form details .webform-container .webform-element .workbook-submission-item-value .omapeluuri-workbook-single-day-explanation,
.webform-submission-form details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .omapeluuri-workbook-single-day-explanation,
.webform-submission-form #answer-recap .webform-container .webform-element .workbook-submission-item-value .omapeluuri-workbook-single-day-explanation,
.webform-submission-form #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .omapeluuri-workbook-single-day-explanation {
  text-transform: uppercase;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element .workbook-submission-item-value .workbook-gambling-diary-totals, .omapeluuri-workbook-feedback-container details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .workbook-gambling-diary-totals,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element .workbook-submission-item-value .workbook-gambling-diary-totals,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .workbook-gambling-diary-totals,
.webform-submission-form details .webform-container .webform-element .workbook-submission-item-value .workbook-gambling-diary-totals,
.webform-submission-form details .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .workbook-gambling-diary-totals,
.webform-submission-form #answer-recap .webform-container .webform-element .workbook-submission-item-value .workbook-gambling-diary-totals,
.webform-submission-form #answer-recap .webform-container .webform-element.webform-element-type-omapeluuri-workbook-gambling-diary .workbook-gambling-diary-totals {
  margin-top: 15px;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element ul,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element ul,
.webform-submission-form details .webform-container .webform-element ul,
.webform-submission-form #answer-recap .webform-container .webform-element ul {
  list-style: none;
  font-weight: normal;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element ul.workbook-3-1-answers,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element ul.workbook-3-1-answers,
.webform-submission-form details .webform-container .webform-element ul.workbook-3-1-answers,
.webform-submission-form #answer-recap .webform-container .webform-element ul.workbook-3-1-answers {
  list-style: normal;
  list-style-type: square;
  padding: 10px;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element ul li,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element ul li,
.webform-submission-form details .webform-container .webform-element ul li,
.webform-submission-form #answer-recap .webform-container .webform-element ul li {
  margin-bottom: 10px;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element ul b,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element ul b,
.webform-submission-form details .webform-container .webform-element ul b,
.webform-submission-form #answer-recap .webform-container .webform-element ul b {
  font-weight: normal;
}

.omapeluuri-workbook-feedback-container details .webform-container .webform-element#omapeluuri_3_3--omapeluuri_3_3_15 b, .omapeluuri-workbook-feedback-container details .webform-container .webform-element#omapeluuri_3_2--omapeluuri_3_2_11 b,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element#omapeluuri_3_3--omapeluuri_3_3_15 b,
.omapeluuri-workbook-feedback-container #answer-recap .webform-container .webform-element#omapeluuri_3_2--omapeluuri_3_2_11 b,
.webform-submission-form details .webform-container .webform-element#omapeluuri_3_3--omapeluuri_3_3_15 b,
.webform-submission-form details .webform-container .webform-element#omapeluuri_3_2--omapeluuri_3_2_11 b,
.webform-submission-form #answer-recap .webform-container .webform-element#omapeluuri_3_3--omapeluuri_3_3_15 b,
.webform-submission-form #answer-recap .webform-container .webform-element#omapeluuri_3_2--omapeluuri_3_2_11 b {
  font-weight: bold;
}

.omapeluuri-workbook-feedback-container .link-to-next-form,
.webform-submission-form .link-to-next-form {
  margin-top: 10px;
}

.omapeluuri-workbook-feedback-container a,
.webform-submission-form a {
  color: #005357;
}

a.button,
.button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #007379;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  padding: 0;
  text-indent: .25px;
}

a.button.plain,
.button.plain {
  padding: 0 !important;
}

a.button.small,
.button.small {
  font-size: 0.75rem;
  padding: 8px 12px;
}

a.button.medium,
.button.medium {
  font-size: 0.875rem;
  padding: 10px 16px;
}

a.button.large,
.button.large {
  font-size: 1rem;
  padding: 16px 24px;
}

a.button.large .button__icon,
.button.large .button__icon {
  height: 25px;
  width: 25px;
}

a.button span + span,
.button span + span {
  margin-left: 8px;
}

a.button .button__icon,
.button .button__icon {
  display: flex;
  height: 20px;
  width: 20px;
}

a.button .button__icon svg,
.button .button__icon svg {
  height: 100%;
  width: 100%;
}

a.button--primary,
.button--primary {
  background-color: #007379;
  border-radius: 5px;
  border: 2px solid #007379;
  color: #ffffff;
  transition: .25s background-color, .25s color, .25s border-color;
}

a.button--primary:hover, a.button--primary:focus,
.button--primary:hover,
.button--primary:focus {
  background-color: #005357;
  border-color: #005357;
  color: #ffffff;
}

a.button--primary:disabled,
.button--primary:disabled {
  background-color: #007379;
  cursor: not-allowed;
  opacity: .5;
}

a.button--primary .button__icon svg,
.button--primary .button__icon svg {
  fill: #ffffff;
}

a.button--primary.white,
.button--primary.white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #003234;
}

a.button--primary.white:hover, a.button--primary.white:focus,
.button--primary.white:hover,
.button--primary.white:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #00959c;
}

a.button--primary.white:disabled,
.button--primary.white:disabled {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #003234;
}

a.button--primary.white .button__icon svg,
.button--primary.white .button__icon svg {
  fill: #007379;
}

a.button--secondary,
.button--secondary {
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #007379;
  color: #003234;
  transition: .25s background-color, .25s color;
}

a.button--secondary:hover, a.button--secondary:focus,
.button--secondary:hover,
.button--secondary:focus {
  background-color: #007379;
  color: #ffffff;
}

a.button--secondary:disabled,
.button--secondary:disabled {
  background-color: transparent;
  color: #003234;
  cursor: not-allowed;
  opacity: .5;
}

a.button--secondary .button__icon svg,
.button--secondary .button__icon svg {
  fill: #007379;
}

a.button--secondary.white,
.button--secondary.white {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

a.button--secondary.white:hover, a.button--secondary.white:focus,
.button--secondary.white:hover,
.button--secondary.white:focus {
  background-color: #ffffff;
  color: #00959c;
}

a.button--secondary.white:disabled,
.button--secondary.white:disabled {
  background-color: transparent;
  color: #ffffff;
}

a.button--secondary.white .button__icon svg,
.button--secondary.white .button__icon svg {
  fill: #ffffff;
}

.ui-dialog .ui-dialog-buttonpane .button {
  padding: 10px;
}

main.page-main.omapeluuri div#content a.forum-new-thread {
  color: white;
  text-decoration: none;
}

main.page-main.omapeluuri div#content form.comment-form details#edit-author {
  padding-bottom: 10px;
}

main.page-main.omapeluuri div#content form.comment-form details#edit-author fieldset#edit-status--wrapper div.fieldset-wrapper div#edit-status .form-item input.form-radio {
  position: relative;
  float: left;
  top: 5px;
}

.login-link {
  font-size: 0.875rem;
  align-items: center;
  color: #2c2c2c;
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  transition: color .25s linear;
}

.login-link:focus {
  outline-offset: 4px;
  outline: 2px solid #007379;
}

.login-link__icon {
  display: flex;
  margin-right: 4px;
}

.menu-toggle {
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 50px;
  padding: 8px;
  position: relative;
  width: 50px;
}

.menu-toggle > span {
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
    visibility: hidden;
  }
}

.menu-toggle:focus {
  outline: 2px auto #007379;
}

.menu-toggle svg {
  height: 100%;
  width: 100%;
}

.menu-toggle:not(.menu-toggle--backwards) {
  margin-right: -8px;
}

.menu-toggle.menu-toggle--backwards {
  margin-left: -8px;
}

.menu-toggle__hamburger svg {
  fill: #007379;
}

.menu-toggle__cross svg {
  fill: #828282;
}

.menu-toggle__arrow {
  display: flex;
  height: 35px;
  width: 35px;
}

.menu-toggle__arrow svg {
  fill: #2c2c2c;
  height: 100%;
  width: 100%;
}

.menu-toggle__expand {
  display: flex;
  height: 35px;
  width: 35px;
}

.menu-toggle__expand svg {
  fill: #2c2c2c;
  height: 100%;
  width: 100%;
}

.message {
  margin: 32px auto;
}

.message a {
  color: inherit;
  font-weight: bold;
}

.message__body {
  border-radius: 8px;
  border: 1px solid transparent;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  padding: 16px 32px;
  text-align: center;
  word-break: break-word;
}

.message--status .message__body {
  background-color: #e0f5cb;
  border-color: #a0c17b;
  color: #42671a;
}

.message--warning .message__body {
  background-color: #fcf8e3;
  border-color: #d4bc92;
  color: #8a6d3b;
}

.message--error .message__body {
  background-color: #ffd6dc;
  border-color: #ce8f97;
  color: #b43b4b;
}

.notification {
  align-items: center;
  background-color: #00b6be;
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

@media screen and (min-width: 992px) {
  .notification {
    display: none;
    visibility: hidden;
  }
}

.notification__content p {
  font-size: 0.875rem;
  margin: 0;
}

.notification__content * {
  color: #ffffff;
}

.notification-toggle {
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  padding: 0;
  position: relative;
}

.notification-toggle:focus {
  outline: 2px auto #007379;
}

.notification-toggle svg {
  height: 100%;
  width: 100%;
}

.notification-toggle__cross {
  display: flex;
  height: 20px;
  width: 20px;
}

.notification-toggle__cross svg {
  fill: #000000;
}

.private-message-notification {
  font-size: 0.875rem;
  align-items: center;
  background-color: rgba(0, 115, 121, 0.2);
  border-radius: 100%;
  color: #007379;
  display: flex;
  flex-shrink: 0;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  line-height: 1;
  margin-left: 8px;
  width: 24px;
}

.rating-button {
  font-size: 1rem;
  align-items: center;
  color: #007379;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 8px;
}

.rating-button:hover svg:nth-child(1), .rating-button:focus svg:nth-child(1) {
  display: none;
  visibility: hidden;
}

.rating-button:hover svg:nth-child(2), .rating-button:focus svg:nth-child(2) {
  display: inline-block;
  visibility: visible;
}

.rating-button svg {
  fill: #007379;
}

.rating-button svg:nth-child(2) {
  display: none;
  visibility: hidden;
}

.rating-button .count {
  display: inline-block;
  margin-left: 8px;
}

.rating-button.voted svg:nth-child(1) {
  display: none;
  visibility: hidden;
}

.rating-button.voted svg:nth-child(2) {
  display: inline-block;
  visibility: visible;
}

.social-sharing {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  align-items: center;
  background-color: #ffffff;
  border-radius: 3px;
  display: inline-flex;
  justify-content: center;
  padding: 16px;
}

.social-sharing__title {
  margin-bottom: 0;
  margin-right: 16px;
}

.social-sharing-buttons {
  align-items: center;
  display: flex;
  list-style: none;
}

.social-sharing-buttons__item + .social-sharing-buttons__item {
  margin-left: 8px;
}

.social-sharing-buttons__link {
  cursor: pointer;
  display: flex;
  height: 24px;
  position: relative;
  width: 24px;
}

.social-sharing-buttons__link > svg {
  fill: #000000;
}

.breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  word-break: break-word;
}

.breadcrumb__item {
  font-size: 1rem;
  align-items: center;
  display: flex;
  line-height: 24px;
}

.hero--light .breadcrumb__item > a, .hero--light
.breadcrumb__item > span {
  color: #000000;
}

.hero--dark .breadcrumb__item > a, .hero--dark
.breadcrumb__item > span {
  color: #ffffff;
}

.banner--light .breadcrumb__item > a, .banner--light
.breadcrumb__item > span {
  color: #000000;
}

.banner--dark .breadcrumb__item > a, .banner--dark
.breadcrumb__item > span {
  color: #ffffff;
}

.breadcrumb__home,
.breadcrumb__divider {
  display: flex;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

.breadcrumb__home svg,
.breadcrumb__divider svg {
  height: 100%;
  width: 100%;
}

.hero--light .breadcrumb__home svg, .hero--light
.breadcrumb__divider svg {
  fill: #000000;
}

.hero--dark .breadcrumb__home svg, .hero--dark
.breadcrumb__divider svg {
  fill: #ffffff;
}

.banner--light .breadcrumb__home svg, .banner--light
.breadcrumb__divider svg {
  fill: #000000;
}

.banner--dark .breadcrumb__home svg, .banner--dark
.breadcrumb__divider svg {
  fill: #ffffff;
}

.breadcrumb__divider {
  margin: 0 4px;
}

.comment-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.comment-reply-page .comment-tools {
  display: none;
  visibility: hidden;
}

.comment-tools__item {
  margin-right: 16px;
}

.comment-tools__item a,
.comment-tools__item span {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.comment--thread .comment-tools__item a, .comment--thread
.comment-tools__item span {
  font-size: 0.875rem;
}

.comment-tools__item:last-of-type {
  margin-right: 0;
}

.language-switch__wrapper {
  position: relative;
}

.language-switch__button {
  font-size: 0.875rem;
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #2c2c2c;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.language-switch__button:focus {
  outline: 2px solid #007379;
}

.language-switch__button[aria-expanded=true] {
  outline: 2px solid #007379;
}

.language-switch__button-expand {
  display: flex;
  height: 18px;
  width: 18px;
}

.language-switch__button-expand svg {
  fill: #2c2c2c;
  height: 100%;
  width: 100%;
}

.language-switch__dropdown {
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #007379;
  bottom: calc(100% + 8px);
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  opacity: 1;
  position: absolute;
  right: 0;
  z-index: 1000;
}

@media screen and (min-width: 992px) {
  .language-switch__dropdown {
    bottom: initial;
    top: calc(100% + 8px);
  }
}

.language-switch__dropdown:not(.is-active) {
  display: none;
}

.language-switch__dropdown .language-links__link {
  font-size: 0.875rem;
  color: #2c2c2c;
  display: inline-block;
  font-weight: 600;
  padding: 10px 16px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}

.language-switch__dropdown .language-links__link.is-active, .language-switch__dropdown .language-links__link:focus, .language-switch__dropdown .language-links__link:hover {
  background-color: rgba(0, 182, 190, 0.1);
}

.language-switch__dropdown .language-links__link.is-active {
  font-weight: 700;
}

.language-switch__dropdown .language-links__link:focus {
  outline: 1px auto #007379;
}

.language-links {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.language-links__link {
  font-family: "Open Sans", sans-serif;
}

.navigation.contextual-region {
  position: static;
}

@media screen and (min-width: 992px) {
  .navigation.navigation--mobile {
    display: none;
    visibility: hidden;
  }
}

.navigation.navigation--mobile:last-of-type {
  margin-top: 16px;
}

.navigation.navigation--desktop {
  z-index: 100;
}

@media screen and (max-width: 991px) {
  .navigation.navigation--desktop {
    display: none;
    visibility: hidden;
  }
}

.navigation.navigation--omapeluuri {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 3px;
  min-width: 250px;
  position: relative;
}

.navigation.navigation--omapeluuri:not(.navigation--omapeluuri--mobile) {
  border-top: 2px solid #007379;
}

.navigation.navigation--omapeluuri--user-tools {
  display: none;
  position: absolute;
  right: 64px;
  top: 100%;
  visibility: hidden;
  z-index: 100;
}

.navigation.navigation--omapeluuri--user-tools.is-open {
  display: inline-block;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  .navigation.navigation--omapeluuri--mobile {
    display: none;
    visibility: hidden;
  }
}

.navigation.navigation--omapeluuri--desktop {
  min-width: initial;
}

@media screen and (max-width: 991px) {
  .navigation.navigation--omapeluuri--desktop {
    display: none;
    visibility: hidden;
  }
}

.menu {
  display: flex;
  list-style: none;
}

.menu.menu--overlay {
  flex-direction: column;
}

.menu.menu--footer {
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .menu.menu--footer {
    flex-direction: row;
  }
}

.menu.menu--legal {
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .menu.menu--legal {
    flex-direction: row;
  }
}

.menu.menu--omapeluuri {
  flex-direction: column;
}

.menu.menu--omapeluuri-dropdown {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
  background-color: #ffffff;
  border-radius: 3px;
  display: none;
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}

.menu.menu--omapeluuri-dropdown.is-open {
  display: block;
  visibility: visible;
}

.menu--overlay .menu__item:not(:first-of-type) {
  margin-top: 16px;
}

.menu--main .menu__item:not(:first-of-type) {
  margin-left: 8px;
}

@media screen and (min-width: 1200px) {
  .menu--main .menu__item:not(:first-of-type) {
    margin-left: 16px;
  }
}

@media screen and (min-width: 992px) {
  .menu--footer .menu__item {
    flex-shrink: 0;
    width: calc(25% - 16px);
  }
}

.menu--footer .menu__item:not(:first-of-type) {
  margin-top: 16px;
}

@media screen and (min-width: 992px) {
  .menu--footer .menu__item:not(:first-of-type) {
    margin-left: 32px;
    margin-top: 0;
  }
}

.menu--legal .menu__item:not(:first-of-type) {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .menu--legal .menu__item:not(:first-of-type) {
    margin-left: 32px;
    margin-top: 0;
  }
}

.menu__link,
.menu__button {
  background-color: transparent;
  cursor: pointer;
  font-family: "Work Sans", "Arial", sans-serif;
  line-height: 1.5;
}

.menu--overlay .menu__link, .menu--overlay
.menu__button {
  font-size: 1.125rem;
  border: 0;
  color: #2c2c2c;
  padding: 8px 0;
  transition: none;
}

.menu--overlay .menu__link:focus, .menu--overlay
.menu__button:focus {
  outline-offset: 4px;
  outline: 2px solid #007379;
}

.menu--overlay .menu__link.is-active, .menu--overlay
.menu__button.is-active {
  color: #007379;
}

.menu--main .menu__link, .menu--main
.menu__button {
  font-size: 0.875rem;
  align-items: center;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border: 2px solid transparent;
  color: #000000;
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 24px 16px 32px;
  transition: background-color .25s ease-in, border-top-color .25s ease-in;
}

@media screen and (min-width: 1200px) {
  .menu--main .menu__link, .menu--main
  .menu__button {
    font-size: 1rem;
  }
}

.menu--main .menu__link:hover, .menu--main .menu__link:focus, .menu--main
.menu__button:hover, .menu--main
.menu__button:focus {
  background-color: #fbfbfb;
  border-top-color: #007379;
  color: #000000;
}

.menu--main .menu__link.is-active, .menu--main
.menu__button.is-active {
  background-color: #fbfbfb;
  border-top-color: #007379;
  color: #000000;
}

.menu--main .menu__link.is-active .menu-toggle__expand, .menu--main
.menu__button.is-active .menu-toggle__expand {
  transform: rotate(180deg);
}

.menu__link {
  display: inline-block;
}

.menu--legal .menu__link {
  font-size: 1rem;
  color: #000000;
}

.menu--omapeluuri .menu__link {
  font-size: 1rem;
  color: #828282;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 16px;
  transition: none;
  width: 100%;
  display: flex;
  align-items: center;
}

.menu--omapeluuri .menu__link.is-active {
  background-color: rgba(0, 182, 190, 0.05);
  box-shadow: inset 5px 0 0 0 #00b6be;
  color: #000000;
}

.menu--omapeluuri .menu__link.is-active .menu__link-icon svg {
  fill: #007379;
}

.menu--omapeluuri .menu__link:hover, .menu--omapeluuri .menu__link:focus {
  background-color: rgba(0, 182, 190, 0.05);
  box-shadow: inset 5px 0 0 0 #00b6be;
  color: #000000;
}

.menu--omapeluuri .menu__link:hover .menu__link-icon svg, .menu--omapeluuri .menu__link:focus .menu__link-icon svg {
  fill: #007379;
}

.menu--omapeluuri .menu__link .menu__link-icon {
  display: flex;
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

.menu--omapeluuri .menu__link .menu__link-icon svg {
  fill: #828282;
  width: 100%;
  height: 100%;
}

.menu--overlay .menu__button {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.menu--footer .menu__button {
  font-size: 1.125rem;
  align-items: center;
  border: 0;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  padding: 16px 0;
  text-transform: uppercase;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .menu--footer .menu__button {
    display: none;
    visibility: hidden;
  }
}

.menu--overlay .menu__drawer {
  background-color: #fbfbfb;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.menu--main .menu__dropdown {
  background-color: #fbfbfb;
  display: flex;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .menu--footer .menu__dropdown {
    display: inline-block !important;
  }
}

.menu--footer .menu__heading {
  display: none;
  visibility: hidden;
}

@media screen and (min-width: 992px) {
  .menu--footer .menu__heading {
    font-size: 1.125rem;
    color: #007379;
    display: block;
    font-weight: 600;
    margin-bottom: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
    visibility: visible;
  }
}

.overlay-menu {
  bottom: 0;
  display: flex;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform .25s, visibility .25s;
  visibility: hidden;
  z-index: 1000;
}

.overlay-menu.is-open {
  transform: translateZ(0);
  visibility: visible;
}

@media screen and (min-width: 992px) {
  .overlay-menu {
    display: none;
    visibility: hidden;
  }
}

.overlay-menu__container {
  background-color: #ffffff;
  height: 100%;
  overflow-y: auto;
  width: 100%;
}

.overlay-menu__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

@media screen and (min-width: 577px) {
  .overlay-menu__header {
    padding: 16px 48px;
  }
}

@media screen and (min-width: 768px) {
  .overlay-menu__header {
    padding: 16px 64px;
  }
}

.overlay-menu__search {
  padding: 16px;
}

@media screen and (min-width: 577px) {
  .overlay-menu__search {
    padding: 16px 48px;
  }
}

@media screen and (min-width: 768px) {
  .overlay-menu__search {
    padding: 16px 64px;
  }
}

.overlay-menu__content {
  padding: 16px;
  flex-grow: 1;
}

@media screen and (min-width: 577px) {
  .overlay-menu__content {
    padding: 16px 48px;
  }
}

@media screen and (min-width: 768px) {
  .overlay-menu__content {
    padding: 16px 64px;
  }
}

.overlay-menu__content .navigation--omapeluuri--mobile {
  margin-top: 48px;
}

.overlay-menu__content .menu-content-liftup {
  margin-top: 48px;
}

.overlay-menu__footer {
  padding: 16px;
}

@media screen and (min-width: 577px) {
  .overlay-menu__footer {
    padding: 16px 48px;
  }
}

@media screen and (min-width: 768px) {
  .overlay-menu__footer {
    padding: 16px 64px;
  }
}

.overlay-menu__footer .button {
  margin-top: 32px;
  text-align: center;
  width: 100%;
}

.overlay-menu__footer-item--top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.pager {
  display: block;
}

.pager__items {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 48px 0;
  padding: 0 16px;
}

.pager__item {
  align-items: center;
  display: flex;
  justify-content: center;
}

.pager__item:not(:first-child) {
  margin-left: 16px;
}

.pager__item.pager__item--previous a, .pager__item.pager__item--next a {
  background-color: transparent;
}

.pager__item.pager__item--previous a:hover, .pager__item.pager__item--previous a:focus, .pager__item.pager__item--next a:hover, .pager__item.pager__item--next a:focus {
  background-color: transparent;
}

.pager__item.pager__item--previous a svg, .pager__item.pager__item--next a svg {
  height: 24px;
  width: 24px;
}

.pager__item a {
  font-size: 1rem;
  align-items: center;
  background-color: #eeeeee;
  border-radius: 100%;
  color: #2c2c2c;
  display: flex;
  justify-content: center;
  min-height: 38px;
  min-width: 38px;
  padding: 4px;
  text-decoration: none;
  transition: none;
}

.pager__item a:hover, .pager__item a:focus {
  background-color: #007379;
  color: #ffffff;
}

.pager__item.is-active a {
  background-color: #007379;
  color: #ffffff;
  pointer-events: none;
}

.pager__item.is-disabled {
  cursor: not-allowed;
  display: none;
  visibility: hidden;
}

.pager__item.is-disabled a {
  pointer-events: none;
}

.pager__item--ellipsis {
  min-height: 38px;
  min-width: 38px;
}

.sub-menu {
  list-style: none;
  margin-top: 0;
}

.menu--overlay .sub-menu.is-level--1 {
  padding: 16px;
}

@media screen and (min-width: 577px) {
  .menu--overlay .sub-menu.is-level--1 {
    padding: 16px 48px;
  }
}

@media screen and (min-width: 768px) {
  .menu--overlay .sub-menu.is-level--1 {
    padding: 16px 64px;
  }
}

.menu--overlay .sub-menu.is-level--1 > .sub-menu__item {
  margin-bottom: 32px;
}

.menu--main .sub-menu.is-level--1 {
  display: flex;
  padding-bottom: 64px;
  padding-top: 48px;
  width: 100%;
}

.menu--main .sub-menu.is-level--1 > .sub-menu__item {
  flex: 0 1 250px;
}

.menu--main .sub-menu.is-level--1 > .sub-menu__item:not(:last-child) {
  margin-right: 32px;
}

.sub-menu.is-level--2 > .sub-menu__item {
  line-height: normal;
}

.sub-menu.is-level--2 > .sub-menu__item:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (min-width: 1200px) {
  .sub-menu.is-level--2 > .sub-menu__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.menu--overlay .sub-menu__item {
  line-height: normal;
}

.menu--footer .sub-menu__item {
  line-height: normal;
}

.menu--footer .sub-menu__item:not(:last-of-type) {
  margin-bottom: 16px;
}

.menu--overlay .sub-menu__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

@media screen and (min-width: 577px) {
  .menu--overlay .sub-menu__header {
    padding: 16px 48px;
  }
}

@media screen and (min-width: 768px) {
  .menu--overlay .sub-menu__header {
    padding: 16px 64px;
  }
}

.menu--overlay .sub-menu__header .menu-toggle__cross svg {
  fill: #2c2c2c;
}

.sub-menu__heading {
  font-size: 0.875rem;
  color: #007379;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
  .sub-menu__heading {
    font-size: 1rem;
  }
}

.menu--overlay .sub-menu__heading {
  margin-bottom: 24px;
}

.menu--main .sub-menu__heading {
  margin-bottom: 16px;
}

.sub-menu__link {
  font-size: 0.875rem;
  line-height: 1.45;
}

@media screen and (min-width: 1200px) {
  .sub-menu__link {
    font-size: 1rem;
  }
}

.sub-menu__link.is-active {
  color: #00959c;
  font-weight: 500;
}

.menu--overlay .sub-menu__link {
  color: #828282;
  padding: 8px 0;
  transition: none;
}

.menu--overlay .sub-menu__link:focus {
  color: #00959c;
  outline-offset: 4px;
  outline: 2px solid #007379;
}

.menu--main .sub-menu__link {
  color: #000000;
  display: inline-block;
}

.menu--main .sub-menu__link:hover, .menu--main .sub-menu__link:focus {
  color: #00959c;
}

.menu--footer .sub-menu__link {
  font-size: 1rem;
  color: #000000;
  display: inline-block;
}

@media screen and (min-width: 992px) {
  .menu--footer .sub-menu__link {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1200px) {
  .menu--footer .sub-menu__link {
    font-size: 1rem;
  }
}

.menu--footer .sub-menu__link:hover, .menu--footer .sub-menu__link:focus {
  color: #00959c;
}

.sub-menu--omapeluuri .sub-menu__link {
  font-size: 1rem;
  color: #828282;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 16px;
  transition: none;
  width: 100%;
  display: flex;
  align-items: center;
}

.sub-menu--omapeluuri .sub-menu__link.is-active {
  background-color: rgba(0, 182, 190, 0.05);
  box-shadow: inset 5px 0 0 0 #00b6be;
  color: #000000;
}

.sub-menu--omapeluuri .sub-menu__link.is-active .menu__link-icon svg {
  fill: #007379;
}

.sub-menu--omapeluuri .sub-menu__link:hover, .sub-menu--omapeluuri .sub-menu__link:focus {
  background-color: rgba(0, 182, 190, 0.05);
  box-shadow: inset 5px 0 0 0 #00b6be;
  color: #000000;
}

.sub-menu--omapeluuri .sub-menu__link:hover .menu__link-icon svg, .sub-menu--omapeluuri .sub-menu__link:focus .menu__link-icon svg {
  fill: #007379;
}

.sub-menu--omapeluuri .sub-menu__link .menu__link-icon {
  display: flex;
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

.sub-menu--omapeluuri .sub-menu__link .menu__link-icon svg {
  fill: #828282;
  width: 100%;
  height: 100%;
}

.tasks {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px auto;
}

.comment-edit-page .tasks,
.comment-delete-page .tasks {
  margin-top: 0;
}

.tasks__item {
  margin: 8px 4px;
}

.tasks__item:last-child {
  margin-right: 0;
}

.tasks__link {
  font-size: 0.875rem;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #007379;
  color: #003234;
  cursor: pointer;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: .25px;
  line-height: normal;
  padding: 10px 16px;
  text-indent: .25px;
  transition: .25s background-color, .25s color;
}

.tasks__link:hover, .tasks__link:focus {
  background-color: #007379;
  color: #ffffff;
}

.tasks__link.is-active {
  background-color: #007379;
  color: #ffffff;
}

.omapeluuri__content-container .omapeluuri__content a.tasks__link {
  text-decoration: none;
}

.omapeluuri__content-container .omapeluuri__content a.tasks__link.is-active {
  background-color: #007379;
  color: #ffffff;
}

.omapeluuri__content-container .omapeluuri__content a.tasks__link.is-active:hover, .omapeluuri__content-container .omapeluuri__content a.tasks__link.is-active:focus {
  background-color: #005357;
}

.omapeluuri__content-container .omapeluuri__content a.tasks__link:hover, .omapeluuri__content-container .omapeluuri__content a.tasks__link:focus {
  background-color: #007379;
  color: #ffffff;
}

.user-tools {
  align-items: center;
  display: flex;
}

@media screen and (max-width: 360px) {
  .user-tools--header {
    margin-right: 8px;
  }
}

@media screen and (max-width: 991px) {
  .user-tools--header {
    margin-left: auto;
    margin-right: 16px;
  }
}

.user-tools__user-information {
  display: flex;
  flex-direction: column;
}

.user-tools--header .user-tools__user-information {
  align-items: flex-end;
}

@media screen and (min-width: 992px) {
  .user-tools__user-information {
    margin-right: 16px;
  }
}

.user-tools__username {
  font-size: 1rem;
  margin-bottom: 0;
}

@media screen and (max-width: 360px) {
  .user-tools__username {
    font-size: 0.875rem;
  }
}

.user-tools__omapeluuri-link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (max-width: 360px) {
  .user-tools__omapeluuri-link {
    font-size: 0.875rem;
  }
}

.user-tools-toggle {
  align-items: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  padding: 0;
  position: relative;
}

@media screen and (max-width: 991px) {
  .user-tools-toggle {
    display: none;
    visibility: hidden;
  }
}

.user-tools-toggle:focus {
  outline: 2px auto #007379;
}

.user-tools-toggle svg {
  height: 100%;
  width: 100%;
}

.user-tools-toggle .user-tools-toggle__hamburger {
  display: flex;
  height: 35px;
  width: 35px;
}

.user-tools-toggle .user-tools-toggle__hamburger svg {
  fill: #000000;
}

.paragraph--content-boxes.paragraph {
  padding-bottom: 48px;
  padding-top: 48px;
}

.paragraph--content-boxes > .paragraph__title {
  margin-bottom: 64px;
  text-align: center;
}

.paragraph--content-boxes .paragraph__list {
  list-style: none;
}

.paragraph--content-boxes .paragraph__list.has-length--1 {
  display: flex;
  justify-content: center;
}

.paragraph--content-boxes .paragraph__list.has-length--2 {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .paragraph--content-boxes .paragraph__list.has-length--2 {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
  }
}

.paragraph--content-boxes .paragraph__list.has-length--3 {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .paragraph--content-boxes .paragraph__list.has-length--3 {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--content-boxes .paragraph__list.has-length--3 {
    flex-wrap: initial;
    justify-content: space-between;
  }
}

.paragraph--content-box {
  margin-bottom: 16px;
  max-width: 452px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .has-length--2 .paragraph--content-box {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .has-length--2 .paragraph--content-box:last-child {
    margin-left: 32px;
  }
}

@media screen and (min-width: 768px) {
  .has-length--3 .paragraph--content-box {
    width: calc(100% / 2 - 16px);
    margin-left: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .has-length--3 .paragraph--content-box {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .has-length--3 .paragraph--content-box:first-child {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .has-length--3 .paragraph--content-box:last-child {
    margin-left: 0;
  }
}

.paragraph--content-box:last-child {
  margin-bottom: 0;
}

.paragraph--content-box .paragraph__background {
  background-repeat: no-repeat;
  background-size: cover;
}

.paragraph--content-box .paragraph__link,
.paragraph--content-box .paragraph__content-container {
  background-color: #f4f4f4;
  color: initial;
  display: block;
  padding-top: 139.70894%;
  position: relative;
}

@media screen and (min-width: 992px) {
  .paragraph--content-box .paragraph__link,
  .paragraph--content-box .paragraph__content-container {
    padding-top: 100%;
  }
}

.paragraph--content-box .paragraph__link:hover, .paragraph--content-box .paragraph__link:focus {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
}

.paragraph--content-box .paragraph__content {
  background-color: #ffffff;
  border-radius: 5px;
  bottom: 32px;
  left: 32px;
  padding: 32px;
  position: absolute;
  right: 32px;
}

.paragraph--content-box .paragraph__lead {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.paragraph--cta {
  background-color: #fbfbfb;
  overflow: hidden;
  position: relative;
}

.paragraph--cta .paragraph__container {
  padding-bottom: 48px;
  padding-top: 48px;
  position: relative;
}

.paragraph--cta .paragraph__container:before {
  background-image: linear-gradient(to right, #fbfbfb, 95%, rgba(251, 251, 251, 0));
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.paragraph--cta .paragraph__container:after {
  background-image: url("../images/laineet_turk_rgb.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  height: 699px;
  left: -300px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-45deg);
  width: 516px;
}

@media screen and (min-width: 577px) {
  .paragraph--cta .paragraph__container:after {
    left: -250px;
  }
}

@media screen and (min-width: 768px) {
  .paragraph--cta .paragraph__container:after {
    left: -200px;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--cta .paragraph__container:after {
    height: 1000px;
    left: -500px;
    top: 0;
    width: 750px;
  }
}

.paragraph--cta .paragraph__content {
  position: relative;
  text-align: center;
  z-index: 100;
}

.paragraph--cta .paragraph__title {
  margin-bottom: 16px;
}

.paragraph--cta .paragraph__text {
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.paragraph--cta .paragraph__actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .paragraph--cta .paragraph__actions {
    flex-direction: row;
  }
}

.paragraph--cta .paragraph__link {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .paragraph--cta .paragraph__link {
    margin-left: 16px;
    margin-top: 0;
  }
}

.paragraph--cta .paragraph__link:first-of-type {
  margin-left: 0;
  margin-top: 0;
}

.paragraph--faq {
  background-color: #fbfbfb;
}

.paragraph--faq.paragraph {
  padding-bottom: 48px;
  padding-top: 48px;
}

.paragraph--faq .paragraph__title {
  margin-bottom: 16px;
}

.paragraph--faq .paragraph__description {
  margin-bottom: 32px;
}

.paragraph--faq .paragraph__description p:last-of-type {
  margin-bottom: 0;
}

.paragraph--faq .paragraph__link {
  display: table;
  margin: 24px auto 0;
}

.paragraph--file {
  list-style: none;
}

.files__item + .files__item {
  margin-top: 16px;
}

.file__link {
  align-items: center;
  background-color: transparent;
  border-radius: 3px;
  border: 0;
  border: 1px solid #eeeeee;
  color: #000000;
  cursor: pointer;
  display: flex;
  font-family: "Work Sans", "Arial", sans-serif;
  justify-content: space-between;
  margin: 0;
  padding: 16px;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 400px) {
  .file__link {
    flex-direction: column;
    align-items: flex-start;
  }
}

.file__link:hover .file__icon svg, .file__link:focus .file__icon svg {
  fill: #007379;
}

.file__information {
  align-items: center;
  display: flex;
  flex-shrink: 0;
}

@media screen and (max-width: 400px) {
  .file__information {
    margin-top: 16px;
    width: 100%;
  }
}

.file__icon {
  height: 24px;
  width: 24px;
}

.file__icon svg {
  fill: #828282;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 400px) {
  .file__icon {
    margin-left: auto;
  }
}

.file__size {
  margin: 0 16px 0 8px;
}

.file__extension,
.file__size {
  font-size: 0.75rem;
  align-items: center;
  background-color: #f4f4f4;
  border-radius: 3px;
  border: 0;
  color: #2c2c2c;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  padding: 8px 12px;
  text-indent: .25px;
  text-transform: uppercase;
}

.file__name {
  font-size: 1rem;
  display: inline-block;
  margin-right: 16px;
}

.paragraph--hero-1:after {
  background-image: url("../images/lumi_turk_rgb.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: -50%;
  top: 35%;
  transform: translateY(25%);
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1:after {
    right: 0;
    transform: translate(256px, 25%) rotate(25deg);
    top: 0;
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--hero-1:after {
    transform: translate(320px, 25%) rotate(25deg);
  }
}

@media screen and (min-width: 1375px) {
  .paragraph--hero-1:after {
    transform: translate(384px, 25%) rotate(25deg);
  }
}

@media screen and (min-width: 1500px) {
  .paragraph--hero-1:after {
    transform: translate(448px, 25%) rotate(25deg);
  }
}

.paragraph--hero-1 .paragraph__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 64px;
  padding-top: 64px;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .paragraph--hero-1 .paragraph__container {
    padding-bottom: 64px;
    padding-top: 64px;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1 .paragraph__container {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  .paragraph--hero-1 .paragraph__container {
    max-width: 828px;
  }
}

.paragraph--hero-1 .paragraph__content {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1 .paragraph__content {
    width: 50%;
    text-align: left;
    flex-shrink: 0;
  }
}

.paragraph--hero-1 .paragraph__title {
  margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1 .paragraph__title {
    font-size: 2.375rem;
    line-height: 1.56;
  }
}

.paragraph--hero-1 .paragraph__lead {
  font-size: 1.125rem;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .paragraph--hero-1 .paragraph__lead {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1 .paragraph__lead {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .paragraph--hero-1 .paragraph__link {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  .paragraph--hero-1 .paragraph__link--secondary {
    margin-top: 32px;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1 .paragraph__link--secondary {
    font-size: 1rem;
    margin-left: 32px;
  }
}

.paragraph--hero-1 .paragraph__image {
  margin-top: 32px;
}

.paragraph--hero-1 .paragraph__image img {
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1 .paragraph__image img {
    margin-left: auto;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--hero-1 .paragraph__image {
    margin-top: 0;
    width: 50%;
    padding-left: 48px;
  }
}

/* changes for "Peluuri 20 Years" front page */
body.path-frontpage .paragraph--hero-1:after {
  background-image: none;
}

body.path-frontpage .paragraph--hero-1 .paragraph__title {
  color: #c71882;
}

@media screen and (min-width: 768px) {
  body.path-frontpage .paragraph--hero-1 .paragraph__title {
    font-size: 3.375rem;
    line-height: 1.1;
  }
}

.paragraph--hero-2 .paragraph__breadcrumb {
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .paragraph--hero-2 .paragraph__breadcrumb {
    margin-bottom: 64px;
  }
}

.paragraph--hero-2 .paragraph__container {
  position: relative;
}

@media screen and (min-width: 992px) {
  .paragraph--hero-2 .paragraph__background-image:after {
    background-image: url("../images/viivat_turk_rgb.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto 500px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.paragraph--hero-2 .paragraph__title {
  margin: 0;
  position: relative;
}

.paragraph--hero-2 .paragraph__content {
  padding-bottom: 96px;
}

@media screen and (min-width: 992px) {
  .paragraph--hero-3 {
    min-height: 400px;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--hero-3.has-image .paragraph__container:after {
    background-image: url("../images/sade_valk_rgb.svg");
  }
}

.paragraph--hero-3 .paragraph__container {
  position: relative;
}

@media screen and (min-width: 992px) {
  .paragraph--hero-3 .paragraph__container {
    min-height: 400px;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--hero-3 .paragraph__container:after {
    background-image: url("../images/sade_turk_rgb.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto 700px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: -50%;
    top: 0;
    transform: translateX(-25%);
  }
}

.paragraph--hero-3 .paragraph__breadcrumb + .paragraph__content {
  padding-top: calc(64px - 56px);
}

.paragraph--hero-3 .paragraph__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding-bottom: 64px;
  padding-top: 64px;
  position: relative;
  text-align: center;
  z-index: 10;
}

.paragraph--hero-3 .paragraph__title {
  color: #ffffff;
  margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
  .paragraph--hero-3 .paragraph__title {
    font-size: 2.375rem;
    line-height: 1.56;
  }
}

.paragraph--hero-3 .paragraph__lead {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .paragraph--hero-3 .paragraph__lead {
    font-size: 1.125rem;
  }
}

.paragraph--hero-3 .paragraph__actions {
  margin-top: 32px;
}

@media screen and (max-width: 991px) {
  .paragraph--hero-3 .paragraph__link {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 991px) {
  .paragraph--hero-3 .paragraph__link--secondary {
    margin-top: 16px;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--hero-3 .paragraph__link--secondary {
    font-size: 1rem;
    margin-left: 16px;
  }
}

.paragraph--icon-boxes {
  list-style: none;
}

.paragraph--icon-boxes.paragraph {
  padding-bottom: 48px;
  padding-top: 48px;
}

.paragraph--icon-boxes.has-length--1 {
  display: flex;
  justify-content: center;
}

.paragraph--icon-boxes.has-length--2 {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .paragraph--icon-boxes.has-length--2 {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
  }
}

.paragraph--icon-boxes.has-length--3 {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .paragraph--icon-boxes.has-length--3 {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--icon-boxes.has-length--3 {
    flex-wrap: initial;
    justify-content: space-between;
  }
}

.paragraph--icon-box {
  margin-bottom: 16px;
  max-width: 350px;
  width: 100%;
  text-align: center;
}

.paragraph--icon-box.paragraph {
  margin-bottom: 64px;
}

.paragraph--icon-box .paragraph__icon {
  margin: 0 auto 32px;
  max-width: 150px;
}

.paragraph--icon-box .paragraph__icon img {
  border-radius: 100%;
  width: 100%;
}

.paragraph--icon-box .paragraph__text {
  font-size: 1rem;
  margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .has-length--2 .paragraph--icon-box {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .has-length--2 .paragraph--icon-box:last-child {
    margin-left: 64px;
  }
}

@media screen and (min-width: 1200px) {
  .has-length--2 .paragraph--icon-box:last-child {
    margin-left: 192px;
  }
}

@media screen and (min-width: 768px) {
  .has-length--3 .paragraph--icon-box {
    width: calc(100% / 2 - 32px);
    margin-left: 64px;
  }
}

@media screen and (min-width: 1200px) {
  .has-length--3 .paragraph--icon-box {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .has-length--3 .paragraph--icon-box:first-child {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .has-length--3 .paragraph--icon-box:last-child {
    margin-left: 0;
  }
}

.paragraph--icon-box:last-child {
  margin-bottom: 0;
}

.paragraph--latest-articles {
  padding-bottom: 48px;
  padding-top: 48px;
}

.paragraph--media-with-text-boxes {
  overflow: hidden;
}

.paragraph--media-with-text-boxes.paragraph {
  padding-bottom: 48px;
  padding-top: 48px;
}

.paragraph--media-with-text-boxes .paragraph__header {
  margin-bottom: 64px;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text-boxes .paragraph__content {
    align-items: flex-start;
    display: flex;
  }
}

.paragraph--media-with-text-boxes .paragraph__image {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text-boxes .paragraph__image {
    width: 50%;
  }
}

.paragraph--media-with-text-boxes .paragraph__image img {
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  margin: 0 auto;
}

.paragraph--media-with-text-boxes .paragraph__image:before {
  background-image: url("../images/rae_turk_rgb.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  bottom: -25%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: -25%;
  z-index: -1;
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text-boxes .paragraph__image:before {
    bottom: -10%;
    height: 50%;
    left: 50%;
    right: 0;
  }
}

.paragraph__text-boxes {
  list-style: none;
  margin-bottom: 64px;
}

@media screen and (min-width: 1200px) {
  .paragraph__text-boxes {
    margin-bottom: 0;
    order: 2;
    padding-left: 64px;
    width: 50%;
  }
}

.paragraph--media-with-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.paragraph--media-with-text:after {
  background-image: url("../images/sade_turk_rgb.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  content: "";
  height: 100%;
  left: -25%;
  opacity: .5;
  position: absolute;
  right: -25%;
  top: 35%;
  transform: translateY(25%);
  z-index: -1;
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text:after {
    background-position: left;
    bottom: 0;
    left: 32px;
    right: 0;
    top: 64px;
  }
}

@media screen and (min-width: 1375px) {
  .paragraph--media-with-text:after {
    left: 64px;
  }
}

@media screen and (min-width: 1500px) {
  .paragraph--media-with-text:after {
    left: 96px;
  }
}

.paragraph--media-with-text.paragraph {
  padding-bottom: 48px;
  padding-top: 48px;
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.paragraph--media-with-text .paragraph__image {
  flex-shrink: 0;
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text .paragraph__image img {
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text .paragraph__image {
    order: 1;
    padding-right: 48px;
    width: 55%;
  }
}

.paragraph--media-with-text .paragraph__content {
  flex-shrink: 0;
  margin-bottom: 64px;
}

@media screen and (min-width: 1200px) {
  .paragraph--media-with-text .paragraph__content {
    margin-bottom: 0;
    order: 2;
    width: 45%;
  }
}

.paragraph--media-with-text .paragraph__content > .paragraph {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1199px) {
  .paragraph--media-with-text .paragraph__content > .paragraph {
    max-width: 550px;
  }
}

.paragraph--media {
  margin-top: 0;
}

.paragraph--media img {
  width: 100%;
}

.paragraph--media .responsive-video-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.5%;
  position: relative;
}

.paragraph--media .responsive-video-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.paragraph--readspeaker-some-share {
  align-items: baseline;
  display: flex;
  flex-direction: column;
}

.article__content > .paragraph--readspeaker-some-share {
  padding-bottom: 0;
  padding-top: 0;
}

@media screen and (min-width: 577px) {
  .paragraph--readspeaker-some-share {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.paragraph--readspeaker-some-share .social-sharing {
  margin-top: 16px;
}

@media screen and (min-width: 577px) {
  .paragraph--readspeaker-some-share .social-sharing {
    margin-top: 0;
  }
}

.paragraph--text-box {
  background-color: #ffffff;
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding: 96px 32px 32px 32px;
  position: relative;
}

@media screen and (max-width: 576px) {
  .paragraph--text-box {
    text-align: center;
  }
}

@media screen and (min-width: 577px) {
  .paragraph--text-box {
    padding: 32px 32px 32px 96px;
  }
}

@media screen and (min-width: 992px) {
  .paragraph--text-box {
    padding: 32px 32px 32px 128px;
  }
}

.paragraph--text-box:before {
  font-size: 1.25rem;
  align-items: center;
  border-radius: 100%;
  color: #ffffff;
  display: flex;
  font-weight: bold;
  height: 50px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 48px;
  transform: translate(-50%, -50%);
  width: 50px;
}

@media screen and (min-width: 577px) {
  .paragraph--text-box:before {
    left: 48px;
    top: 32px;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 992px) {
  .paragraph--text-box:before {
    left: 64px;
  }
}

.paragraph--text-box:nth-child(1):before {
  background-color: #c3cd0e;
  content: "1";
}

.paragraph--text-box:nth-child(2):before {
  background-color: #f78200;
  content: "2";
}

.paragraph--text-box:nth-child(3):before {
  background-color: #c80a81;
  content: "3";
}

.paragraph--text-box .paragraph__text {
  margin: 0;
}

.paragraph--text-box .paragraph__link {
  align-items: center;
  display: inline-flex;
  margin-top: 16px;
}

@media screen and (min-width: 992px) {
  .paragraph--text-box .paragraph__link {
    margin-top: 32px;
  }
}

.paragraph--text-box .paragraph__link svg {
  fill: #00959c;
  height: 20px;
  margin-left: 8px;
  width: 20px;
}

.paragraph--text-multiple-columns {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.paragraph--text-multiple-columns.paragraph:not(.has-length--1) {
  padding-bottom: 48px;
  padding-top: 48px;
}

@media screen and (min-width: 768px) {
  .paragraph--text-multiple-columns.has-length--2 {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .paragraph--text-multiple-columns.has-length--2 .paragraph--text {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .paragraph--text-multiple-columns.has-length--2 .paragraph--text:last-child {
    margin-left: 64px;
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--text-multiple-columns.has-length--2 .paragraph--text:last-child {
    margin-left: 64px;
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--text-multiple-columns.has-length--3 {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .paragraph--text-multiple-columns.has-length--3 .paragraph--text {
    margin-bottom: 64px;
    max-width: 700px;
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--text-multiple-columns.has-length--3 .paragraph--text {
    margin-bottom: 0;
    width: calc(100% / 3);
  }
}

@media screen and (min-width: 1200px) {
  .paragraph--text-multiple-columns.has-length--3 .paragraph--text:first-child {
    margin-right: 64px;
  }
}

.paragraph--text-multiple-columns.has-length--3 .paragraph--text:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
  .paragraph--text-multiple-columns.has-length--3 .paragraph--text:last-child {
    margin-left: 64px;
  }
}

@media screen and (min-width: 768px) {
  .paragraph--text-multiple-columns .paragraph--text {
    margin-bottom: 0;
  }
}

.paragraph--text p {
  margin-bottom: 16px;
}

.paragraph--text p + ul,
.paragraph--text p + ol {
  margin-top: 16px;
}

.paragraph--text p:last-of-type {
  margin-bottom: 0;
}

.paragraph--text ul,
.paragraph--text ol {
  margin-top: 0;
  margin-bottom: 16px;
}

.paragraph--text ul > li,
.paragraph--text ol > li {
  padding-left: 16px;
}

.paragraph {
  margin-bottom: 32px;
}

.paragraph:last-child {
  margin-bottom: 0;
}

.article-listing-view {
  padding-bottom: 64px;
  padding-top: 64px;
}

@media screen and (min-width: 992px) {
  .article-listing-view {
    padding-bottom: 96px;
    padding-top: 96px;
  }
}

@media screen and (min-width: 1200px) {
  .article-listing-view {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1200px) {
  .article-listing-view__section--content {
    flex-shrink: 0;
    width: 65%;
  }
}

.article-listing-view__section--sidebar {
  max-width: 520px;
  margin: 64px auto 0;
}

@media screen and (min-width: 1200px) {
  .article-listing-view__section--sidebar {
    flex-grow: 1;
    margin: initial;
    max-width: none;
    padding-left: 64px;
  }
}

.article-listing {
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
}

@media screen and (min-width: 992px) {
  .article-listing {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1200px) {
  .article-listing {
    flex-direction: column;
  }
}

.article-listing__item {
  margin-top: 32px;
  max-width: 520px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .article-listing__item {
    width: calc(100% / 2 - 16px);
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .article-listing__item:nth-child(even) {
    margin-left: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .article-listing__item {
    margin-top: 48px;
    max-width: none;
  }
}

.article-listing__item:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .article-listing__item:nth-child(2) {
    margin-top: 0;
  }
}

.article-categories-listing-view > h3 {
  font-size: 1.625rem;
  margin-bottom: 32px;
}

.article-categories-listing {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.article-categories-listing__item {
  margin-bottom: 16px;
  margin-right: 16px;
}

.article-categories-listing__item:last-of-type {
  margin-right: 0;
}

.lifted-articles-view {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.lifted-articles-view > h3 {
  font-size: 1.625rem;
  margin-bottom: 32px;
}

.lifted-articles-listing {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.lifted-articles-listing__item {
  margin-bottom: 16px;
}

.lifted-articles-listing__item:last-of-type {
  margin-bottom: 0;
}

.liftup-articles-listing {
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .liftup-articles-listing {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .liftup-articles-listing {
    flex-wrap: initial;
    justify-content: space-between;
  }
}

.liftup-articles-listing__item {
  margin-bottom: 16px;
}

.faq-listing {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.faq-listing__item {
  margin-bottom: 16px;
}

.faq-listing__item:last-of-type {
  margin-bottom: 0;
}

.forum-listing-view {
  margin-top: 32px;
}

.forum-listing {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.forum-listing__item {
  margin-top: 32px;
}

@media screen and (min-width: 1200px) {
  .forum-listing__item {
    margin-top: 48px;
  }
}

.forum-listing__item:first-of-type {
  margin-top: 0;
}

.forum-listing-view__content {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
}

.forum-listing-view__header {
  background-color: #ffffff;
  border-bottom: 2px solid #007379;
  padding: 24px;
}

.forum-listing-view__title {
  align-items: center;
  color: #007379;
  display: flex;
  font-weight: normal;
  margin: 0;
}

.forum-listing-view__title span {
  font-size: 0.875rem;
  background-color: rgba(0, 115, 121, 0.1);
  border-radius: 9999px;
  display: flex;
  font-weight: 600;
  line-height: 1;
  margin-right: 8px;
  padding: 4px 12px;
}

.group-forum-listing-view {
  margin-top: 32px;
}

.group-forum-listing-view__content {
  box-shadow: 0px 8px 24px rgba(19, 41, 75, 0.08);
}

.group-forum-listing-view__header {
  background-color: #ffffff;
  border-bottom: 2px solid #007379;
  padding: 24px;
}

.group-forum-listing-view__title {
  align-items: center;
  color: #007379;
  display: flex;
  font-weight: normal;
  margin: 0;
}

.group-forum-listing-view__title span {
  font-size: 0.875rem;
  background-color: rgba(0, 115, 121, 0.1);
  border-radius: 9999px;
  display: flex;
  font-weight: 600;
  line-height: 1;
  margin-right: 8px;
  padding: 4px 12px;
}

.button + .group-table {
  margin-top: 32px;
}

.group-table.group-table--members .views-field-changed,
.group-table.group-table--members .views-field-created {
  width: 250px;
}

.group-table.group-table--members .views-field-nothing {
  width: 400px;
}

.group-table.group-table--members .views-field-nothing a {
  font-size: 0.875rem;
  align-items: center;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #007379;
  color: #003234;
  cursor: pointer;
  display: inline-flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  padding: 10px 16px;
  text-indent: .25px;
  transition: .25s background-color, .25s color;
}

.group-table.group-table--members .views-field-nothing a:hover, .group-table.group-table--members .views-field-nothing a:focus {
  background-color: #007379;
  color: #ffffff;
}

.group-table.group-table--members .views-field-nothing a:disabled {
  background-color: transparent;
  color: #003234;
  cursor: not-allowed;
  opacity: .5;
}

.group-table.group-table--pending-members .views-field-created,
.group-table.group-table--pending-members .views-field-nothing-2 {
  width: 300px;
}

.group-table.group-table--pending-members .views-field-field-application p:last-of-type {
  margin: 0;
}

.groups-listing-view + .groups-listing-view {
  margin-top: 64px;
}

.groups-listing {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.groups-listing__item {
  margin-top: 32px;
}

@media screen and (min-width: 1200px) {
  .groups-listing__item {
    margin-top: 48px;
  }
}

.groups-listing__item:first-of-type {
  margin-top: 0;
}

.liftup-articles-listing {
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
}

@media screen and (min-width: 992px) {
  .liftup-articles-listing {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.liftup-articles-listing__item {
  margin-top: 32px;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .liftup-articles-listing__item {
    width: calc(100% / 2 - 16px);
  }
}

@media screen and (min-width: 1200px) {
  .liftup-articles-listing__item {
    margin-left: 21px;
    margin-top: 0;
    width: calc(100% / 4 - 16px);
  }
}

.liftup-articles-listing__item:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 1200px) {
  .liftup-articles-listing__item:first-of-type {
    margin-left: 0;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .liftup-articles-listing__item:nth-child(2n + 2) {
    margin-left: 32px;
  }
}

@media screen and (min-width: 992px) {
  .liftup-articles-listing__item:nth-child(2) {
    margin-top: 0;
  }
}

.menu--main .menu-content-liftup {
  border-right: 1px solid #eeeeee;
  flex: 0 1 450px;
  margin-right: 32px;
  padding-bottom: 64px;
  padding-right: 32px;
  padding-top: 48px;
}

.content-liftup-list {
  list-style: none;
  margin: 0;
}

.content-liftup-list__item {
  margin-bottom: 16px;
}

.content-liftup-list__item:last-child {
  margin-bottom: 0;
}

.omapeluuri-table.omapeluuri-table--group, .omapeluuri-table.omapeluuri-table--forum {
  white-space: normal;
}

.omapeluuri-table .views-field-title {
  max-width: 500px;
  min-width: 400px;
  word-break: break-word;
}

.omapeluuri-table .views-field-title .views-field-title__inner {
  align-items: center;
  display: flex;
}

.omapeluuri-table .views-field-title .views-field-title__inner:nth-child(1) {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.omapeluuri-table .views-field-title .views-field-title__inner:nth-child(2) {
  font-size: 0.875rem;
  color: #828282;
  margin-top: 8px;
}

.omapeluuri-table .views-field-title a {
  color: #000000;
}

.omapeluuri-table .views-field-title a:hover, .omapeluuri-table .views-field-title a:focus {
  color: #00959c;
}

.omapeluuri-table .views-field-title a + span {
  font-size: 0.875rem;
  align-items: center;
  background-color: rgba(247, 130, 0, 0.2);
  border-radius: 100%;
  color: #f78200;
  display: flex;
  flex-shrink: 0;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  line-height: 1;
  margin-left: 8px;
  width: 24px;
}

.omapeluuri-table .views-field-title .comment-timestamp {
  margin-left: 16px;
  padding-left: 16px;
  position: relative;
}

.omapeluuri-table .views-field-title .comment-timestamp:before {
  content: ">>";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.omapeluuri-table .views-field-title .comment-count {
  margin-left: 8px;
  padding-left: 8px;
  position: relative;
}

.omapeluuri-table .views-field-title .comment-count:before {
  content: "|";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

@media screen and (min-width: 992px) {
  .omapeluuri-table .views-field-title .comment-count {
    display: none;
    visibility: hidden;
  }
}

@media screen and (max-width: 991px) {
  .omapeluuri-table .views-field-comment-count {
    display: none;
    visibility: hidden;
  }
}

.omapeluuri-table .views-field-last-comment-timestamp {
  white-space: nowrap;
}

.omapeluuri-table .views-field-uid {
  white-space: nowrap;
}

.omapeluuri-table .thread-user-information {
  align-items: center;
  display: flex;
}

.omapeluuri-table .thread-user-information > img,
.omapeluuri-table .thread-user-information__profile-picture {
  border-radius: 100%;
  flex-shrink: 0;
  height: 42px;
  width: 42px;
}

.omapeluuri-table .thread-user-information > img--missing,
.omapeluuri-table .thread-user-information__profile-picture--missing {
  background-color: #f4f4f4;
  display: inline-block;
}

.omapeluuri-table .thread-user-information__data {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}

@media screen and (max-width: 991px) {
  .omapeluuri-table .thread-user-information__data {
    display: none;
    visibility: hidden;
  }
}

.omapeluuri-table .thread-user-information__starter {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.5;
}

.omapeluuri-table .thread-user-information__created {
  font-size: 0.75rem;
  color: #828282;
  line-height: 1;
}

.omapeluuri-table thead tr {
  border-bottom: 1px solid #d9d9d9;
}

.omapeluuri-table tbody tr.has-new-comments {
  background-color: rgba(247, 130, 0, 0.05);
  box-shadow: inset 2px 0 0 0 #f78200;
}

.search-view__search {
  margin: 64px 0;
}

.search-view__information {
  margin: 32px 0;
}

.search-result {
  list-style: none;
}

.search-result__item:not(:last-of-type) {
  margin-bottom: 32px;
}

.search-button {
  font-size: 0.875rem;
  align-items: center;
  background-color: transparent;
  border: 0;
  color: #2c2c2c;
  cursor: pointer;
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 0;
}

.search-button:focus {
  outline-offset: 4px;
  outline: 2px solid #007379;
}

.search-button__icon {
  display: flex;
  margin-right: 4px;
}

.search-form form {
  display: flex;
}

.search-form form .form-item {
  margin-bottom: 0;
}

.search-form form .form-item:first-child {
  margin-right: 8px;
}

.search-form__input[type=text] {
  font-size: 0.875rem;
  padding: 9.5px;
  width: 100%;
}

.search-modal {
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #007379;
  box-shadow: 0 8px 16px 0 rgba(44, 44, 44, 0.16);
  opacity: 1;
  padding: 10px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 350px;
  z-index: 1000;
}

.search-modal:not(.is-active) {
  display: none;
}

.views-table-responsive {
  overflow-x: auto;
  overflow-y: hidden;
}

.views-table {
  border-collapse: collapse;
  border-spacing: 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}

.views-table thead tr {
  background-color: #fbfbfb;
  border-bottom: 1px solid #f4f4f4;
}

.views-table thead tr th {
  font-size: 1rem;
  background-color: transparent;
  box-sizing: border-box;
  font-weight: 500;
  height: 48px;
  line-height: 1.25;
  padding: 24px;
  position: relative;
  text-align: left;
}

.views-table tbody tr {
  border-bottom: 1px solid #f4f4f4;
}

.views-table tbody tr td {
  font-size: 1rem;
  box-sizing: border-box;
  height: 48px;
  line-height: 1.25;
  padding: 24px;
  text-align: left;
}

.is-hidden {
  display: none !important;
}
