@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@500;600&display=swap');

:root {
    --max-font-size-12: 0.8rem;
    --max-font-size-14: 0.85rem;
    --max-font-size-16: 0.9rem;
    --max-font-size-18: 0.95rem;
    --max-font-size-20: 1.0rem;
    --max-font-size-22: 1.05rem;
    --max-font-size-24: 1.1rem;
    --max-font-size-26: 1.2rem;
    --max-padding-sm: 0.5rem;
    --max-padding-md: 0.85rem;
    --max-padding-lg: 1.0rem;
    --max-body-font: 'Nunito', sans-serif;
    --max-heading-font: 'Prompt', sans-serif;
    --max-heading-color: #4267B2;
    --max-font-color: #292C44;
    --max-font-color2: #5A676F;
    --max-font-color3: #00A8FF;
    --max-hover-color: #ee4a62;
    --max-bg-theme: #F6FCFF;
    --max-theme-color: #5963A0;
    --max-base-color: #fff;
    --max-shadow: 0 3px 10px rgba(15, 39, 125, 0.1);
    --max-shadow-lg: 0 5px 15px rgba(15, 39, 125, 0.1);
    --max-border-radius: 5px;
    --transition: 0.3s;
    --transition-2: 0.5s;
    --transition-transform: transform .65s cubic-bezier(.23, 1, .32, 1);
    --color-primary: #1ab69d;
    --color-secondary: #ee4a62;
    --color-textSecondary: #ff5b5c;
    --color-tertiary: #f8b81f;
    --color-dark: #111212;
    --color-heading: #181818;
    --dark-color-heading: #fff;
    --color-border: #e5e5e5;
    --dark-color-border: #282f3a;
    --color-body: gray;
    --gradient-primary: linear-gradient(-90deg, #31b978 0%, #1ab69d 100%);
    --bg-color: #EAF0F2;
    --dark-bg-color: #020b17;
    --cta-color-bg: #F0F4F5;
    --color-bg-body: #fff;
    --dark-color-bg-body: #111822;
    --bg-color-2: #1c242f;
    --color-white: #fff;
    --color-black: #000;
    --footer-text: #181818;
    --dark-footer-text: gray;
    --edu-btn-color: #fff;
    --color-title: #bababa;
    --color-lighten01: #f0f4f5;
    --color-lighten02: #edf5f8;
    --color-lighten03: #f5f1eb;
    --color-lighten04: #f7f5f2;
    --color-extra01: #0ecd73;
    --color-extra02: #8e56ff;
    --color-extra03: #f92596;
    --color-extra04: #5866eb;
    --color-extra05: #f8941f;
    --color-extra06: #39c0fa;
    --color-extra07: #da04f8;
    --color-extra08: #4664e4;
    --color-extra09: #525151;
    --color-extra10: #404040;
    --color-extra11: #22272e;
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-placeholder: gray;
    --color-facebook: #1877f2;
    --color-twitter: #1da1f2;
    --color-youtube: #cd201f;
    --color-linkedin: #0a66c2;
    --color-pinterest: #E60022;
    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
    --border-width: 2px;
    --radius-small: 4px;
    --radius: 10px;
    --radius-big: 16px;
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --shadow-darker: 0 10px 50px rgba(26, 46, 85, .1);
    --shadow-darker2: 0 20px 50px 0 rgba(26, 46, 85, .1);
    --shadow-dark: 0 10px 30px 0 rgba(20, 36, 66, .15);
    --shadow-darkest: 0 10px 30px 0 rgba(0, 0, 0, .05);
    --shadow-darker3: 0 4px 50px 0 rgba(0, 0, 0, .1);
    --shadow-darker4: 0 20px 70px 0 rgba(15, 107, 92, .2);
    --transition: 0.3s;
    --transition-2: 0.5s;
    --transition-transform: transform .65s cubic-bezier(.23, 1, .32, 1);
    --font-size-b1: 15px;
    --font-size-b2: 13px;
    --line-height-b1: 1.73;
    --line-height-b2: 1.85;
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
}

body {
    font-family: var(--max-body-font);
    font-size: 100%;
    color: var(--max-font-color);
    overflow-x: hidden;
    background: var(--max-base-color);
}

a {
    text-decoration: none;
    color: var(--max-font-color);
    transition: all .3s ease-in;
}

a:hover,
a:focus {
    color: var(--bs-link-hover-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--max-font-color);
    font-weight: 700;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

section {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-primary {
    background-color: var(--max-theme-color) !important;
}

.sticky {
    /* background: rgba(0, 0, 0, 0.5); */
    background: #fff;
    box-shadow: var(--max-shadow);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 999;
}

main {
    width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    /* height: 100vh; */
    flex-direction: column;
    padding-bottom: 65px;
    /* background: #5a5a5a; */
}
.h-100vh{
    height: 100vh;
}
.title span {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.title h1 {
    font-family: var(--max-heading-font);
    color: var(--max-font-color3);
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.maxBtn {
    padding: 8px 20px;
    outline: none;
    border: 0;
    font-weight: 500;
    font-size: var(--max-font-size-22);
    transition: 0.2s;
    box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0.35rem;
    color: #fff;
}

.maxBtn:hover,
.maxBtn:focus {
    transform: translateY(4px);
    box-shadow: none;
    color: var(--max-base-color) !important;
    background: #101010 !important;
}

.maxBtn2 {
    padding: 8px 25px;
    outline: none;
    border: 0;
    color: #00ff2b;
    background: transparent;
    font-weight: 500;
    font-size: var(--max-font-size-22);
    transition: 0.2s;
    border: 1px solid #00ff2b;
    display: inline-flex;
    align-items: center;
    position: relative;
    border-radius: 0.5rem;
}

.maxBtn2:hover,
.maxBtn2:focus {
    transform: translateY(4px);
    color: var(--max-font-color) !important;
    background: #00ff2b !important;
}

.bg-yellow {
    background: var(--max-hover-color) !important;
}

.text-yellow {
    color: var(--max-hover-color) !important;
}

.bg-theme {
    background: #515CC2;
}

.bg-gray {
    background: #625676;
}
.text-gradient {
    background: -webkit-linear-gradient(to right, #CF0000 55%, #00D439 100%);
    background: -moz-linear-gradient(to right, #CF0000 55%, #00D439 100%);
    background: linear-gradient(to right, #CF0000 55%, #00D439 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    font-weight: 700;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid #101010;
    background: transparent;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #101010;
    border: 0;
}
/* .swiper-wrapper{
    width: calc(100% - 100px);
    margin: 0 50px;
} */
.swiper-button-next:after, 
.swiper-button-prev:after{
    font-size: 14px;
    color: #fff;
}
.swiper-button-next, .swiper-button-prev{
    background-color: #000;
    padding: 0.5rem 0.38rem;
    border-radius: 2rem;
    z-index: 99;
    width: 30px;
    height: 30px;
    margin-top: -15px;
}
.swiper-button-next{
    right: 10px;
}
.swiper-button-prev{
    left: 10px;
}

.headerTitle h4{
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
}
.headerTitle h4 small{
    margin-top: 5px;
    display: block;
    font-size: 0.65rem;
}


header {
    padding: 5px 15px;
    position: fixed;
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    border: 1px solid #ddd;
    background: var(--color-bg-body);
    min-height: 48px;
}

.navbarlogo img {
    transition: width 0.3s;
    transition-timing-function: linear;
    width: 40px;
}

header .menu-btn {
    position: relative;
    width: 30px;
    cursor: pointer;
    display: block;
}

header .menu-btn span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background-color: #101010;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

header .menu-btn span.middle-bar {
    width: 70%;
}

/* header .menu-btn span.bottom-bar {
    width: 60%;
} */

header .menu-btn:hover span {
    width: 100%;
}

header .btnPlay {
    border: 2px dotted #fff;
    animation: colorchange 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-play-state: running;
    color: #fff;
    box-shadow: inset 3px 3px 2px rgb(0 0 0 / 15%);
    height: 34px;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* header .btnPlay:hover{
    border-color: #ff8240;
    color: #58629f;
} */
@keyframes colorchange {
    0% {
        background: #0a8bb9;
    }

    50% {
        background: #ff8240;
    }

    100% {
        background: #fe2f7f;
    }
}

.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

.modal-backdrop {
    display: none;
}

.modal.left .modal-dialog {
    position: fixed;
    margin: auto;
    width: 300px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: 0;
    background: transparent;
}

.modal.left .modal-body {
    padding: 40px 20px;
    background-color:#FFF5FA;
    /* display: flex;
    align-items: center; */
}

.modal.left .modal-body .closeBtn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    color: #101010;
}

.modal.left.fade .modal-dialog {
    left: -300px;
    -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
    -o-transition: opacity 0.3s linear, left 0.3s ease-out;
    transition: opacity 0.3s linear, left 0.3s ease-out;
}

.menumain .modal.left.fade.show .modal-dialog {
    left: 0;
}
.menumain ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 0;
}
.menumain li {
    display: block;
    margin-bottom: 10px;
}

.menumain li a {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 15px;
    box-shadow: var(--max-shadow-lg);
    color: #101010;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.2s;
}
.menumain li a img{
    width: 24px;
    margin-right: 10px;
}
.menumain li a:hover{
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    transform: translateY(4px);
}


.userMain{
    background: #ff5722;
    padding: 0.5rem 1rem;
    border: 3px solid rgb(255 255 255 / 70%);
    display: flex;
    border-radius: 1rem;
    align-items: center;
    margin: 1rem 0;
}
.userMain img{
    width: 40px;
    border-radius: 30px;
    border: 2px solid #fff;
}
.userMain .userCont h5{
    font-size: 16px;
    margin-bottom: 5px;
}
.userMain .userCont p{
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
}

.social {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 2.5rem;
}

.social a {
    border-radius: 30px;
    margin-left: 5px;
    display: inline-block;
    border: 1px dashed #888;
    color: #888;
}

.social a:hover {
    border-color: var(--max-theme-color);
    border: 1px solid transparent;
}

.social a i {
    border-radius: 100%;
    width: 26px;
    height: 26px;
    line-height: 27px;
    font-size: 0.85rem;
    text-align: center;
}

.social a:hover i.fa-brands {
    color: var(--max-base-color);
    box-shadow: none;
    transition: all .3s ease-in;
}

.social a:hover i.fa-facebook-f {
    background: #4267B2;
}

.social a:hover i.fa-twitter {
    background: #1DA1F2;
}

.social a:hover i.fa-linkedin-in {
    background: #0e76a8;
}

.social a:hover i.fa-youtube {
    background: #FF0000;
}

.social a:hover i.fa-instagram {
    background: #a7765b;
}



.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    display: block;
    font-size: 20px;
}

.menu-list li ul li {
    font-size: 16px;
}

.menu-list li a {
    display: inline-block;
    color: white;
    position: relative;
    text-decoration: none;
    padding: 10px 10px 10px 30px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.menu-list li a:before {
    position: absolute;
    content: "\f178";
    font-family: 'FontAwesome';
    left: 0;
    top: 15px;
    font-size: 14px;
    color: #fff;
}

.menu-list li a::after {
    content: "";
    display: block;
    opacity: 0;
    width: 0;
    height: 2px;
    background-color: #ffb300;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.menu-list li a:hover::after {
    opacity: 1;
    width: 100%;
}




body.offcanvas-active {
    overflow: hidden;
}

.offcanvas-header {
    display: none;
}

.screen-darken {
    height: 100%;
    width: 0%;
    z-index: 30;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
    z-index: 10;
    transition: opacity .3s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

@media all and (max-width: 991px) {
    .offcanvas-header {
        display: block;
    }

    .mobile-offcanvas {
        visibility: hidden;
        transform: translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        z-index: 1200;
        width: 80%;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: visibility .3s ease-in-out, transform .3s ease-in-out;
    }

    .mobile-offcanvas.show {
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-offcanvas .container,
    .mobile-offcanvas .container-fluid {
        display: block;
    }
}

.search {
    position: relative;
    min-width: 300px;
    display: flex;
    width: 100%;
}

.search input {
    height: 40px;
    border: 1px solid #ddd;
    background: transparent;
    width: 100%;
    position: relative;
    padding: 0 15px;
    color: var(--max-font-color);
    outline: 0;
    font-size: 15px;
    border-right: 0;
    border-radius: 30px 0 0 30px;
}

.search button {
    background: transparent;
    border: 1px solid #ddd;
    border-left: 0;
    color: var(--max-font-color);
    padding: 6px 12px 3px;
    outline: 0;
    font-size: 16px;
    height: 40px;
    border-radius: 0 30px 30px 0;
}

.search button:hover {
    background: var(--color-bg-body);
    color: var(--max-font-color);
}

.cart {
    font-size: 22px;
    vertical-align: bottom;
    color: #151515 !important;
    border-radius: 0.3rem;
    margin-right: 0.75rem;
    margin-left: 1rem;
    line-height: 1;
    position: relative;
    display: flex;
    align-items: end;
}
.cart span {
    position: absolute;
    right: -0.75rem;
    top: 0;
    padding: 0 2px;
    width: 20px;
    line-height: 20px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    background: #233174;
    color: #fff;
    text-align: center;
}

/* Bottom Menu */
/* ================================ */
.bottomMenu {
    position: fixed;
    bottom: 0;
    width: 1100px;
    background: #fff;
    box-shadow: 0 -5px 15px rgb(0 0 0 / 10%);
    z-index: 99;
    border-radius: 10px 10px 0 0;
}

.menuBTM ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    padding: 10px 0;
}

.menuBTM ul li {
    display: block;
    flex: 1;
}

.menuBTM ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    position: relative;
    font-size: 12px;
    line-height: 1.2;
    color: #000;
}

.menuBTM ul li a svg {
    width: 20px;
    margin-bottom: 3px;
    /*background: #fff;*/
    /*border-radius: 5px;*/
    /*padding: 10px;*/
}

.menuBTM ul li a.active, .menuBTM ul li a:hover {
    color: #ff0000;
}

/* Banner Panel */
/* ====================================== */
/*.banner {*/
/*    margin-top: 3.5rem;*/
/*}*/


/* Category Panel */
/* ===================================== */
/* .categoryMain {
    border-radius: 10px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 8%);
    background: #fff;
    padding: 1rem;
} */

.itemMain {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.itemMain .listItem {
    text-align: center;
    padding: 0.65rem;
    /*width: 16.6667%;*/
    flex: 1;
}
.itemMain .listItem2 {
    text-align: center;
    padding: 0.5rem;
    width: 16.6667%;
}

.itemMain .listItem img {
    margin-bottom: 0.5rem;
    border-radius: 25px;
    /* box-shadow: 0 2px 5px rgb(0 0 0 / 8%); */
    background: #e8eaf6;
    position: relative;
    padding: 10px;
}
.itemMain .listItem2 img {
    margin-bottom: 0.5rem;
    border-radius: 15px;
    /* box-shadow: 0 2px 5px rgb(0 0 0 / 8%); */
    background: #e8eaf6;
    position: relative;
    padding: 15px;
}

.itemMain .listItem h5{
    color: #1e1f2a;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--max-body-font);
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.itemMain .listItem2 h5 {
    color: #3e3f4a;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--max-body-font);
    letter-spacing: 0.5px;
    margin: 0;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

/* Pricing Plan */
/* ====================================== */
.pricing{
    margin-top: 3rem;
}
.pricingcard {
    position: relative;
    height: auto;
    background: linear-gradient(-45deg, #fe0847, #feae3f);
    border-radius: 15px;
    margin: 0 auto 20px;
    padding: 40px 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    -webkit-transition: .5s;
    transition: .5s;
}

.pricingcard:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.col-md-4:nth-child(1) .pricingcard,
.col-md-4:nth-child(1) .pricingcard .title .fa {
    background: linear-gradient(-45deg, #f403d1, #64b5f6);

}

.col-md-4:nth-child(2) .pricingcard,
.col-md-4:nth-child(2) .pricingcard .title .fa {
    background: linear-gradient(-45deg, #ffec61, #f321d7);

}

.col-md-4:nth-child(3) .pricingcard,
.col-md-4:nth-child(3) .pricingcard .title .fa {
    background: linear-gradient(-45deg, #24ff72, #9a4eff);

}

.pricingcard::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, .1);
    z-index: 1;
    -webkit-transform: skewY(-5deg) scale(1.5);
    transform: skewY(-5deg) scale(1.5);
}

.pricing .title .fa {
    color: #fff;
    font-size: 60px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);

}

.pricing .title h2 {
    position: relative;
    margin: 20px 0 0;
    padding: 0;
    color: #fff;
    font-size: 28px;
    z-index: 2;
}

.pricing .price,
.pricing .option {
    position: relative;
    z-index: 2;
}

.price h4 {
    margin: 0;
    padding: 20px 0;
    color: #fff;
    font-size: 60px;
}

.option ul {
    margin: 0;
    padding: 0;

}

.option ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 16px;
}

.pricingcard a {
    position: relative;
    z-index: 2;
    background: #fff;
    color: black;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    display: block;
    text-align: center;
    margin: 20px auto 0;
    font-size: 16px;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);

}

.pricingcard a:hover {
    text-decoration: none;
}


/* Login Panel */
/* =============================== */
.loginBox{
    background: var(--color-bg-body);
    box-shadow: var(--max-shadow-lg);
    margin-top: 2rem;
    padding: 2rem;
}
.loginMain{
    width:350px;
    margin: 0 auto;
}
.loginBox .form-main{
    position: relative;
    margin: 15px auto 0;
    width: 350px;
}
.form-check-input[type=radio] {
    border-radius: 50%;
    padding: 0;
    width: 1em;
}
.loginBox input, .loginBox select{
    border-radius: 5px;
    border: 0;
    background: rgba(255, 255, 255, .3);
    color: #000;
    outline: 0;
    padding: 10px 10px 10px 50px;
    width: 100%;
    border: 1px solid #ddd;
}
.loginBox input[type=file]{
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.loginBox input:focus{
    border-color: #00A8FF;
}
.loginBox input::placeholder, 
.loginBox select::placeholder{
    color: #292c44;
}
.loginBox input:hover, .loginBox select:hover{
    box-shadow:  0 2px 5px rgba(0, 0, 0, 0.3);
}
.loginBox i{
    position: absolute;
    left: 15px;
    top: 13px;
    color: #000;
}
.loginBox .nav-item{
    flex: 1;
}
.loginBox .nav-pills .nav-link{
    width: calc(100% - 5px);
    border: 1px solid #f44336;
    color: #f44336;
}
.loginBox .nav-pills .nav-link.active{
    background-color: #f44336;
    color: #fff;
}


/* Product Panel */
/* ====================================== */
.productListMain{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: center; */
}
.productListMain .productBoxMain{
    width: calc(25% - 20px);
    margin-right: 20px;
    margin-bottom: 25px;
}
.productListMain .productBoxMain:nth-child(4n+4){
    margin-right: 0;
}
.productBoxMain {
    background: #fff;
    padding: 10px;
    text-align: center;
    border: 3px solid #ff00004a;
    transition: box-shadow linear .3s;
    -moz-transition: box-shadow linear .3s;
    -webkit-transition: box-shadow linear .3s;
    position: relative;
    border-radius: 10px;
}
.productBoxMain .row {
    position: absolute;
    width: calc(100% - 5px);
    left: 15px;
    top: 0;
}
.productBoxMain h6 {
    margin: 0;
    color: var(--max-hover-color);
    text-transform: uppercase;
    font-size: 10px;
    text-align: left;
    line-height: 22px;
}
.productBoxMain span {
    border-radius: 0.25rem;
    background: var(--max-font-color);
    font-size: 9px;
    padding: 2px 5px;
    text-transform: uppercase;
    color: var(--max-base-color);
}
.productBoxMain img{
    height: 150px;
}
.productBoxMain h5 {
    font-size: 14px;
    margin: 1rem 0.5rem;
    /* height: 36px; */
}
.productBoxMain ul {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    list-style: none;
    padding: 0 0.5rem;
    text-align: left;
}
.productBoxMain ul li {
    font-size: 15px;
    font-weight: 700;
    padding: 0 3px;
    line-height: 20px;
    position: relative;
}
.productBoxMain ul li:first-child {
    font-size: 14px;
    font-weight: 400;
    color: rgb(161, 161, 161);
    text-decoration: line-through;
}
.productBoxMain ul li:last-child {
    color: #ff0000;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 18px;
}
.productBoxMain .btnmax{
    width: 30px;
    height: 30px;
    border-radius: 30px;
    color: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    outline: 0;
    text-align: center;
    line-height: 34px;
    background: linear-gradient(90deg, rgba(255,102,0,1) 0%, rgba(253,29,29,1) 50%);
}


/* Product List */
/* ==================================== */
.productList{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.productList .nav-pills{
    margin-bottom: 1rem;
}
.productList .nav-pills .nav-link{
    border: 1px solid #ddd;
    color: #303030;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
    font-size: 14px;
    border-radius: 0;
    background: #f9f9f9;
    font-weight: 600;
    flex: 1;
    padding: 10px;
}
.productList .nav-pills .nav-link img{
    margin-bottom: 10px;
}
.productList .nav-pills .nav-link.active{
    background-color: #d81e47;
    border-bottom: 1px solid #d81e47;
    color: #fff;
}
.productList .nav-pills .nav-link.active img{
    filter: brightness(0) invert(1);
}

.productList2{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.productList2 .menuMainPanel {
    width: 100%;
    display: flex;
    margin: 0;
}
.productList2 .menuMainPanel a{
    border: 1px solid #ddd;
    color: #303030;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
    font-size: 14px;
    border-radius: 0;
    background: #f9f9f9;
    font-weight: 600;
    flex: 1;
    padding: 10px;
}
.productList2 .menuMainPanel img{
    margin-bottom: 10px;
}
.productList2 .menuMainPanel h5{
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 400;
}
.productList2 .menuMainPanel a.active h5{
    color: #fff;
}
.productList2 .menuMainPanel a.active{
    background-color: #d81e47;
    border-bottom: 1px solid #d81e47;
    color: #fff;
}
.productList2 .menuMainPanel a.active img{
    filter: brightness(0) invert(1);
}


.productList2 .productMainPanel{
    width: 100%;
    margin-top: 0.5rem;
}
.productList2 .productMainPanel .subMain{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.productList2 .productMainPanel .subMain a{
    width: 16.667%;
    padding: 0.5rem;
    text-align: center;
}
.productList2 .productMainPanel .subMain a img {
    margin-bottom: 0.5rem;
    border-radius: 15px;
    /* box-shadow: 0 2px 5px rgb(0 0 0 / 8%); */
    background: #f6e8f0;
    position: relative;
    padding: 20px;
}
.productList2 .productMainPanel .subMain a h5 {
    color: #3e3f4a;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--max-body-font);
    letter-spacing: 0.5px;
    margin: 0;
}

/* Cart Panel */
/* ==================================== */
.shipitem{
    border: 1px solid #bfcfe0;
    border-radius: 5px;
    padding: 10px;
    background: #fbfbfb;
}
.shipitem img{
    width: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.shipitem h6{
    font-size: 0.85rem;
}
.shipitem p{
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    white-space: nowrap;
    margin: 0;
    font-weight: 600;
}
.shipitem a{
    color: #101010;
}
.shipitem a:hover{
    color: #f00;
    opacity: 1;
}
.shipitem h6{
    font-size: 1rem;
}
.qty{
	padding: 2px;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    max-width: 82px;
}
.qty .count {
    color: #fc2779;
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    padding: 0 2px;
    min-width: 35px;
    text-align: center;
}
.qty .plus {
    cursor: pointer;
    display: inline-block;
    color: #000;
    text-align: center;
    background-clip: padding-box;
    font-size: 16px;
    font-weight: 600;
    vertical-align: top;
    border-radius: 50%;
    background: #e9ecef;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.qty .minus {
    cursor: pointer;
    display: inline-block;
    color: #000;
    text-align: center;
    background-clip: padding-box;
    font-size: 26px;
    line-height: 16px;
    vertical-align: top;
    background: #e9ecef;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.minus:hover{
    background-color: #fc2779 !important;
	color:#fff !important;
}
.plus:hover{
    background-color: #fc2779 !important;
	color:#fff !important;
}
/*Prevent text selection*/
.qty span{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.qty input{  
    border: 0;
    width: 2%;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty input:disabled{
    background-color:white;
}
.qty .delete{
	margin-left: 16px;
    display: inline-block;
    margin-top: 5px;
    font-size: 17px;	
}
.qty .delete a{
	color:#565656;
}

.priceMain{
    position: relative;
    bottom: 0;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #f4f4f4;
    min-height: 60px;
}
.priceMain h6{
    font-size: 13px;
    margin-bottom: 0;
}
.priceMain a{
    font-size: 12px;
    font-weight: 600;
}
.billMain{
    padding: 10px;
    background: #fff6f6;
    border: 1px solid #ffe3e3;
    border-radius: 5px;
    margin-bottom: 110px;
}
.billing{
    font-size: 14px;
    margin-bottom: 0;
}
.billing tr td{
    border-bottom: 0;
    padding: 3px;
}
.billing tr td:last-child{
    text-align: right;
}

/* Product Details */
/* ======================================= */
.pro-cont{
    background: #e8eaf6;
    padding: 20px;
    margin-b
}
.pro-cont p{
    font-size: 13px;
}
.pro-cont hr{
    background-color: #adb7d1;
    margin: 0.5rem 0;
}
.pro-cont ul li, .pro-cont ol li{
    font-size: 13px;
    margin-bottom: 5px;
}
.description{
    padding: 1rem;
    border: 1px solid #e0d2d2;
}
.description h5{
    font-size: 18px;
}


/* Content Panel */
/* ============================ */
/* .contentMain{
    position: relative;
    margin-top: 3rem;
}
.dataTables_wrapper, .dataTables_length label{
    color: var(--bg-color);
}
.dataTables_filter{
    color: var(--bg-color);
}
.form-control, .form-select{
    background: transparent;
    color: var(--bg-color);
    margin-bottom: 20px;
}
.form-floating label{
    color: var(--bg-color);
}
.form-control:focus{
    background: transparent;
    color: var(--bg-color);
} */


.swal2-popup{
    width: 20em !important;
}
.swal2-title{
    font-size: 1.075em !important;
}
.swal2-actions{
    margin-top: 0.5em !important;
}

/* Checkout */
/* ================================= */
.fs-5{font-size: 14px !important;}

.fs-6{font-size: 12px !important;}

address{
    padding: 1rem;
    border-radius: 0.5rem;
    border: 2px solid #fdbebe;
}
/* address .form-control{
    border-radius: 0;
} */
address .form-control:focus, address .form-control:hover{
    box-shadow: none;
    border-color: #f00;
}
form-control:-internal-autofill-selected, 
.form-select:-internal-autofill-selected{
    background: transparent;
}
address .form-check {
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fbf4f4;
    padding: 12px 15px 12px 35px;
    margin-bottom: 5px;
}
address .form-check label {
    margin-bottom: 0;
}
address h6{
    color: #f00;
    margin-bottom: 0.5rem;
}
address h6 span{
    font-size: 13px;
    color: #565656;
    margin-left: 5px;
}
address p{
    font-size: 14px;
    margin-bottom: 0;
}
.form-floating > .form-control:focus ~ label, 
.form-floating > .form-control:not(:placeholder-shown) ~ label, 
.form-floating > .form-select ~ label {
    opacity: 0.65;
    color: #ff0000;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.order-history{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 10px;
    border: 2px solid #fdbebe;
    font-size: 0.85rem;
    border-radius: 5px;;
}
.order-history h6{
    font-weight: 600;
}
.order-history h6 small{
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #888;
}


/*Wallet System*/
/*===============================================*/
.wallet-b {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    width: 100%;
    margin-right: 10px;
    padding: 15px 13px;
}
.round {
    border-radius: 19px;
    background: #f7c558;
    background: -moz-linear-gradient(top, #f7c558 0%, #e26f25 100%);
    background: -webkit-linear-gradient(top, #f7c558 0%,#e26f25 100%);
    background: linear-gradient(to bottom, #f7c558 0%,#e26f25 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7c558', endColorstr='#e26f25',GradientType=0 );
    padding: 15px;
}
.hot {
    background: #70b2fe;
    background: -moz-linear-gradient(top, #70b2fe 0%, #3378f7 100%);
    background: -webkit-linear-gradient(top, #70b2fe 0%,#3378f7 100%);
    background: linear-gradient(to bottom, #70b2fe 0%,#3378f7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#70b2fe', endColorstr='#3378f7',GradientType=0 );
    border-radius: 19px;
    padding: 15px;
}
.app {
    background: #f76b71;
    background: -moz-linear-gradient(top, #f76b71 1%, #de2125 100%);
    background: -webkit-linear-gradient(top, #f76b71 1%,#de2125 100%);
    background: linear-gradient(to bottom, #f76b71 1%,#de2125 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f76b71', endColorstr='#de2125',GradientType=0 );
    border-radius: 10px;
    padding: 15px;
}
.wallet-b i {
    font-size: 18px;
    width: 35px;
    height: 35px;
    font-weight: 500;
    text-align: center;
    padding: 3px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    line-height: 28px;
}
.wallet-b .coin-name {
    color: #fff;
    margin: 5px 0 0;
    font-weight: 600;
    font-size: 16px;
}



@media(max-width: 800px) {
    .modal.left .modal-body {
        padding: 20px 30px;
    }

    main {
        width: auto;
        max-width: 100%;
        height: auto;
    }

    header {
        max-width: 100%;
    }

    .search {
        min-width: auto;
    }

    .search input {
        padding-right: 0;
    }

    .categoryMain {
        margin: 0 15px;
    }

    .itemMain .listItem {
        width: 33.333%;
        flex: inherit;
    }
    .itemMain .listItem2 {
        width: 25%;
    }
    .itemMain .listItem h5{
        font-size: 15px;
    }
    .itemMain .listItem2 h5{
        font-size: 13px;
    }
    .itemMain .listItem2 img{
        padding: 10px;
    }
    .bottomMenu {
        width: 100%;
    }

    .menuBTM ul li a img {
        margin-right: 0;
    }

    /*.menuBTM ul li a span {*/
    /*    display: none;*/
    /*}*/

    .loginBox .form-main{
        width: 100%;
    }
    .bottomMenu{
        border-radius: 0;
    }
    .productList{
        flex-wrap: nowrap;
    }
    .productList .nav-pills {
        width: 110px;
        margin-bottom: 0;
    }
    .productList .nav-pills .nav-link{
        font-size: 12px;
        padding: 10px;
    }
    
    .productListMain .productBoxMain{
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .productList2 .menuMainPanel{
        width: 90px;
        display: block;
        margin-right: 10px;
        position: sticky;
        bottom: 55px;
        z-index: 99;
    }
    .productList2 .productMainPanel{
        width: calc(100% - 100px);
    }
    .productList2 .productMainPanel .subMain a{
        width: 33.3333%;
        padding: 0.5rem
    }
    .productList2 .productMainPanel .subMain a h5{
        font-size: 13px;
    }
    .priceMain{
        bottom: 0px;
        position: fixed;
    }
    .order-history{
        flex-direction: column;
    }
    .oh-product{
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }
    .oh-product span{
        margin-left: 5px;
    }
}

@media(max-width:480px){
    .itemMain .listItem2 h5{
        font-size: 12px;
    }
    .productList2 .productBoxMain img{
        height: 100px;
    }
    .productBoxMain h5{
        color: #42415b;
        font-size: 0.85rem;
        line-height: 1.2;
        margin: 0.5rem 0 1rem;
        text-align: left;
        word-break: break-all;
        min-height: 34px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        -webkit-line-clamp: 2;
    }
    .productBoxMain ul{
        padding: 0;
        margin-bottom: 5px;
    }
    .productBoxMain ul li{
        font-size: 14px !important;
    }
}

@media(max-width:380px){
    .productBoxMain ul{
        flex-direction: column;
    }
    .productBoxMain ul li{
        padding-left: 0;
    }
    .productBoxMain ul li:last-child{
        padding-left: 0;
    }
}