/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

.font-12 {
    font-size: 12px !important
}

/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn.btn-tertiary-gradient,
.btn.btn-quanternary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-tertiary-gradient::after,
.btn.btn-quanternary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-tertiary-gradient,
.btn.btn-quanternary-gradient::after {
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
}

.btn.btn-quanternary-gradient,
.btn.btn-tertiary-gradient::after {
    background: linear-gradient(to bottom right, var(--quarternary), var(--tertiary));
}

.btn.btn-tertiary-gradient:hover::after,
.btn.btn-quanternary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.hover-light:hover {
    filter: brightness(1.1);
}

.hover-dark:hover {
    filter: brightness(0.9);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 115px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--tertiary) !important;
    outline: none;
    transition: .5s;
}

@media (min-width: 992px) and (max-width: 1142px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 12px;
    }
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--primary) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--tertiary) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 55px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    /* max-height: 45px; */
}

@media (max-width: 991.98px) {
    .navbar-light {
        position: sticky;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: #FFFFFF;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 0px 0px 10px 10px;
    }

    .sticky-top.navbar-light {
        position: sticky;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid var(--white);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--tertiary) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: #FFFFFF;
        background: rgba(255, 255, 255, 0.75);
        border-radius: 0px 0px 10px 10px;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 1rem;
    padding: 14rem 0 0 0;
    background: url("../img/element/bg-circle.png"),
        url("../img/element/bg-triangle.png"),
        url("../img/element/bg-bottom.png"),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position: left 0px top 0px,
        right 0px top 50%,
        center bottom, 0px -1px;
    background-repeat: no-repeat;
    background-size: auto, auto, 100%, auto;
    padding-bottom: 0px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Feature ***/
.feature-item {
    position: relative;
    height: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .5s;
}

.feature-item:hover {
    /* margin-top: -15px; */
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
    transform: scale(1.05);
}

.feature-item .d-inline-flex {
    position: absolute;
    top: -14%;
    right: 2%;
}

/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--tertiary);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/element/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--tertiary);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.testimonial-carousel .owl-stage {
    display: flex;
    align-items: center;
}


/*** Footer ***/
.footer {
    margin-top: 0rem;
    padding-top: 0rem;
    /* background:
        url("../img/element/bg-circle.png"),
        url("../img/element/bg-triangle.png"),
        url("../img/element/bg-top.png"),
        linear-gradient(to bottom right, var(--primary), var(--secondary)); */
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top,
        0px 1px;
    background-repeat: no-repeat;
    background-size: auto, auto, 100%, auto;
    border-top: 4px solid var(--tertiary);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    color: var(--white);
    font-weight: normal;
    text-align: left;
    text-decoration: none;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--white);
    text-decoration: none;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* @media (min-width: 1400px) {
    .footer {
        padding-top: 280px;
    }
} */

/*===============================
Body CSS
=================================*/
body {
    background-color: #FFFFFF;
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

/*===============================
Text CSS
=================================*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--tertiary);
}

.text-dark-blue {
    color: var(--tertiary);
}

.text-main {
    color: var(--primary)
}

.text-mw-1 {
    max-width: 800px;
    margin: auto;
}

.text-error-msg {
    color: var(--danger);
    font-size: 14px;
}

.text-hint {
    color: var(--gray);
    font-size: 14px;
}

.text-wave {
    position: relative;
    margin-bottom: 25px;
    letter-spacing: -5px;
}

@media (max-width: 768px) {
    .text-wave {
        letter-spacing: -3px;
    }
}

.text-wave span {
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 52px;
    animation: text-wave 2s infinite;
    animation-delay: calc(.2s * var(--i))
}

@keyframes text-wave {

    0%,
    80% {
        transform: rotateY(360deg);
    }
}

@keyframes text-bounce {

    0%,
    40%,
    100% {
        transform: translateY(0)
    }

    20% {
        transform: translateY(-20px)
    }
}

.text-font-family {
    font-size: 42px !important;
    text-align: center;
}

.text-outline-dark {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.text-outline-light {
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
}

/*===============================
Background CSS
=================================*/
.bg-primary-gradient {
    color: var(--white);
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.bg-tertiary-gradient {
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
}

.bg-quarternary-gradient {
    background: linear-gradient(to bottom right, var(--quarternary), var(--tertiary));
}

.bg-primary-light {
    background: var(--primaryLight) !important;
}

.bg-success-light {
    background-color: var(--successLight) !important;
}

.bg-danger-light {
    background-color: var(--dangerLight) !important;
}

.bg-warning-light {
    background-color: var(--warningLight) !important;
}

/*===============================
Button CSS
=================================*/
.btn-main {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary) !important;
}

.btn-main:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-gray {
    background: var(--gray);
    color: var(--white);
    border: 1px solid var(--gray);
}

.btn-gray:hover {
    background: var(--white);
    color: var(--gray);
}

.btn-submit {
    font-size: 18px;
    border-radius: 40px;
    padding: 10px 10px;
}

/*===============================
Shadow CSS
=================================*/
.b-shadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

/*===============================
Navbar CSS
=================================*/
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/*===============================
Column CSS
=================================*/
@media (max-width: 360px) {
    .col-12-force {
        width: 100%;
    }
}

/*===============================
Form CSS
=================================*/
.form-control {
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--light);
    border-radius: 4px;
    padding: 5px 12px;
}

.form-control:focus {
    background-color: var(--light);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.4;
}

.form-control-error {
    border: 1px solid var(--danger);
}

.form-control-select:read-only {
    background: var(--light) !important;
}

.form-control-file {
    background: var(--light) !important;
}

.form-group label {
    margin-bottom: 2px;
}

.form-check-input-lg {
    width: 1.5em;
    height: 1.5em;
    margin-right: 10px;
    margin-top: 0px;
}

.form-check-input.input-success:checked[type="radio"],
.form-check-input.input-success:checked[type="checkbox"] {
    background-color: var(--success);
    border: 1px solid var(--success);
}

.form-check-input.input-danger:checked[type="radio"],
.form-check-input.input-danger:checked[type="checkbox"] {
    background-color: var(--danger);
    border: 1px solid var(--danger);
}

.form-section {
    transition: 0.25s;
}

.form-section.disabled {
    background: var(--grayLight);
    border-radius: 8px;
    padding: 15px;
    opacity: 0.5;
    pointer-events: none;
    transition: 0.25s;
    filter: blur(1px);
}

.form-section.disabled * {
    border-color: var(--white) !important;
}

.form-select {
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--light);
    border-radius: 4px;
    padding: 5px 12px;
}

.form-group.restricted {
    position: relative;
    cursor: not-allowed;
    opacity: 0.5;
}

.form-group.restricted::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 100;
    cursor: not-allowed;
}

.form-section-font {
    border-left: 2px solid var(--primary);
    padding-left: 22px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    margin-left: 10px;
}

/*===============================
Table Form CSS
=================================*/
.table[data-entry="container"] tbody tr td:last-child {
    border-left: 1px solid var(--grayLight);
}

/*===============================
Input Group CSS
=================================*/
.input-group .input-group-append .input-group-text {
    border-radius: 0px 4px 4px 0px;
}

.input-group .input-group-prepend .input-group-text {
    border-radius: 0px 4px 4px 0px;
}

.input-group-number .input-group-prepend {
    padding: 0px 5px 0px 0px;
}

.input-group-number .input-group-append {
    padding: 0px 0px 0px 5px;
}

.input-group-number input {
    text-align: center;
}

/*===============================
Container CSS
=================================*/
.container-breadcrumb {
    background: url("../..//img/background/bg-3.jpg");
    background-size: cover;
    background-position: center;
    padding-top: 140px;
    padding-bottom: 40px;
}

.container-breadcrumb h2 {
    color: var(--white);
}

.container-breadcrumb .breadcrumb .breadcrumb-item {
    color: var(--white);
}

.container-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--primary);
}

.container-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .container-breadcrumb {
        padding-top: 40px;
    }
}

/*===============================
List CSS
=================================*/
.list-icon {
    text-align: left;
    list-style-type: none;
    padding: 0px;
}

.list-icon li {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
}

.list-check li::before {
    content: "\f00c";
    height: fit-content;
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
    background-color: #198754;
    border-radius: 50%;
    margin-right: 10px;
    padding: 4px 8px;
    aspect-ratio: 1/1;
}

.list-info li::before {
    content: "\f129";
    height: fit-content;
    font-size: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    padding: 4px 9px;
    aspect-ratio: 1/1;
}

.list-align-middle li {
    align-items: center;
}

.list-column {
    column-count: 4;
}

@media (max-width: 768px) {
    .list-column {
        column-count: 3;
    }
}

@media (max-width: 576px) {
    .list-column {
        column-count: 2;
    }
}

@media (max-width: 991px) {
    .list-banner {
        max-width: 455px;
        margin: auto;
    }
}

/*===============================
Video Preview CSS
=================================*/
.video-preview {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 280px;
}

.video-preview .bg-placeholder {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-image: url("../../img/device-placeholder/apple-iphone-14-max.png");
    background-size: 100% 100%;
}

.video-preview video {
    width: 100%;
    border-radius: 10%;
    padding: 3% 4% 2% 5%;
}

@media (min-width: 992px) {
    .video-preview {
        top: -55px;
    }
}

/*===============================
Card Theme CSS
=================================*/
/* .card-theme {
    position: relative;
    background: linear-gradient(-45deg, var(--tertiary), var(--secondary), var(--white), var(--primary));
    background-size: 400% 400%;
    background-position: 0% 50%;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    overflow: hidden;
    animation: card-theme-background 5s ease infinite;
}

@keyframes card-theme-background {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
} */

.card-theme {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    z-index: 1;
}

.card-theme::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 200%;
    background: linear-gradient(-45deg, var(--tertiary), var(--secondary), var(--white), var(--primary));
    transform: translate(0%, 0%);
    animation: moveGradient 5s ease infinite;
}

@keyframes moveGradient {
    0% {
        transform: translate(0%, 0%);
    }

    50% {
        transform: translate(0%, -40%);
    }

    100% {
        transform: translate(0%, 0%);
    }
}

.card-theme.card-theme-mini {
    max-width: 60px;
}

.card-theme .preview img {
    display: block;
    max-height: 275px;
    max-width: 100%;
    height: 100%;
    width: auto;
    margin: auto;
}

.card-theme.card-theme-full .preview img {
    max-height: none;
    max-width: none;
    width: 100%;
    height: 100%;
}

.card-theme .title {
    width: 100%;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    background: var(--primary);
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 4px 4px 0px 0px;
    padding: 5px 10px;
}

@media (max-width: 576px) {
    .card-theme .title {
        font-size: 16px;
    }
}

.card-theme .action {
    width: 100%;
    background: var(--tertiary);
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
    margin: 0;

}

.card-theme .action div[class^='col'] {
    padding: 0px;
}

.card-theme .action div[class^='col']:nth-child(1) {
    border-right: 1px solid #C69665;
}

.card-theme .action a {
    color: var(--white);
    text-align: center;
    text-decoration: none;
    padding: 10px 2px;
    cursor: pointer;
}

.card-theme .action a:hover {
    background: var(--primary);
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    transition: 0.5s;
}

@media (max-width: 576px) {
    .card-theme .action a {
        font-size: 13px;
    }
}

.card-theme .localization-bm {
    position: absolute;
    top: 65%;
    left: 0%;
    min-width: 45px;
    color: var(--white);
    text-align: center;
    background: var(--tertiary);
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
    border-radius: 0px 4px 4px 0px;
    padding: 0px 10px;
}

.card-theme .localization-en {
    position: absolute;
    top: 56%;
    left: 0%;
    min-width: 45px;
    color: var(--white);
    text-align: center;
    background: var(--tertiary);
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
    border-radius: 0px 4px 4px 0px;
    padding: 0px 10px;
}

.card-theme .sold {
    position: absolute;
    top: 0;
    left: 0%;
    color: var(--white);
    text-align: center;
    font-size: 12px;
    background: var(--tertiary);
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
    border-radius: 0px 4px 4px 0px;
    padding: 4px 10px;
}

.card-theme .afterprice {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    color: white;
    font-size: 16px;
    padding: 2px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.card-theme .price.slash {
    position: absolute;
    top: 28px;
    right: 0;
    background: var(--primary);
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    color: white;
    font-size: 12px;
    padding: 2px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    opacity: 0.75;
}

.feature-image {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: auto;
}

/*===============================
Table & Card Purchases CSS
=================================*/
.table-purchases .dt-layout-row:not(.dt-layout-table) {
    padding: 0px 20px !important;
}

.table-purchases td {
    max-width: 1px;
    overflow: hidden;
}

.card-purchases .preview {
    width: 120px;
}

.card-purchases .preview img {
    width: 100%;
}

.card-purchases .title {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

/*===============================
Theme Detail CSS
=================================*/
.theme-detail-box .price {
    color: var(--primary);
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
}

.theme-detail-box .price.slash {
    color: var(--primary);
    font-size: 20px;
    text-decoration: line-through;
    line-height: 1;
    margin-left: 10px;
    margin-bottom: 2px;
    opacity: 0.9;
}

.theme-detail-box .afterprice {
    color: var(--primary);
    font-size: 36px;
    font-weight: 500;
}

/*===============================
Theme Form CSS
=================================*/
.card-form {
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.nav-theme-form {
    position: relative;
    border: none;
    margin-left: -3px;
    margin-right: -3px;
    margin-bottom: 3px;
}

.nav-theme-form .nav-item {
    flex-grow: 1;
    min-width: 120px;
    padding: 3px;
}

.nav-theme-form .nav-item .nav-link {
    width: 100%;
    color: var(--gray);
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--grayLight);
    box-shadow: 0 .5rem 1.5rem rgba(var(--primaryRGB), .08);
    padding: 12px 15px;
}

.nav-theme-form .nav-item .nav-link:hover {
    color: var(--primary);
    background-color: var(--primaryLight);
}

.nav-theme-form .nav-item .nav-link.active {
    color: var(--white);
    background: linear-gradient(to bottom right, var(--primary), var(--secondary)) !important;
    border-color: var(--primary);
}

@media (max-width:991px) {
    .nav-theme-form .nav-item {
        flex-grow: 1;
        min-width: auto;
    }
}

/*===============================
Footer CSS
=================================*/
.footer-about img {
    max-width: 235px;
    margin-bottom: 20px;
}


/*===============================
Floating Icon CSS
=================================*/
.floating-icon {
    position: fixed;
    z-index: 9;
    bottom: 2%;
    right: 2%;
}

.floating-icon a {
    margin-top: 10px;
}

.floating-icon .whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    background: linear-gradient(45deg, #1EBEA5, #00E676);
    color: #FFFFFF;
    font-size: 32px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.floating-icon .arrow-up {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

/*===============================
Filter Panel CSS
=================================*/
.filter-panel {
    position: sticky;
    top: 95px;
}

.filter-panel .filter {
    margin-bottom: 25px;
}

.filter-panel .input {
    display: flex;
    align-items: center;
}

.filter-panel .checkbox-filter {
    accent-color: var(--primary);
    width: 17px;
    aspect-ratio: 1 / 1;
    margin-right: 10px;
}

/*===============================
Pagination CSS
=================================*/
.pagination-digital-card {
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.pagination-digital-card .page-item:not(.disabled) .page-link {
    color: var(--primary);
}

.pagination-digital-card .page-item.active .page-link {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

/*===============================
Modal CSS
=================================*/
.modal-login .modal-content {
    border: 4px solid var(--primary);
    border-radius: 30px;
}

.modal-login .logo {
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
}

.modal-login .modal-body .btn-close {
    position: absolute;
    right: 4%;
}

.modal-register .modal-content {
    border: 4px solid var(--primary);
    border-radius: 30px;
}

.modal-register .logo {
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
}

.modal-register .modal-body .btn-close {
    position: absolute;
    right: 4%;
}

.modal-forgot-password .modal-content {
    border: 4px solid var(--primary);
    border-radius: 30px;
}

.modal-forgot-password .logo {
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
}

.modal-forgot-password .modal-body .btn-close {
    position: absolute;
    right: 4%;
}

/*===============================
Card CSS
=================================*/
.card-not-found {
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.card-not-found .content i {
    font-size: 175px;
    color: #D3D3D3;
    margin-bottom: 10px;
}

/*===============================
Card Account CSS
=================================*/
.card-account {
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.card-account .card-header {
    padding-top: 15px;
    padding-bottom: 15px;
}

.card-account .profile-image {
    width: 100%;
    border: 1px solid var(--primary);
    border-radius: 10px;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.card-account .profile-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media(max-width: 767px) {
    .card-account .profile-image {
        max-width: 215px;
    }
}

/*===============================
Dropdown Account CSS
=================================*/
.dropdown-account .dropdown-account-image {
    border: 2px solid var(--tertiary);
    border-radius: 50%;
    padding: 0px;
    overflow: hidden;
    /* animation: dropdown-account-image 5s ease infinite; */
}

@keyframes dropdown-account-image {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.dropdown-account .dropdown-account-image img {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-size: 400% 400%;
    background-position: 0% 50%;
    width: 45px;
    margin: 2px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: 0.5s;
}

.sticky-top.navbar-light .dropdown-account .dropdown-account-image img {
    /* width: 40px; */
}

.dropdown-account .dropdown-account-image i {
    color: var(--white);
    margin: 0px 8px 0px 5px;
}

.dropdown-account .dropdown-menu {
    top: 112%;
    left: unset;
    right: 0%;
    width: 240px;
    max-width: 100vw;
    border: 1px solid var(--primary);
    padding: 0px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dropdown-account .dropdown-item {
    border-bottom: 2px solid #dbdbdb;
    padding: 1rem 1.5rem;
}

.dropdown-account .dropdown-item:active {
    color: var(--primary);
    background-color: var(--white);
}

.dropdown-account .dropdown-item i {
    width: 20px;
    aspect-ratio: 1/1;
}

.dropdown-account .dropdown-item .name {
    font-size: 20px;
    line-height: 1.5;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-account .dropdown-item .username {
    font-size: 14px;
    line-height: 1;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-account .dropdown-item-header {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
    padding: 1.25rem 1rem;
}

.dropdown-account .dropdown-item-header:active {
    color: var(--white);
    background-color: unset;
}

.dropdown-account .dropdown-item-header img {
    width: 75px;
}

@media(max-width: 991px) {
    .dropdown-account .dropdown-account-image {
        padding: 0px;
    }

    .dropdown-account .dropdown-account-image img {
        width: 35px;
    }

    .dropdown-account .dropdown-item-header img {
        width: 65px;
    }
}

/*===============================
Gallery Image Box CSS
=================================*/
.file-image-box {
    position: relative;
}

.file-image-box .preview-segment {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #d1d1d1;
    text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--grayLight);
    border-radius: 5px;
    margin-bottom: 0.5em;
    cursor: pointer;
}

.file-image-box .preview-segment.aspect-16-9 {
    aspect-ratio: 16 / 9;
}

.file-image-box .preview-segment.aspect-1-1 {
    aspect-ratio: 1 / 1;
}

.file-image-box .preview-segment .empty {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.file-image-box .preview-segment .empty h2 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    color: var(--gray);
    font-size: 16px;
    text-align: center;
}

.file-image-box .preview-segment .empty h2 i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.file-image-box .preview-segment .upload {
    display: none;
}

.file-image-box .preview-segment .upload .delete {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--white);
    background: #BF3643;
    padding: 5px 10px;
    border-radius: 0px;
    z-index: 9;
}

.file-image-box .preview-segment .upload .backdrop {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--light);
    background: rgb(198, 150, 101, 0.5);
    opacity: 0;
    transition: 0.5s;
}

.file-image-box .preview-segment.uploaded .empty {
    display: none;
}

.file-image-box .preview-segment.uploaded .upload {
    display: block;
    width: 100%;
    height: 100%;
}

.file-image-box .preview-segment.uploaded .upload:hover .backdrop {
    opacity: 1;
    transition: 0.5s;
}

/*===============================
Sticky CSS
=================================*/
.top-header-height {
    top: 100px;
}

/*===============================
Action Box CSS
=================================*/
.action-box {
    display: grid;
}

.action-box .btn {
    text-align: start;
}

/*===============================
Iframe Preview CSS
=================================*/
.iframe-preview {
    aspect-ratio: 9 / 16;
}

.iframe-preview iframe {
    width: 100%;
    height: 100%;
    zoom: 0.7;
}

/*===============================
Google Sign In Button CSS
=================================*/
.gsi-material-button {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #131314;
    background-image: none;
    border: 1px solid #747775;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #e3e3e3;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    max-width: 400px;
    min-width: min-content;
    border-color: #8e918f;
}

.gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.gsi-material-button:disabled {
    cursor: default;
    background-color: #13131461;
    border-color: #8e918f1f;
}

.gsi-material-button:disabled .gsi-material-button-state {
    background-color: #e3e3e31f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: white;
    opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
    background-color: white;
    opacity: 8%;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*===============================
Reset Password Card
=================================*/
.card-reset-password {
    max-width: 520px;
    margin: auto;
}

.card-reset-password .logo {
    width: 220px;
    max-width: 100%;
    margin-bottom: 15px;
}

/*===============================
Cropper Modal
=================================*/
.modal-cropper .modal-body {
    height: 85vh;
}

.modal-cropper .container-cropper {
    height: 100%;
    width: 100%;
}

.modal-cropper #cropper-canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/*===============================
Custom Modal Fade
=================================*/
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.15s ease-out;
}

.modal.fade.in .modal-dialog {
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/*===============================
Card Alert
=================================*/
.card-alert {
    color: var(--white);
    background: linear-gradient(to bottom right, var(--tertiary), var(--quarternary));
    border-left: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.card-alert * {
    color: var(--white);
}

.card-alert b {
    letter-spacing: 1px;
}

/*===============================
Cropper UI
=================================*/
.cropper-view-box {
    outline-width: 5px !important;
}

.cropper-point {
    height: 15px !important;
    width: 15px !important;
}

/*===============================
Alert
=================================*/
.alert-font-setting p {
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 1.75em;
}

.alert-font-setting .font-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    /* horizontal / vertical spacing */
    line-height: 1.3;
}

.alert-font-setting .font-item {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    /* keep icon + value together */
}

/*===============================
Grocery Crud
=================================*/
.grocery-crud .modal {
    background: rgba(0, 0, 0, 0.2);
}

.grocery-crud .modal .modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}