html {
  scroll-behavior: smooth; }

body {
  direction: rtl; }

@font-face {
  font-family: 'assistant';
  src: url("../../fonts/assistant/Assistant-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

.singleton-header {
  width: 100%;
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  top: 0;
  left: 0; }
  .singleton-header__logo {
    display: block;
    width: 260px;
    height: 60px; }
    .singleton-header__logo img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .singleton-header__mobile-menu-btn {
    display: none; }
  .singleton-header__navigation {
    display: none; }
  @media screen and (max-width: 768px) {
    .singleton-header {
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
      padding-inline: 25px; }
      .singleton-header__logo {
        width: 147px;
        height: 38px; }
      .singleton-header__mobile-menu-btn {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        gap: 7px;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center;
        width: 50px;
        height: 50px;
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 100; }
        .singleton-header__mobile-menu-btn .menu-line {
          width: 22px;
          height: 2px;
          background-color: #ffffff;
          transition: all 0.3s ease-in-out;
          position: relative; }
        .singleton-header__mobile-menu-btn.active {
          box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.6), 0 0 0 rgba(0, 0, 0, 0.6);
          padding-right: 14px; }
          .singleton-header__mobile-menu-btn.active .menu-line-1 {
            rotate: -45deg;
            transform: translateY(12px);
            z-index: 3; }
          .singleton-header__mobile-menu-btn.active .menu-line-2 {
            opacity: 0; }
          .singleton-header__mobile-menu-btn.active .menu-line-3 {
            rotate: 45deg;
            transform: translateY(-12px);
            z-index: 2; }
      .singleton-header__navigation {
        display: -ms-flexbox;
        display: flex;
        width: 0;
        overflow: hidden;
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-align: center;
            align-items: center;
        height: 100vh;
        position: fixed;
        z-index: 99;
        right: 0;
        top: 0;
        background-color: #028e9c;
        padding-top: 90px;
        transition: width 0.2s ease; }
        .singleton-header__navigation a {
          color: #ffffff;
          font-family: "assistant";
          font-size: 21px;
          line-height: 56px;
          text-decoration: none; }
        .singleton-header__navigation.active {
          width: 75vw; } }

.singleton-footer {
  background-color: #028e9c;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 22px 0; }
  .singleton-footer__content {
    color: #ffffff;
    font-family: "assistant";
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 10px; }
  .singleton-footer__warning {
    font-size: 20px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    padding: 5px 0;
    margin: 0; }
  .singleton-footer__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 10px; }
    .singleton-footer__links a {
      color: #ffffff;
      text-decoration: underline;
      font-family: "assistant";
      font-size: 16px; }
    .singleton-footer__links .purchase-link {
      display: none; }
  @media screen and (max-width: 768px) {
    .singleton-footer {
      padding: 0;
      padding-top: 22px; }
      .singleton-footer__content {
        width: 100%; }
      .singleton-footer__warning {
        font-size: 16px;
        margin-inline: 25px;
        text-align: justify; }
      .singleton-footer__links a {
        margin-inline: 25px;
        display: inline-block; }
      .singleton-footer__links .purchase-link {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
        width: 100%;
        background-color: #ffffff;
        color: #000;
        margin-inline: unset;
        -ms-flex-pack: center;
            justify-content: center;
        -ms-flex-align: center;
            align-items: center;
        padding: 10px 0;
        text-decoration: none;
        font-size: 16px;
        gap: 5px; }
        .singleton-footer__links .purchase-link svg {
          fill: #ffcb00; } }

.singleton-popup {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: none; }
  .singleton-popup__wrapper {
    background-color: #028e9c;
    width: 555px;
    height: 308px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 40px;
    padding-inline: 50px; }
  .singleton-popup__image {
    width: 246px;
    height: 82px; }
    .singleton-popup__image img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .singleton-popup__buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    width: 100%; }
    .singleton-popup__buttons .popup-btn {
      display: block;
      background-color: #ffffff;
      color: #028e9c;
      border-radius: 20px;
      font-size: 25px;
      text-align: center;
      border: none;
      text-decoration: none;
      padding: 2px 6px; }
  .singleton-popup__warning {
    border: 2px solid #ffffff;
    padding: 3px 5px; }
    .singleton-popup__warning p {
      font-family: "assistant";
      color: #ffffff;
      text-align: center;
      font-size: 16px;
      padding: 0;
      margin: 0; }
  .singleton-popup.active {
    display: -ms-flexbox;
    display: flex; }
  @media screen and (max-width: 768px) {
    .singleton-popup__wrapper {
      width: 90%;
      gap: 20px;
      padding-inline: 25px; }
    .singleton-popup__buttons .popup-btn {
      font-size: 18px;
      padding: 3px 8px; }
    .singleton-popup__warning {
      border: 2px solid #ffffff;
      padding: 3px 5px; }
      .singleton-popup__warning p {
        font-size: 14px; } }

.singleton-page .storepage {
  padding-top: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; }

.singleton-page #homepage {
  background-image: url("../../images/homepageBackground.png"); }

.singleton-page #singletondistillery {
  background-image: url("../../images/familyBackground.png"); }

.singleton-page #singletonfamily {
  background-image: url("../../images/familyBackground.png"); }

.singleton-page .col-12 {
  padding-left: unset;
  padding-right: unset; }
