﻿h1,
h2,
h3,
h4,
h5,
h6 {
    
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: rgb(33, 37, 41);
    font-size: 1rem;
    line-height: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--head-font);
    font-weight: 600;
}

h2 {
    letter-spacing: -0.5px;
}

h3 {
    color: rgb(33, 37, 41);
}


h5 {
    color: rgb(33, 37, 41);
    font-weight: bold;
}


b, strong {
    font-weight: bold;
}


img {
    max-width: 100%;
}

body {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    /* background: radial-gradient(circle, #E6F0FE 0%, #FFFFFF 100%);
    background-attachment: fixed;
    */
    background-color: var(--colour_page_bg);
    margin-bottom: 10px;
}

.page-body {
    background-color: #FFFFFF;
    padding-top: 20px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}


@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 500ms linear;
}

/* buttons */
.paypal-btn {
    background: #ffc43a;
    width: 300px;
}

.btn-2 {
    padding-left: 24px;
    padding-right: 24px;
    display: inline-flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    color: var(--colour_main_reverse) !important;
    background-color: var(--colour_main) !important;
    border: none;
}


    .btn-primary:hover {
        filter: brightness(140%);
        color: var(--colour_main_reverse) !important;
        background-color: var(--colour_main) !important;
        border: none;
        transition: 0.2s !important;
    }

    .btn-secondry {
        background: #aa0094;
        color: #fff;
    }

    .btn-secondry:hover {
        background: #91007e;
        color: #fff;
    }



.btn-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

    .btn-list li {
        position: relative;
    }

        .btn-list li a {
            padding: 6px;
        }

        .btn-list li:not(:last-child)::before {
            content: "-";
            position: absolute;
            right: -12px;
        }

/* buttons end*/
/* spacing */
.row.no-gutter {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

    .row.no-gutter > * {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

.row.gutter-25 {
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: -50px;
}

    .row.gutter-25 > * {
        padding-left: 15px;
        padding-right:15px;
        padding-bottom: 25px;
    }

.container-xl.gutter-25,
.container.gutter-25 {
    padding-left: 15px;
    padding-right: 15px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-t-50 {
    margin-top: 50px;
}

.section-space {
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-space-last {
    padding-bottom: 70px;
}

/* spacing end*/
.color-primary {
    color: #290064;
}

/** form **/
.form-text {
    color: #6c757d !important;
}

.form-label {
    color: rgb(58, 58, 58);
    font-weight: 600;
}

.form-control {
    background-color: #FFFFFF;
    color: rgb(58, 58, 58);
}


.form-control,
.form-select {
    border-color: #290064;
}

.form-check-input {
    border-color: #290064;
}

    .form-check-input:checked {
        background: #290064;
    }

/** form **/
.list-inline {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

header {
    background: var(--colour_header);
    padding: 5px 0;
}

.header-logo {
    text-align: center;
    padding: 12px 0;
}


.dropdown-menu.show {
    background-color: #f6f6f6;
}

.nav-link {
    color: var(--colour_header_reverse);
}

    .nav-link.dropdown-toggle.show {
        color: var(--colour_header_reverse);
        font-weight: bold;
    }


    .nav-link:focus, .nav-link:hover {
        font-weight: bold;
        color: var(--colour_header_reverse);
    }

.navbar-toggler {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
    border-color: var(--colour_header_reverse);
}

    .navbar-toggler i {
        position: absolute;
        display: block;
        height: 2px;
        background: var(--colour_header_reverse);
        width: 30px;
        left: 10px;
        transition: all 0.3s;
    }

        .navbar-toggler i:nth-child(1) {
            top: 16px;
        }

        .navbar-toggler i:nth-child(2) {
            top: 24px;
        }

        .navbar-toggler i:nth-child(3) {
            top: 32px;
        }

    .navbar-toggler.active i:nth-child(1) {
        top: 22px;
        transform: rotateZ(45deg);
    }

    .navbar-toggler.active i:nth-child(3) {
        top: 22px;
        transform: rotateZ(-45deg);
    }

    .navbar-toggler.active i:nth-child(2) {
        background: transparent;
    }

.navbar-expand-md .nav-link {
    position: relative;
}

    .navbar-expand-md .nav-link::before {
        content: " ";
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        border-top: var(--colour_main) 1px solid;
        width: 0;
        transition: all 500ms ease-in-out;
    }

    .navbar-expand-md .nav-link:hover::before {
        width: calc(100% - 32px);
    }

@media (max-width: 992px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 18px;
        padding-right: 18px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar-expand-md .navbar-nav {
        border-top: 1px solid var(--colour_main);
        margin-top: 20px;
    }

        .navbar-expand-md .navbar-nav .nav-link {
            padding-top: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--colour_main);
        }
}

@media (min-width: 992px) {
    .navbar-expand-md .navbar-nav .nav-link {
        font-weight: 400;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 16px;
        text-align: center;
    }
}

.nav-btn {
    margin-left: 24px;
}

@media (max-width: 768px) {
    .nav-btn {
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .nav-btn {
        margin-left: 18px;
    }
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #fff;
}

.breadcrumb .breadcrumb-item {
    color: #fff;
}

    .breadcrumb .breadcrumb-item.active {
        color: #fff;
    }

.section-title {
    width: 700px;
    margin: auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
}

.streched-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.card-1 {
    position: relative;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 500ms ease-in-out;
    border: 1px solid var(--colour_main);
    --bs-card-bg: white;

}

    .card-1 img {
        max-height: 390px;
        object-fit: cover;
        object-position: top;
    }

    .card-1:hover {
        transform: translateY(-16px);
        box-shadow: var(--colour_main) 1px 1px 10px;
    }

    .card-1 .card-title {
        font-size: 20px;
        color: var(--colour_main);
        font-weight: bold;
    }

    .card-1 .card-subtitle {
        font-size: 12px;
        color: var(--colour_second);
        margin-bottom: 12px;
    }

.products-row .card-1 .card-body {
    min-height: 190px;
}


.products-row .TAROT .card-1 .card-body {
    min-height: unset;
}

.products-row .TAROT .card-1 img {
    max-width: 150px;
    margin: auto;
}



.card-gradient {
    border: 1px solid var(--colour_main);
    border-radius: 14px;
    padding: 24px;
}

    .card-gradient .subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .card-gradient .title {
        font-size: 22px;
        margin-bottom: 24px;
        color: var(--colour_main);
    }

    .card-gradient .text {
        margin-bottom: 36px;
    }

    .card-gradient .link-btn {
        display: inline-flex;
        align-items: center;
        border-bottom: #fff 1px solid;
        padding-bottom: 6px;
    }

        .card-gradient .link-btn svg {
            width: 16px;
        }

.card-gradient-1 {
    background: var(--colour_main_bg);     
}

.card-gradient-2 {
    background: var(--colour_main_bg);
}

.product-page-img img {
  
    max-height: 400px;
    width: auto;
    margin: auto;
    display: block;
    border-radius:14px;
}

@media (max-width: 576px) {
    .product-page-img img {
        margin-bottom: 16px;
        max-height: 300px;
    }
}

.product-page-img-group img {
    margin-bottom: 24px;
}

.product-page-description .product-title{
    font-size: 2.5rem;
}





.product-page-description .product-price {
    font-size: 26px;
}


.product-page-description .discount {
    font-size: 18px;
    margin-left: 16px;
}

    .product-page-description .discount del {
        margin-right: 12px;
        display: inline-block;
    }

.product-page-description .description-title {
    font-weight: 600;
}

.product-page-description .description {
    font-weight: 300;
}

    .product-page-description .description strong {
        font-weight: 600;
    }

    .product-page-description .description a {
        text-decoration: underline;
    }

.form-card {
    border-radius: 14px;
    padding: 0;
    margin-top: 1rem;
}

    .form-card .title-flex {
        display: flex;
        align-items: center;
        gap: 36px;
    }

@media (max-width: 576px) {
    .form-card .title-flex {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 16px;
    }

    .form-card {
        padding: 10px 5px;
    }
}

.form-card .discount {
    font-size: 18px;
    margin-left: 16px;
    opacity: 0.5;
}

    .form-card .discount del {
        margin-right: 12px;
        display: inline-block;
    }

.form-card .radio-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-card .product-subtitle {
    color: #6200EE;
}

.form-card .product-title,
.form-card .product-price {
    font-size: 24px;
}

.form-card .product-title {
    color: #290064;
}

.form-card .product-price {
    color: #aa0094;
}

.form-card .form-wrapper {
    margin-top: 0px;
}

.author-section {
    margin-top: 35px;
    margin-bottom: 35px;
}

    .author-section .title {
        font-size: 1.5rem;
    }

    .author-section img {
        border-radius: 500px;
    }

    .author-section .title {
        margin-bottom: 18px;
    }

    .author-section .author-flex {
        display: flex;
        align-items: center;
        gap: 25px;
    }

        .author-section .author-flex img {
            flex-basis: 124px;
            width: 124px;
        }

        .author-section .author-flex p {
            font-weight: 300;
        }

.upsell-card {
    background: #fcbdf2; /* Old browsers */
    background: radial-gradient(ellipse at center, #fcbdf2 0%, #ffe7c8 50%, #ddd8ff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fcbdf2", endColorstr="#ddd8ff",GradientType=1 );
    padding: 64px 36px;
    border-radius: 14px;
    margin-top: 50px;
}

    .upsell-card .title-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .upsell-card .title-flex .title,
        .upsell-card .title-flex .price {
            font-size: 32px;
        }

        .upsell-card .title-flex .title {
            color: #290064;
        }

        .upsell-card .title-flex .price {
            color: #aa0094;
        }

    .upsell-card .card-body {
        margin-top: 25px;
        color: #290064;
    }

        .upsell-card .card-body ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

.order-box {
    margin-top: 75px;
    padding-top: 25px;
}

    .order-box h2 {
        font-size: 32px;
        margin: 12px 0;
    }

    .order-box .order {
        font-size: 12px;
    }

    .order-box .btn {
        margin-top: 20px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

.blank-section {
    padding: 64px 0;
}

    .blank-section .title {
        font-size: 50px;
        color: #290064;
        margin-bottom: 50px;
    }

@media (max-width: 576px) {
    .blank-section .title {
        font-size: 32px;
    }
}


.grey-section {
    background: var(--colour_second_bg);
    padding: 40px;
    border: 1px solid var(--colour_second);
    border-radius: 14px;
    min-height: 450px;
}



    .grey-section .title {
        font-size: 2rem;
        color: var(--colour_second);
        margin-bottom: 24px;
    }

@media (max-width: 576px) {
    .grey-section .title {
        font-size: 2rem;
    }
}

.grey-section .faq-wrap {
    color: #290064;
}

    .grey-section .faq-wrap:not(:last-child) {
        margin-bottom: 50px;
    }

    .grey-section .faq-wrap .qus {
        font-weight: 600;
    }

    .grey-section .faq-wrap .ans a {
        text-decoration: underline;
    }

    .grey-section .faq-wrap .ans ul {
        margin-bottom: 0;
    }

.or {
    font-size: 36px;
}

.save-box {
    border: #aa0094 1px solid;
    border-radius: 4px;
    padding: 16px 24px;
}

    .save-box .form-check {
        display: flex;
        align-items: center;
        gap: 16px;
    }

        .save-box .form-check .form-check-label {
            color: #aa0094;
        }

        .save-box .form-check .form-check-input {
            background: transparent;
            width: 20px;
            height: 20px;
            border: #aa0094 2px solid;
            flex-shrink: 0;
        }

            .save-box .form-check .form-check-input:checked {
                background: #aa0094;
            }

.pay-wrapper {
    width: 580px;
    margin: auto;
    max-width: 100%;
}

.safe-checkout {
    margin-top: 50px;
    padding-top: 25px;
    border-top: #aa0094 1px solid;
}

    .safe-checkout p {
        font-size: 12px;
        margin-bottom: 10px;
        color: #290064;
    }

.horoscope-card {
    border-radius: 14px;
    border: none;
}

    .horoscope-card .card-body {
        color: #290064;
    }

        .horoscope-card .card-body p {
            font-size: 14px;
        }

.wraper-title {
    font-size: 24px;
    color: #290064;
}

.hr {
    display: block;
    min-height: 1px;
    border-top: #aa0094 2px solid;
}

footer {
    margin-top: 20px;
    padding: 10px 0;
    background-color: #FFFFFF;
}

    footer .list-inline {
        gap: 36px;
        justify-content: end;
    }

        footer .list-inline a:hover {
            text-decoration: underline;
        }

    footer .footer-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 768px) {
    footer .footer-row {
        flex-direction: column;
        gap: 16px;
    }
}

footer .footer-row .list-inline {
    justify-content: center;
    gap: 16px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 576px) {
    .card-xs-flex {
        display: flex;
        flex-direction: row;
    }

        .card-xs-flex img {
            width: 50%;
            border-radius: 14px;
        }

        .card-xs-flex .card-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

    .xs-img-small {
        height: 180px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
}



.section-title {
    color: var(--colour_main);
}




.product-page-description .product-subtitle, .product-page-description .discount {
    color: var(--colour_second);
}


.product-page-description .product-title,
.product-page-description .description {
    color: var(--colour_main);
}


.product-page-description .description-title {
    color: var(--colour_main);
}


.product-page-description .product-price {
    color: #9c9c9c;
}

.order-box {
  border-top: 1px solid #6200EE;
  color: #290064;
}
.order-box .order {
  color: #6200EE;
}

.btn-list li a {
  color: #aa0094;
  border-bottom: 1px solid #aa0094;
}
.btn-list li.active a {
  background: #aa0094;
  color: #fff;
}
.btn-list li:not(:last-child)::before {
  color: #aa0094;
}



.navbar-brand{
    max-width: 80%;
}

@media (max-width: 992px) {
    .dropdown-menu {
        display: block !important;
    }
}


.dropdown-item .icon-text-gap {
    margin-left: 10px;
}


    @media (min-width: 992px) {
        .navbar {
            height: 130px;
            max-height: 130px;
            margin-top: 20px;
        }
    }

    .lg-logo {
        max-height: 130px;
    }

    .m-logo {
        max-width: 100%;
        max-height: 80px
    }




    .m-bar {
        max-width: calc(100% - 90px);
    }



    .card-1 .card-text {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }


    .card-1 .card-text {
        color: #000;
    }


    .card-1:hover .card-text {
        display: block;
    }


    .card-1:hover .text-truncate {
        overflow: visible;
        white-space: unset;
    }


    .gift-link {
        font-size: 16px;
    }

        .gift-link:hover {
            text-decoration: underline;
        }


        .gift-link:before {
            content: "🎁 ";
            display: inline-block;
            text-decoration: none;
        }


    @media (max-width: 576px) {

        .text-truncate {
            overflow: visible;
            white-space: unset;
        }
    }




    .svr-feedback, .invalid-feedback {
        color: #dc3545 !important;
    }


    .icon {
        width: 40px;
        height: 40px;
        vertical-align: baseline;
        margin-left: 20px;
        fill: var(--colour_second);
        display: inline-block;
    }



    .zodiac-image {
        fill: var(--colour_second);
        width: 80px;
        max-height: 80px;
        margin: 15px;
    }


    .zodiac-full-image {
        fill: var(--colour_second);
        width: 150px;
        max-height: 150px;
        margin: 15px;
    }





    .horoscope {
        color: rgb(33, 37, 41);
        font-size: 1.2rem;
        line-height: 2rem;
    }

        .horoscope a {
            color: var(--colour_main);
        }

    .zodiac a {
        text-decoration: underline;
    }


    .tarot-count {
        background-color: var(--colour_second);
        color: var(--colour_second_reverse);
    }


    .bump {
        display: block;
        background-color: #fff;
        border: 3px dashed #2ed5a0;
        border-radius: .25em;
        padding: 1.2em;
        border-width: 3px;
        margin-bottom: 15px;
        float: left;
        width: 100%;
    }


    .bump_img {
        float: left;
        margin-right: 1.5rem;
        max-width: 31%;
    }


    .check_label {
        font-size: 16px;
        display: inline;
    }


    #chkspecial {
        transform: scale(1.8);
        margin-right: 8px;
    }

    .offer_img {
        display: block;
        max-width: 100%;
        max-height: 130px;
        margin-left: auto;
        margin-right: auto;
    }

    .bump-inner {
        display: inline-block;
        max-width: 73%;
    }




    @media (max-width: 650px) {

        .bump {
            margin-top: 15px;
        }


        .offer_img {
            max-width: 100px;
        }

        .bump_img {
            max-width: 100%;
            float: none;
        }

        .bump-inner {
            max-width: 100%;
        }
    }


    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: var(--colour_second_reverse);
        background-color: var(--colour_second);
    }

    .submenu .nav-link {
        color: rgb(33, 37, 41);
    }


    .frame {
        padding: 0;
        margin: 0;
    }

    .embedded {
        background: none !important;
    }


        .embedded .horoscope {
            color: var(--colour_text);
        }


        .embedded h1, h2, h3, h4, h5, h6 {
            color: var(--colour_text);
        }




    .report-filter .nav-pills .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 30px;
        transition: background-color 0.2s;
        margin: 5px;
        white-space: nowrap;
        color: var(--colour_second);
    }

        .report-filter .nav-pills .nav-link .icon-text-gap {
            margin-left: 10px;
        }

        .report-filter .nav-pills .nav-link:hover {
            background-color: var(--colour_main);
            color: var(--colour_main_reverse);
            text-shadow: 0 0 1px var(--colour_main_reverse);
        }

    .report-filter {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        position: relative;
        display: flex;
        align-items: center;
    }

        .report-filter .nav-pills .nav-item {
            display: inline-block;
            padding-bottom: 5px;
            padding-top: 5px;
            display: flex;
            flex-direction: column;
        }

        .report-filter .nav-pills .active {
            order: -1;
        }

            .report-filter .nav-pills .active a {
                color: var(--colour_second_reverse);
                background-color: var(--colour_second);
            }

        .report-filter .nav-pills .nav-link:hover svg {
            animation: pulse 1s infinite; /* Apply the pulse animation */
        }

        .report-filter .nav-pills .nav-link svg {
            transition: transform 0.5s; /* Smooth rotation transition */
        }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.6);
        }
    }



    .report-filter {
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav-pills {
        flex-grow: 1;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-item {
        flex: none;
    }

    .nav-arrow-right {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.8); /* Adjust background as needed */
        border: none;
        font-size: 1.5em;
        cursor: pointer;
        display: none; /* Hidden by default */
        padding: 5px;
        color: var(--colour_main);
    }

        .nav-arrow-right.show {
            display: block; /* Show when needed */
        }





    .cover-img {
        float: right;
        border-radius: 14px;
        max-height: 300px;
        width: auto;
        margin-left: 30px;
        margin-bottom: 15px;
    }

    @media (max-width: 576px) {
        .cover-img {
            float: right;
            border-radius: 14px;
            max-height: 200px;
            width: auto;
        }
    }
