<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  list-style: none;
}

  html, body {
    scroll-behavior: smooth;
    height: 100%;
    min-width: 320px;
  }

    body {
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 500;
      overflow-x: hidden;
      margin: 0;
      line-height: 1.6;
    }

      body.white-theme {
        background: #F2F4F8;
      }

      body.dark {
        background: #131313;
      }

      @media (max-width: 991.98px) {
        body.no-scroll {
          overflow-y: hidden;
        }
      }

      button, select {
        text-transform: none;
        background-color: transparent;
        border: none;
        padding: 0;
      }

      .wrapper {
        transition: padding .3s;
        position: relative;
        display: table;
        height: 100%;
        width: 100%;
        table-layout: fixed;
        overflow: hidden;
      }

        .wrapper.active-burger {
          padding-left: 316px;
        }

          @media (max-width: 991.98px) {
            .wrapper.active-burger {
              padding-left: 0;
            }
          }

        header {
          position: relative;
        }

        @media (max-width: 991.98px) {
          header {
            position: fixed;
            width: 100%;
            z-index: 20;
          }
        }

          .header-wrapper {
            position: relative;
          }

            .header-inner {
              padding: 18px 0;
            }

              body.white-theme .header-inner {
                background: #DADFE9;
              }

              body.dark .header-inner {
                background: #222428;
              }

              .header-inner .container {
                margin: 0 auto;
                padding: 0 30px;
                max-width: 1540px;
                width: 100%;
              }

                @media (max-width: 991.98px) {
                  .header-inner .container {
                    padding: 0 10px;
                  }
                }

                .header-wrap {
                  display: flex;
                  align-items: center;
                  position: relative;
                }

                  .burger-btn {
                    margin-right: 30px;
                    cursor: pointer;
                  }

                    .icon {
                      display: inline-block;
                      height: 20px;
                      width: 29px;
                      position: relative;
                    }

                      .ico-bar {
                        height: 4px;
                        width: 100%;
                        position: absolute;
                        transition: 0.1s ease-in-out;
                        left: 0;
                        border-radius: 5px;
                      }

                      body.white-theme .wrapper.active-burger .ico-bar {
                        background: #000;
                      }

                      body.dark .wrapper.active-burger .ico-bar {
                        background: #fff;
                      }

                        .ico-bar:first-child {
                          top: 0;
                        }

                          .wrapper.active-burger .ico-bar:first-child {
                            top: 12px;
                            transform: rotate(-45deg);
                            height: 2px;
                          }

                        .ico-bar:nth-child(2) {
                          top: 10px;
                        }

                          .wrapper.active-burger .ico-bar:nth-child(2) {
                            display: none;
                          }

                        .ico-bar:nth-child(3) {
                          top: 20px;
                        }

                          .wrapper.active-burger .ico-bar:nth-child(3) {
                            top: 12px;
                            transform: rotate(45deg);
                            height: 2px;
                          }

                  .logo {
                    flex-grow: 1;
                    flex-shrink: 1;
                    margin-right: 10px;
                  }

                    .logo a {
                      text-decoration: none;
                      display: flex;
                      background-position: center center;
                      background-repeat: no-repeat;
                      background-size: 100%;
                      width: 230px;
                      height: 42px;
                      font-weight: 600;
                      font-size: 24px;
                      line-height: 1.4;
                      text-transform: none;
                    }

                    body.white-theme .logo a:hover {
                      color: #000;
                    }

                    body.dark .logo a:hover {
                      color: #fff;
                    }

                      @media (max-width: 991.98px) {
                        .logo a {
                          width: 160px;
                        }
                      }

                  .search-wrap {
                    max-width: 580px;
                    flex-grow: 1;
                    flex-shrink: 1;
                    /* margin-right: 60px; */
                    position: relative;
                    z-index: 50;
                  }

                    @media (max-width: 991.98px) {
                      .search-wrap {
                        margin: 0 -20px;
                        flex-grow: 0;
                        flex-shrink: 0;
                        position: absolute;
                        max-width: none;
                        left: 0;
                        right: 0;
                        background-color: #222428;
                        padding: 20px 60px 20px 20px;
                        display: none;
                      }
                    }

                    .wrapper.active-search .search-wrap {
                      display: block;
                    }

                      body.white-theme .wrapper.active-search .search-wrap {
                        background: #DADFE9;
                      }

                      body.dark .wrapper.active-search .search-wrap {
                        background: #222428;
                      }

                      @media (max-width: 991.98px) {
                        .wrapper.active-search .search-wrap {
                          background: #DADFE9;
                        }
                      }

                    .search-wrap form {
                      width: 100%;
                    }

                      .search-wrap form input {
                        width: 100%;
                        border-radius: 10px;
                        border: none;
                        padding: 10px 50px 10px 20px;
                      }

                      .search-wrap form input:focus-visible {
                        outline: none;
                      }

                      body.white-theme .search-wrap form input {
                        background-color: #fff;
                        color: #000;
                      }

                      body.dark .search-wrap form input {
                        background-color: #000;
                        color: #fff;
                      }

                      .search-btn {
                        position: absolute;
                        right: 16px;
                        top: 10px;
                        cursor: pointer;
                      }

                        @media (max-width: 991.98px) {
                          .search-btn {
                            right: 80px;
                            top: 30px;
                          }
                        }

                        .icon-search {
                          color: #0968F7;
                          font-size: 24px;
                          display: inline-block;
                          width: 1em;
                          height: 1em;
                          fill: currentColor;
                        }

                        body.white-theme .search-btn:hover {
                          color: #000000;
                        }

                        body.dark .search-btn:hover {
                          color: #ffffff;
                        }

                    .close-search {
                      display: none;
                    }

                    body.white-theme .close-search {
                      color: #000;
                    }

                    body.dark .close-search {
                      color: #fff;
                    }

                      @media (max-width: 991.98px) {
                        .close-search {
                          display: block;
                          position: absolute;
                          right: 22px;
                          top: 28px;
                        }
                      }

                      .icon-close {
                        color: white;
                        font-size: 24px;
                        display: inline-block;
                        width: 1em;
                        height: 1em;
                        fill: currentColor;
                      }

                  .search-btn-mobile {
                    display: none;
                    cursor: pointer;
                  }

                    @media (max-width: 991.98px) {
                      .search-btn-mobile {
                        display: flex;
                      }
                    }

        main {
          position: relative;
        }

        body.white-theme main {
          background-color: #F2F4F8;
        }

        body.dark main {
          background-color: #131313;
        }

        /*
        @media (max-width: 991.98px) {
          main {
            margin-top: 70px;
          }
        }
        */

          /*
          nav {
            margin-bottom: 20px
          }
          */

          body.white-theme nav {
            background-color: #fff;
          }

          body.dark nav {
            background-color: #000;
          }

          @media (max-width: 991.98px) {
            main nav {
              display: none;
            }
          }

          main nav .container {
            margin: 0 auto;
            padding: 0 30px;
            max-width: 1540px;
            width: 100%;
          }

            @media (max-width: 991.98px) {
              main nav .container {
                padding: 0 10px;
              }
            }

            nav ul {
              display: flex;
              justify-content: center;
              padding-inline-start: 0;
              margin: 0;
            }

              nav ul li a {
                padding: 13px 10px;
                font-weight: 600;
                /* border-bottom: 2px solid transparent; */
                transition: all 0.3s ease;
                text-decoration: none;
                display: block;
                background-color: transparent;
                cursor: pointer;
              }

                body.white-theme nav ul li a {
                  color: #000;
                }

                body.dark nav ul li a {
                  color: #fff;
                }

          .ad {
            margin-top: 0;
            padding: 15px 10px;
            color: #fff;
            text-align: center;
            font-size: 15px;
            /* margin-bottom: 15px; */
          }

            @media (max-width: 991.98px) {
              .ad {
                margin-top: 78px;
              }
            }

          .burger-wrap {
            transition: transform .3s;
            width: 316px;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            padding: 20px 20px 30px 20px;
            z-index: 230;
            overflow-y: auto;
            transform: translate(-100%, 0px);
          }

            body.white-theme .burger-wrap {
              background-color: #fff;
            }

            body.dark .burger-wrap {
              background-color: #000;
            }

            .wrapper.active-burger .burger-wrap {
              display: block;
              transform: translate(0, 0);
            }

            @media (max-width: 991.98px) {
              .burger-wrap {
                height: 100vh;
              }
            }

              .burger-wrap .close-burger {
                cursor: pointer;
                height: 38px;
              }

                body.white-theme .burger-wrap .close-burger {
                  color: #000;
                }

                body.dark .burger-wrap .close-burger {
                  color: #fff;
                }

              .burger-wrap nav {
                display: none;
                border-bottom: 1px solid #222428;
                margin: 20px 0 0 0;
              }

                @media (max-width: 991.98px) {
                  .burger-wrap nav {
                    display: block;
                  }
                }

                  .navigation-burger {
                    flex-direction: column;
                    display: none;
                  }

                  @media (max-width: 991.98px) {
                    .navigation-burger {
                      display: block;
                    }
                  }

                    .navigation-burger a {
                      padding: 13px 10px;
                    }

              .burger-models-wrap {
                padding: 20px 0;
                border-bottom: 1px solid #222428;
              }

                .burger-models-wrap .headline {
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  margin-bottom: 20px;
                }

                  @media (max-width: 767px) {
                    .burger-models-wrap .headline {
                      flex-wrap: wrap;
                      flex-direction: column;
                      align-items: flex-start;
                    }
                  }

                  .burger-models-wrap h4 {
                    font-weight: 600;
                    font-size: 18px;
                  }

                    body.white-theme .burger-models-wrap h4 {
                      color: #000;
                    }

                    body.dark .burger-models-wrap h4 {
                      color: #fff;
                    }

                .burger-model-list {
                  padding-inline-start: 0;
                  margin: 0;
                }

                  .burger-model-item {
                    margin-bottom: 3px;
                  }

                    .burger-model-item a {
                      display: flex;
                      align-items: center;
                      justify-content: space-between;
                      padding: 10px 20px;
                      border-radius: 10px;
                      transition: all 0.3s ease;
                      text-decoration: none;
                      background-color: transparent;
                    }

                      .burger-model-item a span:first-child {
                        font-weight: 600;
                      }

                      body.dark .burger-model-item a span:first-child {
                        color: #fff;
                      }

                      body.white-theme .burger-model-item a span:first-child {
                        color: #000;
                      }

                      body.dark .burger-model-item a span:last-child {
                        color: #B7B7B7;
                        font-weight: 400;
                      }

                      body.white-theme .burger-model-item a span:last-child {
                        color: #696B71;
                        font-weight: 400;
                      }

                      .burger-model-item a:hover span, .active-nav a span {
                        color: #fff !important;
                      }

          .section {
            padding-bottom: 20px;
          }

          #first-section {
            margin-top: 15px;
            padding-bottom: 50px;
          }

          @media (max-width: 991.98px) {
            body.without-ad #first-section {
              margin-top: 93px; /* 78+15 */
            }
          }

            @media (max-width: 991.98px) {
              .section {
                padding-bottom: 30px;
              }
            }

            .section .container {
              margin: 0 auto;
              padding: 0 30px;
              max-width: 1540px;
              width: 100%;
            }

              @media (max-width: 991.98px) {
                .section .container {
                  padding: 0 10px;
                }
              }

              .headline {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
              }

              body.dark .headline h1 {
                color: #fff;
              }

              body.white-theme .headline h1 {
                color: #000;
              }

              .headline h1 {
                margin-right: 10px;
                color: #fff;
                font-weight: 600;
                font-size: 24px;
                line-height: 1.4;
                text-transform: none;
              }

              @media (max-width: 991.98px) {
                .headline h1 {
                  font-size: 18px;
                }
              }

                h1, h2, h3, h4 {
                  margin: 0;
                }

              .thumbs {
                display: flex;
                flex-wrap: wrap;
                margin: 0 -5px -30px;
              }

                .item {
                  width: calc(25% - 10px);
                  margin: 0 5px 30px;
                  display: block;
                }

                  @media (max-width: 991.98px) {
                    .item {
                      width: calc(33.33% - 10px);
                    }
                  }

                  @media (max-width: 767.98px) {
                    .item {
                      width: calc(50% - 10px);
                    }
                  }

                  @media (max-width: 575.98px) {
                    .item {
                      width: 100%;
                    }
                  }

                  .item a {
                    display: block;
                    text-decoration: none;
                  }

                    .box-img {
                      overflow: hidden;
                      border-radius: 10px;
                      margin-bottom: 8px;
                      position: relative;
                      padding-bottom: 56.2%;
                      border-radius: 10px;
                    }

                      .box-img .thumb {
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 10px;
                        width: 100%;
                        height: auto;
                        transition: all .3s;
                      }

                      .views {
                        font-weight: 400;
                        opacity: 0.8;
                        border-radius: 5px;
                        padding: 0 5px;
                        font-size: 12px;
                        z-index: 10;
                        display: block;
                        position: absolute;
                        bottom: 10px;
                        left: 10px;
                        margin-left: 2px;
                      }

                      body.white-theme .views {
                        background-color: #fff;
                        color: #000;
                      }

                      body.dark .views {
                        background-color: #000;
                        color: #fff;
                      }

                      .time {
                        font-weight: 400;
                        opacity: 0.8;
                        border-radius: 5px;
                        padding: 0 5px;
                        font-size: 12px;
                        z-index: 10;
                        display: block;
                        position: absolute;
                        bottom: 10px;
                        right: 10px;
                      }

                      body.white-theme .time {
                        background-color: #fff;
                        color: #000;
                      }

                      body.dark .time {
                        background-color: #000;
                        color: #fff;
                      }

                  .thumb_info .video-text {
                    text-align: center;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    text-overflow: ellipsis;
                    margin-bottom: 5px;
                    transition: all 0.3s ease;
                    font-weight: bold;
                  }

                  body.white-theme .thumb_info .video-text {
                    color: #000;
                  }

                  body.dark .thumb_info .video-text {
                    color: #fff;
                  }

            .video-wrapper {
              display: flex;
            }

              .video-content-block {
                flex-grow: 1;
                flex-shrink: 1;
              }

                /* .video-holder {} */

                  /* .player {} */

                    .player-holder {
                      overflow: hidden;
                      position: relative;
                      display: flex;
                      border-radius: 10px;
                      margin-bottom: 20px;
                    }

                      .k2s-preview { /* .player-wrap */
                        max-width: unset !important;
                        width: 100% !important;
                        height: 0 !important;
                        padding-bottom: 56.338028169014% !important;
                      }

                      .cover { /* .player-wrap */
                        width: 100%;
                      }

                  .info-buttons {
                    display: flex;
                    align-items: center;
                    margin-bottom: 20px;
                  }

                  .lh1 {
                    line-height: 1 !important;
                  }

@media (max-width: 991.98px) {
  .info-buttons {
    flex-direction: column;
  }
}

.footer-list a {
  background-color: transparent !important;
}

                    .rating-container {
                      display: flex;
                      justify-content: space-between;
                      margin-right: 20px;
                      flex-grow: 1;
                      flex-shrink: 1;
                      width: 100%;
                    }

                      /* div */

                      .favorite-wrap {
                        margin: 0 5px 0 auto;
                        position: relative;
                      }

                    .tabs-menu {
                      flex-grow: 0;
                      flex-shrink: 0;
                    }

                      ul.video-buttons-list {
                        display: flex;
                        padding-inline-start: 0;
                        margin: 0;
                        list-style: none;
                      }

                        li.list-right-item {
                          margin-right: 6px;
                          display: flex;
                        }

                        .burger-wrap nav {
                          padding-bottom: 20px;
                        }

                        .toggle-button.active {
                          color: #fff !important;
                        }

                        .toggle-button:hover {
                          color: #fff !important;
                        }

                        body.white-theme .list-right-item a {
                          background: #fff;
                          color: #696B71;
                        }

                        body.dark .list-right-item a {
                          background: #222428;
                          color: #ffffff;
                        }

                        li a {
                          text-decoration: none;
                          list-style: none;
                          display: flex;
                          align-items: center;
                          padding: 9px 20px;
                          border-radius: 10px;
                          background: #222428;
                          color: #ffffff;
                          cursor: pointer;
                          transition: all 0.3s ease;
                          justify-content: center;
                          width: 100%;
                        }

                        ul.video-buttons-list li {
                          /* margin-right: 5px; */
                          display: flex;
                        }

                          .video-buttons-list button {
                            display: flex;
                            align-items: center;
                            padding: 9px 20px;
                            border-radius: 10px;
                            background: #222428;
                            color: #ff0000;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            width: 100%;
                          }

@media (max-width: 991.98px) {
  .like-wrap {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

                  .ps-9px {
                    margin-left: 9px;
                  }

@media (max-width: 991.98px) {
  .toggle-button .ps-9px {
    display: none;
  }
}

          .pagination {
            margin-top: 50px;
            background-color: transparent !important;
            display: block !important;
          }

            .nav-links { /* .pagination-list */
              display: flex;
              justify-content: center;
              padding-inline-start: 0;
              margin: 0;
            }

              .nav-links a {
                display: block;
              }

              .prev.page-numbers {
                margin-right: 17px;
              }

              .next.page-numbers {
                margin-left: 17px;
              }

                .page-numbers {
                  text-decoration: none;
                  padding: 10px 18px;
                  border-radius: 10px;
                  transition: all 0.3s ease;
                  display: block;
                  margin: 0 3px;
                }

                @media (max-width: 991.98px) {
                  .page-numbers:not(.prev, .current, .next) {
                    display: none !important;
                  }
                }

                .page-numbers.current {
                  color: #fff !important;
                }

                  a.page-numbers:hover {
                    color: #fff !important;
                  }

                body.white-theme .page-numbers {
                  background: #fff;
                  color: #696B71;
                }

                body.dark .page-numbers {
                  color: #B7B7B7;
                  background: #222428;
                }

body.dark .rating-container {
  color: #fff;
}

a:hover .sze {
  color: unset !important;
}

body.white-theme .rating-container {
  color: #000;
}

body.white-theme .bi-lock-fill:hover {
  color: #000;
}

body.dark .bi-lock-fill:hover {
  color: #fff;
}

body.white-theme .bi-unlock-fill {
  color: #000;
}

body.dark .bi-unlock-fill {
  color: #fff;
}

#info {
  margin-top: 17px;
}

body.white-theme #info {
  color: #000;
}

body.dark #info {
  color: #fff;
}

.list-right-item:last-child {
  margin-right: 0;
}

.bi-lock-fill {
  cursor: pointer;
  transition: all 0.3s ease;
}

.lock {
  text-align: center;
  font-size: 42px;
}

.lock-text {
  text-align: center;
  margin: 3px 0 20px 0;
  text-transform: uppercase;
}

.ellipsis {
  text-overflow: ellipsis; /* enables ellipsis */
  white-space: nowrap; /* keeps the text in a single line */
  overflow: hidden; /* keeps the element from overflowing its parent */
}

        footer {
          display: table-row;
          height: 1px;
        }

          body.white-theme .footer-inner {
            background-color: #DADFE9;
          }

          body.dark .footer-inner {
            background-color: #222428;
          }

            .footer-inner .container {
              margin: 0 auto;
              padding: 0 30px;
              max-width: 1540px;
              width: 100%;
            }

              .footer-wrap {
                padding: 40px 0;
              }

                .footer-logo {
                  text-align: center;
                  margin-bottom: 30px;
                }

                  .footer-logo a {
                    background-position: center center;
                    background-repeat: no-repeat;
                    background-size: 100%;
                    width: 230px;
                    height: 42px;
                    text-decoration: none;
                    display: inline-block;
                  }

                  .footer-list {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-wrap: wrap;
                    margin-bottom: 30px;
                    padding-inline-start: 0;
                    list-style: none;
                  }

                    .footer-item {
                      margin-right: 50px;
                      list-style: none;
                    }

                      .footer-item:last-child {
                        margin: 0;
                      }

                      .footer-item a {
                        text-transform: uppercase;
                        transition: all 0.3s ease;
                        background-color: transparent;
                        text-decoration: none;
                        display: block;
                        cursor: pointer;
                        padding: 0;
                      }

                        body.white-theme .footer-item a {
                          color: #000;
                        }

                        body.dark .footer-item a {
                          color: #fff;
                        }

                        body.white-theme .footer-text, body.white-theme .copy {
                          color: #000 !important;
                        }

                        body.dark .footer-text, body.dark .copy {
                          color: #fff !important;
                        }

                        .footer-text {
                          margin-bottom: 30px;
                        }

                        .footer-text, .copy {
                          font-size: 12px;
                          text-align: center;
                        }

@media (max-width: 991.98px) {
  .buttons-wrap {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .video-buttons-list li {
    width: 33%;
  }
}

.row {
  display: flex;
  align-items: center;
  position: relative;
}

.block-details .row span {
  margin-top: 0;
  min-width: 70px;
}

.row span {
  font-size: 12px;
  font-weight: 600;
  margin: 5px 10px 0 0;
}

body.white-theme .row span {
  color: #696B71;
}

body.dark .row span {
  color: #9E9E9E;
}

.row-list {
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 0;
  margin: 0;
}

.row-item a {
  font-size: 12px;
  padding: 0px 16px;
  border-radius: 10px;
  height: 30px;
  overflow: hidden;
  line-height: 28px;
  margin: 3px;
  text-decoration: none;
  display: block;
  width: unset;
}

body.white-theme .row-item a {
  background: #fff;
  color: #696B71;
}

body.dark .row-item a {
  color: #9E9E9E;
  background: #222428;
}

@media (min-width: 992px) {
  .row-item a:hover {
    color: #fff !important;
  }
}

.block-screenshots {
  display: flex;
  flex-wrap: wrap;
}

.block-screenshots .sh {
  margin: 0 5px 20px 5px;
}

#tab-screenshots {
  margin: 0 -5px 0 -5px;
}

.block-screenshots .item img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: top;
}

@media (max-width: 575.98px) {
  #tab-screenshots {
    margin: 0;
  }
  .block-screenshots .sh {
    margin: 0 0 20px 0;
  }
}

.dls {
  flex-direction: column;
  width: 100%;
}

.dls a {
  margin: 0;
  text-align: center;
}

.dls li {
  margin: 0 0 6px 0;
}

.dls li:last-child {
  margin: 0;
}

#chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 42px;
  transition: all 0.3s ease;
}

body.white-theme #chat:hover {
  color: #000;
}

body.dark #chat:hover {
  color: #fff;
}

.box {
  margin-bottom: 20px;
}

.box:last-child {
  margin-bottom: 0;
}

.box h2 a, .box h2 span {
  text-decoration: none;
  text-align: left;
  padding: 20px;
  display: block;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

body.white-theme .box h2 a, body.white-theme .box h2 span {
  background-color: #DADFE9;
  color: #000;
}

body.dark .box h2 a, body.dark .box h2 span {
  background-color: #222428;
  color: #fff;
}

.box ul {
  margin: 0;
  padding-inline-start: 0;
}

.box ul li a {
  margin: 1px 0 0 0;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  border-radius: unset;
  transition: all 0.3s ease;
}

body.white-theme .box ul li a {
  color: #696B71;
  background-color: #fff;
}

body.dark .box ul li a {
  color: #9E9E9E;
  background-color: #222428;
}

.box ul li:last-child a {
  border-radius: 0 0 10px 10px;
}

.box h2 a:hover, .box ul li a:hover {
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .box h2 a, .box h2 span {
    font-size: 18px;
    padding: 10px;
  }
}

.capit {
  text-transform: capitalize;
}

body.dark .page-view {
  color: #fff;
}

.page-view a {
  text-decoration: none;
}

body.white-theme .page-view {
  color: #000
}

.lefth {
  justify-content: unset;
}

.footer-outer {
  padding-bottom: 50px;
}</pre></body></html>