@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    /* background-color: #410000 !important; */
    background-color: #182028 !important;
}

::-moz-selection {
    color: #133054;
    background: #83abdb;
}

::selection {
    color: #ffffff;
    background: rgb(187, 167, 55);
}

/* Nav Bar */
nav {
    z-index: 999;
    position: relative;
    /* background-color: #d8e6ff; */
    background: rgb(208, 188, 107);
    background: linear-gradient(180deg, rgb(129 111 39) 24%, rgba(148, 131, 64, 1) 84%);
}

.navArea {
    height: 60px;
    width: 100vw;
    background-color: #0000;
    /* box-shadow: 0px 2px 26px 2px rgb(0 0 0 / 45%); */
}

.logoArea {
    background-image: url(../images/logo.png);
    height: 60px;
    width: 160px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.navButtons {
    padding: 4px 6px 0 4px;
    margin: 0px 4px 12px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border: none;
    background-color: transparent;
    color: #ffffff91;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 4px solid transparent;
}

.navButtons.activeTab {
    color: #fff;
    border-bottom: 4px solid #6a5a13 !important;
}

.navButtons:hover {
    color: #54470c;
    border-bottom: 4px solid #7f6f28;
}

/* Image Slider */
.carousel-container {
    overflow: hidden;
    width: 100vw;
    height: 600px;
    position: relative;
    box-shadow: 0 0 30px -20px #223344;
    margin: auto;
    z-index: 0;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

.mySlides img {
    display: block;
    width: 100%;
}

/* image gradient overlay [optional] */
/*  .mySlides::after {
    content: "";
    position: absolute;
    inset: 0;
      background-image: linear-gradient(-45deg, rgba(110, 0, 255, .1), rgba(70, 0, 255, .2));
  } */

/* Next & previous buttons */
.imageScroller .prev,
.imageScroller .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 0 8px 8px 0;
    background: rgba(173, 216, 230, 0.1);
    user-select: none;
}

.imageScroller .next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.imageScroller .prev:hover,
.imageScroller .next:hover {
    background-color: rgba(173, 216, 230, 0.3);
}

/* Caption text */
.imageScroller .text {
    color: #f2f2f2;
    background-color: rgba(10, 10, 20, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}

/* Number text (1/3 etc) */
.imageScroller .number {
    color: #f2f2f2;
    font-size: 16px;
    background-color: rgba(173, 216, 230, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 8px 12px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.imageScroller .dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
}

/* The dots/bullets/indicators */
.imageScroller .dots {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 4px;
    background-color: rgba(173, 216, 230, 0.2);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.imageScroller .active,
.imageScroller .dots:hover {
    background-color: rgba(173, 216, 230, 0.8);
}

/* transition animation */
.imageScroller .animate {
    -webkit-animation-name: animate;
    -webkit-animation-duration: 1s;
    animation-name: animate;
    animation-duration: 2s;
}

@keyframes animate {
    from {
        transform: scale(1.1) rotateY(10deg);
    }

    to {
        transform: scale(1) rotateY(0deg);
    }
}

/* Book Designs */
.bookShow {
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: default;
}

.bookShow.one {
    background: linear-gradient(180deg, #30995c 16%, #59ba83 35%, #c0fdda 80%, #bbffd8 97%);
}

.bookShow.two {
    background: linear-gradient(180deg, #7c2121 16%, #d87d7d 35%, #ffd7d7 80%, #ffbcbc 99%);
}

.bookShow.three {
    background: linear-gradient(180deg, #21466b 16%, #397cbf 35%, #d7ebff 80%, #c1dffc 99%);
}

.bookShow.four {
    background: linear-gradient(180deg, #979024 16%, #c1b94e 35%, #fffbb3 80%, #f0e771 99%);
}

.bookImg {
    border-radius: 8px;
    width: 100%;
    height: 230px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.readFull {
    position: absolute;
    inset: 0;
    background-color: #000000a6;
    border-radius: 8px;
    color: #fff;
    font-size: 2rem;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    cursor: pointer;
}

.readFull:hover {
    opacity: 1;
}

.bookShow h1 {
    font-size: 1.1rem;
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    white-space: normal;
    height: 2.6rem;
}

.bookShow.one h1 {
    color: #0f8542;
}

.bookShow.two h1 {
    color: #a81e1e;
}

.bookShow.three h1 {
    color: #1e65ae;
}

.bookShow.four h1 {
    color: #777000;
}

.bookShow h2 {
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bookShow .tags {
    display: flex;
}

.bookShow .tags a {
    text-decoration: none;
    color: #5151ab;
    font-size: 1rem;
    font-weight: 600;
    margin-right: 0.6rem;
    background-color: #a0a4ff29;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

/* ------------------------ Books Page ----------------------- */
.designBtn {
    position: relative;
    display: inline-flex;
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 0.5rem;
    background: #ffe8e8;
    color: #d43131;
    text-decoration: none;
    letter-spacing: 1px;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
}

.designBtn span {
    position: relative;
    z-index: 1;
    width: 100%;
}

.designBtn::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #be2d2d;
    transition: width 0.5s, height 0.5s;
}

.designBtn:hover {
    color: #fff
}

.designBtn:hover::before {
    width: 300px;
    height: 300px;
}

/* ======================== Datatable ======================== */
.magazineTable table tr td {
    height: 250px;
    padding: 0.5rem;
}

.magazineTable table thead tr th {
    background-color: transparent;
    border: 0;
}

.magazineTable .dataTables_filter label {
    color: #FFCDCC;
}

.magazineTable table tr td:first-child {
    margin: 0.5rem 0 0.5rem 0.5rem;
    border-radius: 14px 0 0 14px;
}

.dataTables_empty {
    background: transparent !important;
    border: 0;
    color: #fff !important;
}

.magazineTable table tr td:last-child {
    margin: 0.5rem 0.5rem 0.5rem 0;
    border-radius: 0 14px 14px 0;
    width: 100%;
    overflow: hidden scroll;
}

.magazineTable table tr td:last-child::-webkit-scrollbar {
    width: 0px;
}

.magazineTable table tbody {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
}

.magazineTable table tbody tr {
    width: 50%;
    display: flex;
    flex: 0 0 auto;
    cursor: default;
}

.active>.page-link,
.page-link.active {
    background: linear-gradient(119deg, #0e37e6 0%, #e60e0e 14%, #be0d2b 75%, #22099f 100%);
    color: #fff !important;
}

.page-link {
    color: #ec1034 !important;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
    font-weight: 500;
}

.disabled>.page-link,
.page-link.disabled {
    color: #212529bf !important;
}

.magazineTable table .colorOne td {
    background: linear-gradient(180deg, rgba(224, 255, 237, 1) 24%, rgba(175, 255, 209, 1) 74%);
}

.magazineTable table .colorTwo td {
    background: linear-gradient(180deg, rgba(255, 237, 237, 1) 24%, rgba(255, 195, 195, 1) 74%);
}

.magazineTable table .colorThree td {
    background: linear-gradient(180deg, rgba(235, 245, 255, 1) 24%, rgba(209, 231, 254, 1) 74%);
}

.magazineTable table .colorFour td {
    background: linear-gradient(180deg, rgba(255, 253, 225, 1) 24%, rgba(254, 249, 187, 1) 74%);
}

.magazineTable .dataTables_info {
    position: absolute;
    top: -10px;
    left: 10px;
    color: #FFCDCC;
    font-weight: 500;
    font-size: 1.1rem;
}

.magazineTable .dataTables_scrollBody {
    border-left: 0 !important;
}

.tableColOne {
    height: 240px;
}

.tableBookImg {
    width: 180px;
    border-radius: 8px;
}

.tableBookInfo {
    display: flex;
    flex-direction: column;
}

.tableBookInfo h1 {
    font-size: 1.4rem;
    margin-top: 0;
    /* margin-bottom: 1rem; */
    width: 90%;
}

.colorOne .tableBookInfo h1 {
    color: #0f8542;
}

.colorTwo .tableBookInfo h1 {
    color: #a81e1e;
}

.colorThree .tableBookInfo h1 {
    color: #1e65ae;
}

.colorFour .tableBookInfo h1 {
    color: #777000;
}

.tableBookInfo h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.tableBookTags {
    display: flex;
}

.tableBookTags .tagbtn {
    color: #5151ab;
    font-size: 1rem;
    font-weight: 600;
    margin-right: 0.6rem;
    background-color: #a0a4ff29;
    padding: 0.1rem 0.6rem;
    border-radius: 4px;
    cursor: default;
}

.tableBookDetails {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.tableBookDetails .detailBtn {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7a7a7a;
    margin: 0.4rem 0.8rem 0.4rem 0;
    padding-right: 0.5rem;
    border-right: 2px solid #c3c3c3;
}

.tableBookDetails .detailRateBtn {
    background-color: #0084ff;
    margin: 0.4rem 0.8rem 0.4rem 0;
    color: #fff;
    padding: 0 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    border-radius: 12px;
}

.tableBookDetails .detailRateBtn i {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.actionBtns {
    position: relative;
}

.freeBtn {
    padding: 0.3rem 0.63rem;
    text-decoration: none;
    color: #fff;
    background-color: #ff7a3a;
    font-size: 1.1rem;
    border-radius: 4px;
    font-weight: 500;
    opacity: 0;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease-in-out;
}

.freeBtn:hover {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.freeBtnFake {
    padding: 0.3rem 0.9rem;
    text-decoration: none;
    color: #fff;
    background-color: #ff7a3a;
    font-size: 1.1rem;
    border-radius: 4px;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}


.opttn {
    .none {
        display: inline;
    }

    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Courgette&family=Noto+Serif+Vithkuqi:wght@500&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Chonburi&display=swap");

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
    }

    body {
        overflow-x: hidden;
        position: relative;
    }

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    main {
        position: relative;
        min-height: 100vh;
        column-gap: 3rem;
        padding-block: min(20vh, 3rem);
        padding-inline: 2.3em;
        align-items: center;
        justify-content: center;
        /* background: linear-gradient(313deg, rgba(94, 10, 10, 1) 24%, rgba(64, 3, 3, 1) 74%); */
        background: linear-gradient(0deg, rgba(25, 46, 66, 1) 24%, rgba(24, 32, 40, 1) 84%);
        overflow: hidden;
    }

    @media screen and (min-width: 960px) {
        main {
            display: flex;
            padding-inline: 0;
        }
    }

    main .content {
        width: 100%;
        color: #fff;
        position: relative;
        z-index: 2;
        margin-bottom: 3em;
    }

    @media screen and (min-width: 960px) {
        main .content {
            width: 40%;
            padding-left: 5em;
            margin-bottom: 0;
        }
    }

    main h2 {
        letter-spacing: 0.8px;
        font-weight: 700;
        font-size: 2.8rem;
        line-height: 1.2;
        color: #ffefb0;
    }

    main p {
        font-size: 1rem;
        line-height: 1.8;
        margin-inline: auto;
        margin-top: 10px;
    }

    main .counter {
        font-weight: 400;
        display: flex;
        align-items: center;
        margin: 2.5em 0 2em 0;
        gap: 2em;
    }

    main .counter i {
        margin-right: 10px;
    }

    main .counter span {
        display: block;
        text-transform: capitalize;
        font-size: 0.8rem;
        color: #c1c1c1;
        margin-top: 3px;
    }

    main .btn {
        background-color: #7b6c2e;
        border: none;
        color: white;
        padding: 12px 20px;
        font-size: 16px;
        cursor: pointer;
        display: inline-block;
        border-radius: 4px;
        transition: 0.3s ease-in;
    }

    main .btn i {
        margin-left: 15px;
    }

    main .btn:hover {
        background-color: #7e4612;
    }

    .swiper-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        right: 0px;
        margin: 0 auto;
    }

    @media screen and (min-width: 960px) {
        .swiper-container {
            width: 60%;
            right: -60px;
        }
    }

    .swiper {
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .swiper-slide {
        width: 10rem;
        height: 24rem;
        display: flex;
        flex-direction: column;
        align-items: self-start;
        position: relative;
        border-radius: 12px;
        box-shadow: -1px 5px 15px #0000001f;
        text-align: center;
        opacity: 0.4;
        transition: opacity 0.4s ease-in;
    }

    .swiper-slide span {
        display: inline-block;
        background: #102262e3;
        border-radius: 0 50px 50px 0;
        text-transform: capitalize;
        padding: 8px 14px;
        letter-spacing: 0.5px;
        font-weight: 500;
        position: absolute;
        top: 2em;
        left: 0;
        color: #fff;
    }

    .swiper-slide h3 {
        color: #fff;
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 0.625rem;
        letter-spacing: 0.8px;
        position: relative;
        word-wrap: break-word;
    }

    @media screen and (min-width: 800px) {
        .swiper-slide h3 {
            font-size: 1.8rem;
        }
    }

    .swiper-slide p {
        color: #fff;
        line-height: 1.6;
        font-size: 0.8rem;
    }

    .swiper-slide .slide-content {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -10px);
        width: 90%;
    }

    .swiper-slide--one {
        background: #0f2027;
        background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("https://cdn.pixabay.com/photo/2023/03/12/20/58/ai-generated-7847847_1280.jpg") no-repeat 50% 50%/cover;
    }

    .swiper-slide--one h3 {
        font-family: "Courgette", cursive;
        font-weight: 300;
    }

    .swiper-slide--two {
        background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("https://cdn.pixabay.com/photo/2022/06/26/21/12/cover-7286312_1280.jpg") no-repeat 50% 50%/cover;
    }

    .swiper-slide--two h3 {
        font-family: "Noto Serif Vithkuqi", serif;
        font-weight: 300;
    }

    .swiper-slide--three {
        background: url("https://upload.wikimedia.org/wikipedia/commons/9/92/THE_BOOK_cover_image.png") no-repeat 50% 50%/cover;
    }

    .swiper-slide--four {
        background: url("https://covers.audiobooks.com/images/covers/full/9781511358378.jpg") no-repeat 50% 50%/cover;
    }

    .swiper-slide--five {
        background: url("https://cdn.pixabay.com/photo/2015/02/20/16/59/deer-643340_1280.jpg") no-repeat 50% 50%/cover;
    }

    .swiper-slide--six {
        background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("https://cdn.pixabay.com/photo/2022/11/04/23/15/woman-7570834_1280.jpg") no-repeat 50% 50%/cover;
    }

    .swiper-slide--six h3 {
        font-family: "Chonburi", cursive;
        font-weight: 400;
    }

    .swiper-slide-active {
        display: grid;
        opacity: 1;
    }

    .swiper-pagination {
        position: relative;
        bottom: -0.313rem;
        text-align: center;
        margin-top: 35px;
        width: auto;
    }

    .swiper-pagination-bullet {
        border-radius: 5px;
        width: 1.5rem;
        height: 0.25rem;
        background: #fff;
    }

    .swiper-pagination-bullet-active {
        background: #e6bbbb;
    }

    .circle {
        position: absolute;
        bottom: -5em;
        left: -8em;
        width: clamp(150px, 40vw, 400px);
        height: clamp(150px, 40vw, 400px);
        background: #110101;
        border-radius: 50%;
        z-index: 1;
        opacity: 0.7;
    }
}

/* Book Show */
:root {
    --columns: 3;
    --yellow: rgba(238, 188, 31, 1);
    --pink: rgba(255, 82, 145, 1);
    --blue: rgba(64, 98, 187, 1);
    --green: rgba(6, 141, 126, 1);
    --white: rgba(248, 255, 229, 1);
}

.bookShow{
    background: linear-gradient(180deg, rgba(25,46,66,1) 24%, rgba(24,32,40,1) 84%);
    /* position: absolute;
    z-index: -1; */
}

.bookShow ul {
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    margin: 200px -40px;
}

.bookShow li {
    grid-column-end: span 2;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-top: -50%;
    list-style-type: none;
}

.bookShow li:nth-child(2n) {
    grid-column-start: 2;
}

.bookShow li::before,
.bookShow li::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-size: 50% 100%, 50% 100%;
    background-position: left, right;
}

.bookShow li::before {
    z-index: 0;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    background-repeat: no-repeat;
    background-image: linear-gradient(-45deg, var(--yellow) 53.5%, var(--green) 53.5%, var(--green) 60%, var(--yellow) 60%), linear-gradient(45deg, var(--yellow) 53.5%, var(--green) 53.5%, var(--green) 60%, var(--yellow) 60%);
}

.bookShow li::after {
    clip-path: polygon(100% 50%, 50% 100%, 0 50%, 20% 50%, 50% 80%, 80% 50%);
    -webkit-clip-path: polygon(100% 50%, 50% 100%, 0 50%, 20% 50%, 50% 80%, 80% 50%);
    background-repeat: no-repeat;
    background-image: linear-gradient(45deg, var(--yellow) 40%, var(--green) 40%), linear-gradient(-45deg, var(--yellow) 40%, var(--green) 40%);
}

.bookShow li:nth-child(2n)::before {
    background-image: linear-gradient(-45deg, var(--pink) 53.5%, var(--blue) 53.5%, var(--blue) 60%, var(--pink) 60%), linear-gradient(45deg, var(--pink) 53.5%, var(--blue) 53.5%, var(--blue) 60%, var(--pink) 60%);
}

.bookShow li:nth-child(2n)::after {
    background-image: linear-gradient(45deg, var(--pink) 40%, var(--blue) 40%), linear-gradient(-45deg, var(--pink) 40%, var(--blue) 40%);
}

.bookShow li:nth-child(5n)::before {
    background-image: linear-gradient(-45deg, var(--green) 53.5%, var(--pink) 53.5%, var(--pink) 60%, var(--green) 60%), linear-gradient(45deg, var(--green) 53.5%, var(--pink) 53.5%, var(--pink) 60%, var(--green) 60%);
}

.bookShow li:nth-child(5n)::after {
    background-image: linear-gradient(45deg, var(--green) 40%, var(--pink) 40%), linear-gradient(-45deg, var(--green) 40%, var(--pink) 40%);
}

.bookShow li:nth-child(7n)::before,
.bookShow li:nth-child(7n-4)::before {
    background-image: linear-gradient(-45deg, var(--blue) 53.5%, var(--white) 53.5%, var(--white) 60%, var(--blue) 60%), linear-gradient(45deg, var(--blue) 53.5%, var(--white) 53.5%, var(--white) 60%, var(--blue) 60%);
}

.bookShow li:nth-child(7n)::after,
.bookShow li:nth-child(7n-4)::after {
    background-image: linear-gradient(45deg, var(--blue) 40%, var(--white) 40%), linear-gradient(-45deg, var(--blue) 40%, var(--white) 40%);
}

.bookShow li:nth-child(9n)::before,
.bookShow li:nth-child(9n-5)::before {
    background-image: linear-gradient(-45deg, var(--white) 53.5%, var(--green) 53.5%, var(--green) 60%, var(--white) 60%), linear-gradient(45deg, var(--white) 53.5%, var(--green) 53.5%, var(--green) 60%, var(--white) 60%);
}

.bookShow li:nth-child(9n)::after,
.bookShow li:nth-child(9n-5)::after {
    background-image: linear-gradient(45deg, var(--white) 40%, var(--green) 40%), linear-gradient(-45deg, var(--white) 40%, var(--green) 40%);
}

.bookShow img {
    position: absolute;
    width: 43%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-60%);
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.3);
    transition-property: transform;
    transition-duration: .3s;
}

.bookShow img:hover {
    transform: translateX(-40%) translateY(-70%) rotatez(25deg);
}

@media (min-width:450px) {
    .bookShow ul {
        margin: 190px 40px;
    }
}

@media (min-width:600px) {
    :root {
        --columns: 5;
    }

    .bookShow li:nth-child(2n) {
        grid-column-start: auto;
    }

    .bookShow li:nth-child(4n-1) {
        grid-column-start: 2;
    }
}

@media (min-width:900px) {
    :root {
        --columns: 7;
    }

    .bookShow li:nth-child(4n-1) {
        grid-column-start: auto;
    }

    .bookShow li:nth-child(6n-2) {
        grid-column-start: 2;
    }
}

@media (min-width:1200px) {
    :root {
        --columns: 9;
    }

    .bookShow li:nth-child(6n-2) {
        grid-column-start: auto;
    }

    .bookShow li:nth-child(8n-3) {
        grid-column-start: 2;
    }
}

@media (min-width:1500px) {
    :root {
        --columns: 11;
    }

    .bookShow li:nth-child(8n-3) {
        grid-column-start: auto;
    }

    .bookShow li:nth-child(10n-4) {
        grid-column-start: 2;
    }
}

@media (min-width:1800px) {
    :root {
        --columns: 13;
    }

    .bookShow li:nth-child(10n-4) {
        grid-column-start: auto;
    }

    .bookShow li:nth-child(12n-5) {
        grid-column-start: 2;
    }
}

@media (min-width:2100px) {
    :root {
        --columns: 15;
    }

    .bookShow li:nth-child(12n-5) {
        grid-column-start: auto;
    }

    .bookShow li:nth-child(14n-6) {
        grid-column-start: 2;
    }
}