<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.custom-tabs-widget {
  width: 100%;
  height: fit-content;
  border-radius: 8px;
  padding: 30px 50px 200px;
  background-color: #fff;

  @media (max-width: 1024px) {
    padding: 30px 50px 100px;
  }

  @media (max-width: 768px) {
    padding-inline: 20px;
  }

  .tabs-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;

    @media (max-width: 1024px) {
      width: 100%;
      gap: 42px;
    }

    h3 {
      font-family: "Noir Pro", sans-serif;
      font-size: 52px;
      color: #000;
      font-weight: 300;
      margin: 0;

      @media (max-width: 1440px) {
        font-size: 52px;
      }
      @media (max-width: 1024px) {
        font-size: 42px;
      }
      @media (max-width: 768px) {
        font-size: 32px;
      }
    }

    .tab-block {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      row-gap: 20px;
      column-gap: 10px;
      padding: 15px;
      background-color: #f4f4f4;
      border-radius: 4px;

      @media (max-width: 1024px) {
        column-gap: 25px;
      }

      @media (max-width: 768px) {
        flex-direction: column;
        flex-wrap: nowrap;
      }

      .tab-title-block {
        display: flex;
        cursor: pointer;
        background: none;
        border: 1px solid hsla(238, 41%, 14%, 0.6);
        border-radius: 4px !important;
        background: linear-gradient(
          90deg,
          hsla(224, 91%, 59%, 0) 0%,
          hsla(218, 90%, 84%, 0) 100%
        );
        padding: 0;
        transition: 0.3s ease-in-out;

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

        &amp;:hover {
          .number-block {
            background-color: hsla(47, 94%, 53%, 1);
            color: hsla(238, 41%, 14%, 1);
          }
          background: linear-gradient(
            90deg,
            hsla(224, 91%, 59%, 1) 0%,
            hsla(218, 90%, 84%, 1) 100%
          );
          border: 0px solid hsla(238, 41%, 14%, 0);
          .tab-title {
            /* background: linear-gradient(
              90deg,
              hsla(224, 91%, 59%, 1) 0%,
              hsla(218, 90%, 84%, 1) 100%
            ); */
            color: hsla(0, 0%, 100%, 1);
          }
        }

        .tab-number-block {
          width: 52px;
          height: 52px;
          border-radius: 4px;
          background-color: hsla(0, 0%, 100%, 1);
          color: hsla(238, 41%, 14%, 0.6);
          font-size: 20px;
          font-family: "AzeretMono", sans-serif;
          font-weight: 300;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: 0.3s ease-in-out;
          text-align: start;

          @media (max-width: 1440px) {
            font-size: 20px;
            width: 42px;
            height: 42px;
          }

          @media (max-width: 768px) {
            font-size: 22px;
            width: 47px;
            height: 47px;
          }
        }

        .active-number-block {
          background: linear-gradient(
            90deg,
            hsl(55, 99%, 64%) 0%,
            hsl(56, 100%, 84%) 100%
          );
          color: hsla(238, 41%, 14%, 1);
        }

        .tab-title {
          width: fit-content;
          height: 52px;
          color: hsla(238, 41%, 14%, 0.6);
          font-size: 16px;
          font-weight: 400;
          font-family: "Azeret Mono", sans-serif;
          line-height: 1.1;
          display: flex;
          align-items: center;
          padding-inline: 16px 34px;
          text-align: start;
          transition: 0.3s ease-in-out, background 0.3s ease-in-out;

          @media (max-width: 1440px) {
            font-size: 16px;
            height: 42px;
            padding-inline: 16px 24px;
          }

          @media (max-width: 768px) {
            font-size: 14px;
            height: 47px;
            padding-inline: 16px 34px;
          }
        }

        .active-tab-title {
          /* background: linear-gradient(
            90deg,
            hsla(224, 91%, 59%, 1) 0%,
            hsla(218, 90%, 84%, 1) 100%
          ); */
          border: 1px solid hsla(238, 41%, 14%, 0);
          color: hsla(0, 0%, 100%, 1);
        }
      }

      .active-tab-title-block {
        border-radius: 4px !important;
        background: linear-gradient(
          90deg,
          hsla(224, 91%, 59%, 1) 0%,
          hsla(218, 90%, 84%, 1) 100%
        );
        border: 0px solid hsla(238, 41%, 14%, 0);
      }
    }

    .tab-content-block {
      display: flex;
      flex-direction: column;

      .tab-content {
        display: flex;
        flex-direction: column;
        padding: 0 70px;
        transition: 0.3s ease-in-out;

        @media (max-width: 1024px) {
          padding: 0;
        }

        h3 {
          font-family: "Noir Pro", sans-serif;
          font-weight: 400;
          font-size: 40px;
          color: #151632;
          margin-bottom: 38px;

          @media (max-width: 1024px) {
            font-size: 28px;
            margin-bottom: 28px;
          }
          @media (max-width: 768px) {
            font-size: 24px;
          }
        }

        .wyswyg-description {
          font-family: "Noir Pro", sans-serif;
          font-weight: 400;
          font-size: 20px;
          color: #151632;

          @media (max-width: 1024px) {
            font-size: 18px;
          }
          @media (max-width: 768px) {
            font-size: 16px;
          }

          a {
            color: #1b66ff;
          }
        }
      }
    }
  }
}

/* Side Block Mobile--------------------------------------------------- */
</pre></body></html>