@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

p,
li {
  font-family: "Roboto", sans-serif;
}

button {
  cursor: pointer;
  outline: none;
}

.intro__background {
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  .intro__background--small {
    display: block;
  }
}
@media (min-width: 768px) {
  .intro__background--large {
    display: block;
  }
}
.intro__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .intro__wrapper {
    padding: 0 50px;
  }
}
@media (min-width: 768px) {
  .intro__wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}
.intro__logos {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .intro__logos {
    padding-top: 50px;
  }
}
.intro__logo {
  margin-right: 20px;
  margin-bottom: 20px;
}
.intro__title {
  font-weight: 200;
  font-size: 40px;
  margin: 0;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 45px;
    margin: 0.3em 0;
  }
}
@media (min-width: 992px) {
  .intro__title {
    font-size: 65px;
    margin: 0.3em 0;
  }
}
@media (min-width: 1200px) {
  .intro__title {
    font-size: 72px;
    margin: 0.3em 0;
  }
}
.intro__preamble {
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .intro__preamble {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .intro__preamble {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 768px) {
  .intro__preamble {
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .intro__preamble {
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .intro__preamble {
    max-width: 60%;
  }
}
.intro__open-guide {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  background-color: black;
  color: white;
}
.intro__open-guide--done::after, .intro__open-guide--correct::after, .intro__open-guide--user-correct::after, .intro__open-guide--wrong::after, .intro__open-guide--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.intro__open-guide:hover, .intro__open-guide:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.intro__open-guide--disabled {
  cursor: default;
  opacity: 0.2;
}
.intro__open-guide--disabled:hover {
  text-decoration: none;
}
.intro__open-guide--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.intro__open-guide--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.intro__open-guide--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.intro__open-guide--correct:hover, .intro__open-guide--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.intro__open-guide--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.intro__open-guide--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.intro__open-guide--wrong:hover, .intro__open-guide--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.intro__open-guide--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.intro__open-guide--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.intro__open-guide--user-correct:hover, .intro__open-guide--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.intro__open-guide--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.intro__open-guide--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.intro__open-guide--user-wrong:hover, .intro__open-guide--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}
@media (max-width: 767px) {
  .intro__open-guide {
    margin-bottom: -50px;
  }
}

.tips {
  background: url("../images/tips-bg.svg") no-repeat center/cover;
  margin-top: -4px;
  padding: 50px 0;
  transition: padding 0.2s ease-out;
}
.tips__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .tips__wrapper {
    padding: 0 50px;
  }
}
.tips__tip {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .tips__tip {
    width: 29%;
  }
}
.tips__image {
  max-height: 90px;
}
.tips__title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .tips__title {
    font-size: 22px;
  }
}
.tips__text {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .tips__text {
    font-size: 18px;
    line-height: 24px;
  }
}

.section-top {
  background-color: #FEDFA8;
  padding: 20px 0;
}
.section-top--green {
  background-color: #B2D7AF;
}
.section-top--purple {
  background-color: #A6AFD2;
}
.section-top--pink {
  background-color: #F7C3CA;
}
.section-top__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .section-top__wrapper {
    padding: 0 50px;
  }
}
.section-top__image {
  margin-right: 20px;
}
.section-top__title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  font-weight: 200;
  margin: 0;
}
@media (min-width: 768px) {
  .section-top__title {
    font-size: 45px;
  }
}
.section-top__text {
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .section-top__text {
    font-size: 22px;
    line-height: 26px;
  }
}

.section-main {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .section-main--yellow::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #fece77;
  }
}
.section-main__background {
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .section-main__background--tablet {
    display: block;
  }
}
.section-main__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .section-main__wrapper {
    padding: 0 50px;
  }
}
@media (min-width: 768px) {
  .section-main__wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
  }
}
.section-main__image {
  margin-bottom: 10px;
}
.section-main__title {
  font-weight: bold;
  font-size: 28px;
  margin: 0;
  display: none;
}
.section-main__content {
  padding: 20px 40px;
  position: relative;
}
.section-main__text {
  font-size: 18px;
  line-height: 24px;
  position: relative;
  display: inline-block;
}
@media (min-width: 768px) {
  .section-main__text {
    font-size: 18px;
    line-height: 24px;
  }
}
.section-main__button {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  display: block;
}
.section-main__button--done::after, .section-main__button--correct::after, .section-main__button--user-correct::after, .section-main__button--wrong::after, .section-main__button--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.section-main__button:hover, .section-main__button:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.section-main__button--disabled {
  cursor: default;
  opacity: 0.2;
}
.section-main__button--disabled:hover {
  text-decoration: none;
}
.section-main__button--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.section-main__button--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.section-main__button--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.section-main__button--correct:hover, .section-main__button--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.section-main__button--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.section-main__button--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.section-main__button--wrong:hover, .section-main__button--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.section-main__button--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.section-main__button--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.section-main__button--user-correct:hover, .section-main__button--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.section-main__button--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.section-main__button--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.section-main__button--user-wrong:hover, .section-main__button--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}

.section-background-small {
  width: 100%;
  margin-bottom: 50px;
}
.section-background-small--1, .section-background-small--2 {
  background: linear-gradient(180deg, #d1e7f2 0%, #fcfcfc 100%);
}
.section-background-small--3, .section-background-small--4 {
  background: linear-gradient(180deg, #dbebd7 0%, white 100%);
}
.section-background-small--4 img {
  margin-bottom: 50px;
}
.section-background-small img {
  width: 100%;
}
@media (min-width: 768px) {
  .section-background-small {
    display: none;
  }
}

.section-animations {
  display: none;
}
@media (min-width: 768px) {
  .section-animations {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
  }
  .section-animations__image {
    width: auto;
    position: absolute;
  }
  .section-animations__image--clouds {
    top: 0;
    left: 10%;
    width: 670px;
  }
  .section-animations__image--sun {
    width: 940px;
    top: -20%;
    right: -20%;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .section-animations__image--sun {
    top: -10%;
    right: 0;
  }
}
@media (min-width: 768px) {
  .section-animations__image--clouds-2 {
    width: 290px;
    top: 10%;
    left: 60%;
  }
}
@media (min-width: 768px) {
  .section-animations__image--tree {
    width: 740px;
    left: 10%;
  }
}
@media (min-width: 768px) {
  .section-animations__image--swingset {
    width: 252px;
  }
}
@media (min-width: 768px) {
  .section-animations__image--bushes {
    width: 100%;
    top: 0;
  }
}
@media (min-width: 768px) {
  .section-animations__image--bushes-2 {
    width: 410px;
    top: 0;
    left: 5%;
  }
}

.item {
  position: absolute;
  z-index: 30;
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .item {
    left: 50%;
    transform: translateX(-50%);
  }
}
.item--active {
  z-index: 100;
}
.item--1-1 {
  top: 10%;
}
.item--1-2 {
  top: 30%;
}
.item--1-3 {
  top: 65%;
}
.item--2-1 {
  top: 15%;
}
.item--2-2 {
  top: 58%;
}
.item--2-3 {
  top: 35%;
}
.item--3-1 {
  top: 23%;
}
.item--3-2 {
  top: 49%;
}
.item--3-3 {
  top: 72%;
}
.item--4-1 {
  top: 47%;
}
.item--4-2 {
  top: 22%;
}
.item--4-3 {
  top: 73%;
}
@media (min-width: 768px) {
  .item--1-1 {
    top: 42%;
    right: 25%;
  }
  .item--1-2 {
    top: 40%;
    left: 50%;
  }
  .item--1-3 {
    left: 20%;
    top: 70%;
  }
  .item--2-1 {
    top: 25%;
    left: 64%;
  }
  .item--2-2 {
    top: 63%;
    left: 50%;
  }
  .item--2-3 {
    top: 55%;
    left: 36%;
  }
  .item--3-1 {
    top: 69%;
    left: 33%;
  }
  .item--3-2 {
    top: 58%;
    left: 53%;
  }
  .item--3-3 {
    top: 65%;
    left: 78%;
  }
  .item--4-1 {
    top: 58%;
    left: 46%;
  }
  .item--4-2 {
    top: 37%;
    left: 17%;
  }
  .item--4-3 {
    top: 50%;
    left: 81%;
  }
}
@media (min-width: 1200px) {
  .item--1-1 {
    top: 15%;
  }
}
.item__title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-weight: bold;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 20px;
}
.item__icon {
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: url("../images/icon-plus.svg") no-repeat center/contain;
  margin: 0;
  border: none;
}
.item__icon:hover, .item__icon:focus {
  background: url("../images/icon-plus-hover.svg") no-repeat center/contain;
}
.item__icon:hover span, .item__icon:focus span {
  text-decoration: underline;
}
.item__icon--active {
  background: none !important;
}
.item__icon--active:hover {
  background: none;
}
.item__icon--active span {
  text-decoration: underline;
}

.item-content {
  z-index: 30;
  text-align: left;
  width: 355px;
  background-color: #DDDDDD;
  padding: 30px 40px 15px 15px;
  position: relative;
  margin-top: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  animation: glideDown 0.5s ease-out forwards;
}
.item-content--active {
  display: block;
  margin-top: 0;
}
.item-content::before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #DDDDDD;
  border-width: 30px;
  margin-left: -30px;
}
.item-content__title {
  margin-bottom: 0.5em;
}
.item-content__text {
  font-size: 18px;
}
.item-content__text--list {
  padding-left: 20px;
  position: relative;
}
.item-content__text--list::before {
  content: "•";
  display: block;
  position: absolute;
  left: 2px;
  font-size: 30px;
  line-height: 0;
  top: 10px;
}
.item-content__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: url("../images/icon-plus.svg") no-repeat center/contain;
  border: none;
  cursor: pointer;
  outline: none;
  transform: rotate(45deg);
}
.item-content__close:hover, .item-content__close:focus {
  background: url("../images/icon-plus-hover.svg") no-repeat center/contain;
}
.item-content__close:hover span, .item-content__close:focus span {
  text-decoration: underline;
}
.item-content__close img {
  display: none;
}
.item-content__close-label {
  font-weight: bold;
  transform: rotate(-45deg);
  display: block;
  position: absolute;
  right: 90%;
  top: 120%;
}
.item-content__question {
  font-weight: bold;
}
.item-content__option {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  margin: 0 20px 0 0;
  -webkit-user-select: none;
          user-select: none;
}
.item-content__option--done::after, .item-content__option--correct::after, .item-content__option--user-correct::after, .item-content__option--wrong::after, .item-content__option--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.item-content__option:hover, .item-content__option:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.item-content__option--disabled {
  cursor: default;
  opacity: 0.2;
}
.item-content__option--disabled:hover {
  text-decoration: none;
}
.item-content__option--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.item-content__option--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.item-content__option--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.item-content__option--correct:hover, .item-content__option--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.item-content__option--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.item-content__option--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.item-content__option--wrong:hover, .item-content__option--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.item-content__option--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.item-content__option--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.item-content__option--user-correct:hover, .item-content__option--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.item-content__option--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.item-content__option--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.item-content__option--user-wrong:hover, .item-content__option--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}
.item-content__feedback {
  display: none;
}
.item-content__feedback--active {
  display: block;
}
.item-content__image-carousel {
  margin-bottom: 40px;
  text-align: center;
}
.item-content__image-carousel img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}
.item-content .slick-arrow {
  color: transparent;
  background: url("../images/icon-simple-arrow.svg") no-repeat center/contain;
  height: 16px;
  width: 8px;
  border: none;
  position: absolute;
  bottom: -30px;
  outline: none;
}
.item-content .slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: 0;
}
.item-content .slick-arrow.slick-next {
  right: 0;
}
.item-content .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  padding: 0;
}
.item-content .slick-dots button {
  width: 10px;
  height: 10px;
  display: block;
  background-color: #F7C3CA;
  border: none;
  border-radius: 100%;
  outline: none;
  color: transparent;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.item-content .slick-dots .slick-active button {
  background-color: #DE6E7D;
}
@keyframes glideDown {
  from {
    transform: translateX(-50%) translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.resource {
  overflow: hidden;
  height: 0;
  position: relative;
}
.resource--yellow .slick-dots button {
  background-color: #FEDFA8;
}
.resource--yellow .slick-dots .slick-active button {
  background-color: #E2AE54;
}
.resource--green .slick-dots button {
  background-color: #B2D7AF;
}
.resource--green .slick-dots .slick-active button {
  background-color: #19975D;
}
.resource--purple .slick-dots button {
  background-color: #A6AFD2;
}
.resource--purple .slick-dots .slick-active button {
  background-color: #6D7BB2;
}
.resource--pink .slick-dots button {
  background-color: #F7C3CA;
}
.resource--pink .slick-dots .slick-active button {
  background-color: #DE6E7D;
}
.resource--open {
  height: auto;
}
.resource__content {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .resource__content {
    height: 100%;
    padding: 60px 0;
  }
}
.resource__close {
  font-size: 15px;
  font-weight: bold;
  background-color: transparent;
  border: none;
  height: 36px;
  position: absolute;
  padding-right: 40px;
  background: url(../images/icon-close.svg) no-repeat center right/contain;
  outline: none;
  top: 120px;
  right: 20px;
}
.resource__close:hover, .resource__close:focus {
  text-decoration: underline;
  background-image: url(../images/icon-close-invert.svg);
}
@media (min-width: 768px) {
  .resource__close {
    right: 40px;
  }
}
@media (min-width: 768px) {
  .resource__slider {
    height: 100%;
  }
}
.resource__image-container {
  text-align: center;
  margin: 20px;
}
@media (min-width: 768px) {
  .resource__image-container {
    margin: 50px;
  }
}
.resource__image-container img {
  display: block;
  margin: 0 auto;
  max-height: 200px;
}
.resource__image-container p {
  font-size: 16px;
}
.resource__nav {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  background-color: black;
  color: white;
  margin: 0 auto;
  display: block;
}
.resource__nav--done::after, .resource__nav--correct::after, .resource__nav--user-correct::after, .resource__nav--wrong::after, .resource__nav--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.resource__nav:hover, .resource__nav:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.resource__nav--disabled {
  cursor: default;
  opacity: 0.2;
}
.resource__nav--disabled:hover {
  text-decoration: none;
}
.resource__nav--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.resource__nav--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.resource__nav--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.resource__nav--correct:hover, .resource__nav--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.resource__nav--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.resource__nav--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.resource__nav--wrong:hover, .resource__nav--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.resource__nav--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.resource__nav--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.resource__nav--user-correct:hover, .resource__nav--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.resource__nav--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.resource__nav--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.resource__nav--user-wrong:hover, .resource__nav--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}
.resource .slick-dots {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
.resource .slick-dots button {
  width: 10px;
  height: 10px;
  display: block;
  border: none;
  border-radius: 100%;
  outline: none;
  color: transparent;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}
.resource .slick-dots button:hover {
  transform: scale(1.4);
}

.resource-header--yellow {
  background-color: #FEDFA8;
}
.resource-header--green {
  background-color: #B2D7AF;
}
.resource-header--purple {
  background-color: #A6AFD2;
}
.resource-header--pink {
  background-color: #F7C3CA;
}
.resource-header__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  align-items: center;
}
@media (min-width: 768px) {
  .resource-header__wrapper {
    padding: 0 50px;
  }
}
.resource-header__title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  font-weight: 200;
  margin: 0 0 0 30px;
}
@media (min-width: 768px) {
  .resource-header__title {
    font-size: 45px;
  }
}

.resource-excercise {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex !important;
  outline: none;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .resource-excercise {
    padding: 0 50px;
  }
}
.resource-excercise__inner {
  width: 100%;
}
@media (min-width: 768px) {
  .resource-excercise__inner {
    width: 50%;
  }
}
.resource-excercise__inner--full-width {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
.resource-excercise__inner--excercise {
  max-width: 930px;
}
@media (max-width: 767px) {
  .resource-excercise__inner--range-slider {
    padding-bottom: 100px;
  }
}
.resource-excercise__inner img {
  width: 100%;
}
.resource-excercise__illustration {
  max-width: 600px;
  margin: 0 auto;
}
.resource-excercise__question-nr {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0.5em;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}
@media (min-width: 768px) {
  .resource-excercise__question-nr {
    font-size: 18px;
    line-height: 24px;
  }
}
.resource-excercise__question {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  margin: 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  .resource-excercise__question {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .resource-excercise__options {
    display: flex;
    justify-content: center;
  }
}
.resource-excercise__option {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  margin: 20px 10px;
}
.resource-excercise__option--done::after, .resource-excercise__option--correct::after, .resource-excercise__option--user-correct::after, .resource-excercise__option--wrong::after, .resource-excercise__option--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.resource-excercise__option:hover, .resource-excercise__option:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.resource-excercise__option--disabled {
  cursor: default;
  opacity: 0.2;
}
.resource-excercise__option--disabled:hover {
  text-decoration: none;
}
.resource-excercise__option--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.resource-excercise__option--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.resource-excercise__option--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.resource-excercise__option--correct:hover, .resource-excercise__option--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.resource-excercise__option--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.resource-excercise__option--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.resource-excercise__option--wrong:hover, .resource-excercise__option--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.resource-excercise__option--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.resource-excercise__option--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.resource-excercise__option--user-correct:hover, .resource-excercise__option--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.resource-excercise__option--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.resource-excercise__option--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.resource-excercise__option--user-wrong:hover, .resource-excercise__option--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}
.resource-excercise__feedback {
  font-size: 18px;
  line-height: 24px;
  background-color: #FCF4E2;
  padding: 40px 30px;
  display: none;
  overflow: hidden;
}
@media (min-width: 768px) {
  .resource-excercise__feedback {
    font-size: 18px;
    line-height: 24px;
  }
}
.resource-excercise__feedback--active {
  display: block;
}
.resource-excercise__flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
.resource-excercise__flex--extra-bottom-padding {
  padding-bottom: 300px;
}
.resource-excercise__small-title {
  font-weight: bold;
  font-size: 22px;
  margin: 18px 0;
}
.resource-excercise__column {
  width: 100%;
}
.resource-excercise__column--30 {
  width: 30%;
}
@media (min-width: 768px) {
  .resource-excercise__column--45 {
    width: 45%;
  }
}
.resource-excercise__column--ending {
  background-color: rgba(252, 246, 231, 0.8);
  padding: 10px 20px;
  margin-top: 20px;
}
.resource-excercise__text-ending {
  background-color: rgba(252, 246, 231, 0.8);
  padding: 10px 20px;
  margin-top: 20px;
}
.resource-excercise__instructions, .resource-excercise__text {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .resource-excercise__instructions, .resource-excercise__text {
    font-size: 18px;
    line-height: 24px;
  }
}
.resource-excercise__instructions--small, .resource-excercise__text--small {
  font-size: 18px;
}
.resource-excercise__list {
  font-size: 18px;
  line-height: 24px;
  list-style: none;
}
@media (min-width: 768px) {
  .resource-excercise__list {
    font-size: 18px;
    line-height: 24px;
  }
}
.resource-excercise__list--small {
  padding-left: 20px;
}
.resource-excercise__list li {
  position: relative;
  margin-bottom: 1em;
}
.resource-excercise__list li:before {
  background-color: #E56284;
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  left: -20px;
  content: "";
  border-radius: 100%;
  top: 5px;
}
.resource-excercise__image-container {
  position: relative;
}
.resource-excercise__illustration--fade-in {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.resource-excercise__slider-feedback {
  font-size: 18px;
  line-height: 24px;
  transition: opacity 0.3s ease-out;
  padding: 40px 30px;
  display: none;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 768px) {
  .resource-excercise__slider-feedback {
    font-size: 18px;
    line-height: 24px;
  }
}
.resource-excercise__slider-feedback--active {
  display: block;
}
.resource-excercise__slider-feedback--green {
  background-color: rgba(216, 235, 215, 0.8);
}
.resource-excercise__slider-feedback--red {
  background-color: rgba(252, 237, 232, 0.8);
}
.resource-excercise__range-slide-container {
  position: relative;
  padding-top: 20px;
}
.resource-excercise__slider-label {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Roboto", sans-serif;
}
.resource-excercise__slider-label--right {
  right: 0;
  left: unset;
}
.resource-excercise__slider-label--active {
  font-weight: bold;
}
.resource-excercise__more-info {
  width: 100%;
  margin-top: 50px;
  max-width: 750px;
  margin: 50px auto 50px;
  background-color: rgba(252, 246, 231, 0.8);
  padding: 25px;
}
.resource-excercise__info-text {
  margin: 0;
  font-size: 16px;
}

.resource-item {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .resource-item {
    position: relative;
  }
}
.resource-item--active {
  z-index: 100;
}
.resource-item__image {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .resource-item__image {
    max-height: 100px;
  }
}
.resource-item__trigger {
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: url("../images/icon-plus.svg") no-repeat center/contain;
  margin: 0;
  border: none;
  margin: 60px auto 0;
  display: block;
  white-space: nowrap;
  position: relative;
}
.resource-item__trigger:hover, .resource-item__trigger:focus {
  background: url("../images/icon-plus-hover.svg") no-repeat center/contain;
}
.resource-item__trigger:hover span, .resource-item__trigger:focus span {
  text-decoration: underline;
}
.resource-item__trigger--active span {
  text-decoration: underline;
}
.resource-item__trigger span {
  font-size: 20px;
  font-weight: bold;
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}
@media (max-width: 767px) {
  .resource-item__trigger span {
    font-size: 15px;
    white-space: normal;
  }
}
.resource-item__content {
  z-index: 30;
  text-align: left;
  width: 355px;
  background-color: #DDDDDD;
  padding: 30px 40px 15px 15px;
  position: relative;
  margin-top: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.resource-item__content--active {
  display: block;
}
@media (max-width: 767px) {
  .resource-item__content {
    transform: none;
    left: 0;
    width: calc(100vw - 40px);
  }
}
.resource-item__content::before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #DDDDDD;
  border-width: 15px;
  margin-left: -15px;
}
.resource-item__content--left::before {
  left: 15%;
}
@media (min-width: 768px) {
  .resource-item__content--left {
    transform: translateX(-25%);
  }
  .resource-item__content--left::before {
    left: 25%;
  }
}
.resource-item__content--right::before {
  left: 85%;
}
@media (min-width: 768px) {
  .resource-item__content--right {
    transform: translateX(-75%);
  }
  .resource-item__content--right::before {
    left: 75%;
  }
}
.resource-item__content--full-width {
  width: 600px;
  max-width: calc(100vw - 40px);
}
@media (max-width: 767px) {
  .resource-item__content--full-width {
    max-height: 270px;
    overflow-y: scroll;
  }
}
.resource-item__image {
  max-height: 160px;
}
.resource-item__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: url("../images/icon-plus.svg") no-repeat center/contain;
  border: none;
  cursor: pointer;
  outline: none;
  transform: rotate(45deg);
}
.resource-item__close:hover, .resource-item__close:focus {
  background: url("../images/icon-plus-hover.svg") no-repeat center/contain;
}
.resource-item__close img {
  display: none;
}
.resource-item__close-label {
  display: none;
}

.ending {
  background-color: rgba(253, 207, 122, 0.4);
}
.ending__wrapper {
  padding: 70px 0;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
.ending__preamble {
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .ending__preamble {
    font-size: 22px;
    line-height: 26px;
  }
}
.ending__title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  text-align: center;
  margin-top: 0;
}
@media (min-width: 768px) {
  .ending__title {
    font-size: 32px;
  }
}
.ending__small-title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
}
@media (min-width: 768px) {
  .ending__small-title {
    font-size: 22px;
  }
}
.ending__text {
  font-size: 18px;
}
.ending__links {
  background-color: white;
  padding: 70px 0;
}
.ending__link-wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .ending__link-wrapper {
    flex-direction: row;
    align-items: flex-end;
  }
}
.ending__link {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  color: black;
  text-decoration: none;
  white-space: nowrap;
}
.ending__link--done::after, .ending__link--correct::after, .ending__link--user-correct::after, .ending__link--wrong::after, .ending__link--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.ending__link:hover, .ending__link:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.ending__link--disabled {
  cursor: default;
  opacity: 0.2;
}
.ending__link--disabled:hover {
  text-decoration: none;
}
.ending__link--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.ending__link--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.ending__link--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.ending__link--correct:hover, .ending__link--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.ending__link--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.ending__link--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.ending__link--wrong:hover, .ending__link--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.ending__link--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.ending__link--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.ending__link--user-correct:hover, .ending__link--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.ending__link--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.ending__link--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.ending__link--user-wrong:hover, .ending__link--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}
@media (max-width: 767px) {
  .ending__link {
    margin: 20px 0 0;
  }
}

.footer {
  background-color: white;
  padding: 50px 0 50px;
}
.footer__wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__inner {
    width: 100%;
  }
}
.footer__title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  margin: 0;
}
@media (min-width: 768px) {
  .footer__title {
    font-size: 22px;
  }
}
.footer__text {
  font-size: 16px;
  line-height: 20px;
  max-width: 400px;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 16px;
    line-height: 20px;
  }
}
.footer__link {
  display: block;
  color: #FFB117;
  font-weight: bold;
}
.footer__logo:last-child {
  margin-left: 20px;
}

.guide {
  width: 100%;
  max-width: 700px;
  background-color: white;
  min-height: 300px;
  border-radius: 8px;
  z-index: 10;
  position: relative;
}
.guide--active {
  animation: scaleInGuide 0.3s ease-out forwards;
}
.guide__content {
  padding: 20px 50px 0;
  position: relative;
}
.guide__slide {
  position: relative;
  padding-bottom: 150px;
  outline: none;
}
.guide__image {
  margin: 0 auto 50px;
  display: block;
}
.guide__text {
  max-width: 550px;
  font-size: 18px;
  text-align: left;
  line-height: 1.3em;
  margin: 0 auto;
}
.guide__nav {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.guide__nav--done::after, .guide__nav--correct::after, .guide__nav--user-correct::after, .guide__nav--wrong::after, .guide__nav--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.guide__nav:hover, .guide__nav:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.guide__nav--disabled {
  cursor: default;
  opacity: 0.2;
}
.guide__nav--disabled:hover {
  text-decoration: none;
}
.guide__nav--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.guide__nav--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.guide__nav--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.guide__nav--correct:hover, .guide__nav--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.guide__nav--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.guide__nav--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.guide__nav--wrong:hover, .guide__nav--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.guide__nav--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.guide__nav--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.guide__nav--user-correct:hover, .guide__nav--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.guide__nav--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.guide__nav--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.guide__nav--user-wrong:hover, .guide__nav--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}
.guide .slick-track {
  display: flex !important;
}
.guide .slick-slide {
  height: inherit !important;
}
.guide .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  padding: 0;
  bottom: 10px;
}
.guide .slick-dots button {
  width: 10px;
  height: 10px;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 100%;
  outline: none;
  color: transparent;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.guide .slick-dots .slick-active button {
  background-color: black;
}
@keyframes scaleInGuide {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.guide-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
  align-items: center;
  justify-content: center;
  display: none;
}
.guide-overlay--active {
  display: flex;
}
.guide-overlay__body-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.guide-header {
  background-color: #F4F2F2;
  padding: 25px 50px;
  border-radius: 8px;
}
.guide-header__title {
  margin: 0;
  font-weight: normal;
  font-size: 28px;
}
.guide-header__close {
  font-size: 15px;
  font-weight: bold;
  background-color: transparent;
  border: none;
  height: 36px;
  position: absolute;
  padding-right: 40px;
  background: url(../images/icon-close.svg) no-repeat center right/contain;
  outline: none;
  right: 50px;
  top: 43px;
  transform: translateY(-50%);
}
.guide-header__close:hover, .guide-header__close:focus {
  text-decoration: underline;
  background-image: url(../images/icon-close-invert.svg);
}

@media (max-width: 767px) {
  .chat {
    margin-bottom: 100px;
  }
}
.chat__wrapper {
  height: 500px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.chat__messages {
  display: flex;
  height: auto;
  flex-direction: column;
  overflow-y: scroll;
  max-height: 100%;
  width: 100%;
  transition: height 0.3s ease-out;
  padding-bottom: 80px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (min-width: 768px) {
  .chat__messages {
    padding-bottom: 130px;
  }
}
.chat__messages::-webkit-scrollbar {
  display: none;
}
.chat__message {
  width: 100%;
  max-width: 620px;
  border-radius: 10px;
  position: relative;
  border: 3px solid black;
  margin-top: 70px;
  padding: 30px;
  display: none;
  opacity: 0;
}
.chat__message--visible {
  display: block;
}
.chat__message--visible-on-load {
  opacity: 1;
}
.chat__message--teacher {
  margin-left: auto;
  background-color: #F4F4F4;
}
.chat__message--teacher:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 30px solid black;
  border-right: 30px solid transparent;
  border-top: 30px solid black;
  border-bottom: 30px solid transparent;
  right: 27px;
  left: unset-3;
  top: 100%;
  transform: rotate(90deg);
}
.chat__message--teacher:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 26px solid #F4F4F4;
  border-right: 26px solid transparent;
  border-top: 26px solid #F4F4F4;
  border-bottom: 26px solid transparent;
  right: 30px;
  left: unset;
  top: 100%;
  transform: rotate(90deg);
}
.chat__message--parent:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 30px solid black;
  border-right: 30px solid transparent;
  border-top: 30px solid black;
  border-bottom: 30px solid transparent;
  right: unset-3;
  left: 27px;
  top: 100%;
  transform: rotate(0deg);
}
.chat__message--parent:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 26px solid white;
  border-right: 26px solid transparent;
  border-top: 26px solid white;
  border-bottom: 26px solid transparent;
  right: unset;
  left: 30px;
  top: 100%;
  transform: rotate(0deg);
}
.chat__text {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}
@media (min-width: 768px) {
  .chat__text {
    font-size: 22px;
    line-height: 26px;
  }
}
.chat__options {
  width: 100%;
  display: none;
  justify-content: center;
  margin-top: 70px;
}
.chat__options--visible {
  display: flex;
}
.chat__option {
  margin: 20px auto;
  background-color: white;
  border: 4px solid black;
  border-radius: 30px;
  padding: 15px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  min-width: 120px;
  outline: none;
  transition: all 0.2s ease-out;
  font-family: "Roboto", sans-serif;
  margin: 0 10px;
}
.chat__option--done::after, .chat__option--correct::after, .chat__option--user-correct::after, .chat__option--wrong::after, .chat__option--user-wrong::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  right: -12px;
}
.chat__option:hover, .chat__option:focus {
  background-color: black;
  color: white;
  text-decoration: underline;
}
.chat__option--disabled {
  cursor: default;
  opacity: 0.2;
}
.chat__option--disabled:hover {
  text-decoration: none;
}
.chat__option--done::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.chat__option--correct {
  border-color: #84C284;
  cursor: default;
  color: black;
}
.chat__option--correct::after {
  background: url("../images/icon-correct.svg") no-repeat center/contain;
}
.chat__option--correct:hover, .chat__option--correct:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #84C284;
}
.chat__option--wrong {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.chat__option--wrong::after {
  background: url("../images/icon-wrong.svg") no-repeat center/contain;
}
.chat__option--wrong:hover, .chat__option--wrong:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.chat__option--user-correct {
  border-color: #E0E0E0;
  color: #E0E0E0;
  cursor: default;
}
.chat__option--user-correct::after {
  background: url("../images/icon-correct-grey.svg") no-repeat center/contain;
}
.chat__option--user-correct:hover, .chat__option--user-correct:focus {
  background-color: white;
  color: #E0E0E0;
  text-decoration: none;
  border-color: #E0E0E0;
}
.chat__option--user-wrong {
  border-color: #DE7C7C;
  color: black;
  cursor: default;
}
.chat__option--user-wrong::after {
  background: url("../images/icon-wrong-red.svg") no-repeat center/contain;
}
.chat__option--user-wrong:hover, .chat__option--user-wrong:focus {
  background-color: white;
  color: black;
  text-decoration: none;
  border-color: #DE7C7C;
}
.chat__question {
  display: inline-block;
  width: 100px;
  background-color: #DDDDDD;
  border-radius: 8px;
}
.chat__question--correct, .chat__question--wrong {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: auto;
  background-color: transparent;
}
.chat__question--correct span, .chat__question--wrong span {
  position: relative;
  z-index: 2;
}
.chat__question--correct::after, .chat__question--wrong::after {
  z-index: 1;
  content: "";
  display: block;
  left: -5px;
  width: 100%;
  height: 1em;
  padding: 5px;
  background-color: #84C284;
  border-radius: 8px;
  top: -2.5px;
  position: absolute;
}
.chat__question--wrong::after {
  background-color: #DE7C7C;
}
.chat__user {
  text-align: center;
}
@media (max-width: 767px) {
  .chat__user {
    position: absolute;
    bottom: -70px;
    margin: 0;
  }
  .chat__user--teacher {
    right: 0;
  }
}
@media (max-width: 767px) {
  .chat__profile-pic {
    width: 50px !important;
    margin: 0 auto;
  }
}
.chat__user-name {
  font-size: 18px;
  margin: 10px 0 0;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.evaluation {
  background-color: #F7C3CA;
  padding: 50px 0 50px;
}
.evaluation__wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
.evaluation__title {
  font-family: "dosis", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  margin: 0;
}
@media (min-width: 768px) {
  .evaluation__title {
    font-size: 22px;
  }
}
.evaluation__title-big {
  font-size: 30px;
  font-weight: 100;
  margin: 0;
}
@media (min-width: 768px) {
  .evaluation__title-big {
    font-size: 40px;
  }
}
.evaluation__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .evaluation__thumbs-container {
    width: 30%;
  }
}
.evaluation__thumb {
  cursor: pointer;
  max-width: 45%;
}

.rangeslider__fill {
  background: #B2D7AF;
  box-shadow: none;
}

.rangeslider--horizontal {
  height: 23px;
  background: white;
  border-radius: 20px;
  box-shadow: none;
  border: 2px solid black;
  margin-top: 20px;
}

.rangeslider__handle {
  width: 41px;
  height: 41px;
  background: black;
  box-shadow: none;
}

.rangeslider--horizontal .rangeslider__handle {
  top: -11px;
}
/*# sourceMappingURL=styles.css.map */