@charset "UTF-8";
@import url(../../fonts/Kanit.css);
:root {
  --fs-xxl: 90px;
  --fs-xl: 35px;
  --fs-l: 26px;
  --fs-mid: 22px;
  --fs-m: 16px;
  --fs-s: 12px; }
  @media (max-width: 600px) {
    :root {
      --fs-xxl: 80px;
      --fs-xl: 30px;
      --fs-l: 22px;
      --fs-mid: 18px;
      --fs-m: 13px;
      --fs-s: 10px; } }

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; } }
html, body {
  width: 100%;
  margin: 0;
  scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  padding: 0;
  background-color: #fff;
  font-family: 'Kanit', sans-serif; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2; }

p {
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1.42; }

::-webkit-scrollbar {
  scroll-behavior: smooth;
  width: 10px; }

::-webkit-scrollbar-track {
  background-color: #f4f4f4; }

::-webkit-scrollbar-thumb {
  background-color: #d13434;
  border-radius: 5px;
  height: 5px; }

.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }

.actions .btn {
  position: relative;
  display: inline-block;
  width: initial;
  min-width: 44px;
  max-width: initial;
  margin-left: 6px;
  padding: 13px 12px;
  background: transparent;
  border-radius: 5px;
  border: 0;
  color: #8f8da0;
  font-size: 16px;
  cursor: pointer;
  line-height: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .actions .btn.active {
    color: #3B7171; }
  .actions .btn svg {
    width: 20px;
    height: 20px;
    margin-top: -2px;
    fill: none;
    stroke: #8f8da0;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round; }
  .actions .btn[data-desc]:after {
    position: absolute;
    content: attr(data-desc);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    min-width: 120px;
    margin-top: 8px;
    text-align: center;
    padding: 8px 16px;
    border-radius: 30px;
    background: #f5f7fb;
    color: #8f8da0;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.42;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .actions .btn[data-desc]:hover:after {
    opacity: 1; }
  .actions .btn:hover {
    background: #f5f7fb; }
  .actions .btn.dropdown {
    padding: 0; }

.btn {
  display: table;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #d13434;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all ease-in-out 0.3s; }
  .btn:hover {
    background: #d64949; }
  .btn.sm {
    width: initial !important;
    padding: 15px 14px 12px; }
  .btn.cancel {
    background: transparent;
    border: 0;
    font-weight: 400;
    color: #8f8da0;
    cursor: pointer; }
    .btn.cancel:hover {
      background: transparent !important;
      color: #000;
      text-decoration: underline; }
  .btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(100%); }
  .btn.outline {
    background-color: #fff;
    border: 1px solid #d13434;
    color: #d13434; }

.syoppo-btn {
  width: fit-content;
  display: table;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #7e9e92;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all ease-in-out 0.3s; }
  .syoppo-btn.full {
    width: 100%;
    text-align: center; }
  .syoppo-btn:hover {
    background: #9bb4ab; }

.btn-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px; }
  .btn-inline.center {
    justify-content: center; }

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 300;
  margin-top: 4px; }
  .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 1px solid #d13434;
    border-radius: 3px;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer; }
    .checkbox input:after {
      position: absolute;
      z-index: +5;
      top: 2px;
      left: 3px;
      content: url(icon/tick.svg);
      opacity: 0;
      width: 10px;
      height: 11px;
      line-height: 1; }
    .checkbox input:disabled {
      border-color: #8f8da0; }
      .checkbox input:disabled:focus {
        border-color: #8f8da0 !important; }
    .checkbox input:checked {
      border-color: #d13434;
      background: #d13434; }
      .checkbox input:checked:after {
        opacity: 1; }
      .checkbox input:checked:focus {
        border-color: #d13434 !important; }
    .checkbox input:focus, .checkbox input:active {
      outline: none;
      border: 1px solid #d13434 !important;
      box-shadow: none !important; }
  .checkbox.disabled input {
    border-color: #8f8da0; }
    .checkbox.disabled input:focus {
      border-color: #d13434 !important; }
    .checkbox.disabled input:checked {
      border-color: #d13434; }
  .checkbox.checked input {
    border-color: #d13434;
    background: #d13434; }
    .checkbox.checked input:focus {
      border-color: #d13434 !important; }

.syoppo-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 300;
  margin-top: 4px; }
  .syoppo-checkbox label {
    color: #7e9e92; }
  .syoppo-checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 1px solid #7e9e92;
    border-radius: 3px;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer; }
    .syoppo-checkbox input:after {
      position: absolute;
      z-index: +5;
      top: 2px;
      left: 3px;
      content: url(icon/tick.svg);
      opacity: 0;
      width: 10px;
      height: 11px;
      line-height: 1; }
    .syoppo-checkbox input:disabled {
      border-color: #8f8da0; }
      .syoppo-checkbox input:disabled:focus {
        border-color: #8f8da0 !important; }
    .syoppo-checkbox input:checked {
      border-color: #7e9e92;
      background: #7e9e92; }
      .syoppo-checkbox input:checked:after {
        opacity: 1; }
      .syoppo-checkbox input:checked:focus {
        border-color: #7e9e92 !important; }
    .syoppo-checkbox input:focus, .syoppo-checkbox input:active {
      outline: none;
      border: 1px solid #7e9e92 !important;
      box-shadow: none !important; }
  .syoppo-checkbox.disabled input {
    border-color: #8f8da0; }
    .syoppo-checkbox.disabled input:focus {
      border-color: #7e9e92 !important; }
    .syoppo-checkbox.disabled input:checked {
      border-color: #7e9e92; }
  .syoppo-checkbox.checked input {
    border-color: #7e9e92;
    background: #7e9e92; }
    .syoppo-checkbox.checked input:focus {
      border-color: #7e9e92 !important; }

.collapse {
  overflow: hidden;
  max-height: 0;
  display: block !important;
  -webkit-transition: max-height 0.5s ease-in-out;
  -moz-transition: max-height 0.5s ease-in-out;
  -o-transition: max-height 0.5s ease-in-out;
  -ms-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out; }
  .collapse .content {
    box-sizing: border-box;
    padding: 10px 20px;
    background-color: #f5f7fb;
    font-size: 14px; }
  .collapse.collapsed {
    height: fit-content;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important; }

.collapsetoggler.flex {
  position: relative;
  display: flex !important;
  align-items: center;
  width: 100%;
  color: #d13434;
  justify-content: left;
  border: 1px solid #f5f7fb; }
  .collapsetoggler.flex svg {
    padding: 10px;
    stroke: #000; }
  .collapsetoggler.flex .status {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f5f7fb;
    color: #8f8da0;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px; }
    @media (max-width: 500px) {
      .collapsetoggler.flex .status {
        font-size: 9px; } }
  .collapsetoggler.flex .switch {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%); }

.dropdown {
  position: relative;
  display: inline-block; }
  .dropdown .dropdown-toggle {
    position: relative;
    display: inline-block;
    min-width: 44px;
    margin-left: 6px;
    padding: 14px 12px 8px;
    background: transparent;
    border: 0;
    border-radius: 4px;
    color: #8f8da0;
    font-size: 16px;
    cursor: pointer; }
    .dropdown .dropdown-toggle[data-desc]:after {
      position: absolute;
      content: attr(data-desc);
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      min-width: 120px;
      margin-top: 8px;
      text-align: center;
      padding: 8px 16px;
      border-radius: 30px;
      background: #e3ebf6;
      color: #8f8da0;
      font-weight: 700;
      font-size: 11px;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      @media screen and (max-width: 991px) {
        .dropdown .dropdown-toggle[data-desc]:after {
          transform: translateX(-100%); } }
    .dropdown .dropdown-toggle[data-desc]:hover:after {
      opacity: 1; }
    .dropdown .dropdown-toggle:hover {
      background: #f5f7fb; }
    .dropdown .dropdown-toggle svg {
      width: 18px;
      height: 18px;
      margin-top: -2px;
      fill: none;
      stroke: #8f8da0;
      stroke-width: 2px;
      stroke-linecap: round;
      stroke-linejoin: round; }
  .dropdown .dropdown-menu {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    display: none;
    min-width: 150px;
    background: #fff;
    border: 1px solid #eee;
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
    .dropdown .dropdown-menu.dropdown-menu-right {
      left: initial;
      right: 0; }
    .dropdown .dropdown-menu .dropdown-item {
      display: block;
      width: 100%;
      padding: 14px 24px;
      border-bottom: 1px solid #eee;
      font-size: 13px;
      font-weight: 300;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .dropdown .dropdown-menu .dropdown-item:hover {
        background: #f5f7fb; }
      .dropdown .dropdown-menu .dropdown-item:last-child {
        border: 0; }
  .dropdown.show .dropdown-toggle:after {
    display: none; }
  .dropdown.show .dropdown-menu {
    display: block; }

.filter {
  display: table; }
  @media (max-width: 700px) {
    .filter {
      width: 100%;
      text-align: left; } }
  .filter .filtertitle {
    margin-bottom: 3px;
    font-size: 11px;
    color: #a1acc8; }
  .filter .openmenu {
    cursor: pointer; }
  .filter .filterdropdown {
    position: relative; }
  .filter svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
    stroke: none;
    fill: #000;
    stroke-linecap: round;
    stroke-linejoin: round; }
  .filter .menu {
    position: absolute;
    z-index: +100;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 0;
    border: 1px solid #e3ebf6;
    border-bottom: 0;
    padding: 0;
    min-width: 288px;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.15);
    box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.15); }
    @media (max-width: 700px) {
      .filter .menu {
        right: initial;
        left: 0; } }
    @media (max-width: 550px) {
      .filter .menu {
        position: fixed;
        top: initial;
        bottom: 0;
        left: 0;
        right: initial;
        overflow-y: auto;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.2); }
        .filter .menu ul {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%; }
        .filter .menu .subfilter ul {
          position: relative;
          bottom: initial;
          left: initial; } }
    .filter .menu.hidden {
      display: none; }
    .filter .menu.show {
      display: block !important;
      visibility: visible; }
    .filter .menu .checkbox {
      padding: 0 24px; }
      .filter .menu .checkbox label {
        flex: 1;
        margin: 0;
        padding: 13px 0 18px;
        text-align: left; }
        .filter .menu .checkbox label.input-checked {
          background: #F7F9FC; }
        .filter .menu .checkbox label input:after {
          top: -1px; }
    .filter .menu ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .filter .menu ul.relative {
        position: relative; }
    .filter .menu li {
      position: relative;
      z-index: +1;
      display: table;
      width: 100%;
      padding: 0;
      background: #fff;
      border-bottom: 1px solid #e3ebf6;
      font-weight: 300;
      cursor: pointer; }
      .filter .menu li:hover {
        background: #fdfdfe; }
      .filter .menu li.subfilter .title {
        position: relative;
        z-index: +2;
        padding: 16px 24px;
        text-align: left; }
        .filter .menu li.subfilter .title svg {
          position: absolute;
          top: 50%;
          right: 28px;
          transform: translateY(-50%);
          transform-origin: center;
          -webkit-transition: transform 0.2s ease-in-out;
          -moz-transition: transform 0.2s ease-in-out;
          -o-transition: transform 0.2s ease-in-out;
          -ms-transition: transform 0.2s ease-in-out;
          transition: transform 0.2s ease-in-out;
          fill: #000 !important; }
        .filter .menu li.subfilter .title .overflow {
          max-height: 360px;
          overflow-y: auto; }
        .filter .menu li.subfilter .title .count {
          position: relative;
          z-index: 10;
          display: none;
          margin-left: 6px;
          color: #fff;
          min-width: 6px;
          text-align: center;
          font-size: 8px;
          font-weight: 700;
          vertical-align: middle; }
          .filter .menu li.subfilter .title .count:before {
            position: absolute;
            z-index: -1;
            content: '';
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 18px;
            height: 18px;
            margin-top: -1px;
            background: #3B7171;
            border-radius: 50%; }
      .filter .menu li.subfilter .overflow {
        overflow: hidden;
        width: 100%;
        max-height: 360px; }
      .filter .menu li.subfilter.show .title svg {
        transform: translateY(-50%) rotate(180deg); }
      .filter .menu li.subfilter.show ul {
        margin-top: 0 !important; }
      .filter .menu li.subfilter.shown .overflow {
        overflow-y: auto; }
      .filter .menu li.subfilter.shown ul {
        margin-top: 0 !important; }
      .filter .menu li.subfilter ul {
        border-top: 1px solid #e3ebf6;
        -webkit-transition: margin-top 0.3s ease-in-out;
        -moz-transition: margin-top 0.3s ease-in-out;
        -o-transition: margin-top 0.3s ease-in-out;
        -ms-transition: margin-top 0.3s ease-in-out;
        transition: margin-top 0.3s ease-in-out; }
      .filter .menu li.subfilter li {
        display: table;
        width: 100%;
        background: #f7f9fc;
        border-bottom: 1px solid #e3ebf6;
        z-index: 1; }
        .filter .menu li.subfilter li:last-child {
          border: 0; }
      .filter .menu li.subfilter label:hover {
        background: #f6f8fb; }
      .filter .menu li.subfilter label.input-checked {
        background: #f2f4f8; }
    .filter .menu #confirm {
      padding: 8px 0;
      background: #fff; }
      .filter .menu #confirm .btn {
        display: block;
        width: 100%;
        max-width: 180px;
        margin: auto;
        text-align: center; }
        .filter .menu #confirm .btn:hover {
          color: #fff; }
  .filter.openright .menu {
    left: initial;
    right: 0; }

label {
  font-size: 16px;
  font-weight: 400;
  color: #d13434;
  margin-left: 5px; }

input {
  width: 100%;
  padding: 0 5px 5px 5px;
  box-sizing: border-box;
  outline: none;
  border: none;
  border-bottom: 1px solid #d13434;
  transition: all 0.3s ease-in; }

input:focus, textarea:focus {
  outline: none;
  box-shadow: none; }

/*input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px white inset;
        -webkit-text-fill-color: #000 !important;
        //background-color: rgb(255, 255, 255) !important;
        background-image: none !important;
        color: #000 !important;
        box-shadow: #fff !important;

        &:hover,
        &:focus,
        &:active {
            -webkit-box-shadow: 0 0 0 30px white inset;
            -webkit-text-fill-color: #000 !important;
            box-shadow: 0 0 0 30px #fff inset !important;
        }
    }*/
.hgt-input {
  background-color: rgba(209, 52, 52, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: none; }
  .hgt-input:focus {
    background-color: rgba(209, 52, 52, 0.2); }

.syoppo-input {
  position: relative; }
  .syoppo-input label {
    position: absolute;
    top: 5px;
    /* Alkuperäinen yläreuna */
    left: 10px;
    /* Alkuperäinen vasen reuna */
    color: #7e9e92;
    transition: all 0.3s ease-in; }
    @media screen and (max-width: 991px) {
      .syoppo-input label {
        font-size: 12px; } }
    .syoppo-input label.active {
      position: absolute;
      top: 0;
      left: 10px;
      transform: translatey(-50%);
      background-color: #fff;
      padding: 0px 5px;
      color: #7e9e92; }
  .syoppo-input input {
    border: 1px solid #7e9e92;
    border-radius: 5px;
    padding: 10px; }
    .syoppo-input input.half {
      width: 50%; }
  .syoppo-input input:focus {
    outline: 1px solid #7e9e92; }

textarea {
  position: relative;
  width: 100%;
  background: 0 0;
  border: 0;
  padding: 13px 0;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-indent: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }
  textarea:active, textarea:focus, textarea:focus-within, textarea:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important; }
    textarea:active + label, textarea:focus + label, textarea:focus-within + label, textarea:focus-visible + label {
      z-index: +5;
      top: -10px;
      transform: none;
      opacity: 1;
      font-size: 12px; }
      textarea:active + label:after, textarea:focus + label:after, textarea:focus-within + label:after, textarea:focus-visible + label:after {
        opacity: 1;
        width: 100%; }
    textarea:active:after, textarea:focus:after, textarea:focus-within:after, textarea:focus-visible:after {
      background-size: 100% 100%, 100% 100%;
      transition-duration: 0.2s; }
  textarea:read-only {
    border: 1px solid #e3ebf6 !important;
    color: #8f8da0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  textarea::-webkit-input-placeholder {
    color: #8f8da0;
    opacity: 0.5; }
  textarea::-moz-placeholder {
    color: #8f8da0;
    opacity: 0.5; }
  textarea:-ms-input-placeholder {
    color: #8f8da0;
    opacity: 0.5; }
  textarea:-moz-placeholder {
    color: #8f8da0;
    opacity: 0.5; }

.textarea {
  position: relative;
  display: grid;
  border: 1px solid #e3ebf6;
  border-radius: 4px; }
  .textarea:after {
    /* Note the weird space! Needed to preventy jumpy behavior */
    content: attr(data-replicated-value) " ";
    /* This is how textarea text behaves */
    white-space: pre-wrap;
    /* Hidden from view, clicks, and screen readers */
    visibility: hidden; }
  .textarea label {
    position: absolute;
    top: 7px;
    left: 3px;
    transform: none;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.5;
    transition: font-size 0.2s ease-in, top 0.2s ease-in, opacity 0.2s ease-in; }
    .textarea label:after {
      position: absolute;
      z-index: -1;
      content: '';
      top: 50%;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 50%;
      margin-top: 0px;
      background: #fff;
      opacity: 1;
      transition-delay: 0.5s;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
  .textarea textarea {
    text-indent: 0;
    /* You could leave this, but after a user resizes, then it ruins the auto sizing */
    resize: none;
    /* Firefox shows scrollbar on growth, you can hide like this. */
    overflow: hidden; }

.textarea > textarea,
.textarea::after {
  /* Identical styling required!! */
  padding: 13px 16px;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2; }

.selectpicker {
  padding: 10px;
  border: 1px solid #d13434;
  border-radius: 5px;
  width: 100%;
  max-width: 500px; }
  .selectpicker option {
    font-size: 14px; }
    .selectpicker option:hover {
      background-color: #d13434;
      color: #fff; }
    .selectpicker option:focus {
      background-color: #d13434;
      color: #fff; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  width: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 495px) {
    .modal {
      width: 100%; } }
  .modal.bounce .modal-content {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-name: shake; }
  .modal .modal-content {
    position: relative;
    width: 100%;
    max-width: 992px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    opacity: 0;
    transition-delay: 0.2s;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
    @media (max-width: 450px) {
      .modal .modal-content {
        padding: 20px; } }
    .modal .modal-content .modal-header {
      position: relative;
      z-index: +2; }
      .modal .modal-content .modal-header .close {
        position: absolute;
        top: 45px;
        right: 45px;
        cursor: pointer; }
        @media (max-width: 700px) {
          .modal .modal-content .modal-header .close {
            top: 32px;
            right: 32px; } }
        @media (max-width: 550px) {
          .modal .modal-content .modal-header .close {
            top: 10px;
            right: 10px; } }
        .modal .modal-content .modal-header .close svg {
          width: 32px;
          height: 32px;
          stroke-width: 1px;
          stroke: #8f8da0;
          fill: none;
          stroke-linecap: round;
          stroke-linejoin: round; }
        .modal .modal-content .modal-header .close:hover svg {
          stroke: #000; }
    .modal .modal-content .modal-body {
      padding: 45px; }
      .modal .modal-content .modal-body a {
        color: #d13434; }
      @media (max-width: 700px) {
        .modal .modal-content .modal-body {
          padding: 32px; } }
      @media (max-width: 450px) {
        .modal .modal-content .modal-body {
          padding: 15px; } }
      .modal .modal-content .modal-body.no-border {
        border-top: 0; }
    .modal .modal-content .modal-footer {
      padding: 16px 45px;
      background: #f5f7fb;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px; }
      @media (max-width: 700px) {
        .modal .modal-content .modal-footer {
          padding: 16px 32px; } }
      @media (max-width: 450px) {
        .modal .modal-content .modal-footer {
          padding: 16px; } }
    .modal .modal-content .header {
      padding-bottom: 30px; }
      .modal .modal-content .header h1 {
        margin-bottom: 0;
        font-size: 28px;
        font-weight: 700;
        color: #d13434; }
    .modal .modal-content .title {
      margin-bottom: 6px;
      font-size: 16px;
      font-weight: 700; }
    .modal .modal-content .description {
      display: table;
      max-width: 600px;
      margin: 15px 0;
      font-weight: 300;
      font-size: 13px;
      color: #000; }
  .modal.fullpage {
    padding: 0; }
    .modal.fullpage .modal-content {
      min-height: 100vh;
      max-width: 100%;
      border-radius: 0; }
  .modal.show {
    opacity: 1;
    visibility: visible; }
    .modal.show .modal-content {
      opacity: 1; }
  .modal .submit {
    display: flex;
    align-items: center;
    gap: 10px; }
    .modal .submit .btn {
      padding: 12px 24px;
      background: #d13434;
      border-radius: 4px;
      color: #fff;
      cursor: pointer;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .modal .submit .btn:hover {
        background: #c02c2c; }
      .modal .submit .btn.cancel {
        background: transparent;
        color: #8f8da0;
        margin: 0;
        cursor: pointer; }
        .modal .submit .btn.cancel:hover {
          background: transparent;
          text-decoration: underline; }

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

@keyframes shake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }
.bto-switch {
  cursor: pointer; }
  .bto-switch input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: inline-block;
    width: 35px;
    height: 14px;
    background: #e3ebf6;
    border: 1px solid #eee;
    border-radius: 20px;
    vertical-align: middle;
    top: -2px; }
    .bto-switch input:before {
      position: absolute;
      content: '';
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background: #f5f7fb;
      border-radius: 100%;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
      transition: left 0.2s ease-in; }
    .bto-switch input:after {
      position: absolute;
      content: attr(non);
      top: 50%;
      right: 100%;
      transform: translateY(-50%);
      padding-right: 5px; }
    .bto-switch input:checked {
      background: #85c0c0; }
      .bto-switch input:checked:before {
        left: 15px;
        background: #3B7171; }
      .bto-switch input:checked:after {
        content: attr(chosen);
        left: 100%;
        right: initial;
        padding-left: 5px; }
    .bto-switch input:focus, .bto-switch input:active {
      outline: none;
      border: none !important;
      box-shadow: none !important; }
  .bto-switch input.hgt:checked {
    background-color: #edb1b1 !important; }
    .bto-switch input.hgt:checked:before {
      background: #d13434; }

@media (max-width: 550px) {
  .testimodal .close {
    right: 0;
    top: 0; }
  .testimodal h3 {
    margin-top: 35px; } }
.testimodal .pikkuteksti {
  opacity: 0.5;
  font-size: 12px;
  margin: 20px 0; }
.testimodal .description {
  margin: 20px 0 !important; }
.testimodal form {
  display: flex;
  flex-direction: column; }
  .testimodal form ::placeholder {
    opacity: 0.7;
    font-size: 12px; }
  .testimodal form .resultinput {
    margin-bottom: 30px;
    max-width: 250px; }
  .testimodal form textarea {
    border: 1px solid #d13434;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 400px; }

.addtest {
  position: relative;
  float: right;
  margin-right: 20px;
  width: initial;
  min-width: 44px;
  max-width: initial;
  margin-left: 6px;
  padding: 13px 12px;
  background: transparent;
  border-radius: 5px;
  border: 0;
  color: #8f8da0;
  font-size: 16px;
  cursor: pointer;
  line-height: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .addtest:hover {
    background-color: #f9f9f9; }
    .addtest:hover::after {
      content: 'Lisää testi';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      min-width: 120px;
      margin-top: 8px;
      text-align: center;
      padding: 8px 16px;
      border-radius: 30px;
      background: #f5f7fb;
      color: #8f8da0;
      font-weight: 400;
      font-size: 11px;
      line-height: 1.42; }
  .addtest svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    stroke: #000;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    cursor: pointer; }

.tests {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 10px 20px 10px;
  gap: 30px; }
  .tests .chartcontainer {
    flex: 1;
    max-height: 250px; }
    @media screen and (max-width: 1000px) {
      .tests .chartcontainer {
        width: 100%; } }
    .tests .chartcontainer .testchart {
      width: 100%; }
  .tests .infotext {
    width: 100%;
    text-align: center;
    color: #d13434;
    font-weight: 300;
    font-size: 22px;
    margin-top: 10px; }
  .tests .testbox {
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    width: 50%;
    padding: 50px 0 50px 0;
    border-radius: 8px;
    max-height: 250px; }
    @media screen and (max-width: 1000px) {
      .tests .testbox {
        width: 100%; } }
    .tests .testbox h2 {
      color: #d13434;
      font-weight: 300;
      text-align: center;
      font-size: 22px; }
    .tests .testbox .row {
      position: relative;
      display: flex;
      justify-content: center;
      gap: 20px; }
      .tests .testbox .row .options {
        position: absolute;
        top: 40%;
        right: 20px;
        transform: translateY(-50%);
        float: right;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px; }
        .tests .testbox .row .options .option {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-left: 20px;
          padding: 5px 0;
          width: 60px;
          border-radius: 8px;
          cursor: pointer; }
          .tests .testbox .row .options .option:hover {
            background-color: #f4f4f4; }
          .tests .testbox .row .options .option p {
            font-size: 12px;
            opacity: 0.4;
            margin: 0; }
          .tests .testbox .row .options .option svg {
            stroke: #d13434;
            height: 20px;
            width: 20px; }
      .tests .testbox .row .testcircle {
        background-color: transparent;
        height: 80px;
        width: 80px;
        border-radius: 100%;
        position: relative;
        box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7); }
        .tests .testbox .row .testcircle .inner {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          margin: 0;
          height: 65px;
          width: 65px;
          border-radius: 100%;
          box-shadow: 7px 8px 5px 0px rgba(0, 0, 0, 0.15) inset; }
        .tests .testbox .row .testcircle svg {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          height: 95px;
          width: 95px;
          fill: none;
          stroke: #d13434;
          stroke-width: 2px; }
        .tests .testbox .row .testcircle p {
          position: absolute;
          left: 50%;
          top: 55%;
          transform: translate(-50%, -50%);
          display: flex;
          flex-direction: column;
          gap: 0;
          margin: 0;
          font-size: 16px;
          font-weight: 600;
          text-align: center;
          color: #d13434; }
          .tests .testbox .row .testcircle p span {
            font-size: 9px;
            font-weight: 400;
            color: #000; }
        .tests .testbox .row .testcircle .arrow {
          position: absolute;
          top: 20px;
          height: 15px;
          width: 20px; }

@media screen and (max-width: 600px) {
  .tests h2 {
    text-align: left;
    padding-left: 20px; }
  .tests .testbox h2 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left; }
  .tests .testbox .row {
    padding-left: 20px;
    justify-content: flex-start !important;
    gap: 15px !important; }
  .tests .testbox .options {
    right: 5px !important; }
    .tests .testbox .options svg {
      width: 18px !important; }
  .tests .testbox .testcircle {
    height: 65px !important;
    width: 65px !important; }
    .tests .testbox .testcircle .inner {
      height: 50px !important;
      width: 50px !important; }
    .tests .testbox .testcircle svg {
      height: 78px !important; } }
.comment-container {
  width: 500px;
  margin: auto;
  margin-bottom: 50px; }
  @media screen and (max-width: 600px) {
    .comment-container {
      font-size: 12px;
      width: 300px; } }
  @media screen and (min-width: 1100px) {
    .comment-container {
      width: 700px;
      padding: 20px 50px 50px 50px; } }
  .comment-container .add-comment {
    display: flex;
    gap: 10px;
    margin: 20px 0; }
    .comment-container .add-comment input[type="text"] {
      flex: 1; }
    .comment-container .add-comment input[type="submit"] {
      width: fit-content;
      padding: 10px;
      background-color: #d13434;
      color: #fff;
      border-radius: 5px;
      cursor: pointer; }
  .comment-container #open-comments {
    border: 1px solid lightgray;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s linear;
    margin-bottom: 20px; }
    .comment-container #open-comments:hover {
      border: 1px solid #000; }
  .comment-container .comments {
    display: none; }
    .comment-container .comments.active {
      display: flex;
      flex-direction: column;
      gap: 5px; }
    .comment-container .comments .comment {
      border-bottom: 1px solid lightgray;
      padding: 0 10px;
      box-sizing: border-box; }
      .comment-container .comments .comment .name {
        font-size: 14px;
        font-weight: 600;
        color: #d13434; }
      .comment-container .comments .comment .text {
        font-size: 12px;
        overflow-wrap: break-word; }

.bto-datepicker {
  position: relative;
  display: table;
  min-width: 320px; }
  @media screen and (max-width: 500px) {
    .bto-datepicker {
      min-width: 0px !important;
      width: 250px; } }
  .bto-datepicker input[type=text] {
    width: 100%; }
  .bto-datepicker .icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #a1acc8;
    stroke-width: 1px;
    stroke-linecap: round;
    stroke-linejoin: round; }
    .bto-datepicker .icon.calendar {
      position: absolute;
      top: 50%;
      right: 12px;
      transform: translateY(-50%); }
  .bto-datepicker .bto-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: flex; }
    @media (max-width: 767px) {
      .bto-datepicker .bto-calendar {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background: #f5f7fb; } }
    .bto-datepicker .bto-calendar .cal-overflow {
      display: flex;
      background: #fff;
      border: 1px solid #ddd;
      -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
      box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
      @media (max-width: 767px) {
        .bto-datepicker .bto-calendar .cal-overflow {
          flex-direction: column;
          width: 100%;
          background: #f5f7fb;
          border: 0;
          box-shadow: none;
          -webkit-box-shadow: none; } }
    .bto-datepicker .bto-calendar .cal-container {
      flex: 1;
      padding: 42px 16px 30px; }
      @media (max-width: 767px) {
        .bto-datepicker .bto-calendar .cal-container {
          background: #fff;
          flex: initial; } }
    .bto-datepicker .bto-calendar .cal-calendars {
      width: 100%;
      display: flex;
      align-items: flex-start;
      column-gap: 16px; }
      @media (max-width: 767px) {
        .bto-datepicker .bto-calendar .cal-calendars {
          justify-content: center; } }
    .bto-datepicker .bto-calendar .cal-calendar * {
      user-select: none; }
    @media (min-width: 1121px) {
      .bto-datepicker .bto-calendar .cal-calendar.cal-left .cal-header .btn.next {
        display: none; } }
    @media (max-width: 1120px) {
      .bto-datepicker .bto-calendar .cal-calendar.cal-left {
        display: none; } }
    @media (min-width: 1121px) {
      .bto-datepicker .bto-calendar .cal-calendar.cal-right .cal-header .btn.prev {
        display: none; } }
    @media (max-width: 767px) {
      .bto-datepicker .bto-calendar .cal-calendar.cal-right {
        width: 100%;
        max-width: 600px; } }
    .bto-datepicker .bto-calendar .cal-calendar .cal-header {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      margin-bottom: 20px;
      padding: 0 12px; }
      .bto-datepicker .bto-calendar .cal-calendar .cal-header .btn {
        z-index: +10;
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        background: transparent;
        margin-top: -2px;
        border: 1px solid #f5f7fb;
        border-radius: 50%;
        transition: none; }
        .bto-datepicker .bto-calendar .cal-calendar .cal-header .btn .icon {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 22px;
          height: 22px;
          stroke-width: 2px;
          margin-left: -1px; }
        .bto-datepicker .bto-calendar .cal-calendar .cal-header .btn.next {
          left: initial;
          right: 12px; }
          .bto-datepicker .bto-calendar .cal-calendar .cal-header .btn.next .icon {
            margin-left: 1px; }
        .bto-datepicker .bto-calendar .cal-calendar .cal-header .btn:hover {
          border-color: #000; }
          .bto-datepicker .bto-calendar .cal-calendar .cal-header .btn:hover .icon {
            stroke: #000; }
      .bto-datepicker .bto-calendar .cal-calendar .cal-header h3 {
        flex: 1;
        margin: 0 !important;
        color: #343738;
        font-size: 20px;
        font-weight: 300;
        text-align: center;
        line-height: 1; }
    .bto-datepicker .bto-calendar .cal-calendar table {
      border-spacing: 0;
      border-collapse: collapse; }
      @media (max-width: 767px) {
        .bto-datepicker .bto-calendar .cal-calendar table {
          width: 100%; } }
      .bto-datepicker .bto-calendar .cal-calendar table thead td {
        font-weight: 700; }
      .bto-datepicker .bto-calendar .cal-calendar table td {
        position: relative;
        min-width: 44px;
        padding: 13px 0;
        font-size: 12px;
        font-weight: 400;
        text-align: center;
        cursor: default; }
        .bto-datepicker .bto-calendar .cal-calendar table td span {
          position: relative;
          z-index: 3; }
        .bto-datepicker .bto-calendar .cal-calendar table td:before, .bto-datepicker .bto-calendar .cal-calendar table td:after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: 2;
          width: 100%;
          height: 100%; }
        @media (max-width: 767px) {
          .bto-datepicker .bto-calendar .cal-calendar table td:before {
            width: 44px;
            height: 44px; } }
        .bto-datepicker .bto-calendar .cal-calendar table td:after {
          z-index: 1;
          width: 50%;
          transform: translateY(-50%); }
        .bto-datepicker .bto-calendar .cal-calendar table td.datehover:before {
          background: #f7dada;
          border-radius: 50%; }
        .bto-datepicker .bto-calendar .cal-calendar table td.datehover:after {
          left: 0;
          width: 50%;
          background: #f7dada; }
        .bto-datepicker .bto-calendar .cal-calendar table td.week {
          color: #a1acc8;
          font-weight: 300; }
        .bto-datepicker .bto-calendar .cal-calendar table td.past, .bto-datepicker .bto-calendar .cal-calendar table td.next, .bto-datepicker .bto-calendar .cal-calendar table td.outofrange {
          font-weight: 300;
          color: #999; }
        .bto-datepicker .bto-calendar .cal-calendar table td.inrange {
          background: #f7dada; }
        .bto-datepicker .bto-calendar .cal-calendar table td.startdate, .bto-datepicker .bto-calendar .cal-calendar table td.enddate {
          color: #fff; }
          .bto-datepicker .bto-calendar .cal-calendar table td.startdate:before, .bto-datepicker .bto-calendar .cal-calendar table td.enddate:before {
            background: #d13434;
            border-radius: 50%; }
          .bto-datepicker .bto-calendar .cal-calendar table td.startdate.inrange, .bto-datepicker .bto-calendar .cal-calendar table td.enddate.inrange {
            background: #fff; }
            .bto-datepicker .bto-calendar .cal-calendar table td.startdate.inrange:after, .bto-datepicker .bto-calendar .cal-calendar table td.enddate.inrange:after {
              background: #f7dada; }
        .bto-datepicker .bto-calendar .cal-calendar table td.startdate.datehover:after {
          display: none; }
        .bto-datepicker .bto-calendar .cal-calendar table td.enddate.inrange:after {
          left: 0; }
        .bto-datepicker .bto-calendar .cal-calendar table td.outofrange:before, .bto-datepicker .bto-calendar .cal-calendar table td.outofrange:after {
          display: none; }
        .bto-datepicker .bto-calendar .cal-calendar table td.datehover-compare:before {
          background: #deece0;
          border-radius: 50%; }
        .bto-datepicker .bto-calendar .cal-calendar table td.datehover-compare:after {
          left: 0;
          width: 50%;
          background: #deece0; }
        .bto-datepicker .bto-calendar .cal-calendar table td.comparestart, .bto-datepicker .bto-calendar .cal-calendar table td.compareend {
          color: #fff; }
          .bto-datepicker .bto-calendar .cal-calendar table td.comparestart:before, .bto-datepicker .bto-calendar .cal-calendar table td.compareend:before {
            background: #8dbe92;
            border-radius: 50%; }
          .bto-datepicker .bto-calendar .cal-calendar table td.comparestart.inrange-compare, .bto-datepicker .bto-calendar .cal-calendar table td.compareend.inrange-compare {
            background: #fff; }
            .bto-datepicker .bto-calendar .cal-calendar table td.comparestart.inrange-compare:after, .bto-datepicker .bto-calendar .cal-calendar table td.compareend.inrange-compare:after {
              background: #deece0; }
        .bto-datepicker .bto-calendar .cal-calendar table td.inrange-compare {
          background: #deece0; }
        .bto-datepicker .bto-calendar .cal-calendar table td.comparestart.datehover-compare:after {
          display: none; }
        .bto-datepicker .bto-calendar .cal-calendar table td.compareend.inrange-compare:after {
          left: 0; }
      .bto-datepicker .bto-calendar .cal-calendar table tbody td:not(.week):not(.outofrange) {
        cursor: pointer; }
    .bto-datepicker .bto-calendar .cal-buttons {
      width: 320px;
      background: #f5f7fb;
      padding: 30px 16px; }
      @media (max-width: 767px) {
        .bto-datepicker .bto-calendar .cal-buttons {
          width: 100%; } }
      .bto-datepicker .bto-calendar .cal-buttons .cal-row {
        margin-bottom: 20px; }
      .bto-datepicker .bto-calendar .cal-buttons .cal-title {
        margin: 0 0 5px;
        color: #a1acc8;
        font-weight: 700; }
      .bto-datepicker .bto-calendar .cal-buttons .cal-dates {
        display: flex; }
        .bto-datepicker .bto-calendar .cal-buttons .cal-dates .cal-date {
          width: 50%; }
          .bto-datepicker .bto-calendar .cal-buttons .cal-dates .cal-date:first-child {
            padding-right: 5px; }
          .bto-datepicker .bto-calendar .cal-buttons .cal-dates .cal-date:last-child {
            padding-left: 5px; }
      .bto-datepicker .bto-calendar .cal-buttons select,
      .bto-datepicker .bto-calendar .cal-buttons input[type=text] {
        background: #fff;
        padding: 12px;
        border: 1px solid #e3ebf6;
        color: #000; }
        .bto-datepicker .bto-calendar .cal-buttons select.active,
        .bto-datepicker .bto-calendar .cal-buttons input[type=text].active {
          border: 1px solid #d13434; }
        .bto-datepicker .bto-calendar .cal-buttons select:active, .bto-datepicker .bto-calendar .cal-buttons select:focus,
        .bto-datepicker .bto-calendar .cal-buttons input[type=text]:active,
        .bto-datepicker .bto-calendar .cal-buttons input[type=text]:focus {
          border: 1px solid #d13434;
          outline: none; }
      .bto-datepicker .bto-calendar .cal-buttons select {
        position: relative;
        width: 100%;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 12px 8px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none; }
    .bto-datepicker .bto-calendar .cal-applybtn {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 16px;
      padding-top: 20px; }
      .bto-datepicker .bto-calendar .cal-applybtn .btn {
        padding: 12px 18px;
        text-align: center; }
      .bto-datepicker .bto-calendar .cal-applybtn .cancel {
        color: #a1acc8; }
      .bto-datepicker .bto-calendar .cal-applybtn .apply {
        background: #d13434;
        border-radius: 30px;
        color: #fff; }
    .bto-datepicker .bto-calendar .cal-single-apply {
      display: none; }
    .bto-datepicker .bto-calendar.single .cal-overflow {
      flex-direction: column; }
    .bto-datepicker .bto-calendar.single .cal-single-apply {
      display: flex;
      align-items: center;
      gap: 0 16px; }
    .bto-datepicker .bto-calendar.single .cal-applybtn {
      border-top: 1px solid #ddd;
      padding: 20px 0;
      background: #f5f7fb; }
    .bto-datepicker .bto-calendar.time {
      left: 50%;
      transform: translateX(-50%);
      width: 260px; }
      .bto-datepicker .bto-calendar.time .cal-calendars {
        align-items: center; }
      .bto-datepicker .bto-calendar.time .btn {
        position: relative;
        display: block;
        margin: auto;
        width: 38px;
        height: 38px;
        background: transparent;
        border: 1px solid #f5f7fb;
        border-radius: 50%;
        transition: none; }
        .bto-datepicker .bto-calendar.time .btn .icon {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 22px;
          height: 22px;
          stroke-width: 2px;
          margin-left: -1px; }
        .bto-datepicker .bto-calendar.time .btn.next {
          left: initial;
          right: 12px; }
          .bto-datepicker .bto-calendar.time .btn.next .icon {
            margin-left: 1px; }
        .bto-datepicker .bto-calendar.time .btn:hover {
          border-color: #000; }
          .bto-datepicker .bto-calendar.time .btn:hover .icon {
            stroke: #000; }
      .bto-datepicker .bto-calendar.time input {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        text-align: center;
        font-size: 30px;
        text-indent: 0; }

@-webkit-keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@-webkit-keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0); }
  to {
    opacity: 0;
    transform: translateX(25%); } }
@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0); }
  to {
    opacity: 0;
    transform: translateX(25%); } }
@-webkit-keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(25%); } }
@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(25%); } }
@-webkit-keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%); }
  to {
    transform: scale(1) translateY(-45%) translateX(13%); } }
@keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%); }
  to {
    transform: scale(1) translateY(-45%) translateX(13%); } }
.notyf {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  box-sizing: border-box;
  padding: 20px; }

.notyf__icon--error, .notyf__icon--success {
  height: 21px;
  width: 21px;
  background: #fff;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative; }

.notyf__icon--error:after, .notyf__icon--error:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px;
  left: 9px;
  height: 12px;
  top: 5px; }

.notyf__icon--error:after {
  transform: rotate(-45deg); }

.notyf__icon--error:before {
  transform: rotate(45deg); }

.notyf__icon--success:after, .notyf__icon--success:before {
  content: "";
  background: currentColor;
  display: block;
  position: absolute;
  width: 3px;
  border-radius: 3px; }

.notyf__icon--success:after {
  height: 6px;
  transform: rotate(-45deg);
  top: 9px;
  left: 6px; }

.notyf__icon--success:before {
  height: 11px;
  transform: rotate(45deg);
  top: 5px;
  left: 10px; }

.notyf__toast {
  display: block;
  overflow: hidden;
  pointer-events: auto;
  -webkit-animation: notyf-fadeinup .3s ease-in forwards;
  animation: notyf-fadeinup .3s ease-in forwards;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 0 15px;
  border-radius: 2px;
  max-width: 300px;
  transform: translateY(25%);
  box-sizing: border-box;
  flex-shrink: 0; }

.notyf__toast--disappear {
  transform: translateY(0);
  -webkit-animation: notyf-fadeoutdown .3s forwards;
  animation: notyf-fadeoutdown .3s forwards;
  -webkit-animation-delay: .25s;
  animation-delay: .25s; }

.notyf__toast--disappear .notyf__icon, .notyf__toast--disappear .notyf__message {
  -webkit-animation: notyf-fadeoutdown .3s forwards;
  animation: notyf-fadeoutdown .3s forwards;
  opacity: 1;
  transform: translateY(0); }

.notyf__toast--disappear .notyf__dismiss {
  -webkit-animation: notyf-fadeoutright .3s forwards;
  animation: notyf-fadeoutright .3s forwards;
  opacity: 1;
  transform: translateX(0); }

.notyf__toast--disappear .notyf__message {
  -webkit-animation-delay: .05s;
  animation-delay: .05s; }

.notyf__toast--upper {
  margin-bottom: 20px; }

.notyf__toast--lower {
  margin-top: 20px; }

.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 30px; }

.notyf__ripple {
  height: 400px;
  width: 400px;
  position: absolute;
  transform-origin: bottom right;
  right: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(0) translateY(-51%) translateX(13%);
  z-index: 5;
  -webkit-animation: ripple .4s ease-out forwards;
  animation: ripple .4s ease-out forwards; }

.notyf__wrapper {
  display: flex;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 15px;
  border-radius: 3px;
  position: relative;
  z-index: 10; }

.notyf__icon {
  width: 22px;
  text-align: center;
  font-size: 1.3em;
  opacity: 0;
  -webkit-animation: notyf-fadeinup .3s forwards;
  animation: notyf-fadeinup .3s forwards;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
  margin-right: 13px; }

.notyf__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 26px;
  margin-right: -15px;
  -webkit-animation: notyf-fadeinleft .3s forwards;
  animation: notyf-fadeinleft .3s forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
  opacity: 0; }

.notyf__dismiss-btn {
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: opacity .2s ease,background-color .2s ease;
  outline: none;
  opacity: .35;
  height: 100%;
  width: 100%; }

.notyf__dismiss-btn:after, .notyf__dismiss-btn:before {
  content: "";
  background: #fff;
  height: 12px;
  width: 2px;
  border-radius: 3px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 5px); }

.notyf__dismiss-btn:after {
  transform: rotate(-45deg); }

.notyf__dismiss-btn:before {
  transform: rotate(45deg); }

.notyf__dismiss-btn:hover {
  opacity: .7;
  background-color: rgba(0, 0, 0, 0.15); }

.notyf__dismiss-btn:active {
  opacity: .8; }

.notyf__message {
  vertical-align: middle;
  position: relative;
  opacity: 0;
  -webkit-animation: notyf-fadeinup .3s forwards;
  animation: notyf-fadeinup .3s forwards;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
  line-height: 1.5em; }

@media only screen and (max-width: 480px) {
  .notyf {
    padding: 0; }

  .notyf__ripple {
    height: 600px;
    width: 600px;
    -webkit-animation-duration: .5s;
    animation-duration: .5s; }

  .notyf__toast {
    max-width: none;
    border-radius: 0;
    box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.13);
    width: 100%; }

  .notyf__dismiss {
    width: 56px; } }
.notyf {
  gap: 20px; }
  @media (max-width: 520px) {
    .notyf {
      gap: 6px; } }

.notyf__toast {
  max-width: 400px; }
  @media (min-width: 1701px) {
    .notyf__toast {
      max-width: 470px; } }

@media (min-width: 1701px) {
  .notyf__ripple {
    width: 560px; } }

.notyf__wrapper .notyf__icon {
  width: 50px !important;
  height: 50px !important;
  font-size: 30px !important; }
  .notyf__wrapper .notyf__icon .notify__icon:after {
    position: absolute;
    z-index: +5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: url(icon/bell.svg);
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #fff;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round; }
.notyf__wrapper .notyf__message {
  flex: 1;
  font-weight: 400; }

.notyf__toast--upper {
  margin: 0; }

.notyf-success {
  background: #009273; }
  @media (max-width: 530px) {
    .notyf-success {
      border: 2px solid #005f4b; } }
  .notyf-success .notyf__icon .notify__icon:after {
    content: url(icon/rock.svg); }

.notyf-info {
  background: #3B7171; }
  @media (max-width: 530px) {
    .notyf-info {
      border: 2px solid #2a4f4f; } }

.notyf-warning {
  background: #ffbb45; }
  @media (max-width: 530px) {
    .notyf-warning {
      border: 2px solid #ffa812; } }
  .notyf-warning .notyf__icon .notify__icon:after {
    content: url(icon/stop.svg); }

.notyf-severe {
  background: #d13434; }
  @media (max-width: 530px) {
    .notyf-severe {
      border: 2px solid #ab2727; } }
  .notyf-severe .notyf__wrapper {
    padding-right: 60px; }
  .notyf-severe .notyf__icon .notify__icon:after {
    content: url(icon/urgent.svg); }
  .notyf-severe .notyf__dismiss {
    width: 50px; }

#blog header {
  position: relative;
  background: #ab2f2f;
  background: linear-gradient(87deg, #ab2f2f 0%, #da2525 51%, #ab2f2f 100%);
  padding: 50px 30px; }
  #blog header h1 {
    position: relative;
    font-size: var(--fs-xl);
    color: #f9f9f9;
    width: fit-content;
    text-align: center;
    line-height: 1;
    padding: 15px 0 30px 0;
    margin: auto;
    word-break: break-word; }
    #blog header h1::after {
      content: "";
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 50%;
      height: 2px;
      background-color: #f9f9f9; }
  #blog header h2 {
    font-size: var(--fs-m);
    color: #f9f9f9;
    opacity: 0.8;
    text-align: center;
    padding: 5px 0 20px;
    font-weight: 300; }
  #blog header img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 80%);
    height: 200px;
    width: 200px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid light; }
#blog .blogs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 20px; }
  #blog .blogs .blog {
    position: relative;
    width: 100%;
    max-width: 400px;
    flex: 1 1 300px;
    border: 1px solid lightgray;
    border-radius: 8px;
    padding: 40px 20px;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s linear; }
    #blog .blogs .blog:hover {
      transform: scale(1.05);
      /* Korjattu */ }
    #blog .blogs .blog img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: inherit;
      z-index: -2; }
      #blog .blogs .blog img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        /* Korjattu */
        height: 100%;
        width: 100%;
        border-radius: inherit;
        z-index: -1; }
    #blog .blogs .blog .heading {
      font-size: var(--fs-l);
      color: #f5f7fb;
      line-height: 1;
      margin-bottom: 10px; }
    #blog .blogs .blog .subheading {
      font-size: var(--fs-s);
      color: #f5f7fb; }
    #blog .blogs .blog .date {
      font-size: var(--fs-s);
      opacity: 0.7;
      color: #f5f7fb; }
#blog .sections {
  max-width: 1200px;
  margin: auto;
  padding: 190px 20px 20px 20px; }
  #blog .sections .section {
    max-width: 800px;
    margin: auto;
    margin-bottom: 20px;
    padding: 20px; }
    #blog .sections .section h2 {
      font-size: var(--fs-mid);
      color: red;
      margin-bottom: 15px;
      font-weight: 400; }
    #blog .sections .section p {
      font-size: var(--fs-m);
      font-weight: 300; }

section#apps .applikaatiocontainer {
  margin: 70px auto 100px auto;
  max-width: 1200px;
  padding: 50px;
  box-sizing: border-box; }
  @media (max-width: 500px) {
    section#apps .applikaatiocontainer {
      padding: 10px; } }
  section#apps .applikaatiocontainer .eventcontainer {
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
    section#apps .applikaatiocontainer .eventcontainer h2 {
      margin: 0 0 10px 0; }
    section#apps .applikaatiocontainer .eventcontainer .pikkuteksti {
      font-size: 12px;
      opacity: 0.7;
      margin-bottom: 30px; }
    section#apps .applikaatiocontainer .eventcontainer .eventnav {
      display: flex;
      align-items: center;
      width: fit-content;
      gap: 10px;
      background-color: #f4f4f4;
      border-radius: 8px;
      padding: 5px 10px;
      margin-bottom: 20px; }
      section#apps .applikaatiocontainer .eventcontainer .eventnav a {
        opacity: 0.4;
        margin: 0;
        padding: 2px 15px;
        border-radius: 5px;
        font-size: 13px;
        color: #000;
        cursor: pointer;
        text-decoration: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        section#apps .applikaatiocontainer .eventcontainer .eventnav a:hover {
          background-color: #fff;
          opacity: 1;
          -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
          box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
        section#apps .applikaatiocontainer .eventcontainer .eventnav a.active {
          background-color: #fff;
          opacity: 1;
          -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
          box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
    section#apps .applikaatiocontainer .eventcontainer .events {
      max-height: 300px;
      overflow-y: auto; }
    section#apps .applikaatiocontainer .eventcontainer .event {
      width: 100%;
      display: flex;
      align-items: center;
      border: 1px solid #f4f4f4;
      margin-bottom: 5px;
      box-sizing: border-box;
      padding: 0 5px;
      border-radius: 8px; }
      section#apps .applikaatiocontainer .eventcontainer .event:hover {
        background-color: rgba(0, 0, 0, 0.01); }
      section#apps .applikaatiocontainer .eventcontainer .event .date {
        padding: 20px;
        margin: 10px 5px 10px 0px;
        border-right: 1px solid #f5f7fb; }
        section#apps .applikaatiocontainer .eventcontainer .event .date p {
          color: #d13434;
          font-weight: 600;
          margin: 0; }
      section#apps .applikaatiocontainer .eventcontainer .event .info {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative; }
        section#apps .applikaatiocontainer .eventcontainer .event .info .left {
          display: flex;
          align-items: center;
          margin-left: 10px;
          margin-right: 50px;
          gap: 5px; }
        section#apps .applikaatiocontainer .eventcontainer .event .info .right {
          font-size: 14px; }
  section#apps .applikaatiocontainer h2 {
    margin-bottom: 50px;
    font-size: 22px;
    display: flex;
    gap: 5px; }
    section#apps .applikaatiocontainer h2 span {
      color: #d13434; }
  section#apps .applikaatiocontainer .applikaatiot {
    display: grid;
    gap: 20px; }
    @media (min-width: 1201px) {
      section#apps .applikaatiocontainer .applikaatiot {
        grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 751px) and (max-width: 1200px) {
      section#apps .applikaatiocontainer .applikaatiot {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 750px) {
      section#apps .applikaatiocontainer .applikaatiot {
        display: flex;
        flex-direction: column;
        align-items: center; } }
    section#apps .applikaatiocontainer .applikaatiot .applikaatio {
      position: relative;
      overflow: hidden;
      aspect-ratio: 5 / 6;
      background: rgba(255, 255, 255, 0.4);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.18); }
      @media (max-width: 750px) {
        section#apps .applikaatiocontainer .applikaatiot .applikaatio {
          max-width: 350px; } }
      section#apps .applikaatiocontainer .applikaatiot .applikaatio:hover .infotext {
        bottom: 0; }
      section#apps .applikaatiocontainer .applikaatiot .applikaatio:hover .infotext p {
        opacity: 1;
        display: block; }
      section#apps .applikaatiocontainer .applikaatiot .applikaatio:hover .infotext h3 {
        margin-top: 0; }
      section#apps .applikaatiocontainer .applikaatiot .applikaatio:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2); }
      section#apps .applikaatiocontainer .applikaatiot .applikaatio video {
        object-position: center center;
        object-fit: cover;
        width: 100%;
        height: 100%; }
      section#apps .applikaatiocontainer .applikaatiot .applikaatio img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      section#apps .applikaatiocontainer .applikaatiot .applikaatio .infotext {
        position: absolute;
        bottom: -50px;
        width: 100%;
        background-color: rgba(250, 250, 250, 0.85);
        padding: 20px 20px 50px 20px;
        box-sizing: border-box;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        text-align: center;
        transition: all 0.1s ease-in; }
        section#apps .applikaatiocontainer .applikaatiot .applikaatio .infotext h3 {
          color: #000;
          margin-bottom: 40px;
          margin-top: 20px;
          transition: all 0.1s ease-in; }
        section#apps .applikaatiocontainer .applikaatiot .applikaatio .infotext span {
          font-size: 12px;
          opacity: 0.43; }
        section#apps .applikaatiocontainer .applikaatiot .applikaatio .infotext p {
          color: #000;
          font-size: 14px;
          opacity: 0;
          display: none;
          transition: all 0.3s ease-in; }
@media screen and (max-width: 700px) {
  section#apps .applikaatiocontainer {
    margin: 20px 5% 50px 5% !important; }
    section#apps .applikaatiocontainer h2 {
      font-size: 16px !important; }
    section#apps .applikaatiocontainer .eventcontainer .event .info .left {
      margin-right: 30px;
      font-size: 14px; }
      section#apps .applikaatiocontainer .eventcontainer .event .info .left svg {
        height: 20px;
        width: 20px; }
    section#apps .applikaatiocontainer .eventcontainer .event .info .right {
      font-size: 12px; } }

section#help {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center; }
  section#help #heading {
    color: #d13434;
    text-align: center;
    margin: 50px 0 20px 0; }
  section#help .videocontainer {
    width: 100%;
    display: flex;
    justify-content: center; }
    section#help .videocontainer video {
      max-width: 100%; }
      @media screen and (max-width: 600px) {
        section#help .videocontainer video {
          max-width: 100%;
          height: auto; } }
  section#help #kuvaus {
    margin: 20px auto 100px auto;
    font-size: 16px;
    max-width: 80%;
    text-align: center; }
    @media screen and (max-width: 600px) {
      section#help #kuvaus {
        font-size: 14px;
        max-width: 100%; } }
    section#help #kuvaus a {
      color: #d13434; }

#etusivu header {
  position: relative;
  display: flex;
  max-width: 1800px;
  margin: auto;
  margin-top: 50px;
  overflow: hidden; }
  @media screen and (max-width: 500px) {
    #etusivu header {
      margin: 5px; } }
  @media screen and (max-width: 1300px) {
    #etusivu header {
      margin: 0 auto; } }
  #etusivu header .header-image-container {
    width: 100%;
    display: flex;
    justify-content: end; }
    #etusivu header .header-image-container img {
      width: 80%;
      height: 800px;
      object-fit: cover;
      object-position: bottom;
      border-radius: 10px;
      animation: fadeIn 3s ease forwards; }
      @media screen and (max-width: 1300px) {
        #etusivu header .header-image-container img {
          height: 600px; } }
      @media screen and (max-width: 500px) {
        #etusivu header .header-image-container img {
          width: 100%;
          border-radius: 0; } }
  #etusivu header .gradient {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(240deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.5) 40%, #fafafa 60%); }
    @media screen and (max-width: 500px) {
      #etusivu header .gradient {
        background: linear-gradient(240deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.6) 30%, #fafafa 60%);
        border-radius: 0; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
  #etusivu header .content {
    position: absolute;
    top: 40%;
    left: 0;
    padding-left: 100px;
    transform: translateY(-50%); }
    @media screen and (max-width: 500px) {
      #etusivu header .content {
        padding-left: 20px; } }
    #etusivu header .content h1 {
      font-size: 50px; }
      @media screen and (max-width: 500px) {
        #etusivu header .content h1 {
          font-size: 26px; } }
    #etusivu header .content .text {
      color: #8f8da0;
      font-size: 14px;
      max-width: 500px; }
      @media screen and (max-width: 500px) {
        #etusivu header .content .text {
          font-size: 12px;
          color: #000;
          max-width: 300px; } }
    #etusivu header .content .buttons {
      display: flex;
      gap: 20px;
      align-items: center;
      padding-top: 30px; }
      #etusivu header .content .buttons a {
        color: #000;
        text-decoration: none; }
        @media screen and (max-width: 500px) {
          #etusivu header .content .buttons a {
            font-size: 13px; } }
        #etusivu header .content .buttons a:hover {
          text-decoration: underline; }
      #etusivu header .content .buttons .btn:hover {
        text-decoration: none; }
  #etusivu header .bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 20px;
    height: 150px;
    padding: 0 0 50px 100px; }
    @media screen and (max-width: 500px) {
      #etusivu header .bottom-row {
        padding: 0 20px 50px 20px;
        gap: 10px; } }
    #etusivu header .bottom-row .item .number {
      font-size: 40px; }
      @media screen and (max-width: 500px) {
        #etusivu header .bottom-row .item .number {
          font-size: 26px; } }
    #etusivu header .bottom-row .item p.desc {
      max-width: 200px;
      font-size: 12px; }
      @media screen and (max-width: 500px) {
        #etusivu header .bottom-row .item p.desc {
          font-size: 10px;
          padding-right: 10px; } }
    #etusivu header .bottom-row .item-divider {
      height: 100%;
      width: 3px;
      background-color: #ccc; }
#etusivu #sovellukset, #etusivu #team {
  scroll-margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 80px 10px 0 10px;
  margin-bottom: 100px;
  box-sizing: border-box; }
  @media screen and (max-width: 500px) {
    #etusivu #sovellukset, #etusivu #team {
      padding: 80px 0 0 0; } }
  #etusivu #sovellukset .category, #etusivu #team .category {
    font-size: var(--fs-m);
    font-weight: 600;
    margin: auto;
    background: #8c1919;
    background: linear-gradient(87deg, #8c1919 0%, #eb0909 50%, #8c1919 100%);
    color: transparent;
    background-clip: text;
    width: fit-content; }
  #etusivu #sovellukset h2, #etusivu #team h2 {
    font-size: var(--fs-xl);
    margin: auto;
    font-weight: 300;
    text-align: center; }
  #etusivu #sovellukset .desc, #etusivu #team .desc {
    font-size: var(--fs-m);
    color: #8f8da0;
    max-width: 500px;
    margin: 0 auto 50px auto;
    text-align: center; }
  #etusivu #sovellukset .applikaatiot, #etusivu #team .applikaatiot {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 30px; }
    @media screen and (max-width: 1180px) {
      #etusivu #sovellukset .applikaatiot, #etusivu #team .applikaatiot {
        gap: 100px; } }
    #etusivu #sovellukset .applikaatiot .aplikaatio, #etusivu #team .applikaatiot .aplikaatio {
      display: flex;
      gap: 30px;
      justify-content: start;
      transition: 1s linear; }
      @media screen and (max-width: 1180px) {
        #etusivu #sovellukset .applikaatiot .aplikaatio, #etusivu #team .applikaatiot .aplikaatio {
          flex-direction: column; } }
      #etusivu #sovellukset .applikaatiot .aplikaatio video, #etusivu #team .applikaatiot .aplikaatio video {
        height: fit-content;
        width: 65%;
        border-radius: 10px;
        object-fit: contain;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; }
        @media (max-width: 1180px) {
          #etusivu #sovellukset .applikaatiot .aplikaatio video, #etusivu #team .applikaatiot .aplikaatio video {
            width: 100%;
            height: auto; } }
      @media screen and (max-width: 1180px) {
        #etusivu #sovellukset .applikaatiot .aplikaatio .text, #etusivu #team .applikaatiot .aplikaatio .text {
          max-width: 100%;
          padding-left: 50px; } }
      @media screen and (max-width: 500px) {
        #etusivu #sovellukset .applikaatiot .aplikaatio .text, #etusivu #team .applikaatiot .aplikaatio .text {
          max-width: 100%;
          padding-left: 0px; } }
      #etusivu #sovellukset .applikaatiot .aplikaatio .text h3, #etusivu #team .applikaatiot .aplikaatio .text h3 {
        font-size: var(--fs-l);
        color: #d13434; }
        @media (max-width: 1180px) {
          #etusivu #sovellukset .applikaatiot .aplikaatio .text h3, #etusivu #team .applikaatiot .aplikaatio .text h3 {
            margin: 20px 0 20px 0; } }
        @media (max-width: 500px) {
          #etusivu #sovellukset .applikaatiot .aplikaatio .text h3, #etusivu #team .applikaatiot .aplikaatio .text h3 {
            margin: 10px 0 5px 0; } }
      #etusivu #sovellukset .applikaatiot .aplikaatio .text strong, #etusivu #team .applikaatiot .aplikaatio .text strong {
        font-weight: 500; }
      #etusivu #sovellukset .applikaatiot .aplikaatio .text p, #etusivu #team .applikaatiot .aplikaatio .text p {
        margin-top: 5px;
        font-size: var(--fs-m);
        font-weight: 300;
        max-width: 500px; }
      #etusivu #sovellukset .applikaatiot .aplikaatio .text .btn, #etusivu #team .applikaatiot .aplikaatio .text .btn {
        margin: 30px 0; }
  #etusivu #sovellukset .persons, #etusivu #team .persons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem; }
    #etusivu #sovellukset .persons .person, #etusivu #team .persons .person {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      padding: 1.5rem;
      max-width: 300px;
      flex: 1 1 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease; }
      #etusivu #sovellukset .persons .person:hover, #etusivu #team .persons .person:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); }
      #etusivu #sovellukset .persons .person .image, #etusivu #team .persons .person .image {
        background: #f0f0f0;
        border-radius: 50%;
        padding: 1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px; }
        #etusivu #sovellukset .persons .person .image svg, #etusivu #team .persons .person .image svg {
          width: 40px;
          height: 40px;
          color: #333; }
      #etusivu #sovellukset .persons .person .name, #etusivu #team .persons .person .name {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0.5rem 0 0.25rem 0;
        color: #d13434; }
      #etusivu #sovellukset .persons .person .role, #etusivu #team .persons .person .role {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 1rem; }
      #etusivu #sovellukset .persons .person .desc, #etusivu #team .persons .person .desc {
        font-size: 0.85rem;
        color: #444; }
#etusivu #paketit {
  padding: 100px 0; }
  #etusivu #paketit h2 {
    font-size: var(--fs-xl);
    width: fit-content;
    margin: auto;
    background: #8c1919;
    background: linear-gradient(87deg, #8c1919 0%, #eb0909 50%, #8c1919 100%);
    color: transparent;
    background-clip: text;
    padding-bottom: 60px; }
  #etusivu #paketit .options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 50px; }
    @media (max-width: 1000px) {
      #etusivu #paketit .options {
        grid-template-columns: 1fr; } }
    @media (max-width: 600px) {
      #etusivu #paketit .options {
        margin: 0 10px; } }
    #etusivu #paketit .options .optioncard {
      position: relative;
      overflow: hidden;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      box-sizing: border-box;
      padding: 80px 50px;
      box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
      border-radius: 20px;
      transition: 1s linear; }
      @media (max-width: 1000px) {
        #etusivu #paketit .options .optioncard {
          max-width: 600px;
          margin: auto; } }
      @media (max-width: 600px) {
        #etusivu #paketit .options .optioncard {
          padding: 40px 20px; } }
      #etusivu #paketit .options .optioncard .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.7); }
      #etusivu #paketit .options .optioncard .switch-content {
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease-in; }
        #etusivu #paketit .options .optioncard .switch-content.active {
          transform: translateX(-100%); }
        #etusivu #paketit .options .optioncard .switch-content p {
          color: #fff;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
          #etusivu #paketit .options .optioncard .switch-content p a {
            color: #d13434; }
      #etusivu #paketit .options .optioncard .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease-in; }
        #etusivu #paketit .options .optioncard .top-row.removed {
          transform: translateX(-120%); }
        #etusivu #paketit .options .optioncard .top-row .heading {
          color: #d13434;
          font-size: 22px;
          font-weight: 600; }
        #etusivu #paketit .options .optioncard .top-row .button {
          padding: 5px 10px;
          background-color: #d13434;
          color: #fff;
          border-radius: 10px;
          font-size: 12px;
          cursor: pointer; }
      #etusivu #paketit .options .optioncard .info {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease-in; }
        #etusivu #paketit .options .optioncard .info.removed {
          transform: translateX(-120%); }
        #etusivu #paketit .options .optioncard .info p {
          margin-top: 20px;
          max-width: 50%;
          font-size: 13px;
          color: #fff; }
        #etusivu #paketit .options .optioncard .info .price {
          font-size: 20px;
          font-weight: 600;
          color: #fff; }
  #etusivu #paketit .treenipankki {
    background-image: url(../../../images/trainingphoto.png); }
  #etusivu #paketit .laukaisutilastointi {
    background-image: url(../../../images/dunaujvaros.jpg); }
  #etusivu #paketit .pro {
    background-image: url(../../../images/juhokiekko-espoo.jpg); }
#etusivu .hidden {
  opacity: 0;
  transform: translateY(20px); }
#etusivu .show {
  opacity: 1;
  transform: translateY(-20px); }
#etusivu footer {
  position: relative;
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
  background-color: #484848; }
  #etusivu footer .line {
    background-color: #d13434;
    height: 250px;
    width: 1px; }
  @media screen and (max-width: 700px) {
    #etusivu footer {
      flex-direction: column; }
      #etusivu footer .line {
        display: block;
        margin: 20px 0;
        height: 1px;
        width: 100%; }
      #etusivu footer p {
        padding: 0 !important; } }
  #etusivu footer .col1 .heading, #etusivu footer .col2 .heading {
    color: #d13434;
    font-size: 24px; }
  #etusivu footer .col1 p, #etusivu footer .col2 p {
    font-size: 13px;
    color: #fff;
    padding: 5px 0; }
  #etusivu footer .col1 a, #etusivu footer .col2 a {
    color: #fff;
    font-size: 16px;
    padding-right: 10px; }
  #etusivu footer .col1 .split, #etusivu footer .col2 .split {
    display: flex;
    align-items: center; }
    #etusivu footer .col1 .split span, #etusivu footer .col2 .split span {
      border-left: 2px solid #fff;
      color: #fff;
      padding-left: 10px; }

.hups {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .hups svg {
    height: 200px;
    width: 200px;
    stroke: #d13434;
    margin-top: 200px; }
  .hups p {
    max-width: 300px;
    font-size: 30px;
    text-align: center; }

.kauppacontainer {
  padding: 50px;
  box-sizing: border-box; }
  .kauppacontainer .back {
    position: absolute;
    top: 50px;
    right: 50px;
    color: #d13434;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center; }
  .kauppacontainer .introtext {
    color: #d13434;
    max-width: 400px;
    margin: auto;
    margin-top: 100px;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px; }
    .kauppacontainer .introtext span {
      background-color: rgba(255, 0, 0, 0.25);
      padding: 0 10px; }
  .kauppacontainer .forms {
    display: flex;
    justify-content: center;
    gap: 50px;
    overflow: scroll;
    width: 80%;
    margin: auto;
    flex-wrap: wrap;
    padding: 50px;
    box-sizing: border-box; }
    .kauppacontainer .forms form {
      max-width: 400px;
      box-sizing: border-box;
      padding: 30px;
      text-align: center;
      background: rgba(255, 255, 255, 0.4);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.18); }
      .kauppacontainer .forms form h3 {
        color: #d13434;
        font-size: 20px;
        margin-bottom: 0px; }
      .kauppacontainer .forms form p {
        font-size: 13px;
        margin: 15px 0 30px 0;
        opacity: 0.6; }
        .kauppacontainer .forms form p a {
          font-size: 13px; }
      .kauppacontainer .forms form input {
        width: 90%;
        padding: 10px;
        outline: none;
        border: none;
        border-bottom: 1px solid #d13434; }
      .kauppacontainer .forms form input[type="submit"] {
        border-radius: 10px;
        background-color: rgba(209, 52, 52, 0.1);
        border: none;
        cursor: pointer;
        margin-top: 30px; }
        .kauppacontainer .forms form input[type="submit"]:hover {
          background-color: rgba(209, 52, 52, 0.9); }
      .kauppacontainer .forms form a {
        color: #d13434;
        font-size: 12px;
        margin-top: 20px; }

@media screen and (max-width: 700px) {
  .kauppacontainer {
    padding: 0; }
    .kauppacontainer .back {
      font-size: 16px;
      top: 20px !important;
      right: 10px !important; }
    .kauppacontainer .introtext {
      margin-top: 70px !important;
      margin-bottom: 0; }
    .kauppacontainer .forms {
      width: 100%; } }
.back {
  position: absolute;
  top: 50px;
  right: 50px;
  color: #d13434;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center; }

.kaupparegisterform {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 70%;
  overflow-y: scroll;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: white;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 500px;
  padding: 30px 50px;
  box-sizing: border-box; }
  .kaupparegisterform.active {
    display: flex; }
  .kaupparegisterform h2 {
    color: #d13434;
    margin-bottom: 0px; }
  .kaupparegisterform p {
    font-size: 13px;
    margin-bottom: 30px;
    opacity: 0.6; }
    .kaupparegisterform p a {
      color: #d13434; }
  .kaupparegisterform input {
    width: 90%;
    padding: 5px;
    outline: none;
    border: none;
    border-bottom: 1px solid #d13434; }
  .kaupparegisterform .selects {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
    .kaupparegisterform .selects select {
      border: 1px solid #d13434;
      color: #d13434;
      border-radius: 5px;
      width: 49%;
      margin-top: 5px; }
  .kaupparegisterform .teamselect {
    border: 1px solid #d13434;
    color: #d13434;
    border-radius: 5px;
    margin-top: 10px; }
  .kaupparegisterform input[type="submit"] {
    border-radius: 10px;
    background-color: rgba(209, 52, 52, 0.1);
    border: none;
    padding: 10px 0;
    cursor: pointer;
    margin-top: 30px; }
    .kaupparegisterform input[type="submit"]:hover {
      background-color: rgba(209, 52, 52, 0.9); }

@media screen and (max-width: 700px) {
  .back {
    font-size: 16px;
    top: 20px !important;
    right: 10px !important; }

  .kaupparegisterform {
    width: 80%; }
    .kaupparegisterform h2 {
      margin: 0 !important; }
    .kaupparegisterform p {
      font-size: 12px !important;
      margin-bottom: 10px !important; } }
section#kirjaudu {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding-top: 70px; }
  @media screen and (max-width: 500px) {
    section#kirjaudu {
      padding-top: 0px; } }
  section#kirjaudu #wrapper {
    position: relative;
    height: 600px;
    overflow: hidden; }
  section#kirjaudu .kirjauducontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 30px;
    opacity: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: transform 0.5s ease, opacity 0.1s ease;
    z-index: 1; }
    section#kirjaudu .kirjauducontainer.active {
      transform: translate(-50%, -50%);
      opacity: 1;
      z-index: 2; }
    @media screen and (max-width: 500px) {
      section#kirjaudu .kirjauducontainer {
        max-width: 90%; } }
    section#kirjaudu .kirjauducontainer h2 {
      color: #d13434;
      font-size: 20px; }
    section#kirjaudu .kirjauducontainer form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
      justify-content: center;
      margin-top: 30px; }
      section#kirjaudu .kirjauducontainer form p {
        margin: 20px 0;
        font-size: 13px;
        cursor: pointer;
        opacity: 0.4; }
        section#kirjaudu .kirjauducontainer form p:hover {
          text-decoration: underline; }
      section#kirjaudu .kirjauducontainer form .tooltip-wrapper {
        position: relative;
        display: inline-block;
        width: 100%; }
        section#kirjaudu .kirjauducontainer form .tooltip-wrapper label {
          display: inline-block;
          padding-bottom: 10px;
          font-size: 14px; }
        section#kirjaudu .kirjauducontainer form .tooltip-wrapper::after {
          content: "Lisää joukkueesi url osoite leijonat.fi/joukkueet. Esimerkiksi: https://www.leijonat.fi/index.php/joukkueet?teamid=238306801";
          position: absolute;
          top: 100%;
          left: 50%;
          transform: translate(-50%, 15px);
          background-color: #f1f1f1;
          color: #333;
          padding: 10px 15px;
          border-radius: 6px;
          width: inherit;
          font-size: 0.7rem;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          z-index: 10;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.5s ease, transform 1s ease; }
        section#kirjaudu .kirjauducontainer form .tooltip-wrapper:hover::after {
          opacity: 1;
          transform: translate(-50%, 5px); }
    section#kirjaudu .kirjauducontainer input[type="submit"] {
      width: initial;
      margin: 10px auto 0;
      padding: 10px 45px; }
  section#kirjaudu ::placeholder {
    color: #d13434;
    opacity: 0.7;
    font-size: 1em; }

#navbar {
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; }
  @media (max-width: 500px) {
    #navbar {
      padding: 20px 0 10px 0; } }
  #navbar #menubutton {
    width: fit-content;
    padding-left: 10px;
    cursor: pointer;
    line-height: 1;
    z-index: 2; }
    #navbar #menubutton.active svg {
      stroke: #d13434; }
    #navbar #menubutton svg {
      width: 38px;
      height: 38px;
      stroke-width: 2;
      stroke: #000;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
  #navbar .logo {
    width: 100%;
    display: flex;
    justify-content: center; }
    #navbar .logo img {
      max-height: 85px; }
      @media (max-width: 800px) {
        #navbar .logo img {
          max-height: 55px; } }
  #navbar #languagechooser {
    margin-right: 10px;
    display: flex;
    gap: 10px;
    align-items: center; }
    #navbar #languagechooser a svg {
      height: 30px;
      width: auto; }
      @media (max-width: 500px) {
        #navbar #languagechooser a svg {
          height: 21px; } }

nav#pagemenu {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  nav#pagemenu.active {
    opacity: 1;
    visibility: visible; }
    nav#pagemenu.active #menu {
      left: 0; }
  nav#pagemenu #menu {
    overflow: auto;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 240px;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    @media screen and (max-width: 1000px) {
      nav#pagemenu #menu {
        width: 100% !important; } }
    nav#pagemenu #menu #closemenu {
      align-self: flex-end;
      position: relative;
      top: 120px;
      margin-right: 18px;
      color: #fff;
      font-size: 14px;
      cursor: pointer; }
      @media screen and (max-width: 1000px) {
        nav#pagemenu #menu #closemenu {
          top: 98px; } }
      nav#pagemenu #menu #closemenu:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 34px;
        height: 34px;
        border: 1px solid #fff;
        border-radius: 5px; }
      nav#pagemenu #menu #closemenu:hover:before {
        background: rgba(255, 255, 255, 0.2); }
    nav#pagemenu #menu #menuitems {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: start;
      padding: 0 20px;
      margin-top: 180px; }
      @media screen and (max-width: 1000px) {
        nav#pagemenu #menu #menuitems {
          align-items: flex-start;
          width: min-content;
          margin: auto;
          max-width: 200px;
          margin-top: 200px;
          transform: translateY(-200px);
          opacity: 0;
          transition: all 0.5s ease;
          transition-delay: 0.5s; }
          nav#pagemenu #menu #menuitems.active {
            transform: translateY(-15px);
            opacity: 1; } }
      nav#pagemenu #menu #menuitems .dim {
        color: rgba(255, 255, 255, 0.4);
        pointer-events: none; }
      nav#pagemenu #menu #menuitems .group {
        width: 100%;
        padding-bottom: 30px; }
        nav#pagemenu #menu #menuitems .group .divider {
          position: relative;
          height: 1px;
          width: 100%;
          background-color: #f9f9f9;
          margin-bottom: 30px; }
          nav#pagemenu #menu #menuitems .group .divider p {
            padding: 2px 5px;
            border-radius: 5px;
            font-size: 10px;
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            background-color: #000; }
    nav#pagemenu #menu .menuitem {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      margin-top: 8px;
      text-decoration: none; }
      nav#pagemenu #menu .menuitem svg {
        width: 22px;
        height: 22px;
        stroke-width: 2;
        stroke: #fff;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round; }
      nav#pagemenu #menu .menuitem p {
        min-width: 90px;
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 300;
        color: #fff;
        white-space: nowrap; }
      nav#pagemenu #menu .menuitem:hover p {
        color: #d13434; }
      nav#pagemenu #menu .menuitem:hover svg {
        stroke: #d13434; }
    @media screen and (max-width: 991px) {
      nav#pagemenu #menu #navfooter {
        display: flex;
        justify-content: center;
        gap: 20px; } }
  nav#pagemenu #menu::-webkit-scrollbar {
    display: none; }

.newpost {
  margin: 100px auto 100px auto;
  width: 80%; }
  .newpost h3 {
    color: #d13434; }
  .newpost .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px; }
    .newpost .options select {
      padding: 5px;
      border-radius: 10px;
      border: 1px solid #d13434;
      color: #d13434; }

.suggestion {
  margin: 100px auto 100px auto;
  width: 80%;
  min-height: 20vh;
  text-align: center; }
  .suggestion h3 {
    color: #d13434; }
  .suggestion span {
    opacity: 0.7;
    font-size: 12px;
    max-width: 200px; }
  .suggestion .textbox {
    border: none;
    border-radius: 20px;
    min-height: 20vh;
    width: 80%;
    margin: 50px auto 20px auto;
    box-sizing: border-box;
    padding: 20px; }
    .suggestion .textbox:focus {
      border: none; }
  .suggestion .submit {
    padding: 20px 40px;
    background-color: #d13434;
    color: #fff;
    border-radius: 10px;
    width: fit-content;
    margin: auto;
    cursor: pointer;
    transition: all 0.1s linear; }
    .suggestion .submit:hover {
      transform: scale(1.1); }

#pelaajaprofiili {
  margin-top: 20px;
  margin-bottom: 50px; }
  #pelaajaprofiili .profiilicontainer {
    width: 100%;
    max-width: 680px;
    margin: auto; }
  #pelaajaprofiili #profileinfo {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 45px; }
    @media screen and (max-width: 991px) {
      #pelaajaprofiili #profileinfo {
        flex-direction: column;
        gap: 10px; } }
    #pelaajaprofiili #profileinfo #image {
      position: relative;
      width: 250px;
      height: 250px;
      border: 1px solid #f4f4f4; }
      #pelaajaprofiili #profileinfo #image img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px; }
      #pelaajaprofiili #profileinfo #image .eikuvaa {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.5;
        text-align: center;
        font-size: 13px; }
    #pelaajaprofiili #profileinfo #details {
      flex: 1;
      padding-left: 32px; }
      @media screen and (max-width: 991px) {
        #pelaajaprofiili #profileinfo #details {
          padding: 0 !important;
          margin: auto; } }
      #pelaajaprofiili #profileinfo #details h3 {
        margin-bottom: 14px;
        color: #d13434;
        font-weight: 600;
        font-size: 23px; }
      #pelaajaprofiili #profileinfo #details #profileoptions {
        display: flex;
        align-items: center;
        column-gap: 10px; }
        #pelaajaprofiili #profileinfo #details #profileoptions #editimage {
          display: flex;
          align-items: center; }
          #pelaajaprofiili #profileinfo #details #profileoptions #editimage svg {
            height: 21px;
            width: 21px;
            margin: 0;
            stroke-width: 2;
            stroke: #fff;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round; }
  #pelaajaprofiili .section {
    margin-bottom: 45px;
    padding: 40px;
    border: 1px solid #dbdfe9;
    border-radius: 8px; }
    @media screen and (max-width: 991px) {
      #pelaajaprofiili .section {
        width: 95%;
        margin: auto;
        margin-bottom: 30px; } }
  #pelaajaprofiili .title {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700; }
    #pelaajaprofiili .title.label {
      margin-left: 5px;
      margin-bottom: 0;
      text-align: left;
      font-size: 16px;
      font-weight: 400;
      color: #d13434; }
  #pelaajaprofiili .checkbox-inline,
  #pelaajaprofiili .input-inline {
    display: flex;
    column-gap: 16px;
    padding-bottom: 16px; }
  #pelaajaprofiili .input-inline .input {
    width: 50%; }
  #pelaajaprofiili .row {
    padding-bottom: 16px; }
  #pelaajaprofiili #clubs .club {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 24px;
    border: 1px solid #f5f7fb;
    border-radius: 4px; }
    #pelaajaprofiili #clubs .club .name {
      flex: 1; }
  #pelaajaprofiili #addclub {
    margin-top: 12px;
    width: 100%;
    background: #f5f7fb;
    color: #000;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    #pelaajaprofiili #addclub:hover {
      background: #eaeef7; }
  #pelaajaprofiili input[type="submit"] {
    width: initial;
    margin: auto; }
  #pelaajaprofiili .modal .modal-content {
    padding: 0; }
  #pelaajaprofiili .modal#changepassword .input {
    position: relative;
    margin-top: 16px; }
    #pelaajaprofiili .modal#changepassword .input.password-visible svg {
      stroke: #000; }
    #pelaajaprofiili .modal#changepassword .input svg {
      position: absolute;
      bottom: 4px;
      right: 8px;
      width: 18px;
      height: 18px;
      stroke-width: 1.5;
      stroke: #8f8da0;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      cursor: pointer; }
      #pelaajaprofiili .modal#changepassword .input svg:hover {
        stroke: #000; }
  #pelaajaprofiili .modal#createnewclub .title, #pelaajaprofiili .modal#changeimage .title {
    text-align: left;
    margin-bottom: 6px; }
  #pelaajaprofiili .modal#createnewclub .description, #pelaajaprofiili .modal#changeimage .description {
    margin-bottom: 30px; }
  #pelaajaprofiili .modal#createnewclub input {
    margin-bottom: 16px; }

section#drillmaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 40px; }
  @media (max-width: 600px) {
    section#drillmaker {
      margin: 30px 10px; } }
  section#drillmaker .canvas-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 calc(auto + 40px);
    position: relative; }
    section#drillmaker .canvas-container canvas {
      max-width: 100%;
      height: auto;
      position: relative; }
  section#drillmaker .toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    gap: 15px;
    margin: 15px auto; }
    @media (max-width: 600px) {
      section#drillmaker .toolbar {
        box-sizing: border-box;
        padding: 0 30px; } }
    section#drillmaker .toolbar .tool {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100px;
      height: 100px;
      overflow: hidden;
      background-color: #f5f7fb;
      border-radius: 15px;
      transition: all 0.3s ease; }
      @media (max-width: 600px) {
        section#drillmaker .toolbar .tool {
          width: 60px;
          height: 60px; } }
      section#drillmaker .toolbar .tool.deactive {
        opacity: 0.4;
        pointer-events: none; }
      section#drillmaker .toolbar .tool:hover {
        background-color: #d1daec; }
        section#drillmaker .toolbar .tool:hover::after {
          content: attr(data-content);
          display: block;
          position: absolute;
          left: 50%;
          top: 100%;
          transform: translateX(-50%);
          width: 100%;
          text-align: center;
          background-color: gray;
          border-radius: 5px;
          color: #fff;
          padding: 5px;
          z-index: 1; }
      section#drillmaker .toolbar .tool::after {
        display: none;
        content: ""; }
      section#drillmaker .toolbar .tool.active {
        box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5), inset -5px -5px 10px rgba(255, 255, 255, 0.5); }
      section#drillmaker .toolbar .tool svg {
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center; }
        @media (max-width: 600px) {
          section#drillmaker .toolbar .tool svg {
            width: 30px;
            height: 30px;
            stroke-width: 1px; } }
      section#drillmaker .toolbar .tool .goal {
        height: 30px;
        width: 60px; }
    section#drillmaker .toolbar #colorpicker {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: relative;
      width: 90px;
      height: 90px;
      background-color: transparent;
      border: none;
      cursor: pointer; }
    section#drillmaker .toolbar #colorpicker::-webkit-color-swatch {
      border-radius: 15px;
      border: none; }
    section#drillmaker .toolbar #colorpicker::-moz-color-swatch {
      border-radius: 15px;
      border: none; }
    section#drillmaker .toolbar #freedraw:hover::after {
      content: "Free draw"; }

section#laskuri {
  margin: 50px auto;
  padding: 0 50px;
  max-width: 1400px; }
  @media (max-width: 600px) {
    section#laskuri {
      padding: 0 20px; }
      section#laskuri .container {
        margin: 0 auto; } }
  section#laskuri .category {
    font-size: var(--fs-m);
    font-weight: 600;
    margin: auto;
    background: #8c1919;
    background: linear-gradient(87deg, #8c1919 0%, #eb0909 50%, #8c1919 100%);
    color: transparent;
    background-clip: text;
    width: fit-content; }
  section#laskuri h1 {
    text-align: center; }
  section#laskuri .sub {
    font-size: var(--fs-m);
    color: #8f8da0;
    max-width: 500px;
    margin: 0 auto 30px auto;
    text-align: center; }
  section#laskuri main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
    justify-content: center;
    align-items: start;
    padding: 20px; }
    section#laskuri main .canvas-container {
      display: none;
      flex-direction: row;
      align-items: center;
      grid-column: 1 / -1;
      gap: 20px; }
      @media (max-width: 800px) {
        section#laskuri main .canvas-container {
          flex-direction: column; } }
      section#laskuri main .canvas-container.active {
        display: flex; }
      section#laskuri main .canvas-container #canvas {
        display: block;
        aspect-ratio: 3/2;
        height: 300px;
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid lightgray;
        transform: rotate(180deg); }
        @media (max-width: 800px) {
          section#laskuri main .canvas-container #canvas {
            flex-direction: column;
            height: auto;
            aspect-ratio: 3/2;
            width: 100%; } }
        @media (max-width: 600px) {
          section#laskuri main .canvas-container #canvas {
            padding: 10px; } }
      section#laskuri main .canvas-container .peitto-container {
        flex-grow: 1;
        height: 300px;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid lightgray; }
        @media (max-width: 800px) {
          section#laskuri main .canvas-container .peitto-container {
            height: auto;
            width: 100%; } }
        section#laskuri main .canvas-container .peitto-container canvas {
          display: block;
          width: 100%;
          height: 100%; }
    section#laskuri main .result {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
      padding: 50px;
      border-radius: 10px;
      background: linear-gradient(135deg, #E0E0E0, #F5F5F5);
      text-align: center; }
      section#laskuri main .result .content {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center; }
      section#laskuri main .result span {
        font-size: 25px; }
  section#laskuri header .form-content {
    width: fit-content;
    margin: 50px auto 20px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3ebf6; }
    @media (max-width: 650px) {
      section#laskuri header .form-content {
        flex-direction: column;
        margin: 20px auto 40px auto;
        align-items: start; } }
    section#laskuri header .form-content label {
      display: block;
      color: #484848;
      font-size: 15px; }
    section#laskuri header .form-content input[type="number"], section#laskuri header .form-content select {
      border: 1px solid #e3ebf6;
      padding: 10px;
      border-radius: 10px;
      min-width: 150px; }
      @media (max-width: 650px) {
        section#laskuri header .form-content input[type="number"], section#laskuri header .form-content select {
          width: 300px; } }
    section#laskuri header .form-content .checkboxes {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      /*@media(max-width:650px) {
          width: 100%;
          margin-bottom: 10px;
      }*/ }
      section#laskuri header .form-content .checkboxes .checkbox label {
        width: 140px; }
      section#laskuri header .form-content .checkboxes .checkbox input {
        border: 1px solid #e3ebf6; }
    section#laskuri header .form-content input::placeholder {
      color: #7b7b7b;
      font-size: 0.875rem; }
  section#laskuri header #submit {
    display: block;
    margin: 20px auto;
    padding: 15px 20px;
    width: fit-content;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease; }
  section#laskuri header .rink-container {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; }
    section#laskuri header .rink-container canvas {
      border-top-right-radius: 26px 86px;
      border-top-left-radius: 26px 86px; }
  section#laskuri .common-distances {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 70px;
    width: 100%; }
    section#laskuri .common-distances h3 {
      margin: 0 auto 40px auto; }
    section#laskuri .common-distances .distance {
      box-sizing: border-box;
      padding: 20px;
      border-radius: 20px;
      border: 1px solid #E0E0E0; }
      section#laskuri .common-distances .distance .question {
        font-weight: 400;
        cursor: pointer; }
      section#laskuri .common-distances .distance .answer {
        color: #484848;
        margin-top: 20px;
        font-weight: 300; }

section#treenipankki .filterbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 50px 0; }
  @media screen and (max-width: 600px) {
    section#treenipankki .filterbar {
      padding: 30px 0 30px 0; } }
  section#treenipankki .filterbar input#etsi {
    flex: 1;
    padding: 10px;
    border: 1px solid #d13434;
    border-radius: 20px;
    text-align: center; }
  section#treenipankki .filterbar input#etsi::placeholder {
    color: #d13434; }
  section#treenipankki .filterbar .filterbutton {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    transition: all 0.2s ease-in; }
    section#treenipankki .filterbar .filterbutton:hover {
      background-color: #d13434; }
      section#treenipankki .filterbar .filterbutton:hover svg {
        stroke: #fff; }
    section#treenipankki .filterbar .filterbutton svg {
      stroke: #d13434; }
section#treenipankki .hakutext {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 10px;
  color: lightgray;
  font-size: 14px; }
  section#treenipankki .hakutext svg {
    margin-left: 20px;
    height: 30px;
    width: 30px; }
    section#treenipankki .hakutext svg:hover {
      stroke: #000; }
  @media screen and (max-width: 600px) {
    section#treenipankki .hakutext {
      font-size: 12px; } }
section#treenipankki #modal1 .modal-content {
  max-width: 500px;
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%); }
  @media screen and (max-width: 991px) {
    section#treenipankki #modal1 .modal-content {
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); } }
  @media screen and (max-width: 600px) {
    section#treenipankki #modal1 .modal-content {
      max-width: 355px; } }
  section#treenipankki #modal1 .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    section#treenipankki #modal1 .modal-content .modal-body label {
      color: #000;
      font-weight: 600;
      font-size: 14px; }
    section#treenipankki #modal1 .modal-content .modal-body select {
      width: 100%;
      padding: 10px;
      box-sizing: border-box;
      border: 1px solid #d13434;
      border-radius: 10px;
      color: #d13434; }
      section#treenipankki #modal1 .modal-content .modal-body select option {
        font-size: 14px; }
    section#treenipankki #modal1 .modal-content .modal-body select:focus {
      background-color: #fff; }
    section#treenipankki #modal1 .modal-content .modal-body #ala-kategoria, section#treenipankki #modal1 .modal-content .modal-body #alakategoria-label {
      opacity: 0.4;
      pointer-events: none; }
      section#treenipankki #modal1 .modal-content .modal-body #ala-kategoria.active, section#treenipankki #modal1 .modal-content .modal-body #alakategoria-label.active {
        opacity: 1;
        pointer-events: all; }
    section#treenipankki #modal1 .modal-content .modal-body button {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 20px;
      border: none;
      font-weight: 300; }
      section#treenipankki #modal1 .modal-content .modal-body button svg {
        height: 20px; }
section#treenipankki .trainingrows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 100px; }
  section#treenipankki .trainingrows .trainingrow {
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.2s linear; }
    section#treenipankki .trainingrows .trainingrow:hover {
      box-shadow: rgba(0, 0, 0, 0.16) 1px 2px 2px, rgba(0, 0, 0, 0.1) 1px 2px 2px; }
    section#treenipankki .trainingrows .trainingrow .title {
      color: #d13434;
      font-size: 15px;
      font-weight: 600; }
    section#treenipankki .trainingrows .trainingrow .subtitle {
      color: gray;
      font-size: 13px; }
section#treenipankki .trainings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 10px 10px 100px 10px; }
  @media screen and (max-width: 1100px) {
    section#treenipankki .trainings {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 600px) {
    section#treenipankki .trainings {
      grid-template-columns: repeat(1, 1fr); } }
  section#treenipankki .trainings .trainingcard {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    text-decoration: none;
    transition: all 0.5s ease-in; }
    section#treenipankki .trainings .trainingcard:hover::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      opacity: 0.2;
      background-image: linear-gradient(to bottom, #f9f9f9 0%, #f9f9f9 55%, #d13434 100%);
      transition: background-image 0.3s ease; }
    @media screen and (max-width: 600px) {
      section#treenipankki .trainings .trainingcard {
        width: 80%;
        margin: auto; } }
    @media screen and (max-width: 400px) {
      section#treenipankki .trainings .trainingcard {
        width: 100%; } }
    section#treenipankki .trainings .trainingcard .premiumTag {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 10px;
      border-radius: 18px;
      color: #fff;
      background-color: #d13434;
      font-size: 10px;
      z-index: 1; }
    section#treenipankki .trainings .trainingcard .image-container {
      position: relative;
      aspect-ratio: 1.5/1;
      width: 100%;
      background-color: #fff;
      overflow: hidden;
      margin-top: 20px;
      transition: transform 0.2s linear; }
      section#treenipankki .trainings .trainingcard .image-container img {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 100%;
        width: auto;
        transform: translate(-50%, -50%);
        border-radius: 20px; }
    section#treenipankki .trainings .trainingcard .text {
      padding: 20px; }
      section#treenipankki .trainings .trainingcard .text .title {
        width: 100%;
        color: #d13434;
        font-size: 22px;
        font-weight: 600;
        text-align: left;
        word-break: break-word; }
      section#treenipankki .trainings .trainingcard .text .subtitle {
        color: #8f8da0;
        font-size: 13px;
        text-align: left; }
    section#treenipankki .trainings .trainingcard .buttons {
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 10px;
      padding-top: 20px;
      width: 100%; }
      section#treenipankki .trainings .trainingcard .buttons .add, section#treenipankki .trainings .trainingcard .buttons .info {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 11px;
        border-radius: 50%;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        background-color: #fff;
        cursor: pointer;
        border: none;
        color: #d13434;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.2s linear;
        z-index: 2; }
        section#treenipankki .trainings .trainingcard .buttons .add:hover, section#treenipankki .trainings .trainingcard .buttons .info:hover {
          background-color: #d13434;
          color: #fff; }
      section#treenipankki .trainings .trainingcard .buttons .add:hover::after {
        content: "lisää omaan listaan";
        position: absolute;
        top: -50px;
        left: 0;
        background-color: #f5f7fb;
        padding: 8px;
        font-size: 9px;
        font-weight: 300;
        color: #000;
        border-radius: 5px;
        display: inline-block; }
      section#treenipankki .trainings .trainingcard .buttons .info:hover::after {
        content: "Avaa info";
        position: absolute;
        top: -50px;
        left: 0;
        background-color: #f5f7fb;
        padding: 8px;
        font-size: 9px;
        font-weight: 300;
        color: #000;
        border-radius: 5px;
        display: inline-block; }
    section#treenipankki .trainings .trainingcard .click-content {
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
      width: 100%;
      transform: translateY(100%);
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.76);
      overflow-y: auto;
      transition: all 0.2s ease-in;
      z-index: 3; }
      section#treenipankki .trainings .trainingcard .click-content.active {
        transform: translateY(0%); }
      section#treenipankki .trainings .trainingcard .click-content .close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 12px;
        color: #fff;
        background-color: #d13434;
        border-radius: 5px;
        padding: 10px; }
      section#treenipankki .trainings .trainingcard .click-content p {
        margin-top: 50px;
        color: #fff;
        text-align: center;
        font-size: 13px; }
    section#treenipankki .trainings .trainingcard .click-content::-webkit-scrollbar {
      display: none; }
  section#treenipankki .trainings .trainingcard:hover .image-container {
    transform: scale(1.05); }
section#treenipankki .omalistacontainer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  justify-content: end;
  width: fit-content;
  height: fit-content;
  z-index: 5; }
  @media screen and (max-width: 1000px) {
    section#treenipankki .omalistacontainer {
      position: fixed;
      bottom: 0px;
      right: 0px;
      width: 100%;
      padding: 10px 0 10px 0;
      justify-content: center;
      box-sizing: border-box;
      background-color: rgba(255, 255, 255, 0.8);
      border-top: 1px solid lightgray; } }
  section#treenipankki .omalistacontainer #openlist {
    background-color: #d13434;
    width: fit-content;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.4) 0px 10px 10px -5px; }
    section#treenipankki .omalistacontainer #openlist p {
      color: #fff;
      padding: 15px 30px;
      margin: 0;
      font-size: 14px; }
      section#treenipankki .omalistacontainer #openlist p a {
        color: #fff;
        text-decoration: none; }
section#treenipankki #modal2 .list {
  margin-bottom: 20px; }
  section#treenipankki #modal2 .list .list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f7fb;
    text-decoration: none;
    border-radius: 10px; }
    @media screen and (max-width: 600px) {
      section#treenipankki #modal2 .list .list-item {
        padding: 10px 10px; } }
    section#treenipankki #modal2 .list .list-item:hover {
      background-color: #f5f7fb; }
    section#treenipankki #modal2 .list .list-item .left-column .title {
      margin: 0;
      color: #000; }
      @media screen and (max-width: 600px) {
        section#treenipankki #modal2 .list .list-item .left-column .title {
          font-size: 14px; } }
    section#treenipankki #modal2 .list .list-item .left-column .subtitle {
      color: #000;
      opacity: 0.6; }
      @media screen and (max-width: 600px) {
        section#treenipankki #modal2 .list .list-item .left-column .subtitle {
          font-size: 12px; } }
  section#treenipankki #modal2 .list #remove {
    padding: 8px 12px;
    background-color: #d13434;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px; }

section#harjoitus .takaisin {
  position: absolute;
  top: 150px;
  left: 40px;
  display: flex;
  color: #d13434;
  text-decoration: none; }
  section#harjoitus .takaisin:hover {
    text-decoration: underline; }
  @media screen and (max-width: 800px) {
    section#harjoitus .takaisin {
      top: 105px;
      left: 20px; } }
section#harjoitus #download {
  position: absolute;
  top: 150px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: gray;
  cursor: pointer;
  transition: all 0.3s ease; }
  section#harjoitus #download svg {
    height: 30px;
    width: 30px; }
    @media (max-width: 800px) {
      section#harjoitus #download svg {
        height: 24px;
        width: 24px; } }
  section#harjoitus #download:hover {
    color: #000; }
  section#harjoitus #download:hover::after {
    content: "Lataa kuva";
    position: absolute;
    bottom: -30px;
    /* Säädä tarvittaessa, että teksti näkyy oikeassa paikassa */
    padding: 5px 10px;
    background-color: rgba(200, 200, 200, 0.8);
    /* Vaaleanharmaa tausta */
    color: #333;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap; }
  @media screen and (max-width: 800px) {
    section#harjoitus #download {
      top: 105px;
      right: 20px; } }
section#harjoitus .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0; }
  section#harjoitus .center h1 {
    color: #d13434;
    margin: 0;
    text-align: center; }
    @media screen and (max-width: 800px) {
      section#harjoitus .center h1 {
        padding-top: 20px; } }
  section#harjoitus .center .subheading {
    opacity: 0.6;
    text-align: center;
    font-size: 16px;
    margin-bottom: 0px; }
    @media screen and (max-width: 600px) {
      section#harjoitus .center .subheading {
        font-size: 14px; } }
  section#harjoitus .center .age {
    opacity: 0.6;
    text-align: center;
    font-size: 16px;
    font-weight: 600; }
    @media screen and (max-width: 600px) {
      section#harjoitus .center .age {
        font-size: 14px; } }
  section#harjoitus .center .iframecontainer {
    margin-top: 40px;
    width: 500px;
    height: 300px; }
    section#harjoitus .center .iframecontainer.novideo {
      height: fit-content !important; }
    @media screen and (max-width: 600px) {
      section#harjoitus .center .iframecontainer {
        width: 300px;
        height: 200px; } }
    @media screen and (min-width: 1100px) {
      section#harjoitus .center .iframecontainer {
        width: 700px;
        height: 400px; } }
  section#harjoitus .center iframe {
    height: 100%;
    width: 100%; }
  section#harjoitus .center #add {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #d13434;
    color: #fff; }
  section#harjoitus .center .desc, section#harjoitus .center .instruction {
    width: 500px;
    font-size: 15px;
    background-color: #f5f7fb;
    padding: 20px 30px 30px 30px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.5s ease-in; }
    section#harjoitus .center .desc.hidden, section#harjoitus .center .instruction.hidden {
      opacity: 0;
      transform: translateY(20px); }
    section#harjoitus .center .desc.show, section#harjoitus .center .instruction.show {
      opacity: 1;
      transform: translateY(0px); }
    @media screen and (max-width: 600px) {
      section#harjoitus .center .desc, section#harjoitus .center .instruction {
        font-size: 12px;
        width: 300px; } }
    @media screen and (min-width: 1100px) {
      section#harjoitus .center .desc, section#harjoitus .center .instruction {
        width: 700px;
        padding: 20px 50px 50px 50px; } }
    section#harjoitus .center .desc h3, section#harjoitus .center .instruction h3 {
      text-align: center;
      margin-bottom: 20px;
      opacity: 0.2; }
    section#harjoitus .center .desc p, section#harjoitus .center .instruction p {
      text-align: left;
      font-weight: 300; }
  section#harjoitus .center .desc {
    margin-top: 80px; }
    section#harjoitus .center .desc.novideo {
      margin-top: 10px; }
  section#harjoitus .center .instruction {
    margin-top: 10px;
    margin-bottom: 10px; }
  section#harjoitus .center img {
    max-width: 600px;
    height: auto; }
    @media screen and (max-width: 600px) {
      section#harjoitus .center img {
        width: 100%; } }
section#harjoitus #modal2 .list {
  margin-bottom: 20px; }
  section#harjoitus #modal2 .list .list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f7fb;
    text-decoration: none;
    border-radius: 10px; }
    @media screen and (max-width: 600px) {
      section#harjoitus #modal2 .list .list-item {
        padding: 10px 10px; } }
    section#harjoitus #modal2 .list .list-item:hover {
      background-color: #f5f7fb; }
    section#harjoitus #modal2 .list .list-item .left-column .title {
      margin: 0;
      color: #000; }
      @media screen and (max-width: 600px) {
        section#harjoitus #modal2 .list .list-item .left-column .title {
          font-size: 14px; } }
    section#harjoitus #modal2 .list .list-item .left-column .subtitle {
      color: #000;
      opacity: 0.6; }
      @media screen and (max-width: 600px) {
        section#harjoitus #modal2 .list .list-item .left-column .subtitle {
          font-size: 12px; } }
  section#harjoitus #modal2 .list #remove {
    padding: 8px 12px;
    background-color: #d13434;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px; }
section#harjoitus .omalistacontainer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  justify-content: end;
  width: fit-content;
  height: fit-content; }
  @media screen and (max-width: 1000px) {
    section#harjoitus .omalistacontainer {
      position: fixed;
      bottom: 0px;
      right: 0px;
      width: 100%;
      padding: 10px 10px;
      justify-content: center;
      box-sizing: border-box;
      background-color: rgba(255, 255, 255, 0.8);
      border-top: 1px solid lightgray; } }
  section#harjoitus .omalistacontainer #openlist {
    background-color: #d13434;
    width: fit-content;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.4) 0px 10px 10px -5px; }
    section#harjoitus .omalistacontainer #openlist p {
      color: #fff;
      padding: 15px 30px;
      margin: 0;
      font-size: 14px; }
      section#harjoitus .omalistacontainer #openlist p a {
        color: #fff;
        text-decoration: none; }

.personellecontainer {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  box-sizing: border-box;
  padding: 60px 10%; }
  .personellecontainer h2 {
    color: #d13434;
    font-weight: 600;
    font-size: 20px;
    margin-top: 60px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: default; }
    .personellecontainer h2 svg {
      stroke: #d13434;
      width: 20px; }
  .personellecontainer .persons {
    display: flex;
    justify-content: space-around; }
    .personellecontainer .persons .person {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border: 3px solid #d13434;
      border-radius: 10px;
      padding: 50px;
      box-sizing: border-box;
      margin-bottom: 50px;
      box-shadow: 2px 8px 8px 0px rgba(0, 0, 0, 0.68);
      -webkit-box-shadow: 2px 8px 8px 0px rgba(0, 0, 0, 0.68);
      -moz-box-shadow: 2px 8px 8px 0px rgba(0, 0, 0, 0.68);
      background-color: white; }
      .personellecontainer .persons .person img {
        height: 250px;
        width: 250px;
        object-fit: cover;
        border-radius: 100%; }
      .personellecontainer .persons .person h3 {
        text-align: center;
        font-weight: 600;
        font-size: 20px;
        color: #d13434; }
      .personellecontainer .persons .person h4 {
        color: #000; }
      .personellecontainer .persons .person .ura {
        display: flex;
        gap: 50px;
        margin-top: 50px; }
        .personellecontainer .persons .person .ura .saavutukset {
          margin-top: 30px; }
        .personellecontainer .persons .person .ura .section ul {
          list-style-type: square; }
          .personellecontainer .persons .person .ura .section ul li {
            font-size: 14px; }
            .personellecontainer .persons .person .ura .section ul li a {
              color: red; }

@media screen and (max-width: 1100px) {
  .personellecontainer .persons {
    flex-direction: column; }
    .personellecontainer .persons .person {
      padding: 20px; }
      .personellecontainer .persons .person .ura {
        flex-direction: column; } }
section#profile #header {
  display: flex;
  align-items: center;
  margin-bottom: 32px; }
  section#profile #header #left {
    flex: 1; }
    section#profile #header #left #datepicker {
      background-color: #f5f7fb;
      border: 1px solid #d1daec;
      border-radius: 3px; }
      section#profile #header #left #datepicker input[name="date"] {
        color: #8f8da0;
        background-color: transparent;
        padding: 12px 16px 12px 0;
        text-indent: 16px;
        border: 0;
        font-size: 14px; }
section#profile #profile {
  margin-bottom: 45px;
  padding: 45px 45px 0;
  border: 1px solid #f5f7fb;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
  box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
  @media (max-width: 991px) {
    section#profile #profile {
      padding: 30px 30px 0; } }
  section#profile #profile #player {
    display: flex;
    align-items: center;
    column-gap: 32px;
    padding-bottom: 32px; }
    @media (max-width: 991px) {
      section#profile #profile #player {
        flex-direction: column;
        gap: 20px; } }
    section#profile #profile #player #image {
      border-radius: 8px; }
      section#profile #profile #player #image img {
        width: 100%;
        max-width: 128px;
        object-fit: cover; }
    section#profile #profile #player #details {
      flex: 1; }
      section#profile #profile #player #details #name {
        display: flex;
        align-items: center;
        column-gap: 16px; }
        section#profile #profile #player #details #name h3 {
          font-size: 28px;
          margin-bottom: 0; }
        section#profile #profile #player #details #name .status {
          margin-bottom: 0;
          background: #e8fff3;
          padding: 2px 12px;
          border-radius: 4px;
          color: #50cd89; }
      section#profile #profile #player #details #club {
        display: flex;
        align-items: center;
        column-gap: 24px;
        padding-top: 6px; }
        @media (max-width: 600px) {
          section#profile #profile #player #details #club {
            padding-top: 10px;
            flex-direction: column;
            align-items: flex-start;
            row-gap: 10px; } }
        section#profile #profile #player #details #club p {
          display: flex;
          align-items: center;
          column-gap: 12px;
          margin-bottom: 0;
          font-weight: 300; }
          @media (max-width: 600px) {
            section#profile #profile #player #details #club p {
              font-size: 13px; } }
          section#profile #profile #player #details #club p .icon {
            z-index: 2;
            position: relative;
            margin-top: 4px;
            line-height: 1; }
            section#profile #profile #player #details #club p .icon:after {
              z-index: -1;
              content: "";
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              width: 22px;
              height: 22px;
              background-color: #f5f7fb;
              margin-top: -1px;
              border-radius: 50%; }
          section#profile #profile #player #details #club p svg {
            width: 14px;
            height: 14px;
            stroke-width: 1.5;
            stroke: #8f8da0;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round; }
    @media (max-width: 991px) {
      section#profile #profile #player #meetingsused {
        width: 100%; } }
    section#profile #profile #player #meetingsused #meatingsleft {
      display: flex;
      align-items: center;
      padding-bottom: 6px;
      font-weight: 300; }
      section#profile #profile #player #meetingsused #meatingsleft span {
        flex: 1;
        text-align: right;
        font-weight: 700; }
    section#profile #profile #player #meetingsused #progress {
      position: relative;
      width: 320px;
      height: 8px;
      background: #f5f7fb;
      border-radius: 4px;
      overflow: hidden; }
      @media (max-width: 991px) {
        section#profile #profile #player #meetingsused #progress {
          width: 100%; } }
      section#profile #profile #player #meetingsused #progress #bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: #50cd89;
        border-radius: 4px; }
  section#profile #profile #nav {
    width: 100%; }
    section#profile #profile #nav ul {
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
      list-style: none; }
      section#profile #profile #nav ul li {
        display: block;
        border-bottom: 1px solid transparent;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        section#profile #profile #nav ul li a {
          display: block;
          padding: 14px 22px;
          color: #000;
          text-decoration: none;
          line-height: 1;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
          @media (max-width: 991px) {
            section#profile #profile #nav ul li a {
              font-size: 14px;
              padding: 16px 10px !important; } }
        section#profile #profile #nav ul li:hover, section#profile #profile #nav ul li.active {
          border-bottom: 1px solid #d13434; }
          section#profile #profile #nav ul li:hover a, section#profile #profile #nav ul li.active a {
            color: #d13434; }
section#profile h3.title {
  font-size: 24px;
  margin-bottom: 20px; }
section#profile #expectedgoalstable {
  border-radius: 8px;
  box-sizing: border-box;
  padding: 40px;
  margin: 20px 0 40px 0;
  box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
  @media screen and (max-width: 550px) {
    section#profile #expectedgoalstable {
      padding: 10px; } }
  section#profile #expectedgoalstable table {
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    text-align: left; }
  section#profile #expectedgoalstable th, section#profile #expectedgoalstable td {
    padding: 12px;
    text-align: center; }
  section#profile #expectedgoalstable td {
    border-bottom: 1px solid lightgray; }
  section#profile #expectedgoalstable .exg {
    font-weight: 600;
    font-size: 18px; }
  section#profile #expectedgoalstable th {
    background-color: #f2f2f2; }
    @media screen and (max-width: 550px) {
      section#profile #expectedgoalstable th {
        font-size: 14px; } }
section#profile .rinkcanvas, section#profile .goaliecanvas {
  width: 100%;
  aspect-ratio: 1; }
  section#profile .rinkcanvas canvas, section#profile .goaliecanvas canvas {
    user-select: none; }
section#profile .trainingtitle {
  margin: 50px 0 10px 0;
  font-size: 24px; }
section#profile .trainingsub {
  opacity: 0.6;
  font-size: 14px; }
section#profile .trainings {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-family: Arial, sans-serif; }
  section#profile .trainings th {
    background-color: #d13434;
    color: white;
    padding: 10px;
    text-align: left; }
  section#profile .trainings td {
    padding: 10px;
    border: 1px solid #ddd; }
    section#profile .trainings td .name {
      color: #000;
      text-decoration: none; }
      section#profile .trainings td .name:hover {
        text-decoration: underline; }
  section#profile .trainings tr:nth-child(even) {
    background-color: #f9f9f9; }
  section#profile .trainings tr:hover {
    background-color: #e6e6e6; }
section#profile .games .game {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid #f5f7fb;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
  box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
  section#profile .games .game:hover {
    background: rgba(0, 0, 0, 0.01); }
  section#profile .games .game .date {
    position: relative;
    width: 140px;
    padding: 25px 25px;
    text-align: center; }
    @media (max-width: 800px) {
      section#profile .games .game .date {
        display: none; } }
    section#profile .games .game .date p {
      margin-bottom: 0;
      font-size: 42px;
      line-height: 1;
      -webkit-text-stroke: 4px #000; }
  section#profile .games .game .training {
    position: relative; }
    section#profile .games .game .training p {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin-bottom: 0;
      background: #e8fff3;
      padding: 2px 12px;
      border-radius: 4px;
      color: #50cd89; }
  section#profile .games .game .score {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0; }
    @media (max-width: 800px) {
      section#profile .games .game .score {
        padding: 10px 12px;
        justify-content: flex-start;
        flex: none;
        max-width: 75%; } }
    section#profile .games .game .score:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      height: 60%;
      width: 2px;
      background-color: #009273; }
    section#profile .games .game .score .team {
      flex: 1; }
      @media (max-width: 800px) {
        section#profile .games .game .score .team {
          flex: initial; } }
      @media (max-width: 550px) {
        section#profile .games .game .score .team {
          font-size: 12px;
          text-align: center !important; } }
      section#profile .games .game .score .team.home {
        text-align: right; }
    section#profile .games .game .score .total {
      width: 85px;
      text-align: center;
      font-size: 34px;
      font-weight: 700; }
      @media (max-width: 550px) {
        section#profile .games .game .score .total {
          width: fit-content;
          font-size: 18px;
          white-space: nowrap;
          padding: 0 10px 0 10px; } }
  section#profile .games .game .settings {
    width: 140px;
    padding-right: 35px; }
    @media (max-width: 1600px) {
      section#profile .games .game .settings {
        width: 50px; } }
    @media (max-width: 800px) {
      section#profile .games .game .settings {
        padding-right: 12px; } }
    section#profile .games .game .settings .dropdown {
      float: right;
      background: #f5f7fb;
      border-radius: 4px; }
  section#profile .games .game.lose .score:after {
    background-color: #d13434; }
  section#profile .games .game.draw .score:after {
    background-color: #ffbb45; }
section#profile .games.wide .game .date,
section#profile .games.wide .game .settings {
  width: 180px; }
section#profile .stat {
  display: flex;
  align-items: center;
  margin-bottom: 12px; }
  section#profile .stat p {
    flex: 1;
    margin-bottom: 0; }
    @media (max-width: 991px) {
      section#profile .stat p {
        padding: 30px 0 20px;
        font-size: 14px; } }
  section#profile .stat h3 {
    min-width: 145px;
    margin-bottom: 0;
    padding: 25px;
    border: 1px dashed #dbdfe9;
    border-radius: 8px;
    text-align: center;
    font-size: 32px; }
    @media (max-width: 991px) {
      section#profile .stat h3 {
        padding: 20px;
        min-width: fit-content;
        font-size: 18px; } }
  section#profile .stat.savepercentage h3 {
    border-color: #009273; }
section#profile section#overview .leaguechoser {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0; }
  section#profile section#overview .leaguechoser p {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    margin: 0 20px 0 0; }
    section#profile section#overview .leaguechoser p span {
      font-size: 12px;
      font-weight: 300; }
  section#profile section#overview .leaguechoser input {
    width: 100px; }
section#profile section#overview .statistics {
  margin-bottom: 45px;
  padding: 45px;
  border: 1px solid #f5f7fb;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
  box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
  @media (max-width: 991px) {
    section#profile section#overview .statistics .stat {
      flex-direction: column;
      align-items: center;
      text-align: center; } }
section#profile section#overview #syoppo {
  display: flex;
  align-items: center;
  column-gap: 45px; }
  @media (max-width: 991px) {
    section#profile section#overview #syoppo {
      flex-direction: column; } }
  section#profile section#overview #syoppo #calories {
    flex: 1; }
    @media (max-width: 991px) {
      section#profile section#overview #syoppo #calories {
        width: 100%;
        padding: 20px !important; } }
  section#profile section#overview #syoppo #drinks {
    width: 25%; }
    @media (max-width: 1700px) {
      section#profile section#overview #syoppo #drinks {
        width: 33%; } }
    @media (max-width: 991px) {
      section#profile section#overview #syoppo #drinks {
        width: 100% !important; } }
  section#profile section#overview #syoppo .chart {
    width: 100%;
    height: 500px; }
    @media (max-width: 991px) {
      section#profile section#overview #syoppo .chart {
        height: 300px !important; } }
section#profile section#overview #laukaisutilastointi .header {
  display: flex; }
  section#profile section#overview #laukaisutilastointi .header h3 {
    flex: 1; }
  section#profile section#overview #laukaisutilastointi .header .actions {
    display: flex;
    align-items: center; }
    section#profile section#overview #laukaisutilastointi .header .actions svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.5;
      stroke: #000;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      cursor: pointer; }
    section#profile section#overview #laukaisutilastointi .header .actions .filter .openmenu {
      display: flex; }
    section#profile section#overview #laukaisutilastointi .header .actions .filter .menu {
      left: initial;
      right: 0; }
section#profile section#overview #laukaisutilastointi #saves {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 32px; }
  @media (max-width: 991px) {
    section#profile section#overview #laukaisutilastointi #saves {
      padding: 50px; } }
  section#profile section#overview #laukaisutilastointi #saves .stat {
    width: 25%; }
section#profile section#overview #laukaisutilastointi #shotsbyzone {
  display: flex;
  column-gap: 45px;
  width: 100%; }
  @media (max-width: 991px) {
    section#profile section#overview #laukaisutilastointi #shotsbyzone {
      flex-direction: column; } }
  section#profile section#overview #laukaisutilastointi #shotsbyzone .statistics {
    width: 50%;
    aspect-ratio: 1; }
    @media (max-width: 991px) {
      section#profile section#overview #laukaisutilastointi #shotsbyzone .statistics {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center; } }
    section#profile section#overview #laukaisutilastointi #shotsbyzone .statistics#goaliecanvas {
      display: flex;
      align-items: flex-end; }
      section#profile section#overview #laukaisutilastointi #shotsbyzone .statistics#goaliecanvas #goaliecontainer {
        width: 100%; }
@media screen and (max-width: 550px) {
  section#profile section#overview #laukaisutilastointi #shotsheatmap {
    display: none; } }
section#profile section#overview #laukaisutilastointi #shotsheatmap #rinkheat {
  position: relative;
  transform: rotate(90deg);
  width: 50%;
  aspect-ratio: 1 / 0.9333;
  margin: auto;
  background: url(../images/match/rink2.jpg);
  background-size: 200% !important;
  background-position: top left; }
  section#profile section#overview #laukaisutilastointi #shotsheatmap #rinkheat canvas {
    position: absolute;
    width: 100%;
    height: 100%; }
section#profile section#compare {
  /*@media (max-width: 600px) {
  	.alue, .peli, .maali {
  		display: none!important;
  	}
  }*/ }
  section#profile section#compare #content {
    display: flex;
    column-gap: 45px; }
    @media (max-width: 991px) {
      section#profile section#compare #content {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 45px 0; } }
  section#profile section#compare #left,
  section#profile section#compare #right {
    width: 50%; }
    @media (max-width: 991px) {
      section#profile section#compare #left,
      section#profile section#compare #right {
        flex: 0 0 100%;
        width: 100%; } }
  section#profile section#compare .section {
    margin-bottom: 40px;
    padding: 45px;
    border: 1px solid #f5f7fb;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
    @media (max-width: 991px) {
      section#profile section#compare .section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        text-align: center; } }
    @media (max-width: 991px) {
      section#profile section#compare .section .title {
        font-size: 18px; } }
  section#profile section#compare .statistics {
    display: flex;
    flex-direction: column; }
    @media (max-width: 991px) {
      section#profile section#compare .statistics {
        width: 100%;
        padding: 10px 16px; } }
    @media (max-width: 991px) {
      section#profile section#compare .statistics .stat {
        flex-direction: row;
        text-align: left; } }
  section#profile section#compare #right .statistics p {
    text-align: left; }
  @media (max-width: 1300px) {
    section#profile section#compare .games .game .date {
      display: none; } }
section#profile section#billing #head {
  padding: 60px 0 85px;
  text-align: center; }
  section#profile section#billing #head h3.title {
    margin-bottom: 10px; }
  section#profile section#billing #head p {
    color: #999; }
section#profile section#billing .option .radio {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid #e3ebf6;
  border-radius: 50%; }
section#profile section#billing .option .syoppobilling {
  display: flex;
  flex-direction: row !important; }
section#profile section#billing .option.active .radio {
  background: #3B7171;
  border-color: #3B7171; }
  section#profile section#billing .option.active .radio:after {
    content: "";
    -webkit-mask: url(icon/tick.svg);
    mask: url(icon/tick.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #fff;
    line-height: 1; }
section#profile section#billing #pricingtable {
  display: flex;
  column-gap: 45px; }
  @media screen and (max-width: 991px) {
    section#profile section#billing #pricingtable {
      flex-direction: column;
      gap: 10px; } }
  section#profile section#billing #pricingtable #packagecontains {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f7fb;
    padding: 45px;
    border-radius: 8px; }
    @media screen and (max-width: 991px) {
      section#profile section#billing #pricingtable #packagecontains {
        width: 100%;
        padding: 30px !important; } }
    section#profile section#billing #pricingtable #packagecontains .contains {
      display: flex;
      align-items: center;
      padding: 12px 0;
      font-weight: 300; }
      section#profile section#billing #pricingtable #packagecontains .contains.active {
        font-weight: 700; }
      section#profile section#billing #pricingtable #packagecontains .contains .details {
        flex: 1; }
  section#profile section#billing #pricingtable #packages {
    width: 50%; }
    @media screen and (max-width: 991px) {
      section#profile section#billing #pricingtable #packages {
        width: 100%; } }
    section#profile section#billing #pricingtable #packages .package {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding: 45px;
      border: 1px solid #f5f7fb;
      border-radius: 8px;
      cursor: pointer;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      section#profile section#billing #pricingtable #packages .package:last-child {
        margin-bottom: 0; }
      @media (max-width: 550px) {
        section#profile section#billing #pricingtable #packages .package {
          padding: 30px 10px; } }
      section#profile section#billing #pricingtable #packages .package:hover {
        -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
        box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
      section#profile section#billing #pricingtable #packages .package.active {
        background: #3B7171;
        color: #fff;
        -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
        box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
        section#profile section#billing #pricingtable #packages .package.active .radio {
          background: #fff;
          border-color: #346464; }
          section#profile section#billing #pricingtable #packages .package.active .radio:after {
            background-color: #3B7171; }
      section#profile section#billing #pricingtable #packages .package#plus.active .name .recomended {
        background: #fff;
        color: #000; }
      section#profile section#billing #pricingtable #packages .package .details {
        flex: 1;
        display: flex;
        align-items: center; }
        section#profile section#billing #pricingtable #packages .package .details .name {
          display: flex;
          padding: 0 45px;
          column-gap: 16px; }
          @media screen and (max-width: 991px) {
            section#profile section#billing #pricingtable #packages .package .details .name {
              flex-direction: column;
              gap: 5px; } }
          @media (max-width: 550px) {
            section#profile section#billing #pricingtable #packages .package .details .name {
              padding: 0 20px; } }
          section#profile section#billing #pricingtable #packages .package .details .name h3 {
            margin-bottom: 0; }
            @media (max-width: 550px) {
              section#profile section#billing #pricingtable #packages .package .details .name h3 {
                font-size: 16px; } }
          section#profile section#billing #pricingtable #packages .package .details .name .recomended {
            background: #e8fff3;
            margin-bottom: 0;
            padding: 2px 12px;
            border-radius: 4px;
            color: #50cd89;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; }
section#profile section#billing #continue {
  width: 100%;
  margin-top: 45px; }
  section#profile section#billing #continue .btn {
    margin: auto; }

.personalinfo {
  margin-bottom: 150px; }
  .personalinfo .row {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box; }
    .personalinfo .row span {
      color: #d13434;
      font-size: 14px; }
    .personalinfo .row p {
      font-size: 14px; }
    .personalinfo .row a {
      font-size: 14px;
      text-decoration: underline;
      color: #000; }
  .personalinfo .leaguesbox {
    margin: 10px 0 20px 0; }
    .personalinfo .leaguesbox h3 {
      text-align: center;
      margin-bottom: 10px; }
    .personalinfo .leaguesbox .leagues {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 5px;
      cursor: default; }
      .personalinfo .leaguesbox .leagues p {
        padding: 10px;
        color: #d13434;
        border: 1px solid #d13434;
        font-size: 14px;
        border-radius: 10px; }

.addtolist {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  background-color: #d13434;
  margin: 30px 0;
  cursor: pointer; }
  .addtolist span {
    color: #fff;
    font-size: 14px; }

.modal .selectoptions {
  padding: 5px 10px;
  margin-bottom: 20px;
  border: 1px solid #d13434;
  border-radius: 5px;
  outline: none; }
.modal .ajanvarausdesc {
  margin-bottom: 20px !important; }

.coachcontainer {
  box-sizing: border-box;
  padding: 30px 50px;
  width: 100%; }
  .coachcontainer h2 {
    margin: 0;
    margin-bottom: 10px; }
  .coachcontainer .pikkuteksti {
    max-width: 350px;
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 30px; }
  .coachcontainer .coaches {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px; }
    .coachcontainer .coaches .coach {
      text-decoration: none;
      padding: 20px 40px;
      border: 1px solid lightgray;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.2s ease-in-out; }
      .coachcontainer .coaches .coach:hover {
        border: 1px solid #d13434; }
      .coachcontainer .coaches .coach.active {
        border: 1px solid #d13434; }
      .coachcontainer .coaches .coach h2 {
        color: #d13434; }
      .coachcontainer .coaches .coach .options {
        width: 100%;
        border-top: 1px solid #f4f4f4; }
        .coachcontainer .coaches .coach .options h3 {
          font-weight: 300;
          color: gray;
          margin-top: 10px; }
        .coachcontainer .coaches .coach .options p {
          font-size: 14px;
          color: #d13434;
          font-weight: 300; }

#adminlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin: 20px 20px 0 20px; }
  #adminlinks a {
    padding: 5px 15px;
    border: 1px solid #d13434;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #000; }
    #adminlinks a:hover {
      background-color: #d13434;
      color: #fff; }

@media (max-width: 600px) {
  #adminlinks {
    justify-content: flex-start; } }
@media (max-width: 400px) {
  #adminlinks a {
    font-size: 12px; } }
.pelaajalinkki {
  color: #d13434;
  font-size: 14px; }

.addprofilecontainer {
  width: 90%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px; }
  .addprofilecontainer h2 {
    margin: 60px 0 10px 0;
    color: #000;
    text-align: center; }
  .addprofilecontainer p {
    font-size: 12px;
    margin-bottom: 50px;
    opacity: 0.7;
    text-align: center; }
  .addprofilecontainer .addcheckbox {
    position: relative;
    display: flex;
    gap: 10px;
    padding: 30px 0;
    flex-wrap: wrap !important;
    max-width: 500px;
    align-items: center; }
    .addprofilecontainer .addcheckbox h4 {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      color: #d13434;
      text-align: center;
      font-size: 16px; }
    .addprofilecontainer .addcheckbox label {
      white-space: nowrap; }
    .addprofilecontainer .addcheckbox input {
      aspect-ratio: 1/1;
      /* Määrittää neliömäisen koon */ }

.adminform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%; }
  .adminform .syoppo-input {
    width: 100%;
    max-width: 500px; }
  .adminform input, .adminform textarea {
    border: 1px solid #d13434;
    outline: none;
    max-width: 500px; }
    .adminform input:focus, .adminform textarea:focus {
      border: 1px solid #d13434 !important;
      outline: none; }
  .adminform label {
    color: #d13434 !important; }

.findresults {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 50px 0; }
  .findresults .pelaajalinkki {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    width: 60%;
    box-sizing: border-box;
    color: #d13434;
    text-decoration: none;
    border: 1px solid #f4f4f4;
    border-radius: 8px;
    transition: all 0.2s ease-in; }
    @media screen and (max-width: 500px) {
      .findresults .pelaajalinkki {
        font-size: 12px; } }
    .findresults .pelaajalinkki img {
      height: 50px;
      width: 50px;
      border-radius: 3px; }
    .findresults .pelaajalinkki svg {
      margin: 13px; }
    .findresults .pelaajalinkki:hover {
      background-color: #f9f9f9; }
    @media screen and (max-width: 700px) {
      .findresults .pelaajalinkki {
        width: 90% !important; } }

.adminsearchinputcontainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 50px 0 50px 0;
  position: relative;
  box-sizing: border-box; }
  .adminsearchinputcontainer .searchinput {
    width: 60%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .adminsearchinputcontainer .searchinput #searchinput {
      padding: 10px 0;
      border: none;
      border-radius: 20px;
      border: 1px solid #f4f4f4;
      text-align: center;
      width: 100%; }
      .adminsearchinputcontainer .searchinput #searchinput:focus {
        outline: none; }
    .adminsearchinputcontainer .searchinput .search {
      position: relative;
      left: 30px;
      stroke-opacity: 0.4;
      background-color: #f9f9f9;
      border-radius: 100%;
      padding: 8px;
      height: 30px;
      width: 30px; }
  .adminsearchinputcontainer a {
    display: flex;
    justify-content: center;
    align-items: center; }
  .adminsearchinputcontainer .reset, .adminsearchinputcontainer .filtericon {
    padding: 10px;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    border: 1px solid #f4f4f4;
    stroke: #000; }
    .adminsearchinputcontainer .reset:hover, .adminsearchinputcontainer .filtericon:hover {
      stroke: #d13434; }

.modal .leaguefilter {
  padding: 5px 10px;
  margin-bottom: 20px;
  border: 1px solid #d13434;
  border-radius: 5px;
  outline: none; }
  @media screen and (max-width: 500px) {
    .modal .leaguefilter {
      width: 200px; } }

@media screen and (max-width: 700px) {
  .adminlinks {
    gap: 10px; }

  .adminsearchinputcontainer {
    padding: 40px 0 0 0 !important; }
    .adminsearchinputcontainer .searchinput {
      width: 70% !important; }
    .adminsearchinputcontainer .reset, .adminsearchinputcontainer .filtericon {
      height: 35px !important;
      width: 35px !important; } }
section#pelit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  box-sizing: border-box; }
  section#pelit .peli {
    position: relative;
    display: flex;
    align-items: flex-start;
    border: 1px solid #d13434;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none; }
    @media (max-width: 700px) {
      section#pelit .peli {
        flex-direction: column; } }
    section#pelit .peli .datetime, section#pelit .peli .user, section#pelit .peli .id {
      flex: 1;
      padding: 20px;
      height: 100px; }
      @media (max-width: 700px) {
        section#pelit .peli .datetime, section#pelit .peli .user, section#pelit .peli .id {
          width: 100%;
          padding: 10px 40px; } }
    section#pelit .peli .datetime {
      display: flex;
      flex-direction: column;
      gap: 3px; }
      @media (max-width: 700px) {
        section#pelit .peli .datetime {
          padding-top: 20px; } }
      section#pelit .peli .datetime .date {
        font-size: var(--fs-xl);
        color: #d13434;
        font-weight: 600;
        line-height: 1; }
      section#pelit .peli .datetime .time {
        color: gray;
        font-size: 14px; }
    @media (max-width: 700px) {
      section#pelit .peli .user {
        padding-bottom: 20px; } }
    section#pelit .peli .user .name, section#pelit .peli .user .team {
      font-weight: 600;
      color: #000; }
    section#pelit .peli .id {
      background-color: #d13434; }
      section#pelit .peli .id div {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 500;
        color: #fff; }
        section#pelit .peli .id div span {
          color: #f5f7fb;
          font-size: 13px;
          font-weight: 300; }

.sub-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0; }
  .sub-nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 300;
    width: 100px;
    height: 70px;
    box-sizing: border-box;
    border: 1px solid #e3ebf6;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 1px, rgba(0, 0, 0, 0.1) 0px 1px 1px;
    transition: all 0.2s ease-in; }
    .sub-nav a svg {
      stroke: #d13434; }
    .sub-nav a:hover {
      background-color: #d13434;
      color: #fff;
      border: none; }
      .sub-nav a:hover svg {
        stroke: #fff; }

section#addvideo form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-bottom: 50px; }
  section#addvideo form .syoppo-input {
    width: 100%;
    max-width: 500px; }
  section#addvideo form input, section#addvideo form textarea {
    border: 1px solid #d13434;
    outline: none;
    width: 100%;
    max-width: 500px; }
    section#addvideo form input:focus, section#addvideo form textarea:focus {
      border: 1px solid #d13434 !important; }
  section#addvideo form textarea::placeholder {
    opacity: 1;
    color: #d13434; }
  section#addvideo form .kuvalabel {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d13434;
    font-size: 14px;
    background-color: #fff; }
  section#addvideo form .checkboxes {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    justify-content: space-between; }
section#addvideo label {
  color: #d13434; }

.calendarweekbuttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: auto;
  margin-top: 40px;
  padding: 0px 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
  box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
  .calendarweekbuttons .weeknow {
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    color: #d13434;
    font-weight: 600;
    font-size: 20px; }
  .calendarweekbuttons .weekbutton {
    padding: 5px 10px;
    border: 1px solid #f4f4f4;
    border-radius: 5px;
    text-decoration: none;
    color: #d13434;
    transition: all 0.2s ease-in-out; }
    .calendarweekbuttons .weekbutton:hover {
      background-color: #f5f5f5; }

.calendarcontainer {
  margin: 40px 30px 40px 30px; }
  @media screen and (max-width: 991px) {
    .calendarcontainer {
      margin: 20px 5px 20px 5px; } }
  .calendarcontainer h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 25px; }
  .calendarcontainer p {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 30px;
    text-align: center; }
  .calendarcontainer .calendar {
    width: 100%; }
    .calendarcontainer .calendar .headtr {
      -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
      box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
    .calendarcontainer .calendar .headth {
      border-right: 1px solid #eee; }
    .calendarcontainer .calendar .headth:last-child {
      border-right: none; }
    .calendarcontainer .calendar th {
      padding: 10px 0;
      color: #d13434;
      width: calc(100%/7) !important;
      font-size: 16px; }
      @media screen and (max-width: 600px) {
        .calendarcontainer .calendar th {
          font-size: 14px; } }
    .calendarcontainer .calendar td {
      padding: 10px 0;
      text-align: center;
      transition: all 0.2s ease-in-out;
      cursor: pointer; }
      @media screen and (max-width: 600px) {
        .calendarcontainer .calendar td {
          font-size: 12px; } }
    .calendarcontainer .calendar .aika {
      background-color: #d13434;
      border-radius: 5px;
      color: #fff;
      transition: all 0.2s ease-in; }
    .calendarcontainer .calendar .aika:hover {
      background: #da5e5e; }
    .calendarcontainer .calendar .eiaikaa {
      color: #ddd;
      pointer-events: none; }
    .calendarcontainer .calendar .asetettu {
      background-color: #d13434;
      border-radius: 5px;
      color: #fff;
      opacity: 0.4; }
    .calendarcontainer .calendar .varattu {
      background-color: green;
      border-radius: 5px;
      color: #fff;
      pointer-events: none;
      opacity: 0.7; }

#treenipankkilista .addprofilecontainer {
  margin-bottom: 0px; }
#treenipankkilista .find-bar {
  max-width: 300px;
  margin: auto;
  margin-top: 10px; }
#treenipankkilista table {
  margin: auto;
  margin-bottom: 50px;
  padding-top: 30px;
  width: 100%; }
  #treenipankkilista table thead tr th {
    text-align: center; }
  #treenipankkilista table tbody tr {
    background-color: #f5f7fb; }
    #treenipankkilista table tbody tr td {
      font-size: 14px;
      padding: 5px 10px; }
      #treenipankkilista table tbody tr td a {
        color: #000;
        text-decoration: none; }
        #treenipankkilista table tbody tr td a:hover {
          text-decoration: underline; }

section#blogadmin {
  max-width: 600px;
  margin: auto;
  padding: 20px; }
  section#blogadmin h1 {
    text-align: center;
    margin: 10px 0 30px 0; }
  section#blogadmin form input {
    margin-bottom: 20px; }
  section#blogadmin form label {
    margin-bottom: 5px; }
  section#blogadmin form textarea {
    border: 1px solid gray;
    border-radius: 10px; }
  section#blogadmin form select {
    width: 100%;
    padding: 10px 0;
    border: 1px solid #d13434;
    border-radius: 5px;
    margin-top: 5px; }
  section#blogadmin form .btn {
    margin: 30px 0; }
  section#blogadmin form .osio {
    position: relative;
    border: 1px solid #e3ebf6;
    border-radius: 10px;
    margin: 20px 0;
    padding: 30px; }
    section#blogadmin form .osio .remove {
      position: absolute;
      right: 10px;
      top: 10px;
      font-size: 12px;
      border: 1px solid #d13434;
      border-radius: 8px;
      padding: 5px;
      cursor: pointer;
      transition: all 0.2s linear; }
      section#blogadmin form .osio .remove:hover {
        background-color: #d13434;
        color: #fff; }
  section#blogadmin form #newSection {
    width: fit-content;
    margin-top: 20px; }

section#bloglist .find-bar {
  max-width: 300px;
  margin: auto;
  margin-top: 10px; }
section#bloglist table {
  margin: auto;
  margin-bottom: 50px;
  padding-top: 30px;
  width: 100%; }
  section#bloglist table thead tr th {
    text-align: left; }
  section#bloglist table tbody tr {
    background-color: #f5f7fb; }
    section#bloglist table tbody tr td {
      font-size: 14px;
      padding: 5px 10px; }
      section#bloglist table tbody tr td a {
        color: #000;
        text-decoration: none; }
        section#bloglist table tbody tr td a:hover {
          text-decoration: underline; }

/*@import "pelaajamarkkinat/transferheader.scss";
@import "pelaajamarkkinat/transferfind.scss";
@import "pelaajamarkkinat/transferlist.scss";
@import "pelaajamarkkinat/transferprofile.scss";*/
section#laukaisutilastointi-create #create {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto; }
section#laukaisutilastointi-create h3 {
  font-size: 22px; }
section#laukaisutilastointi-create select {
  width: 100%;
  padding: 0 5px 5px 5px;
  box-sizing: border-box;
  outline: none;
  border: none;
  border-bottom: 1px solid #d13434; }
section#laukaisutilastointi-create select,
section#laukaisutilastointi-create input[type=text] {
  display: block;
  margin-bottom: 12px; }
section#laukaisutilastointi-create input[type=text],
section#laukaisutilastointi-create select,
section#laukaisutilastointi-create .bto-datepicker {
  width: 100%;
  max-width: 380px; }
section#laukaisutilastointi-create .section {
  padding: 30px 0; }
section#laukaisutilastointi-create .small {
  font-size: 11px;
  color: #8f8da0; }
section#laukaisutilastointi-create .divider {
  position: relative;
  text-align: center;
  font-size: 12px; }
  section#laukaisutilastointi-create .divider:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f5f7fb; }
  section#laukaisutilastointi-create .divider span {
    padding: 0 14px;
    background: #fff;
    color: #8f8da0; }

section#laukaisutilastointi-popup {
  display: flex;
  align-items: center;
  justify-content: center; }
  section#laukaisutilastointi-popup #popup {
    display: flex;
    align-items: center;
    padding: 45px 80px 45px 45px;
    border: 1px solid #f5f7fb;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
    section#laukaisutilastointi-popup #popup #icon {
      position: relative;
      line-height: 1; }
      section#laukaisutilastointi-popup #popup #icon svg {
        width: 64px;
        height: 64px;
        stroke-width: 1.4;
        stroke: #3B7171;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round; }
    section#laukaisutilastointi-popup #popup #details {
      flex: 1;
      padding-left: 45px; }
      section#laukaisutilastointi-popup #popup #details h3 {
        color: #3B7171; }
      section#laukaisutilastointi-popup #popup #details .btn-inline {
        padding-top: 20px; }

section#laukaisutilastointi-statistics #opponent {
  text-align: center; }
  section#laukaisutilastointi-statistics #opponent h1 {
    font-size: 32px; }
section#laukaisutilastointi-statistics #goaliestats {
  margin: 35px 0;
  padding: 45px 22px 25px;
  border: 1px solid #f5f7fb;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
  box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
  section#laukaisutilastointi-statistics #goaliestats #teams {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 72px; }
    section#laukaisutilastointi-statistics #goaliestats #teams .teamname {
      width: 50%;
      margin-bottom: 0; }
  section#laukaisutilastointi-statistics #goaliestats #gamescore {
    display: flex;
    align-items: center;
    justify-content: center; }
    section#laukaisutilastointi-statistics #goaliestats #gamescore .score#home {
      text-align: right; }
    section#laukaisutilastointi-statistics #goaliestats #gamescore .score .goals {
      font-size: 72px;
      font-weight: 700;
      line-height: 1; }
    section#laukaisutilastointi-statistics #goaliestats #gamescore #scoredivider {
      padding: 0 32px;
      font-size: 22px;
      font-weight: 700;
      color: #8f8da0; }
  section#laukaisutilastointi-statistics #goaliestats .home {
    text-align: right; }
  section#laukaisutilastointi-statistics #goaliestats #gamestats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px; }
    @media (max-width: 769px) {
      section#laukaisutilastointi-statistics #goaliestats #gamestats {
        justify-content: initial;
        gap: 22px; } }
    section#laukaisutilastointi-statistics #goaliestats #gamestats .stat {
      padding: 25px;
      border-right: 1px solid #f5f7fb;
      text-align: center; }
      @media (max-width: 769px) {
        section#laukaisutilastointi-statistics #goaliestats #gamestats .stat {
          flex: 0 0 calc(50% - 22px); }
          section#laukaisutilastointi-statistics #goaliestats #gamestats .stat:nth-child(even) {
            border-right: 0; } }
      section#laukaisutilastointi-statistics #goaliestats #gamestats .stat p {
        margin-bottom: 10px; }
      section#laukaisutilastointi-statistics #goaliestats #gamestats .stat h3 {
        font-size: 32px; }
section#laukaisutilastointi-statistics #charts {
  padding-bottom: 50px; }
  section#laukaisutilastointi-statistics #charts #header {
    text-align: center; }
    section#laukaisutilastointi-statistics #charts #header h1 {
      margin-bottom: 22px; }
  section#laukaisutilastointi-statistics #charts .select {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    padding-bottom: 40px; }
  section#laukaisutilastointi-statistics #charts #content {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    @media (max-width: 1701px) {
      section#laukaisutilastointi-statistics #charts #content {
        gap: 50px; } }
    section#laukaisutilastointi-statistics #charts #content .chartcontainer {
      width: 33%;
      padding: 45px;
      border: 1px solid #f5f7fb;
      border-radius: 8px;
      -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
      box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
      @media (max-width: 1701px) {
        section#laukaisutilastointi-statistics #charts #content .chartcontainer {
          flex: 0 0 calc(50% - 25px);
          width: 50%; } }
      @media (max-width: 769px) {
        section#laukaisutilastointi-statistics #charts #content .chartcontainer {
          flex: 0 0 100%;
          width: 100%; } }
      @media (max-width: 1701px) {
        section#laukaisutilastointi-statistics #charts #content .chartcontainer#playtypechart {
          order: 3;
          flex: 0 0 100%;
          width: 100%; }
          section#laukaisutilastointi-statistics #charts #content .chartcontainer#playtypechart .chart {
            aspect-ratio: 2 / 1; } }
      @media (max-width: 769px) {
        section#laukaisutilastointi-statistics #charts #content .chartcontainer#playtypechart .chart {
          aspect-ratio: 1; } }
    section#laukaisutilastointi-statistics #charts #content .header {
      text-align: center; }
    section#laukaisutilastointi-statistics #charts #content .chart {
      width: 100%;
      aspect-ratio: 1; }
section#laukaisutilastointi-statistics #statistics {
  display: flex;
  column-gap: 50px; }
  @media (max-width: 1200px) {
    section#laukaisutilastointi-statistics #statistics {
      flex-direction: column;
      row-gap: 50px;
      column-gap: initial; } }
  section#laukaisutilastointi-statistics #statistics .canvas {
    width: 50%;
    padding: 45px;
    border: 1px solid #f5f7fb;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
    @media (max-width: 1200px) {
      section#laukaisutilastointi-statistics #statistics .canvas {
        flex: 0 0 100%;
        width: 100%;
        padding: 45px 16px; } }
    section#laukaisutilastointi-statistics #statistics .canvas#rinkcanvas {
      flex: 1;
      padding: 45px 45px 15px; }
      @media (max-width: 1200px) {
        section#laukaisutilastointi-statistics #statistics .canvas#rinkcanvas {
          flex: 0 0 100%;
          width: 100%;
          padding: 45px 32px 32px 16px; } }
    section#laukaisutilastointi-statistics #statistics .canvas#goaliecanvas {
      display: flex;
      align-items: flex-end; }
    section#laukaisutilastointi-statistics #statistics .canvas .header {
      width: 100%;
      text-align: center;
      padding-bottom: 30px; }
      section#laukaisutilastointi-statistics #statistics .canvas .header .description {
        color: #8f8da0; }
    section#laukaisutilastointi-statistics #statistics .canvas .canvascontainer {
      width: 100%;
      aspect-ratio: 1; }
section#laukaisutilastointi-statistics #shotinfo {
  display: flex;
  justify-content: center;
  padding-top: 30px; }
  section#laukaisutilastointi-statistics #shotinfo .shot {
    width: 120px; }
    section#laukaisutilastointi-statistics #shotinfo .shot span {
      display: inline-block;
      width: 14px;
      height: 14px;
      vertical-align: middle;
      margin-right: 6px;
      background: #000;
      border: 1px;
      border-radius: 50%;
      border-style: solid; }
      section#laukaisutilastointi-statistics #shotinfo .shot span#goal {
        background: #d13434; }
      section#laukaisutilastointi-statistics #shotinfo .shot span#miss {
        border-color: #f67d7B; }
section#laukaisutilastointi-statistics .modal#showalert .checkbox {
  margin-top: 26px; }

.modal#gameended {
  text-align: center; }
  .modal#gameended .closemodal {
    top: 54px; }
  .modal#gameended #header {
    padding: 0 0 20px; }
    .modal#gameended #header h1 {
      margin-top: 0;
      margin-bottom: 5px; }
    .modal#gameended #header p {
      margin: 0;
      color: #999;
      font-weight: 300; }
  .modal#gameended #score {
    display: flex;
    align-items: center;
    width: 100%; }
    .modal#gameended #score .team {
      width: 45%;
      font-weight: 700;
      text-align: center; }
      .modal#gameended #score .team .bto-input {
        margin-top: 16px; }
        .modal#gameended #score .team .bto-input label {
          margin: 0; }
        .modal#gameended #score .team .bto-input input {
          margin-top: 10px;
          text-align: center;
          font-size: 34px;
          text-indent: 16px; }
        .modal#gameended #score .team .bto-input.input-dirty label, .modal#gameended #score .team .bto-input.input-focus label {
          transform: translateX(-50%); }
    .modal#gameended #score p {
      flex: 1;
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      line-height: 1;
      margin: 0;
      padding-top: 22px; }
  .modal#gameended .submit {
    margin-top: 30px;
    justify-content: center; }

.laukaisutilastointi {
  padding: 20px 0; }
  .laukaisutilastointi .container-fluid {
    width: 100%;
    max-width: 1440px;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto; }
    @media (min-width: 1701px) {
      .laukaisutilastointi .container-fluid {
        width: 100%;
        max-width: 2100px;
        padding-left: 128px;
        padding-right: 128px; } }
    @media (max-width: 1700px) {
      .laukaisutilastointi .container-fluid {
        width: 100%;
        padding-left: 80px;
        padding-right: 80px; } }
    @media (max-width: 1200px) {
      .laukaisutilastointi .container-fluid {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px; } }
    @media (max-width: 992px) {
      .laukaisutilastointi .container-fluid {
        max-width: 960px; } }
    @media (max-width: 768px) {
      .laukaisutilastointi .container-fluid {
        max-width: 720px; } }
    @media (max-width: 576px) {
      .laukaisutilastointi .container-fluid {
        max-width: 540px; } }

section#laukaisutilastointi-match {
  padding: 0px 16px 0px; }
  section#laukaisutilastointi-match #header {
    position: relative;
    display: table;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #f5f7fb; }
    section#laukaisutilastointi-match #header #period {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 29, 108, 0.6);
      padding: 4px 12px;
      border: 1px solid #d13434;
      border-radius: 3px;
      color: #fff;
      font-size: 11px; }
    section#laukaisutilastointi-match #header #options {
      float: right; }
      section#laukaisutilastointi-match #header #options .dropdown {
        display: inline-block; }
      section#laukaisutilastointi-match #header #options .btn {
        position: relative;
        display: inline-block;
        width: initial;
        max-width: initial;
        min-width: 44px;
        margin-left: 6px;
        padding: 14px 12px 8px;
        background: transparent;
        border: 0;
        border-radius: 4px;
        color: #8f8da0;
        font-size: 16px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        section#laukaisutilastointi-match #header #options .btn:after {
          position: absolute;
          content: attr(data-desc);
          top: 100%;
          left: 50%;
          transform: translateX(-50%);
          opacity: 0;
          margin-top: 8px;
          padding: 8px 24px;
          border-radius: 30px;
          background: #f5f7fb;
          color: #8f8da0;
          font-weight: 700;
          font-size: 11px;
          white-space: nowrap;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        section#laukaisutilastointi-match #header #options .btn:hover {
          background: #f5f7fb; }
          section#laukaisutilastointi-match #header #options .btn:hover:after {
            opacity: 1; }
        section#laukaisutilastointi-match #header #options .btn svg {
          width: 20px;
          height: 20px;
          margin-top: -2px;
          fill: none;
          stroke: #8f8da0;
          stroke-width: 2px;
          stroke-linecap: round;
          stroke-linejoin: round; }
          section#laukaisutilastointi-match #header #options .btn svg.goalies, section#laukaisutilastointi-match #header #options .btn svg.whistle {
            fill: #8f8da0; }
  section#laukaisutilastointi-match #rink {
    padding: 16px 65px; }
    @media (max-width: 767px) {
      section#laukaisutilastointi-match #rink {
        padding: 16px 0; } }
    section#laukaisutilastointi-match #rink #overview {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      padding: 20px 0 40px;
      text-align: center; }
      section#laukaisutilastointi-match #rink #overview #gamesituation {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 16px; }
        section#laukaisutilastointi-match #rink #overview #gamesituation.active p:last-child {
          padding: 0 7px;
          font-weight: 700; }
        section#laukaisutilastointi-match #rink #overview #gamesituation.active p:first-child {
          font-weight: 400;
          padding: 0 8px; }
        section#laukaisutilastointi-match #rink #overview #gamesituation p {
          margin-bottom: 0;
          font-weight: 400;
          padding: 0 8px; }
          section#laukaisutilastointi-match #rink #overview #gamesituation p:first-child {
            padding: 0 7px;
            font-weight: 700; }
        section#laukaisutilastointi-match #rink #overview #gamesituation label {
          padding: 0 8px; }
      section#laukaisutilastointi-match #rink #overview #numberofplayers {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 22px;
        flex-wrap: wrap; }
        @media (max-width: 1400px) {
          section#laukaisutilastointi-match #rink #overview #numberofplayers .checkbox {
            flex: 0 0 calc(33% - 22px); } }
        @media (max-width: 767px) {
          section#laukaisutilastointi-match #rink #overview #numberofplayers .checkbox {
            flex: 0 0 calc(50% - 11px); } }
    section#laukaisutilastointi-match #rink #overview {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding: 20px 0 40px;
      text-align: center; }
      section#laukaisutilastointi-match #rink #overview #period {
        background: rgba(255, 29, 108, 0.6);
        padding: 4px 12px;
        border: 1px solid #d13434;
        border-radius: 3px;
        color: #fff;
        font-size: 11px; }
    section#laukaisutilastointi-match #rink #canvas {
      position: relative;
      width: 100%; }
      section#laukaisutilastointi-match #rink #canvas #hockeyrink {
        display: table;
        height: calc(100vh - 84px - 54px);
        margin: auto; }
        section#laukaisutilastointi-match #rink #canvas #hockeyrink.hover {
          cursor: pointer; }
      section#laukaisutilastointi-match #rink #canvas #selectplay {
        position: absolute;
        z-index: 10;
        top: 20px;
        left: 20px;
        transform: translate(-50%, 10px);
        display: none;
        background: #fff;
        border: 1px solid #eee;
        -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35);
        box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.35); }
        section#laukaisutilastointi-match #rink #canvas #selectplay:before {
          position: absolute;
          content: '';
          top: -8px;
          left: 50%;
          transform: translateX(-50%);
          border-left: 8px solid transparent;
          border-right: 8px solid transparent;
          border-bottom: 8px solid #fff; }
        section#laukaisutilastointi-match #rink #canvas #selectplay .btn {
          position: relative;
          display: table;
          width: 100%;
          background: #fff;
          padding: 14px 32px 14px 18px;
          border: 0;
          border-bottom: 1px solid #eee;
          border-radius: 0;
          color: #000;
          font-size: 13px;
          font-weight: 300;
          white-space: nowrap;
          cursor: pointer;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          -ms-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
          section#laukaisutilastointi-match #rink #canvas #selectplay .btn:hover {
            background: #f5f7fb; }
          section#laukaisutilastointi-match #rink #canvas #selectplay .btn:last-child {
            border: 0; }
          section#laukaisutilastointi-match #rink #canvas #selectplay .btn svg {
            position: absolute;
            top: 50%;
            right: 8px;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            fill: none;
            stroke: #8f8da0;
            stroke-width: 1px;
            stroke-linecap: round;
            stroke-linejoin: round; }
      section#laukaisutilastointi-match #rink #canvas #selectside {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px); }
        section#laukaisutilastointi-match #rink #canvas #selectside h3 {
          margin-bottom: 115px;
          text-align: center;
          font-weight: 700;
          font-size: 32px; }
        section#laukaisutilastointi-match #rink #canvas #selectside #sides {
          display: flex;
          width: 100%;
          align-items: center; }
          section#laukaisutilastointi-match #rink #canvas #selectside #sides .side {
            width: 50%; }
            section#laukaisutilastointi-match #rink #canvas #selectside #sides .side .btn {
              margin: auto; }
    section#laukaisutilastointi-match #rink #shotinfo {
      display: flex;
      justify-content: center;
      padding-top: 30px; }
      section#laukaisutilastointi-match #rink #shotinfo .shot {
        width: 120px; }
        section#laukaisutilastointi-match #rink #shotinfo .shot span {
          display: inline-block;
          width: 14px;
          height: 14px;
          vertical-align: middle;
          margin-right: 6px;
          border-radius: 50%;
          border-style: solid;
          background: #000; }
          section#laukaisutilastointi-match #rink #shotinfo .shot span#goal {
            background: #d13434; }
          section#laukaisutilastointi-match #rink #shotinfo .shot span#miss {
            border-color: #f67d7B; }
  section#laukaisutilastointi-match #teamstats #teams {
    display: flex;
    width: 100%;
    text-align: center; }
    section#laukaisutilastointi-match #teamstats #teams .team#home {
      width: 45%; }
    section#laukaisutilastointi-match #teamstats #teams .team#away {
      flex: 1; }
    section#laukaisutilastointi-match #teamstats #teams .team h3 {
      margin: 0; }
    section#laukaisutilastointi-match #teamstats #teams .team span {
      color: #999;
      font-weight: 300;
      font-size: 12px; }
    section#laukaisutilastointi-match #teamstats #teams #score {
      flex: 1;
      display: flex;
      align-items: center; }
      section#laukaisutilastointi-match #teamstats #teams #score p {
        margin: 0;
        padding: 0 12px; }
      section#laukaisutilastointi-match #teamstats #teams #score .teamscore {
        font-size: 28px; }
  section#laukaisutilastointi-match #teamstats #statistics .stat {
    position: relative;
    display: flex;
    width: 100%;
    margin: 30px 0;
    color: #8f8da0; }
    section#laukaisutilastointi-match #teamstats #statistics .stat .home,
    section#laukaisutilastointi-match #teamstats #statistics .stat .away {
      width: 50%;
      padding: 0 5px; }
    section#laukaisutilastointi-match #teamstats #statistics .stat .slider {
      position: relative;
      width: 100%;
      height: 8px;
      background: #f5f7fb;
      border-radius: 20px; }
      section#laukaisutilastointi-match #teamstats #statistics .stat .slider .percent {
        position: absolute;
        top: 0;
        left: 0;
        width: attr(data-percent);
        height: 100%;
        border-radius: 20px;
        background: #d13434; }
    section#laukaisutilastointi-match #teamstats #statistics .stat .home .percent {
      left: initial;
      right: 0;
      background: #3B7171; }
    section#laukaisutilastointi-match #teamstats #statistics .stat .away {
      text-align: right; }
    section#laukaisutilastointi-match #teamstats #statistics .stat .title {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%); }
    section#laukaisutilastointi-match #teamstats #statistics .stat.home .away p {
      color: #000; }
    section#laukaisutilastointi-match #teamstats #statistics .stat.away .away p {
      color: #000; }
    section#laukaisutilastointi-match #teamstats #statistics .stat.even p {
      color: #000; }
  section#laukaisutilastointi-match #teamstats #closestatistics {
    padding-top: 45px; }
    section#laukaisutilastointi-match #teamstats #closestatistics .btn {
      display: table;
      margin: auto;
      padding: 12px 24px;
      background: #3B7171;
      border-radius: 4px;
      color: #fff;
      cursor: pointer;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      section#laukaisutilastointi-match #teamstats #closestatistics .btn:hover {
        background: #326060; }
  section#laukaisutilastointi-match #createshot .modal-content {
    display: flex;
    width: 100%; }
    @media (max-width: 767px) {
      section#laukaisutilastointi-match #createshot .modal-content {
        padding: 45px 0; } }
  section#laukaisutilastointi-match #createshot #shotcontainer {
    display: flex;
    width: 100%;
    padding: 45px 0; }
    @media (max-width: 767px) {
      section#laukaisutilastointi-match #createshot #shotcontainer {
        flex-direction: column; } }
    section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer {
      display: flex;
      flex-direction: column;
      width: 65%;
      padding: 0 18px;
      border-right: 1px solid #f5f7fb;
      text-align: center; }
      @media (max-width: 767px) {
        section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer {
          width: 100%; } }
      section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #header {
        padding: 0 18px 70px;
        border: 0; }
        @media (max-width: 767px) {
          section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #header {
            padding-bottom: 50px; } }
        section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #header h1 {
          margin-top: 0;
          margin-bottom: 5px; }
        section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #header p {
          margin: 0;
          color: #999;
          font-weight: 300; }
      section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #goalcanvas {
        flex: 1;
        display: table;
        width: 100%;
        max-width: 800px;
        aspect-ratio: 1;
        margin: auto; }
        @media (max-width: 767px) {
          section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #goalcanvas {
            aspect-ratio: initial;
            margin-bottom: 50px; } }
      section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #goalie {
        width: 100%; }
        section#laukaisutilastointi-match #createshot #shotcontainer #goalcontainer #goalie.hover {
          cursor: pointer; }
    section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails {
      flex: 1;
      padding: 0 18px; }
      section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails h3 {
        font-size: 20px;
        margin: 0; }
        @media (max-width: 767px) {
          section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails h3 {
            text-align: center; } }
      section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails p {
        margin: 5px 0 0;
        font-weight: 300;
        color: #999; }
        @media (max-width: 767px) {
          section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails p {
            text-align: center; } }
      section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails #goaldetails {
        display: none; }
      section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails .selectplaytype {
        padding: 10px 0 30px; }
        @media (max-width: 767px) {
          section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails .selectplaytype {
            display: flex;
            flex-wrap: wrap;
            gap: 16px; } }
        @media (max-width: 767px) {
          section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails .selectplaytype .checkbox {
            flex: 0 0 calc(50% - 8px); } }
      @media (max-width: 767px) {
        section#laukaisutilastointi-match #createshot #shotcontainer #shotdetails .submit {
          padding-top: 45px;
          justify-content: center; } }
  section#laukaisutilastointi-match .modal#periodended .modal-content {
    max-width: 640px; }
  section#laukaisutilastointi-match .modal#periodended .closemodal {
    top: 54px; }
  section#laukaisutilastointi-match .modal#periodended #header {
    padding: 0 0 20px; }
    section#laukaisutilastointi-match .modal#periodended #header h1 {
      margin-top: 0;
      margin-bottom: 5px; }
    section#laukaisutilastointi-match .modal#periodended #header p {
      margin: 0;
      color: #999;
      font-weight: 300; }
  section#laukaisutilastointi-match .modal#periodended #settings {
    display: table;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #f5f7fb; }
    section#laukaisutilastointi-match .modal#periodended #settings label {
      display: table;
      margin-bottom: 10px; }
      section#laukaisutilastointi-match .modal#periodended #settings label:last-child {
        margin: 0; }
  section#laukaisutilastointi-match #gamefinished {
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); }
    section#laukaisutilastointi-match #gamefinished .content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center; }

#syoppoetusivu .load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  opacity: 0;
  z-index: -1;
  background-color: #7e9e92;
  animation-name: load;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1; }
  #syoppoetusivu .load .heading {
    position: relative;
    top: 30%;
    width: fit-content;
    margin: 0 auto;
    font-size: 75px;
    text-align: center;
    color: #fff; }
    #syoppoetusivu .load .heading .pikkuteksti {
      position: absolute;
      top: 100%;
      left: 70%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      padding: 0 10px;
      z-index: 2;
      font-size: 14px;
      font-weight: 600;
      color: #484848;
      background-color: #7e9e92; }
  #syoppoetusivu .load .heading::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: #fff; }
@keyframes load {
  0% {
    opacity: 1;
    z-index: 10; }
  60% {
    opacity: 1;
    z-index: 10; }
  100% {
    opacity: 0; } }
#syoppoetusivu .container {
  margin: 40px 15%;
  max-width: 1200px; }
  @media screen and (max-width: 800px) {
    #syoppoetusivu .container {
      margin: 5px 20px; } }
  #syoppoetusivu .container .header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center; }
    #syoppoetusivu .container .header svg {
      position: absolute;
      left: 0;
      top: 35px;
      transform: translateY(-50%);
      height: 50px;
      width: 50px;
      color: #AEB1B4; }
    #syoppoetusivu .container .header .headertext {
      display: flex;
      flex-direction: column;
      gap: 0px;
      text-align: center; }
      #syoppoetusivu .container .header .headertext .clock {
        font-size: 55px;
        font-weight: 900;
        line-height: 60px; }
      #syoppoetusivu .container .header .headertext .pikkuteksti {
        width: 100%;
        font-size: 16px;
        font-weight: 300;
        opacity: 0.5;
        margin: auto;
        margin-bottom: 15px; }
  #syoppoetusivu .container .infobox {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: rgba(46, 100, 81, 0.5);
    border-radius: 10px;
    -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.4);
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.4); }
    #syoppoetusivu .container .infobox .circles {
      display: flex;
      margin-bottom: 40px; }
      @media screen and (max-width: 600px) {
        #syoppoetusivu .container .infobox .circles {
          margin-bottom: 20px; } }
      #syoppoetusivu .container .infobox .circles .circlebox {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center; }
        #syoppoetusivu .container .infobox .circles .circlebox .heading {
          font-size: 20px;
          color: #fff; }
        #syoppoetusivu .container .infobox .circles .circlebox .circle {
          position: relative;
          height: 100px;
          width: 100px;
          border: 1px solid #fff;
          border-radius: 100%; }
          #syoppoetusivu .container .infobox .circles .circlebox .circle .value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            font-weight: 600;
            color: #fff; }
            #syoppoetusivu .container .infobox .circles .circlebox .circle .value .pikkuteksti {
              font-size: 12px;
              font-weight: 300;
              color: #fff; }
    #syoppoetusivu .container .infobox .makros .heading {
      text-align: center;
      font-size: 20px;
      opacity: 0.5;
      color: #fff; }
    #syoppoetusivu .container .infobox .makros .makroflex {
      display: flex;
      align-items: center;
      width: 100%; }
      #syoppoetusivu .container .infobox .makros .makroflex .makro {
        width: 33.3%;
        display: flex;
        flex-direction: column;
        align-items: center; }
        #syoppoetusivu .container .infobox .makros .makroflex .makro .value {
          color: #fff;
          font-size: 20px;
          font-weight: 600; }
        #syoppoetusivu .container .infobox .makros .makroflex .makro .key {
          color: #fff;
          font-size: 12px; }
  #syoppoetusivu .container .addmealcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin: 20px 0; }
    #syoppoetusivu .container .addmealcontainer .box {
      width: 48%;
      box-sizing: border-box;
      padding: 20px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 10px;
      -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.4);
      box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.4);
      text-decoration: none;
      transition: all 0.2s ease-in; }
      @media screen and (max-width: 500px) {
        #syoppoetusivu .container .addmealcontainer .box {
          padding: 20px; } }
      #syoppoetusivu .container .addmealcontainer .box:hover {
        background-color: #f5f5f5; }
      #syoppoetusivu .container .addmealcontainer .box .title {
        color: #000;
        font-weight: 900;
        font-size: 16px; }
      #syoppoetusivu .container .addmealcontainer .box svg {
        height: 80px;
        width: 80px;
        color: #7e9e92; }

section#addfood .container {
  margin: 5px 15%;
  max-width: 1200px; }
  @media screen and (max-width: 800px) {
    section#addfood .container {
      margin: 5px 20px; } }
  section#addfood .container .header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    section#addfood .container .header a svg {
      height: 50px;
      width: 50px;
      color: #AEB1B4; }
    section#addfood .container .header .headertext .heading {
      font-size: 55px;
      font-weight: 900;
      line-height: 55px; }
    section#addfood .container .header .headertext .pikkuteksti {
      margin-top: 10px;
      font-size: 14px;
      opacity: 0.5; }
  section#addfood .container .mealcontainer {
    width: 100%;
    margin-top: 10px; }
    section#addfood .container .mealcontainer .date {
      font-size: 13px;
      font-weight: 600; }
    section#addfood .container .mealcontainer .meal {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-bottom: 10px;
      background-color: #7e9e92;
      border-radius: 10px;
      text-decoration: none; }
      section#addfood .container .mealcontainer .meal.eaten {
        background-color: rgba(126, 158, 146, 0.3);
        pointer-events: none; }
      section#addfood .container .mealcontainer .meal.snack {
        background: #fff;
        border: 1px solid #7e9e92; }
      section#addfood .container .mealcontainer .meal .mealname {
        padding: 20px 0;
        margin: 0;
        color: #fff;
        font-size: 14px;
        font-weight: 600; }
        section#addfood .container .mealcontainer .meal .mealname.snack {
          color: #000; }
      section#addfood .container .mealcontainer .meal svg {
        position: absolute;
        top: 50%;
        left: 90%;
        transform: translate(-50%, -50%);
        stroke: #009273;
        opacity: 1 !important; }

section#meal .container {
  margin: 5px 15%;
  max-width: 1200px; }
  @media screen and (max-width: 800px) {
    section#meal .container {
      margin: 5px 20px; } }
  section#meal .container .header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    section#meal .container .header a svg {
      height: 50px;
      width: 50px;
      color: #AEB1B4; }
    section#meal .container .header .headertext .pikkubold {
      margin: 0;
      font-size: 12px;
      font-weight: 600;
      opacity: 0.5; }
    section#meal .container .header .headertext .heading {
      font-size: 55px;
      font-weight: 900;
      line-height: 55px; }
    section#meal .container .header .headertext .pikkuteksti {
      max-width: 300px;
      margin-top: 20px;
      font-size: 14px;
      opacity: 0.5; }
  section#meal .container .filterbar {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
    align-items: center;
    gap: 8px;
    margin-top: 10px; }
    section#meal .container .filterbar .filter {
      width: fit-content;
      padding: 5px 10px;
      border: 1px solid #7e9e92;
      border-radius: 20px;
      text-decoration: none;
      font-size: 12px;
      color: #8f8da0;
      white-space: nowrap; }
      section#meal .container .filterbar .filter.active {
        background-color: #7e9e92;
        color: #fff; }
  section#meal .container .filterbar::-webkit-scrollbar {
    display: none; }
  section#meal .container .title {
    margin: 20px 0;
    font-weight: 900;
    font-size: 14px; }
  section#meal .container .meals {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 90px; }
    section#meal .container .meals .meal {
      width: 100%;
      max-width: 500px;
      box-sizing: border-box;
      padding: 20px;
      background-color: #7e9e92;
      text-decoration: none;
      border-radius: 10px; }
      section#meal .container .meals .meal .name {
        color: #fff;
        font-size: 14px;
        font-weight: 600; }
      section#meal .container .meals .meal .desc {
        color: #fff;
        font-size: 12px;
        opacity: 0.6; }
  section#meal .container .bottombar {
    position: fixed;
    left: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background-color: #fff; }
    section#meal .container .bottombar .syoppo-btn {
      width: 90%;
      max-width: 500px;
      margin: auto;
      text-align: center;
      -webkit-box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.5);
      box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.5); }

#newmeal .container {
  margin: 5px 15%;
  max-width: 1200px; }
  @media screen and (max-width: 800px) {
    #newmeal .container {
      margin: 5px 20px; } }
  #newmeal .container .modal .syoppo-input {
    margin-bottom: 20px; }
  #newmeal .container .modal .ravintoarvot {
    margin: 20px 0; }
    #newmeal .container .modal .ravintoarvot .ravintoarvo {
      display: flex;
      align-items: flex-end;
      gap: 5px; }
      #newmeal .container .modal .ravintoarvot .ravintoarvo p {
        font-size: 14px;
        font-weight: 900;
        margin: 0; }
      #newmeal .container .modal .ravintoarvot .ravintoarvo span {
        font-weight: 400;
        font-size: 16px; }
  #newmeal .container .header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    #newmeal .container .header a svg {
      height: 50px;
      width: 50px;
      color: #AEB1B4; }
    #newmeal .container .header .headertext .pikkubold {
      margin: 0;
      font-size: 12px;
      font-weight: 600;
      opacity: 0.5; }
    #newmeal .container .header .headertext .heading {
      font-size: 55px;
      font-weight: 900;
      line-height: 55px; }
    #newmeal .container .header .headertext .pikkuteksti {
      max-width: 300px;
      margin-top: 20px;
      font-size: 14px;
      opacity: 0.5; }
  #newmeal .container .title {
    margin: 20px 0;
    font-weight: 900;
    font-size: 14px; }
  #newmeal .container .newmeal .ingredient {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #e3ebf6; }
    #newmeal .container .newmeal .ingredient .text p {
      font-size: 13px;
      font-weight: 600;
      margin: 0;
      line-height: 1; }
    #newmeal .container .newmeal .ingredient .text span {
      font-size: 11px;
      font-weight: 300;
      opacity: 0.5; }
    #newmeal .container .newmeal .ingredient .remove {
      color: #d13434;
      font-size: 16px;
      font-weight: 900;
      cursor: pointer; }
  #newmeal .container #ready {
    margin: 20px auto; }
  #newmeal .container .categorys {
    width: 100%; }
    #newmeal .container .categorys a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-decoration: none;
      border-bottom: 1px solid #e3ebf6; }
      #newmeal .container .categorys a p {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 0;
        padding: 10px;
        color: #7e9e92; }
        #newmeal .container .categorys a p svg {
          stroke: #000; }
      #newmeal .container .categorys a svg {
        stroke: #7e9e92; }
  #newmeal .container .filterbar {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    cursor: pointer; }
    #newmeal .container .filterbar .filter {
      width: fit-content;
      padding: 5px 10px;
      border: 1px solid #7e9e92;
      border-radius: 20px;
      text-decoration: none;
      font-size: 12px;
      color: #8f8da0;
      white-space: nowrap; }
      #newmeal .container .filterbar .filter.active {
        background-color: #7e9e92;
        color: #fff; }
  #newmeal .container .filterbar::-webkit-scrollbar {
    display: none; }
  #newmeal .container .searchresultcontainer {
    width: 100%;
    margin-top: 30px;
    min-height: 200px; }
    #newmeal .container .searchresultcontainer p {
      font-size: 16px;
      font-weight: 900; }
    #newmeal .container .searchresultcontainer .searchresults {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 5px; }
      #newmeal .container .searchresultcontainer .searchresults .item {
        width: 48%;
        width: calc(50%-5px);
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 20px 5px;
        border-radius: 5px;
        background-color: #7e9e92;
        cursor: pointer; }
        #newmeal .container .searchresultcontainer .searchresults .item p {
          margin: 0;
          color: #fff;
          text-align: center;
          font-size: 14px;
          font-weight: 400; }

section#summary .container .title {
  margin: 20px 0;
  font-weight: 900;
  font-size: 14px; }
section#summary .container .foods {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 30px 0; }
  section#summary .container .foods .food {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px; }
    section#summary .container .foods .food .syoppo-input {
      width: 100%; }
    section#summary .container .foods .food .remove {
      padding: 10px;
      background-color: #d13434;
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer; }
section#summary .container #yhteensa {
  font-weight: 600; }
section#summary .container .infobox {
  display: flex;
  justify-content: space-between; }
  section#summary .container .infobox #ravintoarvot {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px; }
    section#summary .container .infobox #ravintoarvot .title {
      margin: 0 0 20px 0; }
    section#summary .container .infobox #ravintoarvot .ravintoarvo {
      display: flex;
      align-items: baseline;
      gap: 10px; }
      section#summary .container .infobox #ravintoarvot .ravintoarvo p {
        margin: 0;
        font-weight: 300;
        opacity: 0.7;
        font-size: 12px; }
      section#summary .container .infobox #ravintoarvot .ravintoarvo span {
        font-weight: 600;
        font-size: 14px; }
  section#summary .container .infobox .select .title {
    margin: 0 0 20px 0; }
  section#summary .container .infobox .select select {
    width: fit-content;
    height: fit-content;
    border: 1px solid #7e9e92;
    border-radius: 5px;
    padding: 5px; }
    @media screen and (max-width: 500px) {
      section#summary .container .infobox .select select {
        width: 150px !important; } }

section#statistics .header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; }
  section#statistics .header a svg {
    height: 50px;
    width: 50px;
    color: #AEB1B4; }
  section#statistics .header .headertext .pikkubold {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.5; }
  section#statistics .header .headertext .heading {
    display: flex;
    align-items: center;
    gap: 5px; }
    section#statistics .header .headertext .heading p {
      font-size: 40px;
      font-weight: 900;
      line-height: 55px;
      margin: 0; }
    section#statistics .header .headertext .heading svg {
      stroke-width: 3px;
      stroke: #7e9e92;
      height: 42px; }
  section#statistics .header .headertext .pikkuteksti {
    max-width: 300px;
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.5; }
section#statistics .filterbar {
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  cursor: pointer; }
  section#statistics .filterbar .filter {
    width: fit-content;
    padding: 5px 10px;
    border: 1px solid #7e9e92;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    color: #8f8da0;
    white-space: nowrap; }
    section#statistics .filterbar .filter.active {
      background-color: #7e9e92;
      color: #fff; }
section#statistics .results {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%; }
  section#statistics .results .nodata {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600; }
  section#statistics .results .result {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 20px; }
    section#statistics .results .result .title {
      font-size: 20px;
      font-weight: 900;
      text-align: center;
      margin: 0;
      color: #7e9e92; }
    section#statistics .results .result .name {
      font-size: 14px;
      font-weight: 600;
      margin: 30px auto 0 auto; }
    section#statistics .results .result .amount {
      font-size: 20px;
      font-weight: 600;
      color: #7e9e92;
      margin: -20px auto 30px auto; }
    section#statistics .results .result .desc {
      font-size: 12px;
      color: #AEB1B4;
      margin: 5px auto 30px auto; }
    section#statistics .results .result .uniscore {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 20px auto 20px auto;
      height: 120px;
      width: 120px;
      background-color: #7e9e92;
      border-radius: 100%; }
      section#statistics .results .result .uniscore .number {
        color: #fff;
        font-size: 30px;
        font-weight: 600;
        margin: 0; }
      section#statistics .results .result .uniscore span {
        color: #fff;
        opacity: 0.7;
        font-size: 12px; }
    section#statistics .results .result .stats {
      display: flex;
      align-items: center;
      justify-content: space-around; }
      section#statistics .results .result .stats div {
        text-align: center; }
        section#statistics .results .result .stats div p {
          margin: 0;
          font-weight: 600;
          font-size: 12px;
          color: #AEB1B4; }
        section#statistics .results .result .stats div span {
          font-weight: 400; }

section#drinks .container {
  margin: 5px 15%;
  max-width: 1200px; }
  @media screen and (max-width: 800px) {
    section#drinks .container {
      margin: 5px 20px; } }
  section#drinks .container .header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    section#drinks .container .header a svg {
      height: 50px;
      width: 50px;
      color: #AEB1B4; }
    section#drinks .container .header .headertext .heading {
      font-size: 55px;
      font-weight: 900;
      line-height: 55px; }
    section#drinks .container .header .headertext .pikkuteksti {
      max-width: 300px;
      margin-top: 10px;
      font-size: 14px;
      opacity: 0.5; }
  section#drinks .container .drinkstats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px 0; }
    section#drinks .container .drinkstats .box {
      display: flex;
      align-items: center;
      gap: 5px; }
      section#drinks .container .drinkstats .box .stat {
        margin: 0;
        font-weight: 600;
        font-size: 14px;
        color: #7e9e92; }
  section#drinks .container .filterbar {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
    align-items: center;
    gap: 8px;
    margin-top: 10px; }
    section#drinks .container .filterbar .filter {
      width: fit-content;
      padding: 5px 10px;
      border: 1px solid #7e9e92;
      border-radius: 20px;
      text-decoration: none;
      font-size: 12px;
      color: #8f8da0;
      white-space: nowrap;
      cursor: pointer; }
      section#drinks .container .filterbar .filter.active {
        background-color: #7e9e92;
        color: #fff; }
  section#drinks .container .filterbar::-webkit-scrollbar {
    display: none; }
  section#drinks .container .searchresultcontainer {
    width: 100%;
    margin-top: 30px;
    min-height: 200px; }
    section#drinks .container .searchresultcontainer p {
      font-size: 16px;
      font-weight: 900; }
    section#drinks .container .searchresultcontainer .searchresults {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 5px; }
      section#drinks .container .searchresultcontainer .searchresults .item {
        width: 48%;
        width: calc(50%-5px);
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 20px 5px;
        border-radius: 5px;
        background-color: #7e9e92;
        cursor: pointer; }
        section#drinks .container .searchresultcontainer .searchresults .item p {
          margin: 0;
          color: #fff;
          text-align: center;
          font-size: 14px;
          font-weight: 400; }

.container {
  margin: 5px 15%;
  margin: auto;
  max-width: 1200px; }
  @media screen and (max-width: 800px) {
    .container {
      margin: 5px 20px; } }
  .container .header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    .container .header a svg {
      height: 50px;
      width: 50px;
      color: #AEB1B4; }
    .container .header .headertext .heading {
      font-size: 55px;
      font-weight: 900;
      line-height: 55px; }
    .container .header .headertext .pikkuteksti {
      max-width: 300px;
      margin-top: 10px;
      font-size: 14px;
      opacity: 0.5; }
  .container .insertsleep {
    width: 100%;
    margin-top: 20px; }
    .container .insertsleep .column {
      display: flex;
      flex-direction: column;
      gap: 5px; }
      .container .insertsleep .column .syoppo-label {
        font-size: 14px; }
      .container .insertsleep .column .syoppo-input {
        width: 50%; }
    .container .insertsleep .faces {
      display: flex;
      width: 100%;
      margin-top: 40px; }
      .container .insertsleep .faces .face {
        width: 20%;
        text-align: center;
        padding: 5px;
        border-radius: 5px; }
        .container .insertsleep .faces .face.active {
          border: 1px solid #7e9e92; }
        .container .insertsleep .faces .face svg {
          stroke: #009273; }
        .container .insertsleep .faces .face p {
          font-size: 12px;
          color: #7e9e92;
          margin: 0; }
    .container .insertsleep .syoppo-btn {
      margin: auto;
      margin-top: 30px; }
  .container .sleepdone {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 70px; }
    .container .sleepdone .amount {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .container .sleepdone .amount p {
        margin: 0;
        font-size: 90px;
        line-height: 72px;
        font-weight: 900;
        text-align: center;
        color: #7e9e92; }
      .container .sleepdone .amount span {
        margin: auto;
        font-size: 16px;
        opacity: 0.7; }
    .container .sleepdone .quality {
      display: flex;
      justify-content: center; }
      .container .sleepdone .quality svg {
        height: 100px;
        width: 100px;
        stroke: #7e9e92; }

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