/* ===== */
/* fonts */
/* ===== */
@font-face {
  font-family: "open_sansbold";
  src: url("/assets/fonts/opensans/OpenSans-Bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "open_sansextrabold";
  src: url("/assets/fonts/opensans/OpenSans-ExtraBold-webfont.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "open_sansregular";
  src: url("/assets/fonts/opensans/OpenSans-Regular-webfont.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "open_sanssemibold";
  src: url("/assets/fonts/opensans/OpenSans-Semibold-webfont.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

/* ========= */
/* variables */
/* ========= */
:root {
  --breakpoint-tablet: 1279px;
  --breakpoint-mobile: 768px;
  --clr-yellow: #ffcd7e;
  --clr-yellow-light: #fbf2dc;
  --clr-yellow-dark: #f29502;
  --clr-pink: #f91b64;
  --clr-navy-blue: #2c3d53;
  --clr-grey: #cccccc;
  --clr-grey-text: #2e2e2e;
  --ff-opensans-regular: "open_sansregular", Arial, sans-serif;
  --ff-opensans-semibold: "open_sanssemibold", Arial, sans-serif;
  --ff-opensans-bold: "open_sansbold", Arial, sans-serif;
  --ff-opensans-extrabold: "open_sansextrabold", Arial, sans-serif;
}

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

*,
html,
body {
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  font-family: var(--ff-opensans-regular);
}

html,
body {
  min-width: 320px !important;
  overflow-x: auto;
  width: 100%;
}

/* ======= */
/* general */
/* ======= */

@media (min-width: 1024px) {
  /* desktop breakpoint */
  .mobile-only {
    display: none !important;
  }
  .xs-only {
    display: none !important;
  }
}
@media (min-width: 361px) and (max-width: 1023px) {
  /* mobile breakpoint */
  .desktop-only {
    display: none !important;
  }
  .xs-only {
    display: none !important;
  }
}

@media (max-width: 360px) {
  /* xs breakpoint */
  .mobile-only {
    display: none !important;
  }
  .desktop-only {
    display: none !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;

  @media (max-width: 1023px) {
    max-width: 600px;
    padding: 0 15px;
  }

  @media (max-width: 1200px) {
    padding: 0 15px;
  }
}
p {
  margin-bottom: 20px;
}
.text-center {
  text-align: center;
}

/* ====== */
/* header */
/* ====== */
header {
  /*border-bottom: 5px solid var(--clr-yellow);*/
}
.header-holder {
  padding-top: 15px;
  padding-bottom: 15px;

  @media (max-width: 1023px) {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  .logo-container {
    display: flex;
    gap: 5px;
    align-items: flex-end;

    @media (max-width: 1023px) {
      gap: 8px;
    }

    img {
      width: 36px;
      height: 32px;

      @media (max-width: 1023px) {
        width: 31px;
        height: 25px;
      }
    }
    .logo-text {
      display: flex;
      flex-direction: row;
      gap: 0px;

      @media (max-width: 1023px) {
        flex-direction: row;
        gap: 2px;
      }

      .lt-1 {
        color: black;
        font-size: 32px;
        line-height: 1;

        @media (max-width: 1023px) {
          font-size: 25px;
        }
      }
      .lt-2 {
        color: var(--clr-pink);
        font-size: 32px;
        font-family: var(--ff-opensans-bold);
        line-height: 1;

        @media (max-width: 1023px) {
          font-size: 25px;
        }
      }
    }
  }
  ul#main-menu {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    gap: 28px;

    a {
      text-decoration: none;
      color: black;
      font-size: 19px;

      &:hover {
        color: var(--clr-pink);
      }
    }

    @media (max-width: 1023px) {
      display: none;
    }
  }

  .hamburger-icon {
    width: 60px;
    margin-right: 10px;
    display: none;

    @media (max-width: 1023px) {
      width: 30px;
      display: block;
    }

    &:hover {
      cursor: pointer;
    }
    &:focus {
      outline: none;
    }
  }
}

.mobile-menu-container {
  /*border-top: 4px solid var(--clr-yellow);*/
  display: none;

  ul#mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    li {
      width: 100%;
      border-bottom: 1px solid #ccc;

      &:last-of-type {
        border-bottom: none;
      }

      a {
        text-decoration: none;
        color: black;
        font-size: 14px;
        padding: 8px 15px;
        display: inline-block;
        width: 100%;

        &:focus {
          outline: none;
        }
      }
    }
  }
}

/* ==== */
/* main */
/* ==== */
.intro-container {
  margin-top: 20px;
  margin-bottom: 0px;

  @media (max-width: 1023px) {
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .updated {
    border-bottom: 5px solid var(--clr-pink);
    margin-bottom: 20px;
    display: inline-block;

    @media (max-width: 1023px) {
      border-bottom: 2px solid var(--clr-pink);
      margin-bottom: 5px;
      margin-top: 5px;
    }

    span {
      font-family: var(--ff-opensans-bold);
      color: var(--clr-navy-blue);
      font-size: 20px;

      @media (max-width: 1023px) {
        font-size: 16px;
      }
    }
  }
  .intro-title {
    font-size: 30px;
    color: var(--clr-navy-blue);
    margin-bottom: 10px;

    @media (max-width: 1023px) {
      font-size: 24px;
      margin-bottom: 0px;
    }
  }
  .intro-text {
    font-size: 20px;
    line-height: 130%;
    color: var(--clr-grey-text);

    @media (max-width: 1023px) {
      font-size: 16px;
    }
  }
}

.pills-container {
  padding-top: 30px;

  @media (max-width: 1023px) {
    padding-top: 10px;
  }
}
.pill {
  margin-top: 20px;
  border: 5px solid var(--clr-grey);
  border-radius: 20px;
  padding: 40px 40px 20px 40px;
  display: flex;
  position: relative;
  transition: all 0.3s ease-in-out;

  &:hover {
    border: 5px solid var(--clr-pink);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 15px;
  }

  @media (max-width: 1023px) {
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 20px;
    padding: 40px 10px 10px 10px;
  }

  a.routing-url {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  }

  .pill-column {
    flex: 1 1 33.33%;
  }

  .pill-number {
    position: absolute;
    left: 0px;
    top: 0px;
    color: white;
    font-size: 35px;
    line-height: 40px;
    font-family: var(--ff-opensans-semibold);
    background-color: var(--clr-yellow-dark);
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    /* border-radius: 16px; */
    min-width: 50px;
    height: 40px;
    padding: 0px 10px;
    text-align: center;
  }

  .pill-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 200px;

    @media (max-width: 500px) {
      width: 100%;
    }

    @media (max-width: 1023px) {
      max-width: initial;
    }

    .pill__logo {
      max-width: 275px;
      width: 100%;
    }
    .pill__snapshot {
      display: none;
      max-width: 275px;
    }
  }

  .pill-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;

    @media (max-width: 1023px) {
      order: 3;
      flex-basis: 100%;
      padding: 0px;
    }

    .pill__title {
      color: black;
      font-size: 22px;
      font-family: var(--ff-opensans-bold);

      @media (max-width: 1023px) {
        font-size: 18px;
      }
    }

    ul.pill__list {
      list-style-type: none;
      padding: 0px;
      margin: 0px;
      color: black;
      font-size: 16px;

      @media (max-width: 1023px) {
        font-size: 14px;
      }

      li {
        display: flex;
        gap: 5px;
        margin-top: 11px;

        @media (max-width: 1023px) {
          margin-top: 8px;
        }

        &.yellow {
          &:before {
            content: url("../images/tick-yellow.png");
          }
        }

        &:before {
          content: url("../images/tick-pink.png");
          width: 22px;
          height: 19px;
          display: inline-block;
        }
      }
    }
  }

  .pill-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 200px;

    @media (max-width: 1023px) {
      order: 2;
      max-width: initial;
    }
    @media (max-width: 500px) {
      width: 100%;
    }

    .pill__score {
      color: black;
      font-size: 80px;
      line-height: 100%;
      font-family: var(--ff-opensans-extrabold);

      @media (max-width: 1023px) {
        font-size: 50px;
      }
      @media (max-width: 500px) {
      }
    }
    .pill__stars {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 4px;

      @media (max-width: 1023px) {
        gap: 2px;
      }

      span {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(242,149,2,1)'%3E%3Cpath d='M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26ZM12.0006 15.968L16.2473 18.3451L15.2988 13.5717L18.8719 10.2674L14.039 9.69434L12.0006 5.27502L9.96214 9.69434L5.12921 10.2674L8.70231 13.5717L7.75383 18.3451L12.0006 15.968Z'%3E%3C/path%3E%3C/svg%3E");
        width: 25px;
        height: 25px;
        display: inline-block;

        @media (max-width: 1023px) {
          width: 20px;
          height: 20px;
        }
      }
      span.half {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(242,149,2,1)'%3E%3Cpath d='M12.0006 15.968L16.2473 18.3451L15.2988 13.5717L18.8719 10.2674L14.039 9.69434L12.0006 5.27502V15.968ZM12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z'%3E%3C/path%3E%3C/svg%3E");
      }
      span.full {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(242,149,2,1)'%3E%3Cpath d='M12.0006 18.26L4.94715 22.2082L6.52248 14.2799L0.587891 8.7918L8.61493 7.84006L12.0006 0.5L15.3862 7.84006L23.4132 8.7918L17.4787 14.2799L19.054 22.2082L12.0006 18.26Z'%3E%3C/path%3E%3C/svg%3E");
      }
    }
  }

  .url-holder {
    position: relative;
    width: 100%;
    height: 81px;
  }

  .pill__url {
    margin: 26px auto 0 auto;
    color: white;
    font-size: 19px;
    font-family: var(--ff-opensans-bold);
    display: block;
    background-color: var(--clr-pink);
    width: 100%;
    line-height: 55px;
    text-decoration: none;
    padding: 0 20px;
    border-radius: 9px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    &.mobile-only {
      position: absolute;
      left: 0px;
      top: 0px;
      right: 0px;
      bottom: 0px;
    }

    &:hover {
      background-color: #f29502;
      color: black;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
  }

  &.best {
    background-color: var(--clr-yellow-light);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-color: var(--clr-yellow-dark);

    &:hover {
      border: 5px solid var(--clr-pink);
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .pill-number {
      -webkit-border-top-right-radius: 10px;
      -webkit-border-bottom-right-radius: 10px;
      -moz-border-radius-topright: 10px;
      -moz-border-radius-bottomright: 10px;
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px;
      top: -22px;
      left: -5px;
      z-index: 999;
      display: block;

      &:after {
        content: "MOST POPULAR";
        background: url(../images/flag-end.png) center right no-repeat;
        position: absolute;
        display: block;
        width: max-content;
        left: 44px;
        top: 0px;
        padding-left: 10px;
        padding-right: 30px;
        color: black;
        z-index: 9;
        font-family: var(--ff-opensans-bold);
        font-size: 30px;
        line-height: 40px;
      }

      @media (max-width: 1023px) {
        &:after {
          font-size: 18px;
        }
      }
    }
  }
}

.meta-holder {
  background-color: var(--clr-yellow-light);
  margin-top: 20px;
  margin-bottom: 50px;

  @media (max-width: 1023px) {
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .meta-scroller {
    display: flex;
    justify-content: space-between;
    background-color: white;
    gap: 20px;
    padding: 0 20px;

    @media (max-width: 1023px) {
      flex-direction: column;
      background-color: var(--clr-yellow-light);
      padding: 0 0 20px 0;
    }

    ul.slick-dots {
      display: flex;
      list-style: none;
      align-items: center;
      justify-content: center;
      gap: 22px;

      li {
        border: none;

        button {
          width: 20px;
          height: 20px;
          border-radius: 10px;
          background-color: var(--clr-yellow);
          border: none;
          color: var(--clr-yellow);
          box-shadow: none;
          /*transition: all 0.5s ease-in-out;*/
          transition: none;
        }

        &.slick-active {
          button {
            background-color: #afa793;
            color: #afa793;
            width: 24px;
            height: 24px;
            border-radius: 12px;
          }
        }
      }
    }

    .meta-item {
      width: 100%;
      background-color: var(--clr-yellow-light);
      display: flex;
      gap: 34px;
      flex-direction: column;
      padding: 30px 20px 30px 20px;
      align-items: center;
      justify-content: flex-start;

      @media (max-width: 1023px) {
        gap: 15px;
        padding: 20px 10px 20px 10px;
      }

      .meta-item__title {
        font-size: 24px;
        font-family: var(--ff-opensans-semibold);
        color: black;
        text-align: center;
      }
      .meta-item__info {
        text-align: center;
        color: var(--clr-grey-text);
        font-size: 16px;
      }
    }
  }
}

.article-container {
  font-size: 14px;
  h2 {
    font-size: 35px;
    line-height: 100%;
    margin-bottom: 20px;
    font-family: var(--ff-opensans-bold);
    text-align: center;

    @media (max-width: 1023px) {
      font-size: 20px;
      text-align: left;
    }
  }
  h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--ff-opensans-semibold);

    @media (max-width: 1023px) {
      font-size: 16px;
    }
  }
  p {
    color: var(--clr-navy-blue);

    @media (max-width: 1023px) {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
  img {
    float: left;
    max-width: 500px;
    width: 100%;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

#footer-content {
  background-color: var(--clr-yellow-light);
  border-top: 5px solid var(--clr-yellow-dark);
  padding: 30px 0;
  margin-top: 80px;
  margin-bottom: 140px;

  @media (max-width: 1023px) {
    padding: 10px 0;
    margin-top: 30px;
    margin-bottom: 94px;
  }

  .footer-logo-holder {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: flex-end;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;

    @media (max-width: 1023px) {
      text-align: left;
      justify-content: flex-start;
    }

    .lt-1 {
      color: black;
      font-size: 30px;
      line-height: 1;

      @media (max-width: 1023px) {
        font-size: 18px;
      }
    }
    .lt-2 {
      color: var(--clr-pink);
      font-size: 30px;
      font-family: var(--ff-opensans-bold);
      line-height: 1;

      @media (max-width: 1023px) {
        font-size: 18px;
      }
    }

    img {
      width: 50px;
    }
  }

  .footer-columns {
    display: flex;
    gap: 30px;

    @media (max-width: 1023px) {
      flex-direction: column;
      gap: 10px;
    }

    .footer-column {
      font-size: 14px;

      &.footer-about-us {
        min-width: 250px;

        a {
          color: black;
          text-decoration: none;
          &:hover {
            color: var(--clr-pink);
          }
        }
      }

      &.footer-menu-column {
        min-width: 150px;
      }

      .con-title {
        color: var(--clr-grey-text);
        font-family: var(--ff-opensans-semibold);
      }

      a {
        color: var(--clr-pink);
        text-decoration: none;
      }

      .footer-title {
        color: var(--clr-grey-text);
        font-family: var(--ff-opensans-bold);
        margin-bottom: 5px;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 5px;

        @media (max-width: 1023px) {
          font-size: 18px;
          border-bottom: 1px solid var(--clr-pink);
          padding-bottom: 4px;
        }

        svg {
          height: 20px;

          @media (max-width: 1023px) {
            font-size: 18px;
          }
        }
      }

      #footer-menu {
        list-style: none;
        padding: 0px;
        margin: 0px;

        li {
          margin-bottom: 3px;
          a {
            color: black;

            &:hover {
              color: var(--clr-pink);
            }
          }
        }
      }
    }
  }

  .copy-container {
    margin-top: 20px;
    font-size: 12px;
    color: var(--clr-navy-blue);
    border-top: 1px solid var(--clr-yellow-dark);
    padding-top: 5px;
    text-align: center;

    @media (max-width: 1023px) {
      font-size: 10px;
    }
  }
}

.banner-holder {
  background-color: var(--clr-yellow);
  border-top: 5px solid var(--clr-yellow-dark);
  border-bottom: 5px solid var(--clr-yellow-dark);
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 140px;

  @media (max-width: 1023px) {
    height: 94px;
  }

  .banner-container {
    padding: 0 5px;
    display: flex;
    gap: 60px;
    height: 100%;
    justify-content: center;
    align-items: center;

    @media (max-width: 1023px) {
      flex-direction: column;
      gap: 0px;
      padding: 5px 0;
    }

    .banner-text {
      color: black;
      font-size: 45px;
      font-family: var(--ff-opensans-bold);
      line-height: 110%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding: 5px 0;

      @media (max-width: 1023px) {
        text-align: center;
        padding: 5px;
        font-size: 20px;
        max-width: 100%;

        br {
          display: none;
        }
      }
    }

    .banner-bottom {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 60px;

      @media (max-width: 1023px) {
        flex-direction: row;
        gap: 10px;
      }

      .banner-discount {
        font-size: 78px;
        font-family: var(--ff-opensans-extrabold);
        color: black;

        @media (max-width: 1023px) {
          font-size: 30px;
          line-height: 100%;
        }
      }
      a.banner-cta {
        color: white;
        font-size: 36px;
        text-decoration: none;
        background-color: var(--clr-pink);
        height: 75px;
        line-height: 75px;
        width: 100%;
        border-radius: 11px;
        width: 300px;
        text-align: center;
        display: block;
        align-items: center;
        padding: 0 10px;
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        @media (max-width: 1023px) {
          font-size: 20px;
          height: 40px;
          line-height: 40px;
          width: 200px;
          border-radius: 8px;
          padding-left: 10px;
        }

        img {
          width: 50px;
          float: right;
          margin-top: 12px;

          @media (max-width: 1023px) {
            width: 30px;
            margin-top: 5px;
          }
        }

        &:hover {
          background-color: var(--clr-yellow-dark);
        }
      }
    }
  }
}
