.kyl_wheel .content_wrapper {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
  }
}
.kyl_wheel .content_wrapper .wheel_wrapper {
  padding: 36px 25px 0;
  background-position: 50% 40% !important;
  background-size: 50% !important;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.kyl_wheel .content_wrapper .wheel_wrapper + .info_wrapper .close_info_wrapper {
  display: none;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements {
  will-change: transform;
  height: calc(100vw - 80px);
  transform: rotate(180deg);
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
@media screen and (min-width: 576px) {
  .kyl_wheel .content_wrapper .wheel_wrapper .elements {
    margin: 0 auto;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    height: 350px;
    width: 350px;
  }
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements:before {
  border-radius: 100%;
  border: 3px solid #E6E6E6;
  position: absolute;
  height: 100%;
  content: '';
  width: 100%;
  left: 0;
  top: 0;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element {
  will-change: transform;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  background-color: #FFFFFF;
  border-radius: 100%;
  position: absolute;
  cursor: pointer;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease;
  -webkit-perspective: none !important;
  perspective: none !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .wheel_wrapper .elements .element {
    transform: translate(-50%, -50%) rotate(270deg);
    -webkit-transform: translate(-50%, -50%) rotate(270deg);
    -ms-transform: translate(-50%, -50%) rotate(270deg);
    display: block !important;
  }
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element .icon {
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  position: absolute;
  left: 50%;
  top: 50%;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element .icon img {
  display: block;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element .icon_active {
  display: none;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element .icon_active img {
  display: block;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element .title {
  font-weight: 600;
  font-size: 13px;
  transform: translateY(-50%);
  padding: 0 15px 0;
  position: absolute;
  color: #9A9A9A;
  max-width: 160px;
  right: 100%;
  text-align: right;
  margin: 0;
  top: 50%;
  display: none;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .wheel_wrapper .elements .element .title {
    display: block;
    font-weight: 600;
    font-size: 15px;
  }
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element.text_right .title {
  text-align: left;
  right: unset;
  left: 100%;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element.text_center .title {
  text-align: center;
  bottom: 100%;
  padding: 0;
  top: unset;
  right: unset;
  left: 0;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element.text_center.bottom .title {
  top: calc(100% + 26px) !important;
  bottom: unset !important;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element.active:not(.hidden) {
  background-color: #348F41;
  height: 70px;
  width: 70px;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element.active:not(.hidden) .icon_active {
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element.active:not(.hidden) .icon {
  display: none;
}
.kyl_wheel .content_wrapper .wheel_wrapper .elements .element.active:not(.hidden) .title {
  font-weight: 600;
  font-size: 15px;
  color: #348F41;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .wheel_wrapper .elements .element.active:not(.hidden).text_center .title {
    bottom: 100%;
  }
}
.kyl_wheel .content_wrapper .wheel_wrapper .navigation {
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  top: -25px;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .wheel_wrapper .navigation {
    display: none;
  }
}
.kyl_wheel .content_wrapper .wheel_wrapper .navigation button {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
  background-color: #FFFFFF;
  border-radius: 100%;
  color: #348F41;
  height: 50px;
  border: none;
  width: 50px;
}
.kyl_wheel .content_wrapper .wheel_wrapper .navigation button.previous_element {
  transform: translateX(-25px);
}
.kyl_wheel .content_wrapper .wheel_wrapper .navigation button.next_element {
  transform: translateX(25px);
}
@media screen and (min-width: 576px) {
  .kyl_wheel .content_wrapper .wheel_wrapper {
    background-position: 50% !important;
    background-size: 220px !important;
    padding: 100px 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    /*&:before {
                    background: transparent linear-gradient(to bottom, @white 25%, transparent 100%);
                    position: absolute;
                    top: 0;
                    left: 25%;
                    width: 100%;
                    height: 200px;

                    content: '';
                    opacity: 0;
                    z-index: 1;
                    pointer-events: none;
                }

                &:after {
                    background: transparent linear-gradient(to top, @white 25%, transparent 100%);
                    position: absolute;
                    bottom: 0;
                    left: 25%;
                    width: 100%;
                    height: 200px;
                    content: '';
                    opacity: 0;
                    z-index: 1;
                    pointer-events: none;
                }*/
  }
  .kyl_wheel .content_wrapper .wheel_wrapper.opened {
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 380px;
    flex: 0 0 380px;
    padding: 100px;
  }
  .kyl_wheel .content_wrapper .wheel_wrapper.opened:before,
  .kyl_wheel .content_wrapper .wheel_wrapper.opened:after {
    opacity: 1;
  }
  .kyl_wheel .content_wrapper .wheel_wrapper.opened + .info_wrapper .close_info_wrapper {
    display: block;
  }
}
.kyl_wheel .content_wrapper .info_wrapper {
  padding: 25px 0 0 0;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .info_wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 600px);
    flex: 0 0 calc(100% - 600px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
  }
}
.kyl_wheel .content_wrapper .info_wrapper .close_info_wrapper {
  background: transparent url('../assets/img/cross_dark.svg') no-repeat center;
  position: absolute;
  border: none;
  height: 15px;
  width: 15px;
  right: 0;
  top: 0;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .info_wrapper .info_container {
    text-align: left;
  }
}
.kyl_wheel .content_wrapper .info_wrapper .info_container:not(.active) {
  display: none;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .headline {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 15px;
  color: #348F41;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .info_wrapper .info_container .headline {
    color: #58595B;
  }
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .text_container {
  color: #58595B;
  line-height: 22px;
  margin: 0 0 25px;
  font-weight: 400;
  font-size: 15px;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .text_container p {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .info_wrapper .info_container .scroll_down_container {
    display: none;
  }
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .scroll_down_container .label {
  color: #58595B;
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 15px;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .scroll_down_container .scroll_down_button {
  background: transparent url('../assets/img/arrow_down_dark.svg') no-repeat center;
  background-size: 100%;
  margin: 0 0 20px;
  outline: none;
  border: none;
  height: 10px;
  width: 15px;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .info_wrapper .info_container .posts {
    position: relative;
    max-height: 525px;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 250px;
  padding: 20px;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-content: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
  -ms-flex-align: end;
  color: #FFFFFF;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post:not(:last-of-type) {
  margin: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    margin: 0 20px 20px 0;
  }
  .kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post:not(:last-of-type) {
    margin: 0 20px 20px 0;
  }
  .kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post:nth-of-type(2n + 2) {
    margin: 0 0 20px;
  }
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post .cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post .cover:before {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  content: '';
  left: 0;
  top: 0;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post .theme {
  position: relative;
  background: transparent url('../assets/img/farming_white.svg') no-repeat left center;
  background-size: 18px;
  pointer-events: none;
  padding: 0 0 0 26px;
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post .post_title {
  position: relative;
  background: transparent url('../assets/img/long_arrow_right_white.svg') no-repeat right bottom;
  font-weight: 600;
  font-size: 18px;
  background-size: 16px;
  pointer-events: none;
  padding-right: 22px;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .kyl_wheel .content_wrapper .info_wrapper .info_container .posts .post .post_title {
    background-image: none;
  }
}
.kyl_wheel .content_wrapper .info_wrapper .info_container .fade_bottom {
  background: transparent linear-gradient(to top, #FFFFFF 0%, transparent 100%) no-repeat center;
  pointer-events: none;
  position: absolute;
  height: 200px;
  width: 100%;
  content: '';
  bottom: 0;
  left: 0;
  z-index: 1;
}
