:root {
  --c-bg: #ffffff;
  --c-text: #1e2034;
  --c-text2: 30, 32, 52;
  --c-main: #414a9a;
  --c-main2: 65, 74, 154;
  --c-acc: #d74090;
  --c-acc2: 215, 64, 144;
}

* {
  box-sizing: border-box;
}

body {}

#percent {
  font-size: 2em;\
  font-weight: bold;
}

body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
}

.container {
  max-width: 1920px;
  margin: 0 auto;
}

/* MENU */
nav {
  position: sticky;
  top: 0;
  background: var(--c-bg);
  color: #fff;
  padding: 0 20px;
  z-index: 1000;
  border-bottom: 3px solid var(--c-acc);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  @media (min-width: 768px) {
    justify-content: center;
    padding-top: 20px;
  }

  @media (min-width: 992px) {
    justify-content: space-between;
    padding-top: 0;
    padding: 0 40px;
  }
}

nav .brand {
  font-weight: 700;
  color: var(--c-main);
  font-size: 30px;
  line-height: 0.7;
  padding: 20px 0;
  text-decoration: none;
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 0.8s ease-out forwards;

  @media (min-width: 768px) {
    font-size: 40px;
    line-height: 0.6;
  }

  @media (min-width: 992px) {
    padding: 0;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand__subtitle {
  color: var(--c-text) !important;
  font-size: 16px;
  font-weight: 400;
  margin-left: 0 !important;
}

nav .brand span {
  color: var(--c-acc);
  margin-left: 10px;
}

nav .menu {
  display: none;
  flex-direction: column;
  width: 100%;
}

nav .menu a {
  color: var(--c-text);
  text-decoration: none;
  padding: 20px;
  font-size: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  @media (min-width: 992px) {
    padding: 0 20px;
  }
}

nav .menu a:hover {
  color: var(--c-bg);
  background: var(--c-acc);
}

.hamburger {
  font-size: 42px;
  cursor: pointer;
  display: block;
  color: var(--c-acc);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  nav .menu {
    display: flex !important;
    flex-direction: row;
    width: auto;
  }

  nav .menu a {
    padding: 40px 30px;
    border: none;
    font-size: 20px;

    @media (min-width: 768px) {
      padding: 40px 15px;
    }

    @media (min-width: 1200px) {
      padding: 40px 30px;
    }

    @media (min-width: 1400px) {
      padding: 40px;
    }

    @media (min-width: 1600px) {
      padding: 40px 60px;
    }
  }
}


section {
  padding: 0 15px;
  padding-top: 40px !important;
  padding-bottom: 40px !important;

  @media(min-width: 1200px) {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    padding-left: 40px !important;
    padding-right: 40px;
  }
}

h1 {
  color: var(--c-text);
  font-size: 24px;
  margin-top: 40px;
  text-align: center;

  @media(min-width: 768px) {
    font-size: 50px;
  }

  @media(min-width: 1200px) {
    font-size: 42px;
  }

  @media(min-width: 1400px) {
    font-size: 50px;
  }
}

h2 {
  color: var(--c-text);
  font-size: 20px;

  @media(min-width: 768px) {
    font-size: 24px;
  }

  @media(min-width: 992px) {
    font-size: 26px;
  }
}

ul {
  list-style: disc;
  margin-left: 20px;
}

.chart-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.chart-container.visible {
  opacity: 1;
  visibility: visible;
}


/* OUTSET */

@keyframes growUp {
  from {
    transform: translateY(20px) scaleY(0.5);
    opacity: 0;
  }

  to {
    transform: translateY(0) scaleY(1);
    opacity: 1;
  }
}

.outset-wrap {
  display: none;
}

@media (min-width: 992px) {
  .outset-wrap {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    position: absolute;
    z-index: 100;
    left: 20px;
    bottom: 0;
  }
}

@media (min-width: 1200px) {
  .outset-wrap {
    left: 40px;
  }
}

.outset-dekorace {
  width: 60px;
  opacity: 0;
  animation-name: growUp;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.outset-dekorace-1 {
  height: 220px;
  background: rgba(var(--c-acc2), 1);
  animation-delay: 0.1s;
}

.outset-dekorace-2 {
  height: 180px;
  background: rgba(var(--c-acc2), 0.9);
  animation-delay: 0.2s;
}

.outset-dekorace-3 {
  height: 80px;
  background: rgba(var(--c-acc2), 0.8);
  animation-delay: 0.3s;
}

.outset-dekorace-4 {
  height: 150px;
  background: rgba(var(--c-acc2), 0.7);
  animation-delay: 0.4s;
}

.outset-dekorace-5 {
  height: 190px;
  background: rgba(var(--c-acc2), 0.6);
  animation-delay: 0.5s;
}

.outset-dekorace-6 {
  height: 170px;
  background: rgba(var(--c-acc2), 0.5);
  animation-delay: 0.6s;
}

.outset-dekorace-7 {
  height: 90px;
  background: rgba(var(--c-acc2), 0.4);
  animation-delay: 0.7s;
}

.outset-dekorace-8 {
  height: 100px;
  background: rgba(var(--c-acc2), 0.3);
  animation-delay: 0.8s;
}

.outset-dekorace-9 {
  height: 140px;
  background: rgba(var(--c-acc2), 0.2);
  animation-delay: 0.9s;
}

.outset-dekorace-10 {
  height: 160px;
  background: rgba(var(--c-acc2), 0.1);
  animation-delay: 1.0s;
}

.outset-dekorace-11 {
  height: 70px;
  background: rgba(var(--c-acc2), 0.05);
  animation-delay: 1.1s;
}


#outset {
  padding-top: 20px !important;
  position: relative;
  max-width: 1700px;
  margin: 0 auto;

  /*&::before {
    @media(min-width: 992px) {
      content: "";
      background: url(images/outset-bg.png)no-repeat left / cover;
      width: 62%;
      height: 180px;
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 0;
    }

  }*/




  .outset__container {
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;

    @media(min-width: 992px) {
      padding-bottom: 170px !important;
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    @media(min-width: 1200px) {
      padding-bottom: 110px !important;
    }

    @media(min-width: 1400px) {
      padding-bottom: 130px !important;
    }

    @media(min-width: 1700px) {
      padding-bottom: 100px !important;
    }
  }

  .outset-left {
    @media(min-width: 992px) {
      max-width: 50%;
      flex: 1 1 50%;
    }

    @media(min-width: 1200px) {
      max-width: 62%;
      flex: 1 1 62%;
    }
  }

  .outset-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    @media(min-width: 992px) {
      max-width: 50%;
      flex: 1 1 50%;
    }

    @media(min-width: 1200px) {
      max-width: 38%;
      flex: 1 1 38%;
    }

    @media(min-width: 1400px) {
      position: relative;
      top: 60px;
    }

    .outset-img {
      display: flex;
      align-items: center;
      justify-content: center;

      @media(min-width: 768px) {
        margin-right: 20px;
      }

      img {
        object-fit: contain;
        width: 145px;
        height: auto;

        @media(min-width: 450px) {
          width: auto;
          max-width: 200px;
        }
      }
    }

  }

  h2 {
    font-weight: 700;
    color: var(--c-text);

    @media(min-width: 1400px) {
      font-size: 32px;
    }
  }

  p {
    font-size: 24px;
    font-weight: 400;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    display: block;
    text-align: center;
    margin: 0 !important;
  }

  .outset-text {
    font-size: 16px;
  }

  a {
    font-size: 22px;
    color: var(--c-main);

    &:hover {
      text-decoration: none;
    }
  }
}

/* HERO */

.hero {
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  align-items: center;
  justify-content: center;
  background: rgba(var(--c-main2), 0.08);
}

.hero__container {
  max-width: 1700px;
  margin: 0 auto;

  @media(min-width: 992px) {
    display: flex;
  }
}

.hero h1 {
  text-align: left;
  line-height: 1.2;
  font-size: 24px;
  margin-top: 0 !important;

  @media(min-width: 768px) {
    font-size: 50px;
  }

  @media(min-width: 992px) {
    margin-bottom: 0;
    font-size: 42px;
  }

  @media(min-width: 1400px) {
    font-size: 50px;
  }

  @media(min-width: 1600px) {
    font-size: 80px;
  }
}

.hero .hero-left {
  text-align: left;

  @media(min-width: 992px) {
    flex: 1 1 50%;
    max-width: 50%;
  }

  @media(min-width: 1500px) {
    flex: 1 1 65%;
    max-width: 65%;
  }
}

.hero ul {
  padding: 0 0 0 10px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;

  @media(min-width: 992px) {
    flex: 1 1 50%;
    max-width: 50%;
    padding-left: 20px;
  }

  @media(min-width: 1500px) {
    flex: 1 1 35%;
    max-width: 35%;
  }
}

.hero li {
  padding: 0;
  border-radius: 5px;
  color: var(--c-main);
  font-size: 18px;
  margin-bottom: 20px;
  list-style: none;

  @media(min-width: 768px) {
    font-size: 26px;
  }

  @media(min-width: 1200px) {
    font-size: 32px;
  }
}

.hero li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url(images/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;

  @media(min-width: 768px) {
    top: 7px;
  }

  @media(min-width: 1200px) {
    top: 10px;
  }
}

.hero li {
  position: relative;

  &::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -20px;
    background: var(--c-acc);
    width: 100%;
    height: 10px;
    border-radius: 5px;
    margin-top: 5px;
    opacity: 0;
    animation: reveal 0.8s ease-out forwards;
  }

  @for $i from 1 through 3 {
    &:nth-child(#{$i})::after {
      animation-delay: ($i - 1) * 0.5s;
    }
  }
}

@keyframes reveal {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 100%;
    opacity: 1;
  }
}

/* main-results */

#main-results {
  padding: 0;

  @media(min-width: 1200px) {
    padding-left: 20px;
  }

  h1 {
    padding: 0 20px;
    margin-bottom: 40px;

    @media(min-width: 768px) {
      margin-bottom: 60px;
    }
  }

  .main-results__container {
    @media(min-width: 992px) {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    @media(min-width: 1600px) {
      gap: 50px;
      padding-left: 60px;
    }
  }

  .chart-container__video {
    display: flex;
    justify-content: center;
overflow: hidden;
    @media(min-width: 992px) {
      max-width: 440px;
      flex: 1 1 440px;
    }

    @media(min-width: 1600px) {
      max-width: 440px;
      flex: 1 1 440px;
    }
  }

  .chart-container__video video {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 40px;
     object-fit: contain;
    padding-bottom: 20px;
background-color: #000;

    @media(min-width: 992px) {
      padding-bottom: 0;
    }
  }

  .chart-right {
    @media(min-width: 992px) {
      max-width: calc(100% - 460px);
      flex: calc(100% - 460px);
    }

    @media(min-width: 1600px) {
      max-width: calc(100% - 490px);
      flex: 1 1 calc(100% - 490px);
    }
  }

  .chart-bg {
    background: linear-gradient(90deg, rgba(215, 64, 144, 1) 30%, rgba(30, 32, 52, 1) 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    @media(min-width: 768px) {
      padding: 20px 20px 20px 60px;
      height: 550px;
      justify-content: flex-start;
    }

    @media(min-width: 992px) {
      border-radius: 40px 0 0 0;
    }

    @media(min-width: 1200px) {
      padding: 20px 20px 20px 60px;
    }
  }

  .chart-bg__2 {
    background: var(--c-main);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    @media(min-width: 768px) {
      padding: 20px 20px 20px 60px;
      height: 120px;
      border-radius: 0 0 0 40px;
      justify-content: flex-start;
    }

    @media(min-width: 992px) {
      height: 150px;
    }

    @media(min-width: 1200px) {
      padding: 20px 20px 20px 100px;

    }
  }

  h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;

    @media(min-width: 768px) {
      font-size: 30px;
    }

    @media(min-width: 1200px) {
      font-size: 32px;
    }

    span {
      font-size: 100px;

      @media(min-width: 768px) {
        font-size: 150px;
      }

      @media(min-width: 1200px) {
        font-size: 200px;
      }
    }
  }

  #pie-rules {
    /*stransform: rotate(140deg);*/
  }
}


/* use */

#use {
  h1 {
    @media(min-width: 768px) {
      padding: 0 50px;
    }
  }

  .use__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;


  }

  .chart-container {
    height: 200px;
    width: 100%;
    max-width: 1200px;

    @media(min-width: 768px) {
      height: 500px;
    }
  }

  h2 {
    text-align: center;

    @media(min-width: 768px) {}

  }

}



/* attitude */


#detailed-attitude {}

#attitude {
  background: rgba(var(--c-main2), 0.08);

  p {
    text-align: center;

    @media(min-width: 768px) {
      font-size: 24px;
    }
  }

  .chart-container {
    width: 100%;
    max-width: 1400px;
    height: 300px;
    position: relative;
    color: var(--c-text);

    @media(min-width: 768px) {
      margin-top: 70px;
    }

    .attitude-line {
      position: absolute;
      left: 16px;
      display: none;
      top: 0;
      width: calc(100% - 40px);
      height: 20px;
      background: linear-gradient(90deg, rgba(215, 64, 144, 1) 6%, rgba(65, 74, 154, 0.5) 6%, rgba(65, 74, 154, 0.5) 51%, rgba(65, 74, 154, 1) 51%);

      @media(min-width: 768px) {
        display: block;
      }
    }

    .attitude-left {
      position: absolute;
      left: 20px;
      top: -20px;
      display: none;
      transform: rotate(-10deg);
      transform-origin: left top;
      color: var(--c-acc);

      @media(min-width: 768px) {
        display: block;
      }
    }

    .attitude-middle {
      position: absolute;
      display: none;
      color: var(--c-main);
      transform: rotate(-10deg);
      transform-origin: left top;
      left: 10%;
      top: -20px;

      @media(min-width: 768px) {
        display: block;
      }

      @media(min-width: 992px) {
        left: 8%;
      }
    }

    .attitude-right {
      position: absolute;
      display: none;
      color: var(--c-main);
      transform: rotate(-10deg);
      transform-origin: left top;
      left: 52%;
      top: -20px;

      @media(min-width: 768px) {
        display: block;
      }
    }
  }
}


/* barriers */

#barriers {
  .chart-container {
    height: 200px;
    width: 100%;
    max-width: 1200px;

    @media(min-width: 768px) {
      height: 400px;
    }
  }

  .barriers-container {
    max-width: 1700px;
    margin: 0 auto;

    @media(min-width: 992px) {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    @media(min-width: 1600px) {
      gap: 50px;
    }
  }

  .chart-container {
    @media(min-width: 992px) {
      max-width: calc(100% - 400px);
      flex: calc(100% - 400px);
    }

    @media(min-width: 1600px) {
      max-width: calc(100% - 420px);
      flex: 1 1 calc(100% - 420px);
    }
  }

  .chart-container__video {
    display: flex;
    justify-content: center;
 overflow: hidden;
    @media(min-width: 992px) {
      max-width: 380px;
      flex: 1 1 380px;
    }

    @media(min-width: 1600px) {
      max-width: 380px;
      flex: 1 1 380px;
    }
  }

  .chart-container__video video {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 40px;
     object-fit: contain;
    padding-bottom: 20px;
background-color: #000;
    @media(min-width: 992px) {
      padding-bottom: 0;
    }
  }
}

/* employee-attitude */
#employee-attitude {
  .chart-container {
    height: 200px;
    width: 100%;
    max-width: 1200px;

    @media(min-width: 768px) {
      height: 280px;
    }
  }
}





/* future */
#future {
  padding-top: 0 !important;
  /*background: rgba(var(--c-main2), 0.1);*/

  @media(min-width: 992px) {
    display: flex;
    align-items: stretch;
    gap: 1rem;
  }

  h2 {
    text-align: center;

    @media(min-width: 992px) {
      height: 100px;
    }
  }
}


#future-ai {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.future-title {
  padding: 20px 0;
  background: rgba(var(--c-main2), 0.08);
  /*margin-bottom: 0;
  padding-bottom: 50px;*/

  &::after {
    content: url(images/arrow-down.svg);
    display: block;
    margin-top: 20px;
  }
}

#impact-future,
#plan-implementation {
  @media(min-width: 992px) {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .chart-container {
    flex: 1;
    position: relative;
  }

  /* volitelně, aby canvas skutečně vyplnil container */
  .chart-container canvas {
    width: 100% !important;
    height: 100% !important;
  }
}



/* Karty */

#about {
  background: linear-gradient(90deg, rgba(30, 32, 52, 1) 0%, rgba(65, 74, 154, 1) 100%);

  h1 {
    color: var(--c-bg);
  }
}


#partners {}

.card-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 5px;
  margin: 0 auto;
  max-width: 1700px;

  @media(min-width: 1350px) {
    flex-wrap: nowrap;
  }
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  width: auto;
  height: auto;
  flex: 1 1 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  @media(min-width: 768px) {
    flex-direction: row;
  }

  @media(min-width: 1350px) {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);

  }


  img {
    position: relative;
    top: 20px;
  }

  @media(min-width: 768px) {
    margin-bottom: 0;
    top: 30px;
  }
}

.card-title {
  color: var(--c-bg);
  text-align: center;
  font-size: 18px;
  padding: 0 20px;
  max-width: 1110px;
  margin: 0 auto;
}

.card2 {
  img {
    margin-bottom: 20px;


    @media(min-width: 768px) {
      margin-bottom: 0;
    }
  }


  .card-link {
    @media(min-width: 768px) {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
    }

    @media(min-width: 1200px) {
      margin-top: auto;
      height: 200px;
    }


  }

  .card-text {
    height: auto;

    @media(min-width: 1200px) {
      height: 150px;

    }
  }
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: var(--c-text);

  @media(min-width: 768px) {
    margin-bottom: auto;
  }
}

.card-text {
  @media(min-width: 1400px) {
    height: 250px;
  }

  @media(min-width: 1600px) {
    height: 200px;
  }
}

.card-content h2 {
  margin-bottom: 10px;
  font-size: 28px;
  color: var(--c-main);

  @media(min-width: 768px) {
    font-size: 32px;

  }
}

.card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.link-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;

  &::before {
    content: url(images/linkedin.svg);
    display: inline-block;
    margin-right: 10px;
  }
}

.link-instagram {
  display: flex;
  align-items: center;
  justify-content: center;

  &::before {
    content: url(images/instagram.svg);
    display: inline-block;
    margin-right: 10px;
  }
}

.link-email {
  display: flex;
  align-items: center;
  justify-content: center;

  &::before {
    content: url(images/email.svg);
    display: inline-block;
    margin-right: 10px;
  }
}

.link-web {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;



  &::before {
    content: url(images/link.svg);
    display: inline-block;
    margin-right: 10px;
  }
}

.card-content a {
  color: var(--c-main);
  margin-bottom: 5px;
  text-decoration: underline;

  &:hover {
    text-decoration: none;
  }
}

.card-content a.instagram {
  color: #C13584;
}

.card img {
  width: 100%;

  @media(min-width: 768px) {
    width: 350px;
    object-fit: contain;
  }

  @media(min-width: 1200px) {
    width: 300px;
  }
}


/* Karta - já */

#web {
  background: linear-gradient(90deg, rgba(30, 32, 52, 1) 20%, rgba(104, 45, 89, 1) 72%, rgba(215, 64, 144, 1) 100%);
  padding-bottom: 0px !important;
  padding-top: 20px !important;

  h1 {
    color: var(--c-bg);

    @media(min-width: 768px) {
      margin-bottom: 0;
    }
  }
}


.about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;

  @media(min-width: 768px) {
    flex-direction: row;
    justify-content: space-between;
  }

  .about__left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    @media(min-width: 768px) {
      align-items: flex-start;
    }

    h2,
    a {
      color: var(--c-bg);

    }
  }

  .about__middle {
    margin-top: 20px;

    ul {
      li {
        color: var(--c-bg);
        margin-bottom: 10px;
        font-size: 18px;
      }
    }
  }

  .about__right {
    position: relative;
    top: 4px;

    img {
      width: 180px;
    }
  }

  ul {
    list-style: none;
  }

  li {
    position: relative;

    &::before {
      content: "";
      position: absolute;
      left: -20px;
      top: 1px;
      width: 20px;
      height: 20px;
      background-image: url(images/chevron-right.svg);
      background-repeat: no-repeat;
      filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(190deg) brightness(105%) contrast(102%);
      background-size: contain;
    }
  }

  .link-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;

    &::before {
      content: url(images/linkedin2.svg);
      display: inline-block;
      margin-right: 10px;
    }
  }

  .link-email {
    display: flex;
    align-items: center;
    justify-content: center;

    &::before {
      content: url(images/email2.svg);
      display: inline-block;
      margin-right: 10px;
    }
  }
}


/* Patička */

.footer {
  text-align: center;
  padding: 20px 15px;
  background: var(--c-text);
  color: #fff;
  font-size: 0.9rem;
}





/*################################################*/



.chart-container {
  max-width: 600px;
  margin: auto;
}

.chart-container.visible {
  opacity: 1;
  transform: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.half {
  flex: 1 1 300px;
}

canvas {}

.small {
  font-size: .8rem;
  font-style: italic;
  margin-top: 10px;
}

/* Styl šipky */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--c-acc);
  color: #fff;
  border: none;
  box-shadow: 0 10px 30px #0000004c;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: opacity 0.3s;

  &:hover {
    background: var(--c-bg);

    img {
      filter: brightness(0) saturate(100%) invert(35%) sepia(44%) saturate(1643%) hue-rotate(288deg) brightness(98%) contrast(94%);
    }
  }

  img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

#scrollTopBtn.show {
  @media(min-width: 768px) {
    display: block;
    opacity: 1;
  }
}
