html {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #000000;
  background: #ffffff;
}

img {
  max-width: 100%;
}

ul,
li {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.overflow {
  overflow: hidden;
}

/* -----------------------------------------Common----------------------------------------- */
.container {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 15px;
}

.product-link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #0A50B9;
  text-decoration: none;
  z-index: 1;
}

.product-link::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: -1%;
  display: block;
  width: 0;
  height: 50%;
  background-color: rgba(139, 199, 255, 0.4);
  transition: all .3s ease-out;
  z-index: -1;
}

.product-link:hover::before {
  width: 102%;
}

.button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  background-color: #73BCFF;
  background: linear-gradient(180deg, #62B1FA 0%, #2783D9 100%);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  transition: all .3s ease-out;
  cursor: pointer;
  outline: none;
  z-index: 1;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: all .3s ease-out;
  z-index: -1;
}

.button::before {
  background: linear-gradient(180deg, #73BCFF 0%, #3E9DF4 100%);
}

.button::after {
  background: linear-gradient(180deg, #8BC7FF 0%, #5DB1FF 100%);
  opacity: 0;
}

.button:hover::after {
  opacity: 1;
}

.button:focus::before,
.button:focus::after {
  opacity: 0;
}

.main-header {
  padding: 35px 0;
  background-color: #EBF0F5;
}

.main-header__nav,
.main-header__subscription {
  display: none;
}

.main-header__logo {
  font-size: 0;
  text-align: center;
}

.main-content {
  display: block;
  padding-top: 35px;
  padding-bottom: 35px;
}

.main-content__banner {
  position: relative;
  margin: 0 -15px;
  padding: 50px 15px 55px;
  text-align: center;
  color: #ffffff;
  background-color: #525252;
  background: url("../images/main-content-banner-bg.jpg") center / cover no-repeat, #525252;
  z-index: 1;
}

.main-content__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 13%, rgba(0, 0, 0, 0.8) 100%);
  z-index: -1;
}

.main-content__crumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.main-content__crumb {
  padding: 3px 5px;
}

.main-content__crumb-link {
  display: block;
  padding: 0 10px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  background-color: #2076F6;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all .3s ease-out;
}

.main-content__crumb-link:hover {
  border-color: #ffffff;
  background: transparent;
}

.main-content__heading {
  margin-top: 30px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
}

.main-content__heading-span {
  display: block;
}

.main-content__title {
  margin-top: 15px;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.4;
}

.main-content__reactions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 250px;
  margin: 30px auto 0;
  font-weight: 600;
  border-radius: 2px;
  color: #5F5F5F;
  background-color: #ffffff;
}

.main-content__reaction {
  position: relative;
  width: 100%;
  max-width: calc(100% / 3);
  padding: 39px 15px 10px;
}

.main-content__reaction:not(:last-of-type) {
  border-right: 1px solid #A7B1C0;
}

.main-content__reaction::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.main-content__reaction--1::before {
  background-image: url("../images/reaction-icon1.svg");
}

.main-content__reaction--2::before {
  background-image: url("../images/reaction-icon2.svg");
}

.main-content__reaction--3::before {
  background-image: url("../images/reaction-icon3.svg");
}

.main-content__author {
  margin-top: 28px;
}

.main-content__author-avatar {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}

.main-content__author-info {
  margin-top: 10px;
  font-style: italic;
  line-height: 1;
}

.main-content__author-name {
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}

.main-content__wrapper {
  margin-top: 35px;
}

.article__intro {
  font-style: italic;
  font-weight: 600;
}

.article__paragraph {
  margin-top: 30px;
}

.article__block {
  margin-top: 30px;
  padding: 30px 20px;
  text-align: center;
  background-color: #EBF1F5;
}

.article__block--blue-light {
  padding-bottom: 10px;
}

.article__block-heading {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.article__block-heading-span {
  display: block;
  margin-bottom: 5px;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #2076F7;
}

.article__block-image {
  margin-top: 12px;
  font-size: 0;
  text-align: center;
}

.article__block-desc {
  margin-top: 20px;
  font-style: italic;
  font-size: 12px;
  line-height: 1.7;
  color: #5F5F5F;
}

.article__list {
  margin: 35px auto 0;
}

.article__item:not(:first-of-type) {
  margin-top: 35px;
}

.article__item-heading {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
}

.article__item-heading::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 14px;
  height: 17px;
  background-color: #2076F7;
}

.article__strong {
  font-weight: 800;
}

.eye-gym {
  max-width: 320px;
  margin: 30px auto 0;
}

.eye-gym__scheme {
  max-width: 250px;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}

.eye-gym__desc {
  margin-top: 25px;
  padding: 20px;
  font-size: 13px;
  text-align: center;
  color: #5F5F5F;
  background-color: #EBF1F5;
}

.article__images {
  display: block;
  max-width: 320px;
  margin: 30px auto 0;
  font-size: 0;
  text-align: center;
  text-decoration: none;
}

.article__images img {
  display: inline-block;
}

.article__images img:not(:first-of-type) {
  margin-top: 20px;
}

.article__before-after {
  margin-top: 30px;
}

.before-after__item {
  display: block;
}

.before-after__item:not(:first-of-type) {
  margin-top: 15px;
}

.before-after__image {
  font-size: 0;
  text-align: center;
}

.before-after__desc {
  position: relative;
  max-width: 105px;
  margin: -19px auto 0;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  background-color: #2076F6;
}

.article__note {
  margin-top: 30px;
  font-style: italic;
  font-weight: 700;
}

.article__order {
  margin-top: 50px;
}

.order {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.order__product {
  font-size: 0;
  text-align: center;
}

.order__wrapper {
  margin-top: 15px;
}

.order__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  color: #393939;
}

.order__percent {
  display: inline-block;
  vertical-align: middle;
  padding: 1px 9px;
  color: #ffffff;
  background-color: #2076F7;
  border-radius: 10px;
}

.order__form {
  margin-top: 15px;
}

.order__label {
  display: block;
  width: 100%;
}

.order__label:not(:first-of-type) {
  margin-top: 15px;
}

.order__field {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.2;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #393939;
  background-color: #ffffff;
  border: 1px solid #2076F6;
  border-radius: 5px;
  outline: none;
  transition: all .3s ease-out;
}

.order__field--select::-ms-expand {
  display: none;
}

.order__field--select {
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/customselect.png") center right 15px no-repeat, #ffffff;
}

.order__field:focus {
  box-shadow: 0 0 0 3px rgba(139, 199, 255, 0.4);
}

.order__prices {
  margin-top: 10px;
  font-size: 0;
  text-align: center;
}

.order__price {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(137, 137, 137, 0.83);
}

.order__price--new {
  font-weight: 700;
  font-size: 24px;
  color: #2076F7;
}

.order__price--old {
  text-decoration: line-through;
}

.order__button {
  max-width: 100%;
  margin-top: 10px;
}

.article__footer {
  margin-top: 70px;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #CFCFCF;
  border-bottom: 1px solid #CFCFCF;
}

.article__footer-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.article__footer-item:not(:first-of-type) {
  margin-top: 15px;
}

.article__footer-text {
  max-width: calc(100% - 10px - 100px);
  margin-right: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #505050;
}

.article__footer-text--share {
  max-width: calc(100% - 10px - 160px);
}

.article__footer-stars {
  font-size: 0;
  text-align: center;
}

.social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.social__item:not(:last-of-type) {
  margin-right: 15px;
}

.social__link {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #EBF1F5;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #EBF1F5;
  transition: all .3s ease-out;
}

.social__link--1 {
  background-image: url("../images/twitter-icon.svg");
}

.social__link--2 {
  background-image: url("../images/instagram-icon.svg");
}

.social__link--3 {
  background-image: url("../images/youtube-icon.svg");
}

.social__link--4 {
  background-image: url("../images/facebook-icon.svg");
}

.social__link:hover {
  border-color: #2076F6;
  background-color: transparent;
}

.main-content__comments {
  margin-top: 55px;
}

.comments__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #333333;
}

.comments__list {
  margin-top: 25px;
  padding-top: 30px;
  border-top: 1px solid #CFCFCF;
}

.comments__item:not(:first-of-type) {
  margin-top: 25px;
}

.comments__item:nth-last-child(n+6) {
  display: none;
}

.comments__item::after {
  content: "";
  display: block;
  clear: both;
}

.comments__avatar {
  float: left;
  width: 55px;
  height: 55px;
  margin-right: 15px;
  font-size: 0;
  text-align: center;
  background-color: #C4C4C4;
  overflow: hidden;
}

.comments__name {
  font-weight: 500;
}

.comments__time {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1;
  color: #797979;
}

.comments__text {
  margin-top: 20px;
}

.comments__footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
}

.comments__footer-link {
  position: relative;
  display: block;
  padding-left: 18px;
  text-decoration: none;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #808080;
}

.comments__footer-link--like {
  font-weight: 600;
}

.comments__footer-link:not(:last-of-type) {
  padding-right: 10px;
  margin-right: 10px;
}

.comments__footer-link:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 2px;
  background-color: #808080;
}

.comments__footer-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 14px;
  background-position: center left;
  background-repeat: no-repeat;
}

.comments__footer-link--reply::before {
  background-image: url("../images/reply-icon.svg");
}

.comments__footer-link--like::before {
  background-image: url("../images/like-icon.svg");
}


.comments__footer-link:hover {
  text-decoration: underline;
}

.comments__button {
  margin-top: 60px;
}

.main-content__sidebar {
  display: none;
}

.main-footer {
  padding: 22px 0;
  text-align: center;
  background-color: #EBF0F5;
}

.main-footer__copyright {
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}


@media (min-width: 992px) {
  .container {
    max-width: 1270px;
  }
  
  .button {
    max-width: 250px;
  }
  
  .main-header {
    padding: 25px 0;
  }

  .main-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .main-header__nav,
  .main-header__subscription {
    display: block;
    margin-left: 30px;
  }

  .nav {
    max-width: calc(100% - 250px - 30px - 30px - 27px);
  }

  .nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav__item:not(:last-of-type) {
    margin-right: 30px;
  }

  .nav__link {
    position: relative;
    padding: 5px 0;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-out;
  }

  .nav__link::after {
    content: "";
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 3px;
    background-color: #2076F6;
    transition: all .3s ease-out;
    opacity: 0;
  }

  .nav__link:hover::after {
    width: 100%;
    opacity: 1;
  }

  .main-header__subscription {
    position: relative;
    max-width: 250px;
    padding-left: 60px;
    font-family: "Exo 2", "Montserrat", Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-out;
  }

  .main-header__subscription:hover {
    color: #0F64E2;
  }

  .main-header__subscription::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 48px;
    height: 44px;
    background: url("../images/subscription.png") center / contain no-repeat;
  }

  .main-header__subscription-span {
    color: #7C7C7C;
  }

  .main-header__subscription-date {
    font-weight: 300;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #7C7C7C;
  }
  
  .main-content {
    padding-top: 75px;
    padding-bottom: 55px;
  }
  
  .main-content__banner {
    position: relative;
    margin: 0;
    padding: 80px 70px 60px;
    text-align: left;
    background-image: url("../images/main-content-banner-bg-desktop.jpg");
  }
  
  .main-content__crumbs {
    justify-content: flex-start;
  }

  .main-content__crumb {
    padding: 3px 10px;
  }

  .main-content__crumb:first-of-type {
    padding-left: 0;
  }
  
  .main-content__heading {
    font-size: 25px;
  }
  
  .main-content__heading-span {
    display: inline;
  }
  
  .main-content__title {
    font-size: 50px;
    line-height: 1.3;
  }
  
  .main-content__reactions {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    max-width: 74px;
    margin: 0;
  }
  
  .main-content__reaction {
    min-height: 79px;
    max-width: 100%;
    padding: 39px 15px 10px;
    text-align: center;
  }
  
  .main-content__reaction:not(:last-of-type) {
    border-bottom: 1px solid #A7B1C0;
    border-right: none;
  }
  
  .main-content__author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .main-content__author-avatar {
    flex-shrink: 0;
    margin-right: 25px;
    margin-left: 0;
  }
  
  .main-content__author-info {
    max-width: calc(100% - 60px - 25px);
    margin-top: 0;
  }
  
  .main-content__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid #A7B1C0;
  }

  .main-content__left {
    width: 100%;
    max-width: calc(100% - 80px - 346px);
    margin-right: 80px;
  }

  .main-content__sidebar {
    display: block;
    width: 100%;
    max-width: 346px;
  }
  
  .article__paragraph {
    margin-top: 35px;
  }
  
  .article__block {
    max-width: 604px;
    margin: 35px auto 0;
    padding: 65px 100px 55px;
  }
  
  .article__block--blue-light {
    padding: 45px 70px 35px;
  }
  
  .article__block-heading {
    font-size: 14px;
  }
  
  .article__block-image {
    margin-top: 16px;
  }
  
  .article__block-desc {
    margin-top: 15px;
  }
  
  .article__list {
    margin: 40px auto 0;
  }
  
  .eye-gym {
    max-width: 390px;
    margin: 50px auto 0;
  }
  
  .eye-gym__scheme {
    max-width: 370px;
  }
  
  .eye-gym__desc {
    padding: 15px 20px 25px;
    font-size: 14px;
  }
  
  .article__images {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin-top: 35px;
  }
  
  .article__images img {
    display: block;
    min-width: 0;
  }
  
  .article__images img:not(:first-of-type) {
    margin-top: 0;
    margin-left: 20px;
  }
  
  .article__before-after {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 35px;
  }
  
  .before-after__item {
    display: block;
  }
  
  .before-after__item:not(:first-of-type) {
    margin-top: 0;
    margin-left: 30px;
  }
  
  .before-after__image {
    font-size: 0;
    text-align: center;
  }
  
  .article__note {
    margin-top: 35px;
  }

  .article__order {
    margin-top: 55px;
  }
  
  .order {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 615px;
  }
  
  .order__product {
    width: 100%;
    max-width: calc(100% - 245px - 40px);
    margin-right: 40px;
  }
  
  .order__wrapper {
    margin-top: 0;
    width: 100%;
    max-width: 245px;
  }
  
  .article__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    padding: 10px 0;
    text-align: left;
  }
  
  .article__footer-item {
    width: 100%;
    max-width: calc((100% - 10px)/2);
    justify-content: flex-start;
  }
  
  .article__footer-item:not(:first-of-type) {
    justify-content: flex-end;
    margin-top: 0;
  }
  
  .main-content__comments {
    margin-top: 40px;
  }

  .comments__item:nth-last-child(n+6) {
    display: block;
  }
  
  .comments__content {
    margin-left: 70px;
  }

  .comments__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .comments__name {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
  }

  .comments__name::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 2px;
    height: 2px;
    background-color: #797979;
  }
  
  .comments__time {
    margin-top: 0;
  }
  
  .comments__text {
    margin-top: 5px;
  }
  
  .comments__footer {
    margin-top: 10px;
  }

  .sidebar__list {
    background-color: #F5F5F5;
  }

  .sidebar__item {
    padding: 20px 20px 20px 30px;
  }

  .sidebar__item:not(:first-of-type) {
    border-top: 1px solid #C4C4C4;
  }

  .sidebar__link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
  }
  
  .sidebar__poster {
    flex-shrink: 0;
    width: 80px;
    height: 61px;
    margin-right: 15px;
    font-size: 0;
    text-align: center;
    overflow: hidden;
  }

  .sidebar__heading {
    width: 100%;
    max-width: calc(100%  - 80px - 15px);
    font-size: 14px;
    line-height: 1.5;
  }

  .sidebar__link:hover .sidebar__heading {
    text-decoration: underline;
  }

  .sidebar__banner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 346px;
    margin-top: 40px;
    padding: 30px 25px 10px 30px;
    text-decoration: none;
    color: #ffffff;
    background-color: #2076F7;
    background: linear-gradient(180deg, #3D8AFF 0%, #2076F7 100%);
    border-radius: 5px;
  }

  .sidebar__banner-wrapper {
    max-width: calc(100% - 156px + 30px);
    margin-right: -30px;
  }

  .sidebar__banner-product {
    flex-shrink: 0;
    width: 156px;
  }

  .sidebar_banner-product-name {
    font-weight: 800;
    font-size: 25px;
    line-height: 1;
  }

  .sidebar__banner-text {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
  }

  .sidebar__banner-button {
    max-width: 144px;
    margin-top: 15px;
    margin-left: 0;
    padding: 14px;
    border-radius: 10px;
  }

  .sidebar__banner-button::before,
  .sidebar__banner-button::after {
    border-radius: 10px;
  }

  .sidebar__banner:hover .button::after {
    opacity: 1;
  }
  
  .sidebar__banner:focus .button::before,
  .sidebar__banner:focus .button::after {
    opacity: 0;
  }

  .fixed {
    position: fixed;
    top: 0;
    margin-top: 15px;
  }
}

@media (min-width: 1200px) {
  .main-content__left {
    max-width: calc(100% - 150px - 346px);
    margin-right: 150px;
  }
}






/* Slick-Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  top: 100px;
  width: 42px;
  height: 42px;
  font-size: 0;
  border: none;
  border-radius: 50%;
  background-color: #EBF1F5;
  background: url("../images/eye-gym-arrow.svg") center / 17px no-repeat, #EBF1F5;
  cursor: pointer;
  z-index: 10;
}

.slick-arrow.slick-prev {
  left: 0;
  transform: rotate(180deg);
}

.slick-arrow.slick-next {
  right: 0;
}

@media (min-width: 992px) {
  .slick-arrow {
    top: 125px;
  }

  .slick-arrow.slick-prev {
    left: calc(50% - 280px);
  }
  
  .slick-arrow.slick-next {
    right: calc(50% - 280px);
  }
}