/* @font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: "Alegreya SC", serif;
  src: url('../fonts/Alegreya_SC/AlegreyaSC-Medium.ttf') format('truetype');
  font-weight: 500;
} */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

.form-control {
    font-size: 1rem;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    transition: all 0.5s;
    z-index: 1111;
    padding: 0;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.header .logo {
    transition: 0.3s;
}

.header .logo img {
    width: 100px;
    height: 100px;
}

.header-btn {
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    border: 2px solid #07aff0;
    box-sizing: border-box;
    color: #07aff0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    max-width: 100%;
    padding: 10px 24px;
    text-align: center;
    width: auto;
    z-index: 0;
}

.header-btn:hover {
    background-color: #4fc9f7;
    color: white;
    border: 1px solid white;
}

.navbar a.current-item {
    color: #4fc9f7;
    font-weight: 500;
    text-decoration: underline #07aff0;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.header-right a {
    text-decoration: none;
}

.header-right a i {
    color: #4fc9f7;
    font-weight: 600;
    font-size: 26px;
    vertical-align: middle;
    margin: 10px;
}

.header-right .badge {
    position: absolute;
    top: -9px;
    right: 4px;
    padding: 1px 10px 0 10px;
    border: 3px solid #f4fdff;
    border-radius: 500px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    z-index: 1;
    display: flex;
    width: 20px;
    height: 21px;
    padding: 4.8px 8.112px 4.8px 8.4px;
    justify-content: center;
    align-items: center;
    background: #23c28c;
}

/*cart popup*/
#cartModal {
    position: fixed;
    top: 4%;
    left: 30%;
    z-index: 11111;

}

#cartModal h5#cartModalLabel {
    font-size: 14px;
}

#cartModal .modal-body .image-box {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    border-radius: 4px;
    border: 0.5px solid #00000054;
    padding: 8px;
    margin: 0 auto;
}

#cartModal .modal-body .image-box img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

#cartModal .modal-body p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

#cartModal .modal-body p.price {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

#cartModal .modal-body button,
#cartModal .modal-body button:hover,
#cartModal .modal-body button:focus {
    display: flex;
    padding: 12px 28px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 12px;
    border: 1.5px solid #25b9f2;
    color: #25b9f2;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
    box-shadow: none;
    outline: none;
}

#cartModal .modal-body button.btn-checkout {
    background: #25b9f2;
    color: white;
}

#cartModal .modal-content {
    width: 350px;
    max-width: 100%;
}

/*cart*/
.cart-page-area {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 16.7px 0px rgba(7, 175, 240, 0.25);
    padding: 26px;
}

.cart-table-wrap .cart-table table {
    width: 100%;
    background-color: white;
}

.cart-table-wrap .cart-table table thead {
    border-bottom: 1px solid #e5e5e5;
}

.cart-table-wrap .cart-table table thead>tr th {
    color: #000;
    font-size: 16px;
    text-align: start;
    font-weight: 500;
    line-height: 30px;
    padding: 14px;
}

.cart-table-wrap .cart-table table tbody>tr td {
    padding: 15px;
    text-align: start;
    font-weight: 500;
    color: #000;
}

.cart-table-wrap .cart-table table tbody>tr td.product-thumbnail img.cart-thumb-img {
    width: 80px;
}

.cart-table-wrap .cart-table table tbody>tr td.product-name h5 {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

.cart-table-wrap .cart-table table tbody>tr td.product-price span,
.cart-table-wrap .cart-table table tbody>tr td.product-total span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.cart-table-wrap .cart-table table tbody>tr td.product-remove button {
    font-size: 18px;
    color: red;
    display: inline-block;
    border: 0;
    outline: 0;
    background-color: transparent;
}

.cart-shiping-update-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 100px;
}

.cart-page .checkout-btn a,
.cart-page .checkout-btn a,
.block-btn {
    display: inline-flex;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #07aff0;
    border: 1px solid #07aff0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: white;
    font-size: 14px;
    padding: 6px 30px;
}

/*increament no*/
.quantity-field {
    display: flex;
    align-items: center;
    width: 100%;
    height: 25px;
}

.quantity-field .value-button {
    border: 1px solid #25b9f2;
    margin: 0px;
    width: 35px;
    height: 35px;
    padding: 0;
    background: #25b9f2;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
}

.quantity-field .number {
    display: inline-block;
    text-align: center;
    border: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 0px;
    width: 30px;
    height: 30px;
    line-height: 20px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: transparent;
}

.quantity-field .number::selection {
    background: none;
}

.number input,
.number input:focus {
    height: 100%;
    width: 25px;
    text-align: center;
    border: 0;
    border-bottom: 1px solid #fff;
    outline: none;
    background: #fff;
    color: #000;
    font-size: 18px;
}

/*user-profile*/
/*user account*/
.page-title-area {
    padding: 110px 0 100px;
    background-color: #fffff6;
    flex-grow: 1;
}

.check-page-title-area {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(171, 235, 255, 1) 100%);
}

.user-profile-tab-menu {
    flex-direction: column;
    background-color: white;
}

.user-profile-tab-menu.nav-tabs .nav-link {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-bottom: none;
    border-radius: 0;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    display: block;
    padding: 10px 15px;
    text-align: left;
    text-transform: capitalize;
}

.user-profile-tab-menu.nav-tabs .nav-link:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.user-profile-tab-menu.nav-tabs .nav-link.active {
    background-color: #ffaa3a;
}

.user-profile-tab-menu.nav-tabs .nav-link:hover,
.user-profile-tab-menu.nav-tabs .nav-link.active {
    background-color: #ffaa3a;
    border-color: #ffaa3a;
    color: #fff;
}

.user-profile-content {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 16.7px 0px rgba(7, 175, 240, 0.25);
    padding: 30px;
}

.user-profile-content form {
    margin-top: -20px;
}

.user-profile-content .check-btn:hover {
    color: #95b3e0;
}

.user-profile-content .welcome a:hover {
    color: #95b3e0;
}

.user-profile-content .welcome strong {
    font-weight: 400;
    color: #ffaa3a;
}

.user-profile-content p {
    line-height: 28px;
    margin-bottom: 2px;
}

.user-profile-content fieldset {
    margin-top: 20px;
}

.user-profile-content fieldset legend,
.user-profile-content legend {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    padding-bottom: 10px;
    color: #00000099;
}

.user-profile-content .account-details-form {
    margin-top: 50px;
}

.user-profile-content .account-details-form .single-input-item {
    margin-bottom: 20px;
}

.user-profile-content .account-details-form .single-input-item label {
    font-size: 14px;
    text-transform: capitalize;
    display: block;
    margin: 0 0 5px;
    font-weight: 500;
}

.user-profile-content .account-details-form .single-input-item input {
    border: 1px solid #e8e8e8;
    width: 100%;
    height: 50px;
    background-color: transparent;
    padding: 2px 20px;
    color: #1f2226;
    font-size: 13px;
}

.user-profile-table {
    white-space: nowrap;
    font-size: 14px;
}

.user-profile-table table th,
.user-profile-table .table th {
    padding: 10px;
    font-weight: 600;
    border-color: #ccc;
    border-bottom: 1px solid #dbdbdb !important;
    color: #1f2226;
}

.user-profile-table table td,
.user-profile-table .table td {
    padding: 10px;
    vertical-align: middle;
    border-color: #ccc;
}

.user-profile-table table td a,
.user-profile-table .table td a,
.user-profile-table table td a:hover,
.user-profile-table table td a:focus,
.user-profile-table .table td a:hover,
.user-profile-table .table td a:focus {
    font-size: 14px;
    color: rgb(27, 141, 222);
    font-weight: 500;
    text-decoration: underline !important;
}

.user-profile .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logout-btn {
    color: red;
    font-size: 18px;
    background-color: transparent;
    border: 0;
    font-weight: 500;
}

/*Login modal*/
#loginModal .modal-content {
    border-radius: 25px;
}

#loginModal .btn-close,
#loginModal .btn-close:hover,
#loginModal .btn-close:focus {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 1111;
    box-shadow: none;
    outline: none;
    border: 1px solid grey;
    border-radius: 50%;
    padding: 4px 4px;
}

#loginModal .modal-dialog {
    max-width: 1000px;
}

#loginModal form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 62px;
}

#loginModal form input#email,
#loginModal form input#email:focus,
#loginModal form input#email:hover {
    border-radius: 10px;
    border: 1px solid #8ac0ff;
    background: #fff;
    font-size: 16px;
    width: 100%;
    width: 350px;
    max-width: 100%;
    height: 58px;
}

#loginModal form h4 {
    color: #00a3cb;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}

#loginModal form label {
    font-size: 14px;
}

#loginModal .form-check-input,
#loginModal .form-check-input:checked,
#loginModal .form-check-input:focus {
    border: 2px solid #00a2cbde;
    box-shadow: none;
    cursor: pointer;
    outline: none;
}

#loginModal .userInput {
    display: flex;
    justify-content: center;
}

/* Hide spinners in Chrome, Safari, Edge */
.userInput input[type="number"]::-webkit-inner-spin-button,
.userInput input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spinners in Firefox */
.userInput input[type="number"] {
    -moz-appearance: textfield;
}

/* General styling */
.userInput input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
}

#loginModal .userInput input,
#loginModal .userInput input:hover,
#loginModal .userInput input:focus,
#loginModal .userInput input:focus-visible {
    margin: 0px 16px 0px 0px;
    height: 40px;
    width: 75px;
    max-width: 100%;
    border: none;
    text-align: center;
    font-size: 1.2rem;
    background: #fff;
    height: 58px;
    border-radius: 10px;
    border: 1px solid #8ac0ff;
    background: #fff;
    outline: none;
}

#loginModal .resend-btn button {
    color: #00a3cb;
    font-size: 16px;
    font-weight: 400;
    border: 0;
    background: transparent;
    text-decoration: underline;
}

/*footer*/
footer .widget_about p {
    margin-bottom: 20px;
}

footer .footer-logo {
    margin-bottom: 25px;
}

footer .footer-logo img {
    max-width: 220px;
}

footer .footer-title {
    color: #07aff0;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer .footer-top {
    padding: 72px 0px 0px;
    background-color: #f1f1f1;
}

footer .footer-top .widget {
    margin-bottom: 30px;
}

footer .footer-bottom {
    padding: 10px 0;
    border-top: 1px solid #aaaaaa;
    color: #363737;
    background-color: #f1f1f1;
    font-size: 14px;
}

footer .footer-bottom p {
    margin-bottom: 0;
}

footer .footer-bottom .copyright-text a {
    color: #000;
}

footer .widget_services ul li a {
    display: block;
    color: #737778;
    text-decoration: none;
    line-height: 35px;
}

footer .widget_services ul li a:hover {
    color: #ff7a54;
}

footer ul {
    padding-left: 0;
    list-style-type: none;
}

.widget_getintuch ul li {
    position: relative;
    display: flex;
    align-items: center;
    color: #737778;
}

.widget_getintuch ul li h5,
.widget_getintuch ul li .h5 {
    font-size: 20px;
    line-height: 1.33;
    margin-bottom: 5px;
}

.widget_getintuch ul li i {
    position: absolute;
    font-size: 28px;
    line-height: 1;
    left: 0;
    color: #eaa451;
}

footer {
    background-color: #fff;
}

.widget_getintuch p a {
    color: #737778;
    overflow-wrap: break-word;

}

.dz-social-icon li {
    display: inline-block;
}

.dz-social-icon li a {
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    border-radius: 40px;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

.dz-social-icon.style-1 li {
    margin-right: 4px;
    color: #000;
}

.dz-social-icon.style-1 li a {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    display: block;
}

.dz-social-icon.style-1 li a:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

a.company {
    font-weight: 500;
    color: #717171;
    font-size: 16px;
    text-decoration: none;
}

a.company img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

footer .widget_getintuch input,
footer .widget_getintuch input:focus,
footer .widget_getintuch input:hover {
    display: flex;
    width: 306px;
    max-width: 100%;
    height: 55px;
    padding: 16px;
    align-items: center;
    gap: 10px;
    border-radius: 9px;
    border: 1px solid #e4e4e7;
    outline: none;
}

footer .widget_getintuch button,
footer .widget_getintuch button:hover,
footer .widget_getintuch button:focus {
    display: flex;
    width: 306px;
    max-width: 100%;
    height: 55px;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 9px;
    background: #07aff0;
    outline: none;
    margin-top: 10px;
    color: white;
    font-weight: 500;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/*banner home*/
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 595px;
    perspective: 1000px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-sizing: border-box;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
}

.flip-card-front {
    color: black;
}

.flip-card-back {
    color: white;
    transform: rotateY(180deg);
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 650px;
    background: linear-gradient(179deg,
            rgba(255, 46, 130, 0.65) 21.01%,
            rgba(255, 204, 37, 0.65) 97.57%);
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

.banner-content h3 {
    color: #000;
    font-family: "Alegreya SC", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 58px;
    letter-spacing: 0.42px;
    text-transform: capitalize;
}

.banner-content p {
    color: #000000c9;
    text-align: justify;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0.2px;
}

.book-img {
    width: 450px;
    max-width: 100%;
    height: 100%;
    transform: rotate(8.713deg);
}

/*Featured Services Section*/

.features .feature-item {
    position: relative;
    height: 100%;
}

.features .feature-item .icon {
    margin-right: 20px;
}

.features .feature-item .icon img {
    width: 60px;
    max-width: 100%;
    height: 60px;
    max-height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
        rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 6px;
}

.features .feature-item .title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
    color: #5133aa;
    transition: 0.3s;
}

.features .feature-item .description {
    font-size: 15px;
    color: #132848;
    margin-bottom: 10px;
}

.banner-btn {
    margin: 6% 0;
    background-image: linear-gradient(to right top,
            #616161,
            #4c4c4c,
            #383838,
            #242424,
            #121212);
    color: #fff;
    text-shadow: 0px 3.15px 3.15px rgba(0, 0, 0, 0.25);
    font-size: 28.352px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.139px;
    letter-spacing: 0.788px;
    padding: 18px;
    border: 1px solid #ceb94d;
}

/*features*/

.features .card {
    padding: 20px;
    height: 372px;
    background: #fff;
    text-align: center;
    border-radius: 32px;
    border: 1px solid #0bafef;
    background: #fff;
}

.features .card-title {
    color: #000;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
}

.features .card-text {
    color: #8c8b92;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.features img {
    width: 100px;
    height: 100px;
    max-width: 100%;
    max-height: 100%;
    margin: 40px auto 10px;
    border-radius: 50%;
    background: #07aff0;
    box-shadow: 0px 15px 30px 0px rgba(0, 72, 123, 0.25);
}

/*publish book banner*/
.publish-book {
    background: url(../images/publish_bg2.png), url(../images/publish_bg1.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 0;
}

/* .publish-book, .book-adv {
  width: 100%;
  overflow: hidden;
} */

.publish-book .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6% 20%;
}

.publish-book .content h5 {
    color: #fff;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.publish-book .content h2 {
    color: #fff;
    font-size: 65px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.publish-book .content button {
    width: 200px;
    display: inline-flex;
    height: 72px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    border: 1px solid #07aff0;
    border-radius: 16px;
    background: #07aff0;
    color: white;
    font-size: 24px;
    font-weight: 500;
}

/*Gallery*/
section.gallery,
section.new-launch,
section.books,
section.cart,
section.user-profile,
section.checkout,
.features-section,
section.contact,
section.book-details {
    background: #fff;
}

/* 
.masonry {
  column-count: 3;
}

.masonry .mItem {
  width: 100%;
  text-align: center;
}

.masonry .mItem img {
  vertical-align: middle;
  width: 425px;
  max-width: 100%;
  margin-bottom: 15px;
}

.masonry .mItem:nth-child(1) {
  grid-column: span 1;
}

.masonry .mItem:nth-child(2),
.masonry .mItem:nth-child(3) {
  grid-column: span 1;
}

.masonry .mItem:nth-child(4),
.masonry .mItem:nth-child(5),
.masonry .mItem:nth-child(6) {
  grid-column: span 1;
} */

.masonry {
    column-count: 3;
    margin: 0 auto;
}

.grid-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
    border-radius: 15px;
}

.one-free {
    top: 0;
    right: 0;
}

.bulk-order {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 15px;
}

.bulk-order img {
    width: 24px;
    height: 24px;
}


#loading-spinner {
    display: none;
}

@media only screen and (max-width: 768px) {
    .masonry {
        column-count: 3;
    }

    section.about-us {
        border-radius: 0 !important;
    }
}

@media only screen and (max-width: 450px) {
    .masonry {
        column-count: 1;
    }
}

section {
    padding: 6% 0;
}

section h3 {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 3%;
}

section .flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

section .flex-box p {
    color: #8c8b92;
    font-size: 18px;
}

section .flex-box a {
    color: #25b9f2;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration-line: underline;
    float: right;
}

/*book advertisement banner*/
.book-adv {
    background: url("../images/book_adv_bg1.png");
    background-size: cover;
    background-origin: border-box;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    background-color: #001D67F2;
}

.book-adv .content h5 {
    color: #fff;
    font-family: "Alegreya SC", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    line-height: 66px;
}

.book-adv .coming-soon {
    width: 300px;
    max-width: 100%;
}

.book-adv .book-cover {
    width: 300px;
    max-width: 100%;
}

/*new launch*/

.new-launch .card {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 6px;
    padding: 26px;
    border: 1px solid #00A3CB;
}

.new-launch .card-block {
    padding: 12px 20px 12px 0px;
}

.new-launch .card h3 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

.new-launch .card h4,
.product-details .product-price {
    color: #25c4f7;
    font-size: 27px;
    font-weight: 600;
}

.new-launch .card p {
    color: #00000080;
    font-size: 16px;
    font-weight: 400;
}

.new-launch .card a {
    color: #000000b3;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
}


.books .btn-flex {
    width: 100%;
    color: #25b9f2;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
}

.new-launch .btn-flex {
    width: 100%;
    color: #25b9f2;
    font-weight: bold;
    font-size: 20px;
}

.card-body.height-div {
    height: 183px;
    max-height: 100%;
}

.books button.btn.wishlist-btn {
    position: absolute;
    right: 0;
}

.books .btn-flex button {
    display: flex;
    width: 100%;
    height: 42px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    border: 2px solid #25b9f2;
    margin: 10px 10px 10px 0px;
    color: #25b9f2;
    font-weight: bold;
    font-size: 20px;
}

.new-launch .btn-flex button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 6px;
    border: 2px solid #25b9f2;
    margin: 16px 10px 10px 0px;
    color: #25b9f2;
    font-weight: 600;
    font-size: 18px;
}

.new-launch .btn-flex button:hover,
.new-launch .btn-flex button:focus,
.new-launch .btn-flex button:focus-visible,
.books .btn-flex button:hover,
.books .btn-flex button:focus,
.books .btn-flex button:focus-visible {
    background-color: #25b9f2;
    color: white;
    box-shadow: none;
    outline: none;
}

.new-launch .btn-flex button.wishlist-btn,
.books .btn-flex button.wishlist-btn,
.books .btn-flex button.delete-btn {
    border: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease;
    outline: none;
    box-shadow: none;
}

.wishlist-btn .bi-heart,
.wishlist-btn .bi-heart:hover,
.wishlist-btn .bi-heart:focus,
.wishlist-btn .bi-heart:focus-visible {
    color: #9b9ea0;
    animation: color 0.3s ease, transform 0.3s ease;
    font-size: 23px;
    padding: 0;
    outline: none;
    box-shadow: none;
}

button.wishlist-btn:hover,
button.wishlist-btn:hover:focus,
button.wishlist-btn:hover:focus-visible {
    outline: none;
    box-shadow: none;
}

.wishlist-btn .bi-heart-filled {
    color: red;
    font-size: 23px;
    transform: scale(1.2);
    animation: fillHeart 0.3s forwards, zoomHeart 0.3s forwards;
}

@keyframes fillHeart {
    from {
        color: #25b9f2;
    }

    to {
        color: red;
    }
}

@keyframes zoomHeart {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

/*badge*/
/* .badge {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}

.badge::before,
.badge::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #2980b9;
}

.badge span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #3498db;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font: 700 18px/1 "Lato", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
} */

.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    border: 5px solid #d21b1b;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 222px;
    padding: 5px 0;
    background-color: #d21b1b;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-right: 18px;
}

.ribbon-top-left {
    top: -10px;
    left: -10px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}

.ribbon-top-left::before {
    top: 0;
    right: 37px;
    z-index: 11111;
}

.ribbon-top-left::after {
    bottom: 37px;
    left: 0;
    z-index: 11111;
}

.ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}

/*marquee*/

/* .Marquee {
    width: 100%;
    box-sizing: border-box;
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid #00a3cb;
    border-bottom: 1px solid #00a3cb;
}

.Marquee-content {
    display: flex;
    animation: marquee 30s linear infinite running;
}

.Marquee-content:hover {
    animation-play-state: paused;
}

.Marquee-tag {
    width: 300px;
    margin: 0 0.5em;
    padding: 0.5em;
    background: #ffffff1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 5s ease;
}

.Marquee-tag:hover {
    cursor: pointer;
}

@-moz-keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-50%);
    }
}

@-webkit-keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-50%);
    }
}

@-o-keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-50%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-35%);
    }
} */

.Marquee {
    width: 100%;
    box-sizing: border-box;
    padding: 1em;
    color: #fff;
    font-weight: 200;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid #00a3cb;
    border-bottom: 1px solid #00a3cb;
}

.Marquee-content-wrapper {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.Marquee-content-wrapper:hover {
    animation-play-state: paused;
}

.Marquee-content {
    display: flex;
}

.Marquee-tag {
    width: 100%;
    margin: 0 1em;
    padding: 0.5em;
    background: #ffffff1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.Marquee-tag:hover {
    cursor: pointer;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*books*/
.books .card {
    background: transparent;
    padding: 0;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    height: 100%;
}

.books .card .card-img-top {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
    margin: 0 auto;
    padding: 16px;
    background: #e5e5e561;
}

.books .card .card-body h5.card-title,
.combo h5.card-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.books .card .card-body p.card-text,
.combo p.card-text {
    color: #07aff0;
    font-size: 16px;
    font-weight: 400;
}

.books .card .card-body span {
    font-size: 20px;
    font-weight: 400;
}

.books .card .card-body span.actual-price {
    color: #8e8e8e;
    font-size: 16px;
    text-decoration: line-through;
}

.books .card .card-body span.discount {
    color: #fc8800;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

/*about us*/
section.about-us {
    border-radius: 0px 395px 393px 0px;
    background: #07aff059;
}

.about-us h4 {
    background: linear-gradient(90deg, #07aff0 0%, #005165 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 600;
}

.about-us p {
    color: #000000bd;
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    width: 553px;
    max-width: 100%;
}

.features-box {
    height: 133px;
    padding: 14px 20px 14px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 22px 22px 0px 22px;
    border: 1px solid #e8e8e9;
    background: #fff;
    text-align: center;
    margin: 10px;
}

.features-box p {
    font-size: 14px;
    line-height: normal;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

/*books-page book section*/
main.books-page h4 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 3%;
}

main.books-page .books .nav {
    border-bottom: 1px solid #07aef02a;
}

.nav-tabs .nav-link {
    color: #00000080;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    border: 0;
}

.nav-tabs li.nav-item,
.nav-tabs li.nav-item:focus,
.nav-tabs li.nav-item:focus-visible,
.nav-tabs li.nav-item:visited {
    outline: none;
    border: 0;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active:focus,
.nav-tabs .nav-link.active:focus-visible {
    background-color: transparent;
    border: 0;
    border-bottom: 3px solid #07aff0;
    border-radius: 3px 3px 0px 0px;
    font-weight: 600;
    color: black;
    outline: none;
}

/*checkout*/
.shop-checkout-area h3,
.user-order-area h3 {
    font-weight: 500;
    font-size: 28px;
    margin: 0 0 23px;
}

.billing-info-wrap .billing-info label,
.billing-info-wrap .billing-select label,
#contactForm label {
    color: #4e4e4e;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.billing-info-wrap .billing-info label span {
    color: #f33;
}

.billing-info-wrap .billing-info input,
#contactForm input {
    width: 100%;
    height: 45px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    padding: 2px 16px;
}

#contactForm textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    padding: 2px 16px;
}

.billing-info-wrap .billing-info input:focus,
.billing-info-wrap .billing-info input:active,
#contactForm input:focus,
#contactForm input:active,
#contactForm input:focus-visible,
#contactForm textarea:active,
#contactForm textarea:focus,
#contactForm textarea:focus-visible {
    border: 1px solid #07aff0;
    outline: none;
    box-shadow: none;
}

.billing-info,
.mb-22 {
    margin-bottom: 22px;
}

.billing-info-wrap .billing-info input::-moz-input-placeholder {
    color: #495057;
    opacity: 1;
}

.billing-info-wrap .billing-info input::-webkit-input-placeholder {
    color: #495057;
    opacity: 1;
}

.billing-info-wrap .billing-info input.billing-address {
    margin-bottom: 20px;
}

.billing-info-wrap .billing-select label span {
    color: #f33;
}

.billing-info-wrap .checkout-account input {
    border: 1px solid #e5e5e5;
    display: inline-block;
    float: left;
    position: relative;
    top: 6px;
    color: #495057;
}

.billing-info-wrap .checkout-account span {
    margin: 0 0 0 6px;
    font-size: 14px;
}

.billing-info-wrap .additional-info-wrap {
    margin: 19px 0 0;
}

.billing-info-wrap .additional-info-wrap label {
    color: #000;
    display: block;
    margin: 0 0 15px;
}

.billing-info-wrap .additional-info-wrap textarea {
    width: 100%;
    min-height: 92px;
    background-color: transparent;
    padding: 12px 16px;
    color: #495057;

    font-size: 14px;
    border: 1px solid #e5e5e5;
}

.checkout-coupon-content,
.different-address {
    display: none;
}

.billing-info-wrap {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 16.7px 0px rgba(7, 175, 240, 0.25);
}

.user-order-area .user-order-wrap {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 16.7px 0px rgba(7, 175, 240, 0.25);
    margin-bottom: 10%;
    border-radius: 24px;
}

.user-order-area .user-order-wrap .user-order-title h4 {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 18px;
    padding: 0 0 22px;
    border-bottom: 1px solid #bebebe;
}

.user-order-area .user-order-wrap .user-order-product {
    margin-bottom: 15%;
}

.user-order-area .user-order-wrap .user-order-product ul {
    margin: 0;
    padding: 0;
}

.user-order-area .user-order-wrap .user-order-product ul li {
    display: flex;
    justify-content: space-between;
    margin: 0 0 16px;
}

.user-order-area .user-order-wrap .user-order-product ul li:last-child {
    margin: 0 2px 0;
}

.user-order-area .user-order-wrap .user-order-product ul li span,
.your-order-total .d-flex span {
    font-size: 18px;
    color: #d82071;
    font-weight: 600;
}

.user-order-area .user-order-wrap .user-order-subtotal {
    border-bottom: 1px solid #bebebe;
    border-top: 1px solid #bebebe;
    padding: 20px 0;
    margin-bottom: 30%;
}

.user-order-area .user-order-wrap .user-order-subtotal h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-order-area .user-order-wrap .user-order-subtotal h3 span {
    font-size: 18px;
    font-weight: 600;
    color: #d82071;
}

.user-order-area .user-order-wrap .user-order-shipping {
    padding: 21px 0 22px;
}

.user-order-area .user-order-wrap .user-order-shipping>span {
    font-size: 15px;
    font-weight: 500;
}

.user-order-area .user-order-wrap .user-order-shipping ul {
    padding: 17px 0 0px;
    margin: 0;
}

.user-order-area .user-order-wrap .user-order-shipping ul li {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.user-order-area .user-order-wrap .user-order-shipping ul li:last-child {
    margin-bottom: 0;
}

.user-order-area .user-order-wrap .user-order-shipping ul li input {
    cursor: pointer;
    width: auto;
    height: auto;
}

.user-order-area .user-order-wrap .user-order-shipping ul li label {
    color: #666;
    cursor: pointer;

    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
}

.user-order-area .user-order-wrap .user-order-total {
    border-top: 1px solid #bebebe;
    padding: 20px 0;
}

.user-order-area .user-order-wrap .user-order-total h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-order-area .user-order-wrap .user-order-total h3 span {
    font-size: 22px;
    font-weight: 600;
    color: #d82071;
}

.user-order-area .user-order-wrap .payment-method {
    padding: 40px 0 10px;
}

.user-order-area .user-order-wrap .payment-method .sin-payment {
    margin-bottom: 25px;
}

.user-order-area .user-order-wrap .payment-method .sin-payment input {
    cursor: pointer;
    width: auto;
    display: inline-block;
    /* float: left; */
    height: auto;
    margin-top: 7px;
}

.user-order-area .user-order-wrap .payment-method .sin-payment label {
    cursor: pointer;
    font-size: 15px;
    margin: 0px 0 0 21px;
    display: flex;
    align-items: center;
}

.user-order-area .user-order-wrap .payment-method .sin-payment label img {
    max-width: 140px;
    display: inline-block;
    margin: 0 5px;
}

.user-order-area .user-order-wrap .payment-method .sin-payment label a {
    color: #000;
    text-decoration: underline;
}

.user-order-area .user-order-wrap .payment-method .sin-payment label a:hover {
    color: #f379a7;
}

.user-order-area .user-order-wrap .payment-method .sin-payment .payment-box {
    margin: 6px 0 0 21px;
    display: none;
}

.user-order-area .user-order-wrap .payment-method .sin-payment .payment-box p {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.user-order-area .user-order-wrap .payment-condition {
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    margin: 0 0 30px;
}

.user-order-area .user-order-wrap .payment-condition p {
    font-size: 14px;
    line-height: 1.9;
}

.user-order-area .user-order-wrap .payment-condition p a {
    color: #f379a7;
    font-size: 14px;
}

.user-order-area .user-order-wrap .payment-condition p a:hover {
    text-decoration: underline;
}

.user-order-area .user-order-wrap .payment-checkbox {
    display: flex;
    align-items: center;
}

.user-order-area .user-order-wrap .payment-checkbox input {
    width: auto;
    height: auto;
}

.user-order-area .user-order-wrap .payment-checkbox span {
    color: #888;

    font-size: 14px;
    margin-left: 10px;
}

.user-order-area .user-order-wrap .payment-checkbox span a {
    color: #f379a7;
    font-size: 14px;
}

.user-order-area .user-order-wrap .payment-checkbox span a:hover {
    text-decoration: underline;
}

.select-style {
    margin-bottom: 15px;
}

.select-style .select-active {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    color: #495057;
    padding-left: 16px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    background-image: url("../images/dropdown-arrow.svg");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 10px;
}

.billing-info.mb-22.input-field {
    position: relative;
}

.coupon-btn,
.coupon-btn:visited,
.coupon-btn:focus,
.coupon-btn:hover,
.coupon-btn:focus-visible,
.coupon-remove-btn,
.coupon-remove-btn:visited,
.coupon-remove-btn:focus,
.coupon-remove-btn:hover,
.coupon-remove-btn:focus-visible {
    position: absolute;
    right: 5px;
    bottom: 0;
    margin: auto;
    z-index: 1;
    width: 89px;
    height: 34px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: #07aff0;
    border: 1px solid #07aff0;
    outline: none;
    box-shadow: none;
    margin: 6px;
}

.otp-link,
.write-btn {
    border: 0;
    background: transparent;
    font-size: 13px;
    text-decoration: underline;
    color: #07aff0;
    font-weight: 600;
}

/*checkout success modal*/
.modal#statusSuccessModal .modal-header {
    border-bottom: 0;
}

.modal#statusSuccessModal .modal-header .btn-close {
    position: absolute;
    right: 5px;
    padding: 18px;
    top: 5px;
}

.modal#statusSuccessModal .modal-header .btn-close:hover,
.modal#statusSuccessModal .modal-header .btn-close:focus {
    outline: none;
    box-shadow: none;
}

button.btn.btn-sm.mt-3.modal-btn-success,
button.btn.btn-sm.mt-3.modal-btn-success:focus,
button.btn.btn-sm.mt-3.modal-btn-success:active,
button.btn.btn-sm.mt-3.modal-btn-success:hover {
    background: #198754;
    padding: 8px;
    color: white;
    outline: none;
    box-shadow: none;
}

.modal#statusSuccessModal .modal-content {
    border-radius: 30px;
}

.modal#statusSuccessModal .modal-content svg {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.modal#statusSuccessModal .modal-content .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.modal#statusSuccessModal .modal-content .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.modal#statusSuccessModal .modal-content .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.95s 0.35s ease-in-out forwards;
    animation: dash 0.95s 0.35s ease-in-out forwards;
}

.modal#statusSuccessModal .modal-content .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.95s 0.35s ease-in-out forwards;
    animation: dash-check 0.95s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

/*contact us*/
.map-contact {
    width: 100%;
    height: 750px;
}

.contact-page .form-create-item-content {
    margin-top: -361px;
    width: 100%;
    max-width: 100%;
    filter: drop-shadow(0px 0px 80.4px rgba(0, 0, 0, 0.15));
}

.contact-page h3 {
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
}

.contact-page .info-wrap {
    background: #07aff0;
    color: white;
}

.contact-page .info-wrap i {
    font-size: 18px;
    margin-right: 10px;
}

.contact-page .info-wrap a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: normal;
    word-break: break-all;
}

#reload {
    box-shadow: none;
    outline: none;
    color: #0aaff0;
    font-weight: 800;
    border: 1px solid #0aaff0;
}

/*book details page*/
/*single product page*/

.available-text {
    background: #ff7358;
    border-radius: 4px;
    color: #5a1609;
    font-weight: 600;
    padding: 2px 10px;
    font-size: 18px;
    border: 1px solid #c13d23;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 8px;
    list-style: none;
    padding-top: 0px;
}

.breadcrumb a {
    text-decoration: none;
}

/* Remove for prod */
.rtl-slider-flex {
    width: 100%;
    margin: 0em auto;
}

.thumb-next {
    bottom: 12px !important;
    right: calc(9% + 0.75em) !important;
}

.thumb-prev {
    bottom: 12px !important;
    right: calc(0% + 0.75em) !important;
}

.rtl-slider-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.rtl-slider-flex .rtl-slider {
    width: 81%;
}

.rtl-slider-flex .rtl-slider-nav {
    margin-top: -2px;
}

.rtl-slider-flex .rtl-slider-nav .rtl-slider-slide {
    margin-bottom: 4px;
    opacity: 0.75;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rtl-slider-flex .rtl-slider-nav .slick-slide.slick-current.slick-active .rtl-slider-slide {
    opacity: 1;
}

.rtl-slider-flex .rtl-slider-slide {
    background: url("");
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    height: 460px;
}

.slick-vertical .slick-slide {
    width: 82px !important;
}

.slick-vertical .slick-slide .img-thumbnail {
    background-position: center !important;
    background-size: contain;
}

.rtl-slider-flex .thumb-prev,
.rtl-slider-flex .thumb-next {
    position: absolute;
    top: 114px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    margin-right: 10px;
}

.rtl-slider-flex .thumb-prev:hover i,
.rtl-slider-flex .thumb-next:hover i {
    color: #3ed8ff;
}

.rtl-slider-flex .thumb-prev i,
.rtl-slider-flex .thumb-next i {
    font-size: 25px;
    color: #9e9e9e69;
}

button.flipbook-btn {
    width: 207px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 2px solid #25b9f2;
    margin: 15px;
    background: transparent;
    color: #25b9f2;
    font-weight: 600;
}

.product-details .product-title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.48px;
}

.rating-count {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #000000;
}

.label,
.product-meta {
    font-size: 16px;
    line-height: 1.69;
    letter-spacing: 0.5px;
    color: #000000;
}

.label {
    font-weight: 600;
}

.product-details {
    padding: 0px 20px;
}

.btn-atc,
.btn-buy {
    padding: 14px 24px;
    width: 100%;
    background: transparent;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #25b9f2;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #25b9f2;
}

.btn-buy,
.btn-atc:hover,
.btn-buy:hover,
.btn-buy:focus {
    background-color: #25b9f2;
    color: white;
    outline: none;
}

.info-sec {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.info-sec .row {
    padding: 10px 0;
}

.info-sec .row .col-md-2 {
    border-right: 1px solid #dedede;
    text-align: center;
}

.info-sec .row .col-md-2 p {
    font-size: 12px;
}

.info-sec .row .col-md-2 p:nth-child(1) {
    color: #a8a6a6;
    text-transform: uppercase;
    font-weight: 400;
}

.info-sec .row .col-md-2 p {
    color: black;
    font-weight: 500;
}

.user-reviews {
    margin-top: 55px;
    border-bottom: 1px solid #cdcfd1;
    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

.user-reviews i {
    color: #ffa500;
}

.product-tab-nav {
    margin-left: -44px;
}

.product-tab-link {
    padding: 0;
    margin-left: 44px;
    padding-bottom: 2px;
    font-size: 18px;
    font-weight: 500;
    color: #5f5f5f;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
    color: #49454f;
}

.product-tab-link:hover,
.product-tab-link.active {
    color: #07aff0;
}

.product-tab-link:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 100%;
    width: 100%;
    height: 2px;
    background-color: #07aff0;
    opacity: 0;
    visibility: hidden;
}

.product-tab-link.active:before {
    opacity: 1;
    visibility: visible;
}

.product-tab-list {
    border-bottom: 1.5px solid rgba(61, 70, 77, 0.26);
}

.product-tab-content {
    margin-top: 25px;
}

.review-form-area input,
.review-form-area textarea {
    display: block;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding: 16px;
    background-color: transparent;
}

.review-form-area input {
    height: 44px;
}

.review-form-area label {
    color: #555;
    font-size: 15px;
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

.review-form-area {
    display: none;
}

.star-rating i.bi-star-fill.selected {
    color: #eacb10;
    cursor: pointer;
}

.star-rating i.bi-star-fill {
    color: #c3c3c3;
    font-size: 20px;
}

.product-details .number input {
    color: #573391;
    font-size: 20px;
}

.product-details .quantity-field {
    justify-content: start;
    margin: 10px 0;
}

.btn-flex {
    display: flex;
    align-items: center;
    justify-content: start;
}

section#MainContent {
    flex-grow: 1;
}

.img-thumbnail {
    height: 88px !important;
}

select#lang,
select#lang:hover,
select#lang:focus,
select#lang:visited {
    padding: 5px 16px;
    border-radius: 11.5px;
    border: 2px solid #25b9f2;
    background: #fff;
    background: transparent;
    outline: none;
}

video {
    width: 292px;
    height: 173px;
    margin: 10px;
    text-align: center;
    border-radius: 11px;
}

.vid-txt {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 500;
}

/*combo*/
.top-text-wrapper {
    margin: 20px 0 30px 0;
}

.top-text-wrapper h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.top-text-wrapper code {
    font-size: 0.85em;
    background: linear-gradient(90deg, #fce3ec, #ffe8cc);
    color: #f20;
    padding: 0.1rem 0.3rem 0.2rem;
    border-radius: 0.2rem;
}

.tab-section-wrapper {
    padding: 30px 0;
}

.grid-col-auto {
    grid-auto-flow: column;
    grid-template-rows: auto;
}

label.checkbox-card {
    cursor: pointer;
}

label.checkbox-card .card-content-wrapper {
    background: #fff;
    border-radius: 11px;
    width: 100%;
    min-height: 330px;
    padding: 30px 24px 30px 0px;
    display: grid;
    transition: 200ms linear;
    box-shadow: 0px 0px 6px 2px rgba(162, 226, 250, 0.15);
    display: flex;
    align-items: start;
    justify-content: space-between;
}

label.checkbox-card .check-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: solid 2px #e3e3e3;
    transition: 200ms linear;
    position: relative;
    margin: 4px 7px 6px 21px;
}

label.checkbox-card .check-icon:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.93552 4.58423C0.890286 4.53718 0.854262 4.48209 0.829309 4.42179C0.779553 4.28741 0.779553 4.13965 0.829309 4.00527C0.853759 3.94471 0.889842 3.88952 0.93552 3.84283L1.68941 3.12018C1.73378 3.06821 1.7893 3.02692 1.85185 2.99939C1.91206 2.97215 1.97736 2.95796 2.04345 2.95774C2.11507 2.95635 2.18613 2.97056 2.2517 2.99939C2.31652 3.02822 2.3752 3.06922 2.42456 3.12018L4.69872 5.39851L9.58026 0.516971C9.62828 0.466328 9.68554 0.42533 9.74895 0.396182C9.81468 0.367844 9.88563 0.353653 9.95721 0.354531C10.0244 0.354903 10.0907 0.369582 10.1517 0.397592C10.2128 0.425602 10.2672 0.466298 10.3112 0.516971L11.0651 1.25003C11.1108 1.29672 11.1469 1.35191 11.1713 1.41247C11.2211 1.54686 11.2211 1.69461 11.1713 1.82899C11.1464 1.88929 11.1104 1.94439 11.0651 1.99143L5.06525 7.96007C5.02054 8.0122 4.96514 8.0541 4.90281 8.08294C4.76944 8.13802 4.61967 8.13802 4.4863 8.08294C4.42397 8.0541 4.36857 8.0122 4.32386 7.96007L0.93552 4.58423Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center center;
    transform: scale(1.6);
    transition: 200ms linear;
    opacity: 0;
}

label.checkbox-card input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

label.checkbox-card input[type="checkbox"]:checked+.card-content-wrapper {
    box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.5), 0 0 0 2px #07aff0;
}

label.checkbox-card input[type="checkbox"]:checked+.card-content-wrapper .check-icon {
    background: #07aff0;
    border-color: #07aff0;
    transform: scale(1.2);
    box-shadow: none;
}

label.checkbox-card input[type="checkbox"]:checked+.card-content-wrapper .check-icon:before {
    transform: scale(1);
    opacity: 1;
}

label.checkbox-card input[type="checkbox"]:focus+.card-content-wrapper .check-icon {
    box-shadow: 0 0 0 4px rgba(48, 86, 213, 0.2);
    border-color: #07aff0;
}

label.checkbox-card .card-content img {
    margin-bottom: 10px;
}

label.checkbox-card .card-content h4 {
    font-size: 16px;
    letter-spacing: -0.24px;
    text-align: center;
    color: #1f2949;
    margin-bottom: 10px;
}

.combo-price p {
    font-size: 28px;
    font-weight: 600;
}

.combo-price span {
    font-size: 16px;
    font-weight: 500;
}

.combo-price .card-content {
    width: 240px;
    margin: 10px;
}

.combo img {
    width: 196px;
    text-align: center;
    margin: 0 auto;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.flex-item {
    flex: 1 1 auto;
    max-width: 200px;
}

.checkbox-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
}

.combo-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.icon {
    flex: 0 0 auto;
    width: 45px;
    font-size: 1.5rem;
}


#eventModal {
    z-index: 11111111111;
}

#eventModal .btn-close,
#eventModal .btn-close:hover,
#eventModal .btn-close:focus {
    position: absolute;
    right: -29px;
    padding: 8px;
    border: none;
    box-shadow: none;
    outline: none;
    top: -14px;
}

.terms a {
    color: #00a3cb;
}


.book-banner .banner-container {
    background: url(../images/bnr-bg.png);
    background-position: top;
    position: relative;
    background-size: cover;
    overflow: hidden;
    min-height: 300px;
    background-repeat: no-repeat;
    padding: 30px;
}

.book-cover {
    /* background-color: #7FC1EF; */
    background: url(../images/book_cover_bnr.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    padding: 15px;
    /* position: relative; */
    overflow: hidden;

}

.book-banner .book-cover img {
    /* width: 100%; */
    margin: 0 auto;
}

.book-banner .main-title {
    font-size: 55px;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.book-banner .subtitle {
    font-size: 28px;
    color: #34495e;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-banner .description {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 25px;
    font-weight: 500;
}

.book-banner .coming-soon-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 35px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-banner .coming-soon-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: white;
}

.book-banner .chapter-badge {
    position: absolute;
    top: 0px;
    right: 250px;
    background: #7FC1EF;
    padding: 20px 30px;
    border-radius: 0px 0px 45% 45%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(10px); */
}

.book-banner .chapter-text {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}


/*Self Publication*/

.self-publication-page {
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 50%, #e0f7fa 100%);
    min-height: 100vh;
}

.self-publication-page .hero-section, .self-publication-page .services-section {
    background: #fff;
    padding: 40px 25px;
}

.self-publication-page .hero-title {
    font-size: 50px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.self-publication-page .hero-highlight {
    background: #07aff0;
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    width: 100%;
}

.self-publication-page .hero-description {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 60px;
}

.self-publication-page .hero-subtext {
    color: #000;
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.7;
}

.self-publication-page .usp-section {
    background: #F0F0F0;
    padding: 40px 25px;

}

.self-publication-page .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.usp-card {
    border-radius: 15px;
    padding: 25px 25px;
    text-align: center;
    height: 329px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-card.orange {
    background: #FF8C78;
}

.usp-card.yellow {
    background: #BBAFAF;
}

.usp-card.green {
    background: #FDD45E
}

.usp-card.cyan {
    background: #56AACA;
}

.usp-card .icon {
    font-size: 16px;
    margin: 0 auto 15px;
}

.usp-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.usp-card p {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.self-publication-page .services-section {
    padding: 40px 25px;
    padding: 40px 25px 60px;
    margin-bottom: 40px;
}

.self-publication-page .services-section .section-title {
    color: #333;
}

.self-publication-page .services-section .section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.self-publication-page .service-card {
    background: #EAF9FF;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.self-publication-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.self-publication-page .service-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.self-publication-page .service-card h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.self-publication-page .service-card .sub-text {
    font-size: 14px;
    color: #000000;
    font-weight: lighter;
}















/*media queries*/

/*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 20px;
        letter-spacing: 1px;
        font-size: 18px;
        font-weight: 400;
        color: #000;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #07aff0;
        font-weight: 500;
        text-decoration: underline #07aff0;
        text-underline-offset: 8px;
        text-decoration-thickness: 2px;
    }

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }

    .publish-book {
        height: auto;
    }
}

/*--------------------------------------------------------------
      # Mobile Navigation
      --------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: #fff;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        list-style-type: none;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        padding: 10px 20px;
        font-size: 16px;
        text-transform: capitalize;
        font-weight: 500;
        color: #000;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #07aff0;
        font-weight: 500;
        text-decoration: underline #07aff0;
        text-underline-offset: 8px;
        text-decoration-thickness: 2px;
    }

    .mobile-nav-show {
        color: #000;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin: 0 10px 0 10px;
    }

    .mobile-nav-hide {
        color: #23a59d;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: #161718cc;
        z-index: 9996;
    }

    .section-about .content {
        padding: 30px;
    }

    .style-about-us .section-about .container .row {
        padding: 20px;
    }

    /* .masonry {
    column-count: 2;
  } */

    .publish-book .content h5 {
        font-size: 36px;
    }

    .publish-book .content h2 {
        font-size: 44px;
    }

    .flex-container {
        flex-wrap: wrap;
    }

    .checkbox-card {
        max-width: 200px;
    }

    label.checkbox-card .card-content-wrapper {
        width: auto;
        min-height: 100%;
    }

    .combo img {
        width: 127px;
    }
}

@media screen and (max-width: 992px) {
    .banner {
        height: 100%;
    }

    .books .card .card-body p.card-text,
    .combo p.card-text {
        font-size: 10px;
    }

    .books .card .card-body h5.card-title,
    .combo h5.card-title {
        font-size: 14px;
    }

    .book-cover {
        background-size: contain !important;
        background-position: center !important;
    }

    .book-banner .banner-container {
        padding: 50px;
    }

    .book-banner .subtitle {
        font-size: 50px;
        width: 80%;
        margin: 0 auto;
    }

    .book-banner .main-title {
        font-size: 90px;
    }

    .book-banner .description {
        font-size: 30px;
    }

    .product-tab-link {
        font-size: 16px;
        margin-left: 30px;
    }
    .self-publication-page .hero-highlight{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .self-publication-page .hero-description
    {
        margin-top: 0px;
    }
}

@media screen and (max-width: 575px) {
    /* .masonry {
    column-count: 1;
  } */

    .new-launch .card-block {
        padding: 0;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        line-height: normal !important;
    }

    h1 {
        font-size: 40px !important;
    }

    h2 {
        font-size: 34x !important;
    }

    h3 {
        font-size: 30px !important;
    }

    p {
        font-size: 16px !important;
    }

    .publish-book {
        height: auto;
        background-position: right;
    }

    .publish-book .content h2 {
        font-size: 40px;
    }

    .publish-book .content h5 {
        font-size: 32px;
    }

    .publish-book .content {
        padding: 6%;
    }

    section .flex-box {
        display: block;
    }

    .publish-book .content button {
        width: 182px;
        height: 50px;
    }

    .features-box {
        height: 160px;
    }

    #cartModal {
        left: 0%;
    }

    #loginModal form {
        padding: 40px 20px;
    }

    .logout-btn {
        margin: 10px;
    }

    .user-profile .flex {
        display: block;
    }

    .cart-table-wrap .cart-table table tbody>tr td.product-thumbnail img.cart-thumb-img {
        width: 140px;
    }

    thead {
        display: none !important;
    }

    tr.cart-row.row.d-flex {
        border: 1px solid #27b9f2;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .cart-table-wrap .cart-table table tbody>tr td {
        border: 0;
    }

    .rtl-slider-flex .thumb-prev,
    .rtl-slider-flex .thumb-next {
        margin-right: 0;
    }

    .rtl-slider-flex .rtl-slider-slide {
        height: 363px;
    }

    .info-sec .row .col-md-2 {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .icon {
        margin-bottom: 0;
    }

    .Marquee-tag {
        width: 100%;
    }


}