@font-face {
    font-family: 'AvenirNextLTPro-Bold';
    src: url('../fonts/AvenirNextLTPro-Bold.woff') format('woff');
    src: url('../fonts/AvenirNextLTPro-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'AvenirNextLTPro-Regular';
    src: url('../fonts/AvenirNextLTPro-Regular.woff') format('woff');
    src: url('../fonts/AvenirNextLTPro-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'AvenirNextLTPro-Demi';
    src: url('../fonts/AvenirNextLTPro-Demi.woff') format('woff');
    src: url('../fonts/AvenirNextLTPro-Demi.woff2') format('woff2');
}

@font-face {
    font-family: 'AvenirNextLTPro-Medium';
    src: url('../fonts/AvenirNextLTPro-Medium.woff') format('woff');
    src: url('../fonts/AvenirNextLTPro-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserratfonts/Montserrat-Bold.woff') format('woff');
    src: url('../fonts/Montserratfonts/Montserrat-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat-ExtraBold';
    src: url('../fonts/Montserratfonts/Montserrat-ExtraBold.woff') format('woff');
    src: url('../fonts/Montserratfonts/Montserrat-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('../fonts/Montserratfonts/Montserrat-Light.woff') format('woff');
    src: url('../fonts/Montserratfonts/Montserrat-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/Montserratfonts/Montserrat-Medium.woff') format('woff');
    src: url('../fonts/Montserratfonts/Montserrat-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserratfonts/Montserrat-Regular.woff') format('woff');
   
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/Montserratfonts/Montserrat-SemiBold.woff') format('woff');
    
}

@font-face {
    font-family: 'Montserrat-MediumItalic';
    src: url('../fonts/Montserratfonts/Montserrat-MediumItalic.woff') format('woff');
    src: url('../fonts/Montserratfonts/Montserrat-MediumItalic.woff2') format('woff2');
}


@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppinsfonts/Poppins-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Poppins-Italic';
    src: url('../fonts/Poppinsfonts/Poppins-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppinsfonts/Poppins-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppinsfonts/Poppins-Regular.woff') format('woff');
}



@font-face {
    font-family: 'Raleway-Regular';
    src: url('../fonts/Ralewayfonts/Raleway-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Raleway-ExtraBold';
    src: url('../fonts/Ralewayfonts/Raleway-ExtraBold.woff') format('woff');
}

/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Raleway:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Raleway:wght@600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Poppins&family=Raleway:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Poppins:wght@400;500&family=Raleway:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Poppins:wght@400;500;600&family=Raleway:wght@600;700;800&display=swap');
 */

body {
    color: #000;
    -webkit-appreance: none;
    -moz-appearance: none;
}



a {
    color: #106eea;
    text-decoration: none;
}

    a:hover {
        color: #3b8af2;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #106eea;
        border-top-color: #e2eefd;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #106eea;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #3284f1;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #000;
    opacity: 1;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    height: 66px;
}

    #header.fixed-top {
        height: 70px;
    }

    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 0.8px;
        font-family: "Poppins", sans-serif;
    }

        #header .logo a {
            color: #222222;
        }

            #header .logo a span {
                color: #106eea;
            }

        #header .logo img {
            max-height: 40px;
        }

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-size: 15px;
        font-weight: 600;
        color: #222222;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #106eea;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
        color: #106eea;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-weight: 400;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                color: #106eea;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #222222;
    }

    .navbar-mobile > ul > li {
        padding: 0;
    }

    .navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
        visibility: hidden;
    }

    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
        color: #106eea;
    }

    .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: #106eea;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    background: url("../img/hero-bg.jpg") top left;
    background-size: cover;
    position: relative;
}

    #hero:before {
        content: "";
        background: rgba(255, 255, 255, 0.6);
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        position: relative;
    }

    #hero h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #222222;
        font-family: "Poppins", sans-serif;
    }

        #hero h1 span {
            color: #106eea;
        }

    #hero h2 {
        color: #555555;
        margin: 5px 0 30px 0;
        font-size: 24px;
        font-weight: 400;
    }

    #hero .btn-get-started {
        font-family: "Roboto", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px;
        border-radius: 4px;
        transition: 0.5s;
        color: #fff;
        background: #106eea;
    }

        #hero .btn-get-started:hover {
            background: #247cf0;
        }

    #hero .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        color: #222222;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        #hero .btn-watch-video i {
            color: #106eea;
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        #hero .btn-watch-video:hover {
            color: #106eea;
        }

            #hero .btn-watch-video:hover i {
                color: #3b8af2;
            }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .btn-get-started, #hero .btn-watch-video {
            font-size: 13px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f9fe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: #e7f1fd;
        color: #106eea;
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }

    .section-title h3 {
        margin: 15px 0 0 0;
        font-size: 32px;
        font-weight: 700;
    }

        .section-title h3 span {
            color: #106eea;
        }

    .section-title p {
        margin: 15px auto 0 auto;
        font-weight: 600;
    }

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
}

    .breadcrumbs h2 {
        font-size: 24px;
        font-weight: 300;
        margin: 0;
    }

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #6c757d;
            content: "/";
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

    .featured-services .icon-box::before {
        content: "";
        position: absolute;
        background: #cbe0fb;
        right: 0;
        left: 0;
        bottom: 0;
        top: 100%;
        transition: all 0.3s;
        z-index: -1;
    }

    .featured-services .icon-box:hover::before {
        background: #106eea;
        top: 0;
        border-radius: 0px;
    }

.featured-services .icon {
    margin-bottom: 15px;
}

    .featured-services .icon i {
        font-size: 48px;
        line-height: 1;
        color: #106eea;
        transition: all 0.3s ease-in-out;
    }

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

    .featured-services .title a {
        color: #111;
    }

.featured-services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
    color: #fff;
}

.featured-services .icon-box:hover .icon i {
    color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 35px;
    }

        .about .content ul li:first-child {
            margin-top: 35px;
        }

    .about .content ul i {
        background: #fff;
        box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
        font-size: 24px;
        padding: 20px;
        margin-right: 15px;
        color: #106eea;
        border-radius: 50px;
    }

    .about .content ul h5 {
        font-size: 18px;
        color: #555555;
    }

    .about .content ul p {
        font-size: 15px;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

    .skills .progress .skill {
        padding: 0;
        margin: 0 0 6px 0;
        text-transform: uppercase;
        display: block;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        color: #222222;
    }

        .skills .progress .skill .val {
            float: right;
            font-style: normal;
        }

.skills .progress-bar-wrap {
    background: #e2eefd;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 70px 0 60px;
}

    .counts .count-box {
        padding: 30px 30px 25px 30px;
        width: 100%;
        position: relative;
        text-align: center;
        background: #f1f6fe;
    }

        .counts .count-box i {
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            background: #106eea;
            color: #fff;
            width: 56px;
            height: 56px;
            line-height: 0;
            border-radius: 50px;
            border: 5px solid #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .counts .count-box span {
            font-size: 36px;
            display: block;
            font-weight: 600;
            color: #062b5b;
        }

        .counts .count-box p {
            padding: 0;
            margin: 0;
            font-family: "Roboto", sans-serif;
            font-size: 14px;
        }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
    }

        .clients img:hover {
            transform: scale(1.15);
        }

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #e2eefd;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

    .services .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #f1f6fe;
        border-radius: 4px;
        border: 1px solid #deebfd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

        .services .icon-box .icon i {
            color: #3b8af2;
            font-size: 28px;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .services .icon-box h4 a {
            color: #222222;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
    }

        .services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
            color: #106eea;
        }

        .services .icon-box:hover .icon {
            border-color: #106eea;
        }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

    .testimonials::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
    }

    .testimonials .section-header {
        margin-bottom: 40px;
    }

    .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        text-align: center;
        color: #fff;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.15);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #fff;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #ddd;
            margin: 0 0 15px 0;
        }

        .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
            color: rgba(255, 255, 255, 0.4);
            font-size: 26px;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
            color: #eee;
        }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #106eea;
        }

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 10px 15px 8px 15px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
            color: #106eea;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

    .portfolio .portfolio-item .portfolio-info {
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            color: #222222;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: #555555;
            font-size: 14px;
            margin-bottom: 0;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 40px;
            font-size: 24px;
            top: calc(50% - 18px);
            color: #3c3c3c;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: #106eea;
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 10px;
        }

    .portfolio .portfolio-item .portfolio-links {
        opacity: 0;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 3;
        position: absolute;
        transition: all ease-in-out 0.3s;
    }

        .portfolio .portfolio-item .portfolio-links a {
            color: #fff;
            margin: 0 2px;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .portfolio .portfolio-item .portfolio-links a:hover {
                color: #6ba7f5;
            }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 20px;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #106eea;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #106eea;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    padding: 60px 0;
}

    .team .member {
        margin-bottom: 20px;
        overflow: hidden;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
    }

        .team .member .member-img {
            position: relative;
            overflow: hidden;
        }

        .team .member .social {
            position: absolute;
            left: 0;
            bottom: 30px;
            right: 0;
            opacity: 0;
            transition: ease-in-out 0.3s;
            text-align: center;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: #222222;
                margin: 0 3px;
                padding-top: 7px;
                border-radius: 4px;
                width: 36px;
                height: 36px;
                background: rgba(16, 110, 234, 0.8);
                display: inline-block;
                transition: ease-in-out 0.3s;
                color: #fff;
            }

                .team .member .social a:hover {
                    background: #3b8af2;
                }

            .team .member .social i {
                font-size: 18px;
            }

        .team .member .member-info {
            padding: 25px 15px;
        }

            .team .member .member-info h4 {
                font-weight: 700;
                margin-bottom: 5px;
                font-size: 18px;
                color: #222222;
            }

            .team .member .member-info span {
                display: block;
                font-size: 13px;
                font-weight: 400;
                color: #aaaaaa;
            }

            .team .member .member-info p {
                font-style: italic;
                font-size: 14px;
                line-height: 26px;
                color: #777777;
            }

        .team .member:hover .social {
            opacity: 1;
            bottom: 15px;
        }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

    .pricing .box h3 {
        font-weight: 400;
        margin: -20px -20px 20px -20px;
        padding: 20px 15px;
        font-size: 16px;
        font-weight: 600;
        color: #777777;
        background: #f8f8f8;
    }

    .pricing .box h4 {
        font-size: 36px;
        color: #106eea;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        margin-bottom: 20px;
    }

        .pricing .box h4 sup {
            font-size: 20px;
            top: -15px;
            left: -3px;
        }

        .pricing .box h4 span {
            color: #bababa;
            font-size: 16px;
            font-weight: 300;
        }

    .pricing .box ul {
        padding: 0;
        list-style: none;
        color: #444444;
        text-align: center;
        line-height: 20px;
        font-size: 14px;
    }

        .pricing .box ul li {
            padding-bottom: 16px;
        }

        .pricing .box ul i {
            color: #106eea;
            font-size: 18px;
            padding-right: 4px;
        }

        .pricing .box ul .na {
            color: #ccc;
            text-decoration: line-through;
        }

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #106eea;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        background: #3b8af2;
    }

.pricing .featured h3 {
    color: #fff;
    background: #106eea;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #106eea;
    color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

    .faq .faq-list {
        padding: 0;
        list-style: none;
    }

        .faq .faq-list li {
            border-bottom: 1px solid #d4e5fc;
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .faq .faq-list .question {
            display: block;
            position: relative;
            font-family: #106eea;
            font-size: 18px;
            line-height: 24px;
            font-weight: 400;
            padding-left: 25px;
            cursor: pointer;
            color: #0d58ba;
            transition: 0.3s;
        }

        .faq .faq-list i {
            font-size: 16px;
            position: absolute;
            left: 0;
            top: -2px;
        }

        .faq .faq-list p {
            margin-bottom: 0;
            padding: 10px 0 0 25px;
        }

        .faq .faq-list .icon-show {
            display: none;
        }

        .faq .faq-list .collapsed {
            color: black;
        }

            .faq .faq-list .collapsed:hover {
                color: #106eea;
            }

            .faq .faq-list .collapsed .icon-show {
                display: inline-block;
                transition: 0.6s;
            }

            .faq .faq-list .collapsed .icon-close {
                display: none;
                transition: 0.6s;
            }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}

    .contact .info-box i {
        font-size: 32px;
        color: #106eea;
        border-radius: 50%;
        padding: 8px;
        border: 2px dotted #b3d1fa;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #777777;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
    padding: 30px;
}

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            -webkit-animation: animate-loading 1s linear infinite;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form .form-group {
        margin-bottom: 20px;
    }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

        .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
            border-color: #106eea;
        }

    .contact .php-email-form input {
        padding: 10px 15px;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
    }

    .contact .php-email-form button[type=submit] {
        background: #106eea;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #3b8af2;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #444444;
    font-size: 14px;
}

    #footer .footer-newsletter {
        padding: 50px 0;
        background: #f1f6fe;
        text-align: center;
        font-size: 15px;
    }

        #footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
            text-align: left;
        }

            #footer .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #106eea;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }

                #footer .footer-newsletter form input[type=submit]:hover {
                    background: #0d58ba;
                }

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: #fff;
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 24px;
                margin: 0 0 15px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
            }

                #footer .footer-top .footer-contact h3 span {
                    color: #106eea;
                }

            #footer .footer-top .footer-contact p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Roboto", sans-serif;
                color: #777777;
            }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            color: #444444;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #106eea;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #777777;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #106eea;
                    }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #106eea;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #3b8af2;
                color: #fff;
                text-decoration: none;
            }

    #footer .copyright {
        text-align: center;
        float: left;
    }

    #footer .credits {
        float: right;
        text-align: center;
        font-size: 13px;
        color: #444444;
    }

@media (max-width: 768px) {
    #footer .copyright, #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}
/*22/11/22*/
.sidebar {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 45px;
}

    .sidebar a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .sidebar a:hover {
            color: #f1f1f1;
        }

    .sidebar .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

.openbtn {
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    border: none;
    background-color: none;
}

    .openbtn:hover {
        background-color: none;
    }

#main {
    transition: margin-left .5s;
    padding: 6px;
    top: 0;
    z-index: 9;
    width: 100%;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {
        padding-top: 15px;
    }

        .sidebar a {
            font-size: 18px;
        }
}

/* side bar css end*/



/* fliter search css start  */


.topnav {
    position: relative;
    overflow: hidden;
    /*background-color: #d9d9d9;*/
}



    .topnav a:hover {
        background-color: none;
        color: #fff;
    }

    .topnav a.active {
        background-color: none;
        color: white;
        font-size: 36px;
    }

.topnav-centered a {
    float: right;
    font-family: 'Audiowide', cursive;
}

.topnav-right {
    float: right;
}

.headerMenuFont {
    font: normal normal 800 16px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.headerfont2 {
    font: normal normal medium 14px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}




/*searchbar*/




.has-search .form-control {
    text-align: center;
    border-radius: 15px;
    outline: none;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.cartimage {
    position: absolute;
    height: 28px;
}

.cartcount {
    position: relative;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 10px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 15px;
    right: -10px;
}



/*carousel*/
/*.carousel-inner {
  padding: 1em;
}
.card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  height:100%;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
  .carousel-inner {
    display: flex;
  }
}
.card .img-wrapper {
    max-width: 100%;   
    display: flex;
    justify-content: center;
    align-items: center;
}
.card img {
    max-height: 100%;
}
@media (max-width: 767px) {
  .card .img-wrapper {
  
  }
}*/

/*Userdropdown*/

.username {
    font-family: Poppins;
    /*font: normal normal medium 14px Montserrat;*/
    font-size: 14px;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.dropbtn {
    background-color: #fff;
    color: #000;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #fff;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #fff;
}

/*corousel slider*/
#news-slider {
    margin-top: 80px;
}

.post-slide {
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
}

    .post-slide .post-img {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        margin: -12px 15px 8px 15px;
        margin-left: -10px;
    }

        .post-slide .post-img img {
            width: 100%;
            height: auto;
            transform: scale(1,1);
            transition: transform 0.2s linear;
        }

    .post-slide:hover .post-img img {
        transform: scale(1.1,1.1);
    }

    .post-slide .over-layer {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%);
        transition: all 0.50s linear;
    }

    .post-slide:hover .over-layer {
        opacity: 1;
        text-decoration: none;
    }

    .post-slide .over-layer i {
        position: relative;
        top: 45%;
        text-align: center;
        display: block;
        color: #fff;
        font-size: 25px;
    }

    .post-slide .post-content {
        background: #fff;
        padding: 2px 20px 40px;
        border-radius: 15px;
    }

    .post-slide .post-title a {
        font-size: 15px;
        font-weight: bold;
        color: #333;
        display: inline-block;
        text-transform: uppercase;
        transition: all 0.3s ease 0s;
    }

        .post-slide .post-title a:hover {
            text-decoration: none;
            color: #3498db;
        }

    .post-slide .post-description {
        line-height: 24px;
        color: #808080;
        margin-bottom: 25px;
    }

    .post-slide .post-date {
        color: #a9a9a9;
        font-size: 14px;
    }

        .post-slide .post-date i {
            font-size: 20px;
            margin-right: 8px;
            color: #CFDACE;
        }

    .post-slide .read-more {
        padding: 7px 20px;
        float: right;
        font-size: 12px;
        background: #2196F3;
        color: #ffffff;
        box-shadow: 0px 10px 20px -10px #1376c5;
        border-radius: 25px;
        text-transform: uppercase;
    }

        .post-slide .read-more:hover {
            background: #3498db;
            text-decoration: none;
            color: #fff;
        }

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

    .owl-controls .owl-buttons .owl-prev {
        background: #fff;
        position: absolute;
        top: -13%;
        left: 15px;
        padding: 0 18px 0 15px;
        border-radius: 50px;
        box-shadow: 3px 14px 25px -10px #92b4d0;
        transition: background 0.5s ease 0s;
    }

    .owl-controls .owl-buttons .owl-next {
        background: #fff;
        position: absolute;
        top: -13%;
        right: 15px;
        padding: 0 15px 0 18px;
        border-radius: 50px;
        box-shadow: -3px 14px 25px -10px #92b4d0;
        transition: background 0.5s ease 0s;
    }

        .owl-controls .owl-buttons .owl-prev:after,
        .owl-controls .owl-buttons .owl-next:after {
            content: "\f104";
            font-family: FontAwesome;
            color: #333;
            font-size: 30px;
        }

        .owl-controls .owl-buttons .owl-next:after {
            content: "\f105";
        }

@media only screen and (max-width:1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}


.bg1 {
    background-color: #E33D44;
    color: #fff;
    border-radius: 12px;
}

.bg1Black {
    background-color: #000;
    color: #fff;
    border-radius: 12px;
}

.orderByHeader, h2 {
    color: #000;
    text-align: center;
    font: normal normal bold 30px/45px Poppins;
    letter-spacing: 0px;
    opacity: 1;
    letter-spacing: 0px;
    font-weight: 1000;
}

/* #brandName{
font: normal normal medium 15px/19px Montserrat;
letter-spacing: 0px;
color: #000000;
opacity: 1;
} */

.itemtitle {
    text-align: center;
    font: normal normal 600 12px/15px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.orderbycategoryT1 {
    background-image: url('../img/category/categoryred12.png');
    background-repeat: no-repeat;
    background-size: auto;
    position: relative;
    border-radius: 12px;
    color: #fff;
    height: 305px;
    width: 100%;
    box-shadow: 5px 5px 20px #888888;
}



.orderbycategory {
    background-color: #fff;
    height: 140px;
    position: relative;
    border-radius: 12px;
    color: #000;
    box-shadow: 5px 5px 20px #888888;
}

.categoryname {
    position: absolute;
    top: 8px;
    left: 16px;
    font-family: Poppins;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0px;
    opacity: 1;
}

.categoryimage {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.containertrending {
    position: absolute;
}

.bottom-right {
    background-color: red;
    position: absolute;
    bottom: 5px;
    right: 35px;
}


.trendingitem {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 15px;
}

.offerbtntext {
    font: normal normal medium 15px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}


.linehight {
    line-height: 18px;
}

.tier {
    font: normal normal bold 20px Futura;
    letter-spacing: 0px;
    color: #000000;
    line-height: 1px;
}
/*29/11/22*/
.tierBtnGreen {
    background-color: #1FC39D !important;
    border-bottom-right-radius: 12px !important;
    border-top-left-radius: 12px !important;
    color: #fff;
    padding: 5px 15px 5px 15px;
    text-align: center;
    width: 100px;
}
/*29/11/22*/
.tierBtnGrey {
    background-color: #DBDBDB !important;
    /*border-bottom-right-radius: 12px !important;
    border-top-left-radius: 12px !important;*/
    color: black !important;
    padding: 5px 15px 5px 15px;
    text-align: center;
    width: 80px;

}

.fcgreenbold {
    text-align: center;
    font: normal normal bold 40px Raleway;
    letter-spacing: 0px;
    color: #258878;
}

.fcnormaltext {
    text-align: center;
    font: normal normal 600 14px Raleway;
    letter-spacing: 0px;
    color: #000000;
}
/*Modified by Ashutosh sir 5/9/22*/
.redbtn {
    font: normal normal 600 15px/19px Montserrat;
    padding: 10px 50px 10px 50px;
    color: #fff;
    background: #E33D44 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
    border: none;
}

    .redbtn:hover {
        font: normal normal 600 15px/19px Montserrat;
        padding: 10px 50px 10px 50px;
        color: #fff;
        background: #cf1e25 0% 0% no-repeat padding-box;
        border-radius: 8px;
        opacity: 1;
        border: none;
    }


.footertextsm {
    text-align: left;
    font: normal normal normal 15px Raleway;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.whitetxt {
    color: #fff !important;
}

.inp {
    border: none;
    border-bottom: 1px solid #fff;
    padding: 5px 10px;
    outline: none;
    background-color: #000;
    color: #fff;
}



[placeholder]:focus::-webkit-input-placeholder {
    transition: text-indent 0.4s 0.4s ease;
    text-indent: -100%;
    color: #fff !important;
}

.footertextarea {
    border-radius: 12px;
}

.modalheading {
    font: normal normal bold 30px Futura;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.modalcategoryheading {
    font: normal normal medium 15px/19px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.footerbtn {
    border: 1px solid #FFFFFF;
    border-radius: 9px;
    opacity: 1;
    color: #FFFFFF;
}

/*menu page*/

.navigation {
    width: 100%;
}

/* reset our lists to remove bullet points and padding */
.mainmenu, .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font: normal normal medium 16px/20px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

    /* make ALL links (main and submenu) have padding and background color */
    .mainmenu a {
        display: block;
        background-color: #fff;
        text-decoration: none;
        padding: 10px;
        color: #000;
    }
        /* Prasun bairagi 22/9/22 */
        /* add hover behaviour */
        .mainmenu a:focus {
            /*background-color: #C5C5C5;*/
            color: #C34141;
        }

.mainmenuselected {
    /*background-color: #C5C5C5;*/
    color: #C34141;
}

/* when hovering over a .mainmenu item,
  display the submenu inside it.
  we're changing the submenu's max-height from 0 to 200px;
*/

.mainmenu li:hover .submenu {
    display: block;
    max-height: 100%;
}

/*
  we now overwrite the background-color for .submenu links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/

.submenu a {
    background-color: transparent;
    font-weight: normal;
}

    /* hover behaviour for links inside .submenu */
    .submenu a:hover {
        background-color: #666;
    }

/* this is the initial state of all submenus.
  we set it to max-height: 0, and hide the overflowed content.
*/
.submenu {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.5s ease-out;
}

.categoryselected {
    font-weight: 600;
    color: #C34141 !important;
}

.menucategoryheader {
    font: normal normal 600 16px Poppins;
    padding: 10px;
}

.menuheaderline {
    width: 26vw; /*Added by Prasun Bairagi 12/9/22*/
    position: relative;
}

    /*Modified by Prasun Bairagi 12/9/22*/
    .menuheaderline:after {
        /*content: "";
        display: block;
        width: 130px;
        height: 1px;
        background: #707070;*/
        /*left: 150px;*/
        /*left: 96px;
        top: 60%;
        position: absolute;*/
        content: "";
        display: inline-block;
        width: 130px;
        height: 1px;
        margin: 17px 0px 0px 20px;
        background: #707070;
        position: absolute;
    }

/*Added by Prasun Bairagi 12/9/22*/
@media only screen and (max-width:450px) {
    .menuheaderline {
        width: 55vw;
        position: relative;
    }
}

.itemname {
    font: normal normal 600 14px Poppins;
}

.itemdesc {
    font: normal normal normal 12px Raleway;
}

.nutritioninfo {
    font: italic normal normal 14px Poppins;
    letter-spacing: 0px;
    color: #4A7CED;
}


.joinfoodstatext {
    font: normal normal normal 14px Raleway;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.orderByHeaderFoodsta {
    font: normal normal bold 60px Futura;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.limitedoffertxt {
    font: normal normal medium 14px Raleway;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.smileimg {
    margin-bottom: 3px;
}

.menuordertype {
    text-align: center;
    font: normal normal normal 14px/29px Raleway;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}
/*19/11/22*/
.nav-tabs .nav-link {
    background: #F5F5F5;
}

.nav-tabs:hover .nav-link:hover {
    background: #C34141 !important;
    color: #fff;
    opacity: 1;
}



.ordertypetext1 {
    font: normal normal normal 14px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.lgcheckpoutinactive {
    background: #F5F5F5 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 8px 8px;
    opacity: 1;
    width: 100%;
    font: normal normal 600 12px Montserrat;
    color: #CECECE;
}

.lgcheckpoutactive {
    background: #C34141 0% 0% no-repeat padding-box;
    border-radius: 0px 0px 8px 8px;
    color: #fff;
    opacity: 1;
    font: normal normal 600 12px Montserrat;
}
/*Prasun bairagi 28/11/12*/
.additembtn {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EC1C24;
    border-radius: 8px;
    opacity: 1;
    text-align: center;
    font: normal normal normal 14px/18px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    /*min-width: 70px;*/
    width: 100px;
}


.svgpathdesign {
    background-image: url('../img/Path 1673.svg');
}

.trendingimg {
    position: relative;
    text-align: center;
}

.trendingordertag {
    font-family: Montserrat;
    font-size: 10px;
    color: #fff;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #e33d44;
    padding: 5px 15px 5px 15px;
    border-radius: 8px 0px 8px 0px;
}

.whatzupcontainer {
    position: relative;
    text-align: center;
    color: white;
}

.whatstop-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.whatsimg {
    width: 50px;
}
/*29/11/22*/
.whatstop-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.whatscentered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.whosfoodstaheader {
    font-family: Poppins !important;
    font-size: 35px !important;
    font-weight: 800 !important;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    line-height: 35px;
}

.foodstatext {
    font: normal normal normal 12px Montserrat;
    letter-spacing: 0px;
    color: #fff;
}

.foodstatextbold {
    font: normal normal normal 600 12px Montserrat;
    letter-spacing: 0px;
    color: #fff;
}

.foodstacontainer1, .whosfoodstasvgcurve {
    position: relative;
}

.redwave {
    position: absolute;
}

.redsvgimage {
    width: 100%;
}

.foodsta1 {
    /*position: absolute;
    width: 35%;
    top: 100px;*/
    /*Code below Modified by Prasun Bairagi 3/9/2022 for 1440 px*/
    position: absolute;
    width: 20vw;
    top: 9vw;
}



.foodsta2 {
    /*position: absolute;
    top: -150px;
    left: 200px;*/
    /*Code below Modified by Prasun Bairagi 3/9/2022 for 1440 px*/
    width: 23vw;
    position: absolute;
    top: -11vw;
    left: 14vw;
}

.foodsta3 {
    /*position: absolute;
    width: 20%;
    right: 0px;
    top: 100px;*/
    /*Code below Modified by Prasun Bairagi 3/9/2022 for 1440 px*/
    position: absolute;
    width: 10vw;
    top: 4vw;
    left: 39vw;
}

.foodsta4 {
    /*position: absolute;
    width: 40%;
    top: 180px;
    right: 150px;*/
    /*Code below Modified by Prasun Bairagi 3/9/2022 for 1440 px*/
    position: absolute;
    width: 20vw;
    top: 14vw;
    left: 21vw;
}

.foodsta5 {
    /*position: absolute;
   width: 12%;
    top: 250px;
    right: 15px;*/
    /*Code below Modified by Prasun Bairagi 3/9/2022 for 1440 px*/
    position: absolute;
    width: 6vw;
    top: 15vw;
    left: 42vw;
}


.menusubcategoryheader {
    font: italic normal normal 12px Poppins;
    letter-spacing: 0px;
    color: #000000;
    padding-left: 30px;
    opacity: 1;
}

.menusubheaderline {
    position: relative;
    max-width: 50vw; /*Modified by Prasun Bairagi 12/9/22*/
}

    .menusubheaderline:before {
        content: " ";
        height: 1px;
        width: 21px;
        background: #707070;
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
    }

/*Added by Prasun Bairagi 12/9/22*/
@media only screen and (max-width:450px) {
    .menusubheaderline {
        position: relative;
        max-width: 90vw;
    }
}

/*menu banner*/

.menubanner {
    position: relative;
}

.menubannertopleft {
    position: absolute;
    top: 18px;
    left: 132px;
}

@media only screen and (max-width: 600px) {
    .menubannertopleft {
        position: absolute;
        top: 8px;
        left: 10px;
    }

    .menubannerbrandlogo {
        width: 75px;
    }
}

.menubannercentered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menubannercenteredbottom {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.changebrand {
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    font: normal normal 600 12px Poppins;
    color: #fff;
}

    .changebrand:hover {
        border: 2px solid #FFFFFF;
        border-radius: 8px;
        font: normal normal 600 12px Poppins;
        color: #fff;
    }


.addressSelection {
    background-color: #FFFFFF;
    /*height: 425px;*/
}

.cartheaderlocation {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
}

:focus {
    outline: none;
}


.cartlocationinput {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #929fba;
    font: normal normal 500 102x Montserrat;
}

    .cartlocationinput ~ .border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
    }

    .cartlocationinput :focus ~ .border {
        width: 100%;
        transition: 0.5s;
    }

.filterlocationbox {
    height: 200px;
    overflow-y: auto;
}

.cartlocationfilter {
    font: normal normal normal 10px Montserrat;
    line-height: 11px;
}

.cartmaplink {
    font: normal normal normal 12px Raleway;
    letter-spacing: 0px;
    color: #2E89CC;
}




.sidebarRight {
    height: 85%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 7%;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 5px 5px 5px 5px #C8C8C8;
    border-radius: 12px 0px 0px 12px;
}

    .sidebarRight a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

        .sidebarRight a:hover {
            color: #f1f1f1;
        }
/*21/11/22*/
.itemselectionSlider {
    position: absolute;
    height: 43px;
    width: 43px;
    background-color: #C34141;
    border-radius: 50%;
    top: 10px;
    left: -21px;
    z-index: 999999;
}

.sidebarRight .closebtn {
    position: relative;
    color: #fff;
    font-size: 20px;
    top: -9px;
    left: -20px;
}
/*19/11/22*/
.sliderrightheart {
    position: relative;
    top: -41px;
    left: 275px;
}

.rightslideritemname {
    font: normal normal 600 12px Poppins;
}

.rightslideritemimage {
    width: 125px;
}

.rightslidersubheading {
    font: normal normal 600 12px Montserrat;
    letter-spacing: 0px;
    /*color: #000;*/
}

.spicelevel {
    display: inline-block;
}

.rightsliderbadges {
    font-size: 10px !important;
    font-family: Montserrat;
}


.rightslideritemoption {
    font: normal normal 10px Raleway;
    line-height: 10px;
}

.rightslidercartbtn {
    color: #FFF;
    border-radius: 8px;
    font-size: 12px;
    background: #C34141;
}

.carteditorder {
    font: normal normal normal 10px Montserrat;
    margin: 2px 0px 2px 0px;
}

.itemqty {
    font: normal normal 800 14px Montserrat;
    letter-spacing: 10px;
}

.addedcartitems {
    overflow: auto;
}
/*24/11/22*/
.addedcartitemssidebar {
    overflow: auto;
    max-height: 175px;
}

.cartsubtotal {
    font: normal normal 600 12px Montserrat;
}

.cartsaving {
    font: normal normal normal 8px Montserrat;
    letter-spacing: 0px;
    color: #1E9A65;
}

.cartdelivery {
    font: normal normal normal 8px Montserrat;
    letter-spacing: 0px;
    color: #5F5F5F;
}

.itemcount {
    color: #9A9A9A;
}
/*24/11/22*/
.checkoutcartitems {
    /*max-height:200px;*/
    max-height: 175px;
    overflow: auto;
}


/*scrollbar design*/

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #C7C7C7;
    border-radius: 5px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #A0A0A0;
    }

/*scrollbar design End*/


.cartapplypromoinactive {
    border: 1px dashed #A8A8A8;
    font: normal normal 600 10px Montserrat;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}




.cartapplycreditactive {
    border: 1px dashed #C34141;
    font: normal normal 600 10px Montserrat;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}


.foodinstruction {
    border-radius: 8px;
    width: 100%;
}


.reqstcutlery {
    font: normal normal normal 12px Montserrat;
}

.recommendscultery {
    font: normal normal normal 8px Montserrat;
    color: #6C6C6C;
}

.checkoutaddons {
    width: 72px;
}

.checkoutaddonsitemname {
    font: normal normal 600 10px Poppins;
}

.checkoutaddonitemprice {
    font: normal normal normal 9px Montserrat;
}

.accordianheadertxtactive {
    font: normal normal 600 18px Poppins;
    color: #000000;
}


.accordianheadertxtinactive {
    font: normal normal 600 18px Poppins;
    color: #A0A0A0;
}

.logintextbox {
    width: 20em;
    margin: .5em 0 0 0;
    padding: .5em;
    border-radius: 8px;
}
/*21/11/22*/
.leftslidelogo {
    width: 59%;
    margin-left: 20px;
}

.leftsliderclose {
    position: absolute;
    top: -5px;
    right: 5px;
    z-index: 9999999;
}

.navtext {
    font: normal normal normal 12px Montserrat !important;
    color: #fff;
}
/*30/11/22*/
.leftsliderbottomtext {
    position: absolute;
    bottom: 75px;
    left: 12px;
}


.loginbtn {
    background-color: #E50019;
    border-radius: 10px;
    color: #fff;
}
    /*22/11/22*/
    .loginbtn:hover {
        background-color: #f5606a !important;
        border-radius: 8px;
        color: #fff !important;
    }

.applycreditmodal {
    border: 2px dashed #C34141 !important;
}

.creditmodalheader {
    font: normal normal bold 18px Poppins !important;
    color: #7E7E7E !important;
}

.creditmodalusername {
    font: normal normal 600 14px/21px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.creditmodalsubheader {
    font: normal normal normal 12 Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.creditpoints {
    font: normal normal bold 12 Montserrat;
    letter-spacing: 0px;
    color: #C34141;
}

.ptsvalues {
    font: normal normal normal 10px Montserrat;
    letter-spacing: 0px;
    color: #959595;
}

.dot {
    height: 36px;
    width: 36px;
    background-color: #E33D44;
    border-radius: 50%;
    line-height: 36px;
    display: inline-block;
    color: #fff;
}

.checkoutmap {
    width: 125px;
}

.checkoutaddress {
    font: normal normal normal 10px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.cehckoutaddaddress {
    font: normal normal normal 12px Montserrat;
    letter-spacing: 0px;
    color: #1B5FCB;
}

/** sidebar **/

.slide-enter-active,
.slide-leave-active {
    transition: transform 0.2s ease;
}

.slide-enter,
.slide-leave-to {
    transform: translateX(100%);
    transition: all 150ms ease-in 0s;
}

.sidebar-backdrop {
    background-color: rgba(19, 15, 64, .4);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    cursor: pointer;
}
/*21/11/22*/
.sidebar-panel {
    overflow: visible;
    /*overflow-y: auto;*/
    background-color: #fff;
    color: #000000;
    position: fixed;
    right: 0;
    top: 0%;
    height: 90vh;
    z-index: 1003;
    padding: 0px; /*3rem 20px 2rem 20px;*/
    width: 300px;
    text-align: left;
}



.applycouponmodal {
    border: 1px dashed #148B6E !important;
}

.card, .card-header {
    background-color: #fff !important;
    border: none !important;
    border-bottom: 1px solid #777777 !important;
}


.cehckoutaddaddress {
    font: normal normal normal 10px Montserrat;
    letter-spacing: 0px;
    color: #1B5FCB;
}

.nav-tabs, .nav-link {
    border: none !important;
    /*background-color:#fff !important;*/
}

.leftsliderbg {
    background-color: #111111 !important;
}

.additemmodalname {
    font: normal normal 600 14px Poppins !important;
    letter-spacing: 0px;
    color: #000000;
}

.additemmodaldesc {
    font: normal normal normal 12px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

input[type='checkbox'] {
    accent-color: #e50019;
}

.s27banner {
    position: relative;
}

.s27bannertext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.rewardheader {
    font: normal normal bold 16px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.rewarddesc {
    font: normal normal normal 13px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.rewardsubdesc {
    font: normal normal 600 13px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.rewardtiertype {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rewardcontent {
    font: normal normal bold 24px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.rewardSubcontent {
    font: normal normal bold 18px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.rewardcontainer {
    padding-left: 250px;
    padding-right: 250px;
}

.ordertrackerheader {
    font: normal normal 600 20px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.ordertrackertext {
    font: normal normal normal 16px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.ordertrackertext1 {
    font: normal normal normal 12px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.delivertime {
    font-family: Montserrat;
    font-size: 10px;
    letter-spacing: 0px;
    color: #838383;
}

/*order tracking*/

.ordertracker {
    position: relative;
}


/*22/11/22*/
.hh-grayBox {
    margin-bottom: 20px;
    padding: 0px 150px;
    margin-top: -25px;
}
/*.pt45{padding-top:45px;}*/
.order-tracking {
    text-align: center;
    width: 25%;
    position: relative;
    display: block;
}

    .order-tracking .is-complete {
        display: block;
        position: relative;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        border: 0px solid #AFAFAF;
        background-color: #D1D1D1;
        margin: 0 auto;
        transition: background 0.25s linear;
        -webkit-transition: background 0.25s linear;
        z-index: 2;
    }
        /*22/11/22*/
        .order-tracking .is-complete:after {
            display: block;
            position: absolute;
            content: '';
            height: 14px;
            width: 14px;
            /*width: 7px;*/
            top: -2px;
            bottom: 0;
            left: 8px;
            /*left: 5px;*/
            margin: auto 0;
            border-radius: 50%;
            /*border: 0px solid #AFAFAF;
	border-width: 0px 2px 2px 0;*/
            transform: rotate(45deg);
            opacity: 0;
        }

    .order-tracking.completed .is-complete {
        border-color: #C34141;
        border-width: 0px;
        background-color: #C34141;
    }
        /*22/11/22*/
        .order-tracking.completed .is-complete:after {
            border-color: #C34141;
            /*border-width: 0px 3px 3px 0;*/
            width: 14px;
            left: 8px;
            opacity: 1;
        }

    .order-tracking p {
        color: #A4A4A4;
        font-size: 16px;
        margin-top: 8px;
        margin-bottom: 0;
        line-height: 20px;
    }

        .order-tracking p span {
            font-size: 14px;
        }

    .order-tracking.completed p {
        color: #000;
    }

    .order-tracking::before {
        content: '';
        display: block;
        height: 6px;
        width: calc(100% - 40px);
        background-color: #D1D1D1;
        top: 13px;
        position: absolute;
        left: calc(-50% + 20px);
        z-index: 0;
    }
    /*22/11/22*/
    .order-tracking:first-child:before {
        display: none;
    }

    .order-tracking.completed:before {
        background-color: #C34141;
    }

/*order-tracking form mobile*/ /*22/11/22*/

/*order tracking*/
@media only screen and (max-width:767px) {

    .ordertracker {
        position: relative;
    }


    /*22/11/22*/
    .hh-grayBox {
        margin-bottom: 20px;
        padding: 0px;
        /*padding: 35px;*/
        margin-top: -25px;
    }
    /*.pt45{padding-top:45px;}*/
    .order-tracking {
        text-align: center;
        width: 25%;
        position: relative;
        display: block;
    }

        .order-tracking .is-complete {
            display: block;
            position: relative;
            border-radius: 50%;
            height: 30px;
            width: 30px;
            /*border: 0px solid #AFAFAF;*/
            background-color: #D1D1D1;
            margin: 0 auto;
            transition: background 0.25s linear;
            -webkit-transition: background 0.25s linear;
            z-index: 2;
        }
            /*22/11/22*/
            .order-tracking .is-complete:after {
                background-color: white;
                border-radius: 50%;
                display: block;
                position: absolute;
                content: '';
                height: 14px;
                width: 14px;
                top: 0px;
                /*top: -2px;*/
                bottom: 0;
                left: 8px;
                /*left: 5px;*/
                margin: auto 0;
                border: 0px solid white;
                /*border-width: 0px 2px 2px 0;*/
                transform: rotate(45deg);
                opacity: 1;
            }

        .order-tracking.completed .is-complete {
            border-color: #C34141;
            border-width: 0px;
            background-color: #C34141;
        }

            .order-tracking.completed .is-complete:after {
                border-color: #fff;
                border-radius: 50%;
                width: 14px;
                /*width: 7px;*/
                left: 8px;
                opacity: 1;
            }
        /*22/11/22*/
        .order-tracking p {
            color: #A4A4A4;
            font-size: 12px;
            /*font-size: 16px;*/
            margin-top: 8px;
            margin-bottom: 0;
            line-height: 20px;
        }

            .order-tracking p span {
                font-size: 14px;
            }

        .order-tracking.completed p {
            color: #000;
        }

        .order-tracking::before {
            content: '';
            display: block;
            height: 6px;
            width: calc(100% - 40px);
            background-color: #D1D1D1;
            top: 13px;
            position: absolute;
            left: calc(-50% + 20px);
            z-index: 0;
        }
        /*22/11/22*/
        .order-tracking:first-child:before {
            display: none;
        }

        .order-tracking.completed:before {
            background-color: #C34141;
        }
}



.deactivebtn {
    background: #D5D5D5 0% 0% no-repeat padding-box;
    color: #fff;
    font-size: 12px;
    font-family: Montserrat;
}
/*22/11/22*/
.greybgbtn {
    border: 1px solid #707070;
    color: #000;
    font-size: 12px;
    font-family: Montserrat;
}

.ordertrackertxtbig {
    text-align: center;
    font: normal normal bold 30px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.ordertrackertxtsm {
    text-align: center;
    font: normal normal 10px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}


.ordertrackeroffer {
    text-align: center;
    font: normal normal bold 15px Montserrat;
    letter-spacing: 0px;
    color: #000;
}


.foodstacoinheader {
    font: normal normal bold 24px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.greendashedborder1 {
    border: 2px dashed #1FC39D;
    border-radius: 12px;
}

.greenbottomborder {
    border-bottom: 2px dashed #1FC39D;
}

.greenleftborder {
    border-left: 2px dashed #1FC39D;
}

.coinusername {
    font-size: 18px;
    font-family: Montserrat;
    font-weight: normal;
    letter-spacing: 0px;
    color: #000000;
}

.coinuserheader2 {
    font-size: 30px;
    font-family: Montserrat;
    font-weight: normal;
    letter-spacing: 0px;
    color: #000000;
}

.cointierheader {
    font: normal normal medium 16px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.cointiernameheader {
    font: normal normal bold 25px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.knowmorebtn {
    border: 1px solid #000;
}

.coincount {
    font: normal normal bold 28px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.progress-bar-color {
    background-color: #1FC39D !important;
}

.coinlabelsm {
    font: normal normal normal 12px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.remainingcoins {
    font: normal normal medium 10px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.expirydate {
    font: normal normal bold 20px/45px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.coinvoucherheader {
    font: normal normal bold 20px/45px Raleway;
    letter-spacing: 0px;
    color: #000000;
}

.coinhistoryheader {
    font: normal normal bold 19px Futura;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.seemore {
    font: normal normal bold 19px Raleway;
    letter-spacing: 0px;
    color: #318FE0;
    opacity: 1;
}

.cointranshistory {
    font-size: 10px;
    font-family: Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

/*Modified by Prasun bairagi 3/9/22*/
.addToCart {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 98vw;
    border-radius: 8px;
    background-color: #ED212F;
    color: white;
    font: normal normal 600 14px Poppins;
    z-index: 999;
}


header {
    padding: 10px 16px;
    background: #555;
    color: #f1f1f1;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

    .sticky + .content {
        padding-top: 102px;
    }
/*21/11/22*/
.floatmenubutton {
    position: fixed;
    bottom: 83px;
    right: 25px;
    z-index: 900;
}

.yourOrderheader {
    font: normal normal bold 22px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.yourOrdersubheader {
    font: normal normal bold 17px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.myOrderLocation {
    font: normal normal 600 12px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.myOrderOrderDateTime, .myOrderOrderId {
    font: normal normal normal 10px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.Orderdetailslink {
    font: normal normal 600 10px Montserrat;
    letter-spacing: 0px;
    color: #329AE6;
}



.greendot {
    height: 10px;
    width: 10px;
    position: relative;
    top: 2px;
    background-color: none;
    border-radius: 50%;
    border: .2em solid #74B055;
    display: inline-block;
}

.starchecked {
    color: #FFCB00;
}

.graydashedborder {
    border: 2px dashed #A8A8A8;
    border-radius: 12px;
}

.loadmorebtn {
    border: 1px solid #E33D44;
    border-radius: 8px;
    font: normal normal 400 10px Montserrat;
    letter-spacing: 0px;
    color: #5A5A5A;
}

.changeaddressbtn {
    border: 1px solid #E33D44;
    background-color: #E33D44;
    border-radius: 8px;
    font: normal normal 400 10px Montserrat;
    letter-spacing: 0px;
    color: #fff;
}

.select-mini {
    font-size: 11px;
    height: 30px;
    width: 100px;
}

.profilesubheader {
    font-size: 10px;
    font-family: Montserrat;
    letter-spacing: 0px;
    color: #848484;
}

.profilesubheader1 {
    font-size: 12px;
    font-weight: 600;
    font-family: Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.myprofilebtn {
    width: 180px;
}

.btn-active {
    background: #E33D44;
    border-radius: 8px;
    font-size: 12px;
    font-family: Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.btn-inactive {
    background: #F2F2F2;
    border-radius: 8px;
    font-size: 12px;
    font-family: Montserrat;
    letter-spacing: 0px;
    color: #242424;
}

.editaddressbtn {
    border: 1px solid #329AE6;
    border-radius: 8px;
    font-size: 10px;
    font-family: Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.changepasssubheader {
    text-align: left;
    font: normal normal 600 12px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.editpersonaldetals {
    font: normal normal 600 10px Montserrat;
    letter-spacing: 0px;
    color: #329AE6;
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: .01em solid #000;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 19px;
        background-color: #000;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #E33D44;
    border: none;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: white;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.ItemPrice {
    font: normal normal normal 18px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.slider.round:before {
    border-radius: 50%;
}

.communicationsubheader1 {
    font: normal normal 600 12px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.communicationsubheader2 {
    font: normal normal normal 10px Montserrat;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

/*Code below Modified by Prasun Bairagi 22/9/22*/
div.paOrderbyBrand {
    padding: 0% 15% !important;
}

@media screen and (max-width:1000px) {
    div.paOrderbyBrand {
        padding: 0% 5% !important;
    }

    .ItemPrice {
        font: normal normal normal 12px Poppins;
        letter-spacing: 0px;
        color: #000000;
    }

    .itemname {
        font: normal normal 600 12px Poppins;
    }
}



.qtySelector {
    width: 100px;
    height: 30px;
    display: inline-flex;
    padding: 3px 3px 3px 3px;
    border-radius: 8px;
    /* UI Properties */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EC1C24;
    border-radius: 8px;
    opacity: 1;
}

    .qtySelector .fa {
        color: #fff;
        font-size: 10px;
        width: 20px;
        height: 20px;
        float: left;
        cursor: pointer;
        display: flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        background: #EC1C24 0% 0% no-repeat padding-box;
        border-radius: 50%;
        opacity: 1;
    }

        .qtySelector .fa:active {
            padding: 5px 5px;
        }

    .qtySelector .qtyValue {
        border: none;
        color: #000;
        font: normal normal 600 14px/18px Montserrat;
        padding: 0px;
        width: 55px;
        height: 100%;
        float: left;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }


/*Code below Modified by Prasun Bairagi 2/9/2022*/
div.paOrderbyBrand {
    padding: 0% 15% !important;
}

@media screen and (max-width:768px) {
    div.paOrderbyBrand {
        padding: 0% 5% !important;
    }

    .ItemPrice {
        font: normal normal normal 12px Poppins;
        letter-spacing: 0px;
        color: #000000;
    }

    .itemname {
        font: normal normal 600 12px Poppins;
    }
}

.modal-content {
    border: none;
}
/*Added by Prashant sir 5/9/22*/
/*28/11/22*/
.footermobileimage {
    left: -55px;
    position: relative;
    top: -140px;
}
/*Added by Prashant sir 5/9/22*/ /*28/11/22*/
@media only screen and (max-width:767px) {
    .footermobileimage {
        left: 0px;
        position: relative;
        top: -60px;
    }

    .footermobileplaystore {
        position: relative;
        top: -160px;
    }
}
/*Added by Prashant sir 5/9/22*/
.footertextsm {
    text-align: left;
    font: normal normal normal 15px Montserrat;
    letter-spacing: 0px;
    color: #FFFFFF;
}
/*Added by Prasun Bairagi 6/9/22*/
@media only screen and (max-width:400px) {
    .foodsta1 {
        position: absolute;
        width: 42vw;
        top: 51vw;
    }

    .foodsta2 {
        width: 47vw;
        position: absolute;
        top: 1vw;
        left: 34vw;
    }

    .foodsta3 {
        position: absolute;
        width: 17vw;
        top: 34vw;
        left: 80vw;
    }

    .foodsta4 {
        position: absolute;
        width: 39vw;
        top: 40vw;
        left: 5vw;
    }

    .foodsta5 {
        position: absolute;
        width: 11vw;
        top: 54vw;
        left: 85vw;
    }
}

/*Added by Prasun Bairagi 9/9/22*/
.blacksubmitbutton {
    color: white;
    background-color: black;
    width: 117px;
    height: 35px;
    border: 1px solid #FFFFFF;
    border-radius: 9px;
    opacity: 1;
}
/*Added by Prasun Bairagi 9/9/22*/
/*TOOLTIP CSS starts*/


.tooltip {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: #fff;
        color: black;
        text-align: center;
        box-shadow: 5px 5px 6px #555555;
        border-radius: 6px;
        padding: 7px 9px;
        position: absolute;
        z-index: 1;
        bottom: 100%;
        left: 30%;
        margin-left: -60px;
        opacity: 0;
        transition: opacity 0.3s;
        /*font-weight: 200;*/
        font-size: 12px;
    }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: red transparent transparent transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }
/*TOOLTIP CSS ends*/

/*Added by Prasun Bairagi 10/9/22*/
.ordertexttracker {
    font: normal normal 300 14px/18px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}
/*Added by Prasun Bairagi 10/9/22*/ /*28/11/22*/
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 1;
    right: -16% !important;
}

/*Added by Prasun Bairagi 10/9/22*/
.nav-tabs .nav-item .nav-link.active {
    background-color: #C34141 !important;
    color: #ffffff !important;
}

/*****Floating dropdown*****/
/*Added by Prasun Bairagi 10/9/22*/

.dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 10;
    right: -73% !important;
    top: -220px;
}

.dropdown:hover .dropdown-content2 {
    display: block;
}

.dropdown-content2 a {
    color: black;
    text-decoration: none;
    display: block;
}

    .dropdown-content2 a:hover {
        background-color: #fff;
    }

/****Timeoutbar start******/
/*Added by Prasun Bairagi 12/9/22*/

.round-time-bar div {
    height: 3px;
    width: 100%;
    background: red;
}

@keyframes roundtime {
    to {
        /* More performant than animating `width` */
        transform: scaleX(0);
    }
}

.round-time-bar div {
    /* ... */
    animation: roundtime calc(var(--duration) * 1s) steps(var(--duration)) forwards;
    transform-origin: left center;
}

.round-time-bar[data-style="smooth"] div {
    animation: roundtime calc(var(--duration) * 1s) linear forwards;
}
/****Timeoutbar ends******/

/*Added by Prasun Bairagi 12/9/22*/ /*Modified by Prasun Bairagi 23/11/22*/
.rewardcontainer2 {
    padding: 0 21vw;
}
.profileinfocontainer {
    padding: 0 21vw;
}

@media only screen and (max-width:600px) {
    .rewardcontainer2 {
        padding: 0 9vw;
    }
    .profileinfocontainer{
         padding: 0 7vw !important;
    }
}
/*Added by Prasun Bairagi 12/9/22*/
/*Signup form starts*/

.form-title {
    padding: 10px 40px 0px;
}

.beside {
    display: flex;
    justify-content: space-between;
}

.sbmtbtn {
    color: #383532;
    background-color: #fff;
    
    width: 30%;
    margin-top: 15px;
    cursor: pointer;
    border: 2px solid #383532;
    border-radius: 300px;
    outline: none;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    .sbmtbtn:hover {
        background-color: #383532;
        color: #fff;
        border: 2px solid #383532;
    }

input, signupform::placeholder, .signupfont {
    color: #383532;
    background-color: #fff !important;
    font-size: 14px;
}

.btndiv {
    position: relative;
}

/*Signup form ends*/

/*Added by Prasun Bairagi 13/9/22*/
.nav-link2.active {
    border-radius: 2px;
    border-bottom: 3px solid #C34141 !important;
}
/*Added by Prasun Bairagi 15/9/22*/
.myprofiletabbuttons {
    border: white !important;
    border-radius: 6px;
    width: 150px;
    /*width:150px !important;*/
    color: black;
    font-size: 12px;
    font-family: Montserrat;
    letter-spacing: 0px;
}

/*floating menu btn*/



.floatingButtonWrap {
    display: block;
    position: fixed;
    bottom: 45px;
    right: 60px;
    z-index: 900;
}

.floatingButtonInner {
    position: relative;
}
/*Prasun bairagi 18/11/22*/
/*.floatingButton {
    display: inline-block;
    text-align: center;
   
    opacity: 1;
    transition: all 0.4s;
    box-shadow: 0px 8px 15px rgba(238, 238, 230, .3);
}*/

.floatingButton {
    display: inline-block;
    text-align: center;
    /*background: -webkit-linear-gradient(45deg, #8769a9, #507cb3);
    background: -o-linear-gradient(45deg, #8769a9, #507cb3);
    background: linear-gradient(45deg, #8769a9, #507cb3);*/
    background: #E33D44;
    color: #fff;
    position: absolute;
    border-radius: 8px;
    bottom: 36px;
    left: 54% !important;
    right: auto !important;
    opacity: 0.3;
    opacity: 1;
    transition: all 0.4s;
    box-shadow: 0px 8px 15px rgba(238, 238, 230, .3);
}

/*Prasun Bairagi 21/11/22*/
/*.floatingMenu {
    max-height:250px;
    min-height:0px;
    overflow:auto;
    left: 50% !important;
    right: auto !important;
    text-align: center !important;
    transform: translate(-31%, 0) !important;
    position: absolute;
    bottom: 96%;
   
    display: none;
    background-color: #ffffff;
}*/
.floatingMenu {
    max-height: 264px;
    min-height: 0px;
    overflow: auto;
    left: 50% !important;
    right: auto !important;
    text-align: center !important;
    transform: translate(-31%, 0) !important;
    position: absolute;
    bottom: 60px;
    display: none;
    background-color: #ffffff;
}

    .floatingMenu li {
        width: 100%;
        list-style: none;
        text-align: left;
    }

        .floatingMenu li a {
            padding: 2px 8px;
            display: inline-block;
            background: none;
            color: #000 !important;
            border-radius: 5px;
            white-space: nowrap;
            transition: all 0.4s;
            /*-webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
            box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);*/
        }

            .floatingMenu li a:hover {
                margin-right: 10px;
                text-decoration: none;
            }

.menuscroll {
    height: 300px;
    width: 50vw;
    overflow-y: auto;
    overflow-x: hidden;
}

/*floating button ends*/

.greybtn {
    font: normal normal 600 15px/19px Montserrat;
    padding: 10px 50px 10px 50px;
    color: #000;
    background: #F5F5F5 0% 0% no-repeat padding-box;
    border-radius: 8px;
    opacity: 1;
}

.pac-container {
    z-index: 99999 !important;
}

/*Added by Prasun Bairagi 16/9/22*/
@media only screen and (max-width:600px) {

    .greentopborder {
        display: block;
        border-top: 2px dashed #1FC39D;
    }

    .greenleftborder {
        border-left: none;
    }
}

/* Added by Prasun Bairagi 19/9/22 */
/****** FONTS PrasunBairagi***********/

/**Montserrat****/
/* 9-13 */
.MM9 {
    font: normal normal 500 9px/11px Montserrat-Medium !important;
}

.MR10 {
    font: normal normal 10px/13px Montserrat-Regular !important;
}

.MM10 {
    font: normal normal 500 10px/13px Montserrat-Medium !important;
}

.MR11 {
    font: normal normal 11px/14px Montserrat-Regular !important;
}

.ML12 {
    font: normal normal 12px/15px Montserrat-Light !important;
}

.MR12 {
    font: normal normal 12px/15px Montserrat-Regular !important;
}

.MM12 {
    font: normal normal 500 12px/15px Montserrat-Medium !important;
}

.MEB12 {
    font: normal normal 900 12px/15px Montserrat-ExtraBold !important;
}

.MSB12 {
    font: normal normal 600 12px/15px Montserrat-SemiBold !important;
}

.MM13 {
    font: normal normal 500 13px/20px Montserrat-Medium !important;
}

.MR13 {
    font: normal normal 13px/16px Montserrat-Regular !important;
}

/* 14 */
.ML14 {
    font: normal normal 14px/16px Montserrat-Light !important;
}

.MM14 {
    font: normal normal  14px/16px Montserrat-Medium !important;
}

.MEB14 {
    font: normal normal 900 14px/19px Montserrat-ExtraBold !important;
}

.MSB14 {
    font: normal normal 600 14px/18px Montserrat-SemiBold !important;
}

.MR14 {
    font: normal normal 14px/18px Montserrat-Regular !important;
}

.MMI14 {
    font: normal normal italic 14px/18px Montserrat-MediumItalic !important;
}
/* 15 */
.MM15 {
    font: normal normal 500 15px/19px Montserrat-Medium !important;
}

.ML15 {
    font: normal normal 15px/29px Montserrat-Light !important;
}

.MR15 {
    font: normal normal 15px/19px Montserrat-Regular !important;
}

.MSB15 {
    font: normal normal 600 15px/24px Montserrat-SemiBold !important;
}

.MB15 {
    font: normal normal 700 15px/19px Montserrat-Bold !important;
}

.MEB15 {
    font: normal normal 900 15px/5px Montserrat-ExtraBold !important;
}
/* 18 */
.MB18 {
    font: normal normal 700 18px/22px Montserrat-Bold !important;
}

.MM18 {
    font: normal normal 18px/22px Montserrat-Medium !important;
}
/* 20 */
.MR20 {
    font: normal normal 20px/24px Montserrat-Regular !important;
}

.MB20 {
    font: normal normal 700 20px/45px Montserrat-Bold !important;
}

.MM20 {
    font: normal normal 500 20px/40px Montserrat-Medium !important;
}

.MSB20 {
    font: normal normal 600 20px/40px Montserrat-SemiBold !important;
}

.MSB22 {
    font: normal normal 700 22px/27px Montserrat-SemiBold !important;
}

.MEB28 {
    font: normal normal 900 28px/56px Montserrat-ExtraBold !important;
}
/* 30 */
.MB30 {
    font: normal normal 700 30px/23px Montserrat-Bold !important;
}

.MM30 {
    font: normal normal 500 30px/45px Montserrat-Medium !important;
}
/* 60 */
.MB60 {
    font: normal normal 700 50px/78px Montserrat-Bold !important;
}

/* ***Poppins**** */
/* 10-12 */
.PSB10 {
    font: normal normal 600 10px/16px Poppins-SemiBold !important;
}

.PSB12 {
    font: normal normal 600 12px/18px Poppins-SemiBold !important;
}

.PR12 {
    font: normal normal 12px/18px Poppins-Regular !important;
}

.PI12 {
    font: normal normal italic 12px/18px Poppins-Italic !important;
}
/* 14 */
.PR14 {
    font: normal normal 14px/21px Poppins-Regular !important;
}

.PSB14 {
    font: normal normal 600 14px/18px Poppins-SemiBold !important;
}
/* 15 */
.PB15 {
    font: normal normal 700 15px/41px Poppins-Bold !important;
}

.PI15 {
    font: normal normal italic 15px/23px Poppins-Italic !important;
}

.PB18 {
    font: normal normal 700 18px/29px Poppins-Bold !important;
}
/* 20 */
.PB20 {
    font: normal normal 700 20px/41px Poppins-Bold !important;
}

.PSB20 {
    font: normal normal 600 20px/30px Poppins-SemiBold !important;
}
/* 30 */
.PB30 {
    font: normal normal 700 30px/45px Poppins-Bold !important;
}
/* 60 */
.PB60 {
    font: normal normal 700 50px/67px Poppins-Bold !important;
}

/*****Raleway******/
/* 10 */
.RR10 {
    font: normal normal 10px/11px Montserrat-Regular !important;
}
/* 15 */
.REB15 {
    font: normal normal 900 15px/30px Montserrat-ExtraBold !important;
}



/*Added by Prasun Bairagi 20/9/22*/
/****** smaller screen FONTS PrasunBairagi***********/






.offerbtnimg {
    width: 20px;
    height: 16px;
}
/*Added by Prasun Bairagi 22/9/22*/
@media only screen and (max-width:600px) {
    .MSB22 {
        font: normal normal 700 18px/24px Montserrat-SemiBold !important;
    }

    .MB60 {
        font: normal normal 700 45px/78px Montserrat-Bold !important;
    }
}

/* Prasun bairagi 22/9/22 */


.accordianheadertxtactive:hover {
    color: #000 !important;
}

.ellipsename {
    width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*18/11/22*/
.checkboxsize {
    border-radius: 3px;
    width: 12px;
}
/*18/11/22*/
.uncheckboxsize {
    width: 12px;
}

.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * 0) !important;
}
/*Added by Prasun Bairagi 23/9/22*/
a {
    color: #000 !important;
    text-decoration: none;
}

.brandnewicon {
    position: relative;
}

.newiconright {
    left: 4rem;
    position: absolute;
    top: -2rem;
    font-size: 18px;
}

li.nav-item a {
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
}

    li.nav-item a.droplist {
        color: rgb(0, 0, 0) !important;
        text-decoration: none;
    }

.footerlogo {
    left: -4rem;
    padding-bottom: 2rem;
    position: absolute;
    height: 25rem;
}

@media only screen and (min-width:600px) and (max-width:900px) {
    .footerlogo {
        left: -8rem;
        padding-bottom: 2rem;
        position: absolute;
        height: 25rem;
    }
}

@media only screen and (max-width:599px) {
    .footerlogo {
        left: -6rem;
        padding-top: 7rem;
        padding-bottom: 0rem;
        position: absolute;
        height: 25rem;
    }
}

/*17/11/22*/
.addresscut {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/*18/11/22*/
.itemmenudesc {
    padding: 0px 10px;
    position: relative;
    top: -30px;
}
/*18/11/22*/
.brightredbtn {
    background-color: #ED212F !important;
    border-radius: 8px;
    color: #fff;
}
    /*22/11/22*/
    .brightredbtn:hover {
        background-color: #f5606a !important;
        border-radius: 8px;
        color: #fff !important;
    }
/*18/11/22*/
.brightredborderonly {
    border: 1px solid #ED212F !important;
    color: rgb(0, 0, 0);
}

    /*22/11/22*/
    .brightredborderonly:hover {
        background-color: #ED212F !important;
        border: 1px solid #ED212F !important;
        color: #fff !important;
    }
/*18/11/22*/
.addedcartitemssidebarmob {
    overflow: auto;
    height: 33vh;
}

/*21/11/22*/
/*.containerFloatpb{
    height:0px;position:fixed;top:82%; z-index:999;font-family: 'Montserrat', sans-serif; font-weight: 400; font-size:1rem; color:#fff;
}*/ /*21/11/22*/
/*.btnFloatpb{
        left: 50% !important;
    right: auto !important;
    text-align: center !important;
    transform: translate(70%, 0) !important;
    background-color:#ED212F;
    
}*/

.qty-input .product-qty, .qty-input .qty-count {
    background: transparent;
    color: inherit;
    font-weight: bold;
    font-size: inherit;
    border: none;
    display: inline-block;
    min-width: 0;
    height: 1.5rem;
    line-height: 1;
}

.qty-input .product-qty {
    width: 10px;
    min-width: 0;
    display: inline-block;
    text-align: center;
    appearance: textfield;
}

    .qty-input .product-qty::-webkit-outer-spin-button, .qty-input .product-qty::-webkit-inner-spin-button {
        appearance: none;
        margin: 0;
    }

.qty-input .qty-count {
    padding: 0;
    cursor: pointer;
    width: 2.5rem;
    font-size: 1.25em;
    text-indent: -100px;
    overflow: hidden;
    position: relative;
}

    .qty-input .qty-count:before, .qty-input .qty-count:after {
        content: "";
        height: 2px;
        width: 10px;
        position: absolute;
        display: block;
        background: #000;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }


.qty-input .qty-count--add:after {
    transform: rotate(90deg);
}
/*19/11/22*/
.changebrand::-webkit-scrollbar-track {
    margin: 13vh;
    box-shadow: inset 0 0 2px grey;
    border-radius: 10px;
}

.ordertypeactivebtn {
    background-color: #C34141 !important;
    color: white !important;
    border: 1px solid #C34141 !important;
}

.ordertypeInactivebtn {
    background-color: #f5f5f5 !important;
    color: black !important;
    border: 1px solid #EBEAEA !important;
}
    /*22/11/22*/
    .ordertypeInactivebtn:hover {
        background-color: #C34141 !important;
        color: white !important;
        border: 1px solid #C34141 !important;
    }

.qtyplusminusalign {
    margin: 0px 0px 0px -13px;
}
/*21/11/22*/
.newlabelonitem {
    font: normal normal 15px/21px Poppins-Regular !important;
    background-color: white;
    bottom: 27px;
    position: relative;
    left: 10px;
}

.leftsidebar-backdrop {
    background-color: rgba(19, 15, 64, .4);
    width: 0vw;
    height: 101vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1099;
    cursor: pointer;
}
/*24/11/22*/
#vouchersSlider .owl-nav {
    position: relative !important;
    top: -147px !important;
    height: 0px !important;
}

#vouchersSlider .owl-next {
    float: right !important;
}

#vouchersSlider .owl-stage-outer {
    -webkit-mask-image: linear-gradient(90deg, #000 80%, transparent);
}

#coinHistoryInfo {
    height: 65px;
    overflow: hidden;
}

#addOnSlider .owl-stage-outer {
    -webkit-mask-image: linear-gradient(90deg, #000 80%, transparent);
    margin: 0px -40px !important;
}

.addonsfixed {
    width: 72px !important;
    height: 72px !important;
}



/*25/11/22*/

#categoryBrands .owl-next {
    float: right !important;
}

#categoryBrands .owl-stage-outer {
    -webkit-mask-image: linear-gradient(90deg, #000 80%, transparent);
}
/*25/11/22*/
.brandsfixed {
    width: 77px !important;
    height: 77px !important;
}


#addonsselectorlg .owl-stage-outer {
    -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent);
}


/*25/11/22*/
#savedaddressslider .owl-nav {
    position: relative !important;
    top: -150px !important;
    height: 0px !important;
}

#savedaddressslider .owl-next {
    float: right !important;
}

#savedaddressslider .owl-stage-outer {
    -webkit-mask-image: linear-gradient(90deg, #000 80%, transparent);
}

#myModal .modal-fullscreen {
    height: 95% !important;
    top: 5% !important;
}

#myModal .modal-header {
    display: block;
}

#myModal .backmodal {
    height: 0px;
    position: relative;
    top: -40px;
}
/*26/11/22*/
#redflag {
    background-image: url('../img/others/redflagfull.png');
    background-size: inherit;
    background-repeat: no-repeat;
    margin-bottom: 80px;
}
/*26/11/22*/
.foodstaplate {
    position: relative;
    top: -30px;
}
/*26/11/22*/
@media only screen and (min-width:0px) and (max-width:600px) {
    .PB60 {
        font: normal normal 700 38px/49px Poppins-Bold !important;
    }
}
/*26/11/22*/
@media only screen and (min-width:0px) and (max-width:1100px) {
    .foodstaplate {
        position: relative;
        top: 30px;
    }
}
/*26/11/22*/
@media only screen and (min-width:800px) and (max-width:1100px) {
    #redflag {
        background-image: url('../img/others/redflagfull.png');
        background-size: inherit;
        background-repeat: no-repeat;
        margin-bottom: 150px;
    }
}
/*28/11/22*/
.imgcatfixed {
    width: 118px !important;
}
/*28/11/22*/
.itemgrpactive {
    font: normal normal 900 15px/15px Montserrat-ExtraBold !important;
    color: #C34141 !important;
}
/*28/11/22*/
.additembtn:hover {
    background: #FFFFFF 0% 0% no-repeat padding-box !important;
    border: 1px solid #EC1C24 !important;
    border-radius: 8px !important;
    opacity: 1 !important;
    text-align: center !important;
    font: normal normal 700 16px/18px Montserrat-Bold !important;
    letter-spacing: 0px !important;
    color: #C34141 !important;
    width: 100px !important;
}
/*28/11/22*/
.cloned {
    height: 0px !important;
}
/*28/11/22*/
.searchiconfix {
    position: relative !important;
    left: -38px !important;
    width: 0px !important;
}
/*28/11/22*/
.brandnameonsearchbar {
    white-space: nowrap;
    width: 0px;
    position: relative;
    left: 21px;
}
/*28/11/22*/
.brandimgsearchbarfix {
    position: relative;
    width: 22px;
    top: -2px;
}
/*28/11/22*/
.dropdowncus {
    border-radius: 15px;
}
/*29/11/22*/

/*29/11/22*/
.nav-tabs .nav-item .nav-link.active.greenbtntier, .nav-tabs:hover .nav-link.greenbtntier:hover {
    background-color: #258878 !important;
    color: #ffffff !important;
    border-radius:12px;
}
/*29/11/22*/
.nav-tabs .nav-item .nav-link.active.redbtntier, .nav-tabs:hover .nav-link.redbtntier:hover {
    background-color: #e50019 !important;
    color: #ffffff !important;
     border-radius:12px;
}
/*29/11/22*/
.nav-tabs .nav-item .nav-link.active.blackbtntier, .nav-tabs:hover .nav-link.blackbtntier:hover {
    background-color: black !important;
    color: #ffffff !important;
     border-radius:12px;
}
/*29/11/22*/
li.nav-item a.tierBtnGrey {
    color: black !important;
    text-decoration: none;
    border-radius:12px;
}
/*30/11/22*/
.loadmorebtn:hover {
    border: 1px solid #E33D44 !important;
    border-radius: 8px !important;
    font: normal normal 600 16px/24px Montserrat-SemiBold !important;
    letter-spacing: 0px !important;
    color: #C34141 !important;
}
/*pb 29/03/23*/
.myRewardBanner {
    position: relative;
    text-align: center;
    color: white;
}





.centeredbtn:hover {
    color: #fff;
    /*border: 1px solid #000;*/
}

.centeredbtnbrdr {
    border: 1px solid #fff;
    white-space: nowrap;
    border-radius: 8px;
    background-color: transparent;
}

@media only screen and (max-width:600px) {

    #rewardbannerbtns a {
        color: #fff !important;
        font: 12px 'Poppins-Regular';
    }

    .bannerImageReward {
        content: url('/assets/img/others/bannerrewardfoodstamob.jpg');
    }

    .opaqueBtn {
        background-color: rgba(5,5,5,0.55) !important;
        padding: 5px 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .centeredtxt {
        position: absolute;
        font: 20px 'Poppins-Bold';
        color: #fff;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }

    .centeredbtn {
        /*border: 1px solid #fff;*/
        padding: 4px 20px 4px 20px;
        /*border-radius: 8px;*/
        background-color: transparent;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        font: 16px 'Poppins-Regular';
        color: #fff;
    }

    .centeredlogo {
        position: absolute;
        color: #fff;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }

    .bannerlogo {
        height: 30px;
        width: 125px;
    }
}

@media only screen and (min-width:601px) and (max-width:1000px) {

    #rewardbannerbtns a {
        color: #fff !important;
        font: 14px 'Poppins-Regular';
    }

    .bannerImageReward {
        content: url('/assets/img/others/bannerrewardfoodstamob.jpg');
    }

    .opaqueBtn {
        background-color: rgba(5,5,5,0.55) !important;
        padding: 10px 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .centeredtxt {
        position: absolute;
        font: 45px 'Poppins-Bold';
        color: #fff;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }

    .centeredbtn {
        /*border: 1px solid #fff;*/
        padding: 4px 20px 4px 20px;
        /*border-radius: 8px;*/
        background-color: transparent;
        position: absolute;
        top: 56%;
        left: 50%;
        transform: translate(-50%, -50%);
        font: 16px 'Poppins-Regular';
        color: #fff;
    }

    .centeredlogo {
        position: absolute;
        color: #fff;
        top: 18%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }

    .bannerlogo {
        height: 40px;
        width: 166px;
    }
}

@media only screen and (min-width:1001px) {

    #rewardbannerbtns a {
        color: #fff !important;
        font: 14px 'Poppins-Regular';
    }

    .bannerImageReward {
        content: url('/assets/img/others/bannerrewardfoodsta.jpg');
    }

    .opaqueBtn {
        background-color: rgba(5,5,5,0.55) !important;
        padding: 10px 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .centeredtxt {
        position: absolute;
        font: 50px 'Poppins-Bold';
        color: #fff;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }

    .centeredbtn {
        /*border: 1px solid #fff;*/
        padding: 4px 20px 4px 20px;
        /*border-radius: 8px;*/
        background-color: transparent;
        position: absolute;
        top: 54%;
        left: 50%;
        transform: translate(-50%, -50%);
        font: 16px 'Poppins-Regular';
        color: #fff;
    }

    .centeredlogo {
        position: absolute;
        color: #fff;
        top: 18%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
    }

    .bannerlogo {
        height: 40px;
        width: 166px;
    }
}
/*pb 30/03/23*/
.progress-bar1 {
    height: 11px;
    border-radius: 14px;
    width: 100%;
    background-color: #e2eefd;
}

.progress1 {
    height: 100%;
    background-color: #1FC39D;
    border-radius: 14px;
    width: 10%;
}

.bannerImageReward {
    width: 100%;
    border-radius: 20px;
}

.opaqueBtn:hover, .opaqueBtn:active, .opaqueBtn:focus {
    background-color: rgba(228,28,34,0.8) !important;
    border: 1px solid rgba(228,28,34,0.8) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.voucherShadow {
    box-shadow: 1px 2px 9px #888888;
}

.staticVoucherHeading {
    line-height: 15px !important;
    color: #E41C22;
    font-size: 15px;
    font-family: 'AvenirNextLTPro-Bold';
}

.voucherName {
    line-height: 18px !important;
    font-size: 18px;
    font-family: 'AvenirNextLTPro-Bold';
}

.voucherCodeDetails {
    line-height: 13px !important;
    color: #E41C22;
    font-size: 10px;
    font-family: 'AvenirNextLTPro-Regular';
}

.voucherExpiry {
    line-height: 8px !important;
    font-size: 8px;
    font-family: 'AvenirNextLTPro-Regular';
}

.dropdown-box {
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

    .dropdown-box a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-box a:hover {
            background-color: #fff;
        }

.ASB15 {
    font: normal normal 600 15px/24px AvenirNextLTPro-Demi !important;
}

.AM14 {
    font: normal normal 500 14px/16px AvenirNextLTPro-Medium !important;
}

.AB30 {
    font: normal normal 700 30px/30px AvenirNextLTPro-Bold !important;
}

.ASB14 {
    font: normal normal 600 14px/18px AvenirNextLTPro-Demi !important;
}

.AB20 {
    font: normal normal 700 20px/45px AvenirNextLTPro-Bold !important;
}

.AB15 {
    font: normal normal 700 15px/18px AvenirNextLTPro-Medium !important;
}
.AB18 {
    font: normal normal  25px/28px AvenirNextLTPro-Bold ;
}

.AR14 {
    font: normal normal 14px/18px AvenirNextLTPro-Regular !important;
}


/*prashant 23-5-2023*/

.roundedimg {
    border-radius: 25px;
}

.lightgreybg {
    background-color: #F5F5F5;
    border-radius: 30px;
}

.redcolorbtn {
    background-color: #E50019;
    color: #fff;
    border: none;
}

.blackcolorbtn {
    background-color: #000;
    color: #fff;
    border: none;
}

.redcolorbtn:hover {
    background-color: #E50019 !important;
    border: none;
}

.blackcolorbtn:hover {
    border: 1px solid #2C2C2C;
}

footersection {
    position: relative;
    text-align: center;
}

.redwaveimg {
    position: relative;
    bottom: 92px;
    opacity: .5;
}


.b1logo {
    position: absolute;
    bottom: 9%;
    right: 8%;
}


.b2logo {
    position: absolute;
    top: 11%;
    left: 7%;
}

.footerfeedbacklogo {
    width: 100px;
}

.footerbtnred {
    background-color: #E51D22;
    color: #fff;
    font-size: 8px;
    font-family:'Montserrat-Medium';
    width: 100px;
    border-radius: 4px;
}

.foottextwhite {
    color: #fff;
    font-size: 12px;
     font-family:'Montserrat-Medium';
}
.lightgreybg {
    background-color: #EBE8E8;
    border-radius: 25px;
}

.profie-detail {
    position: relative;
    text-align: center;
    color: white;
}

.star-left {
    position: absolute;
    bottom: -70px;
    left: -65px;
    color: #000;
}

.txtred {
    color: #E50019;
}

.AB36 {
    text-align: center;
    font: normal normal  30px/32px AvenirNextLTPro-Bold;
    letter-spacing: 0px !important;
}

.AB26 {
    text-align: center;
    font: normal normal  26px/30px AvenirNextLTPro-Bold;
    letter-spacing: 0px;
}

.AB44 {
    font: normal normal 700 44px/46px AvenirNextLTPro-Bold !important;
}

.AR30 {
    font: normal normal 20px/25px AvenirNextLTPro-Bold !important;
}

.AN38 {
    font: normal normal 900 38px/24px AvenirNextLTPro-Bold !important;
}
.brheadingfont{
    
    font: normal normal  38px/24px AvenirNextLTPro-Bold !important;

}



.AR18 {
    font: normal normal  18px/20px AvenirNextLTPro-Demi !important;
}

.AN16 {
    font: normal normal 900 16px/18px AvenirNext-Medium !important;
}

.AN12 {
    font: normal normal 900 16px/26px AvenirNext-Medium !important;
}

.AR26 {
    font: normal normal 900 26px/26px AvenirNext-Medium !important;
}



.colorGrey {
    color: #8B8A8A;
}


.textBlack {
    color: #000;
}

.b1container {
    position: relative;
    text-align: center;
    color: white;
}

.b2offer {
    position: absolute;
    bottom: 42px;
    left: 48px;
}



.b1offer {
    position: absolute;
    bottom: 71px;
    right: 51px;
}

@media only screen and (max-width: 600px) {
    .redwaveimg {
        position: relative;
        bottom: 00px;
    }
    .foottextwhite {
    color: #fff;
    font-size: 4px!important;
     font-family:'Montserrat-Medium';
}
    .brand1logo {
        width: 80px;
    }

    .brand2logo {
        width: 50px;
    }

    .b1logo {
        position: absolute;
        bottom: 11%;
        right: 9%;
    }

    .b1offer {
        position: absolute;
        bottom: 35px;
        right: 34px;
    }


    .b2logo {
        position: absolute;
        top: 11%;
        left: 10%;
    }

    .AN38 {
        font: normal normal 900 25px/28px AvenirNextLTPro-Bold !important;
    }

    .foodstaicon {
        width: 19px !important;
    }

    .AN12 {
        font: normal normal 900 12px/26px AvenirNext-Medium !important;
    }

    .AR30 {
        text-align: center;
        font: normal normal  16px/23px AvenirNextLTPro-Bold !important;
        letter-spacing: 0px;
    }

    .b2offer {
        position: absolute;
        bottom: 28px;
        left: 31px;
    }

    .staricon {
        width: 80px;
    }

    .star-left {
        position: absolute;
        bottom: -36px;
        left: -31px;
    }

    .pprofileIcon {
        width: 63px;
        height: 63px;
    }

    .imageab{
     position: absolute;
    top: -42px;
    transform: translate(-50%);
}

   
}



/*madhu*/

.registrationcontainer {
    height: 100%;
    display: flex;
    /*flex-direction:column;*/
    align-items: center;
    justify-content: center;
}


.registrationcontent {
    background-color: white;
    width: 600px;
}

.form-title {
    padding: 10px 40px 0px;
}

/*form {
    padding: 0px 40px;
}*/

input[type=text], [type=email], [type=date] {
    border: none;
    border-bottom: 1px solid #8B8A8A;
    outline: none;
    width: 100%;
    margin: 8px 0;
    padding: 10px 0;
}

input[type=number] {
    border: none;
    border-bottom: 1px solid #8B8A8A;
    outline: none;
    margin: 8px 0;
    padding: 5px 0;
}



::placeholder, .regtxt {
    color: #8B8A8A !important;
    font: normal normal  24px/26px AvenirNextLTPro-Demi !important;
}

input :hover {
    background-color: red;
}

.genderdd {
    border: none;
    border-bottom: 1px solid #8B8A8A;
    outline: none;
    margin: 10px 0 0 0;
    padding: 5px 0;
    width: 50%;
}

.beside {
    display: flex;
    justify-content: space-between;
}


.btndiv {
    position: relative;
}

.center {
    margin: 0;
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}





.redtier {
    background-color: #E50019 !important;
    border-radius: 25px;
    color: #fff;
}

.redBorder {
    border: 5px dashed #E50019;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}







/*profile*/

.rewardcontainerhome {
    padding: 0 21vw;
}

.ptcContainer {
    padding: 0 21vw;
}
.rewardcontent {
    font: normal normal bold 24px Montserrat;
    letter-spacing: 0px;
    color: #000000;
}

.blackBg {
    background-color: #000;
    color: #fff;
    border-radius: 25px;
}

@media only screen and (max-width:600px) {
    .rewardcontainerhome {
        padding: 0 3vw !important;
    }
    .ptcContainer {
        padding: 0 12vw !important;
    }
}

.blackBorder {
    border: 5px dashed #000;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}

.pimageab {
    position: absolute;
    top: -72px;
    transform: translate(-50%);
}

.pgreenBorder /*modified*/ {
    border: 4px dashed #258878;
    /*font: normal normal 600 10px Montserrat;*/
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}
.predBorder {
    border: 4px dashed #E50019;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}
.pblackBorder {
    border: 4px dashed #000;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}
.textGreen {
    color: #258878;
}

.lightgreybg1 {
    background-color: #EBE8E8;
    border-radius: 35px;
    height: 50px;
}
.lightgreybg2 {
    background-color: #EBE8E8;
    border-radius: 35px;
   
}
.greentier {
    background-color: #258878;
    border-radius: 25px;
    color: #fff;
    font-size: 25px;
}

.textgrey{
    color:#A2A1A1;
}

.pAB36 {
    text-align: center;
    font: normal normal  36px/27px AvenirNextLTPro-Bold;
    letter-spacing: 0px;
}
.pAN38 {
    font: normal normal  24px/29px AvenirNextLTPro-Bold !important;
}
.pAN38lh{
    font: normal normal  24px/29px AvenirNextLTPro-Bold !important;
}
.pb1offer {
    position: absolute;
    bottom: 26%;
    right: 6vw;
}
.pb2offer {
    position: absolute;
    bottom: 16%;
    left: 6vw;
}
.pb1logo {
    position: absolute;
    bottom: 15%;
    right: 6vw;
}
.pb2logo {
    position: absolute;
    top: 15%;
    left: 6vw;
}
.pfoodstaicon {
        width: 20px;
        height:20px;
          
    }
.pfoodstaiconprof {
        width: 20px;
        height:20px;
            
    }

.pAN12 {
    font: normal normal  16px/16px AvenirNextLTPro-Bold !important;
}
.pAB14 {
    font: normal normal  20px/22px AvenirNextLTPro-Bold !important;
}
.pAR18 {
    font: normal normal  18px/20px AvenirNextLTPro-Demi !important;
}
.pAR12 {
    font: normal normal  14px/20px AvenirNextLTPro-Demi ;
}
.pAN10{
        font: normal normal 700 14px/16px AvenirNext-Regular !important;
    }
@media only screen and (max-width: 600px) {
    .redwaveimg {
        position: relative;
        bottom: 00px;
    }


    .pimageab {
        position: absolute;
        top: -38px;
        transform: translate(-50%);
    }

    .pprofileIcon {
        width: 63px;
        height: 63px;
    }
    .pfoodstaicon {
        width: 13px;
        height:13px;
        position:relative;
        top:-1px
           
    }
    .pfoodstaiconprof {
        width: 13px;
        height:13px;
           
    }
    .MSB14{
    font: normal normal 700 8px/10px Montserrat-SemiBold !important;
}
    .pAB36 {
    text-align: center;
    font: normal normal  20px/27px AvenirNextLTPro-Bold;
    letter-spacing: 0px;
}
    .pAN12 {
    font: normal normal  11px/14px AvenirNextLTPro-Bold !important;
}
    .registerdisclaimer {
    font: normal normal 11px/18px AvenirNextLTPro-Regular !important;
}
    .pAN38 {
    font: normal normal  14px/26px AvenirNextLTPro-Bold !important;
}
    .pAN38lh {
    font: normal normal  14px/16px AvenirNextLTPro-Bold !important;
}
    .AR26 {
    font: normal normal 900 15px/26px AvenirNext-Medium !important;
}
    .pAR18 {
        font: normal normal  14px/20px AvenirNextLTPro-Demi !important;
    }
    .pAR12 {
    font: normal normal  8px/13px AvenirNextLTPro-Demi !important;
}
    .pAB14 {
    font: normal normal  14px/20px AvenirNextLTPro-Bold !important;
}
    .pAN10{
        font: normal normal 700 10px/12px AvenirNext-Regular !important;
    }
    .pAB12 {
    font: normal normal 900 11px/14px AvenirNextLTPro-Bold !important;
}
    .AB18 {
    font: normal normal  18px/24px AvenirNextLTPro-Bold !important;
}
    .AB18medium {
    font: normal normal  18px/20px AvenirNextLTPro-Demi !important;
}
    .pb1offer {
        position: absolute;
        bottom: 26%;
        right: 11%;
    }
    .pb2offer {
        position: absolute;
        bottom: 11%;
        left: 8%;
    }
    .pb1logo {
        position: absolute;
        bottom: 12%;
        right: 10%;
    }
    .pb2logo {
        position: absolute;
        top: 19%;
        left: 9%;
    }
    .rewardCoinIcon{
    height: 60px !important;
    width: 60px !important;
    left: -44px;
    position: relative;

}
    ::placeholder, .regtxt {
    color: #8B8A8A !important;
    font: normal normal  17px/20px AvenirNextLTPro-Demi !important;
}
    .genderdd {
    border: none;
    border-bottom: 1px solid #8B8A8A;
    outline: none;
    margin: 8px 0 0 0 !important;
    padding: 5px 0;
    width: 50%;
}
    .pgreenBorder /*modified*/ {
    border: 2px dashed #258878;
    /*font: normal normal 600 10px Montserrat;*/
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}
.predBorder {
    border: 2px dashed #E50019;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}
.pblackBorder {
    border: 2px dashed #000;
    padding: 5px 10px 5px 10px;
    background-color: #fff !important;
}
.headerlogo{
    height:30px !important;
}
.registercontainer {
    width:350px !important;
}
.bannerheightreward{
    height:22vh !important;

}
.imgbannerresp{
    object-fit: cover;
    width: 84vw !important;
    /* max-width: 100%; */
    height: 100%;
}
.coinrewardsm{
    height:45px !important
}
.brheadingfont{
    font: normal normal  20px/28px AvenirNextLTPro-Bold !important;
}
.AR13{
    font: normal normal  13px/13px AvenirNextLTPro-Demi !important;
}
.brandMRfont {
    font: normal normal  8px/10px Montserrat-Medium !important;
}
.footerlocationfont{

    font: normal normal 5px/6px Montserrat-SemiBold !important;

}
.rewardsubheadcontent {
    font: normal normal  11px/13px AvenirNextLTPro-Bold !important;
}
.tierinfosubheadcontent{
    font: normal normal  13px/13px AvenirNextLTPro-Medium !important;
}
.foodstacoinprogress{
    width:15px !important;
}
.brandtitle{
    font: normal normal 20px/30px AvenirNextLTPro-Bold !important;
}
}

@media only screen and (min-width: 601px) {
    .redwaveimg {
        position: relative;
        top: 0px;
    }
}

.rewardCoinIcon{
    height: 80px;
    width: 80px;
    left: -44px;
    position: relative;
}
.pAB12 {
    font: normal normal 900 18px/20px AvenirNextLTPro-Bold ;
}
#editBtn a:hover,#editBtn a:focus,#editBtn a:active{
    color:#fff !important;
}
.form-control{
    border-radius:0px !important
}
.form-select{
    border-radius:0px !important
}

.AB18medium {
    font: normal normal  25px/28px AvenirNextLTPro-Demi ;
}
.MSB14{
    font: normal normal 700 14px/16px Montserrat-SemiBold ;
}
.headerlogo{
    height:40px;
}
.registercontainer {
    width:500px ;
}
.imgbannerresp{
    object-fit: cover;
    width: 71vw;
    /* max-width: 100%; */
    height: 100%;
}
.bannerheightreward{
    height:52vh;
}
.AR13{
    font: normal normal  20px/22px AvenirNextLTPro-Demi ;
}
.redcolorbtn:hover
{
    background-color:#E50019 !important;
    color:#fff!important;
    border :none !important;
}

 
.coinrewardsm{
    height:60px
}
.blackcolorbtn:hover{

     background-color:#000!important;
    color:#fff!important;
     border :none!important;
}
@media only screen and (min-width: 602px) and (max-width: 770px)
{
    .rewardcontainerhome {
    padding: 0 15vw!important;
}
    .ptcContainer {
        padding: 0 15vw !important;
    }
}
.uppercaseText{
 text-transform:uppercase !important;
}

.brandMRfont {
    font: normal normal  16px/13px Montserrat-Medium;
}
.footerlocationfont{

    font: normal normal 14px/18px Montserrat-SemiBold ;

}
.rewardsubheadcontent {
    font: normal normal  15px/18px AvenirNextLTPro-Bold;
}
.tierinfosubheadcontent{
    font: normal normal  20px/22px AvenirNextLTPro-Medium ;
}
.registerdisclaimer {
    font: normal normal 16px/18px AvenirNextLTPro-Regular ;
}
.foodstacoinprogress{
    width:27px ;
}
.brandtitle{
    font: normal normal  26px/30px AvenirNextLTPro-Bold ;
}
@media only screen and (min-width: 601px) and (max-width: 998px){
    .rewardcontainerhome {
    padding: 0 10vw !important;
}
     .ptcContainer {
    padding: 0 10vw !important;
}

}
@media only screen and (min-width:1400px){
    .pb1offer {
    position: absolute;
    bottom: 26%;
    right: 9vw !important;
}
}
/*.bottomfixed{
    position:fixed;
    bottom:0px;
}*/
/*feedback*/

.textbold
{
    font-family: AvenirNextLTPro-Bold;
    font-size:60px;
    font-weight:700;
}



.starrating > input {display: none;}  /* Remove radio buttons */

.starrating > label:before { 
  content: "\f005"; /* Star */
  
  font-size: 2em;
  font-family: FontAwesome;
  display: inline-block; 
}

.starrating > label
{
  color: #C2C1C1; /* Start color when not clicked */
}
.starrating>.starSelected
{
    color:	#ff0000 !important;
}
.check
{
    font-size:35px;
}

.feedbackfoottextwhite
{
    color:#fff;
    font-size:8px;
}

@media (min-width:576px){
    
    .Content{

        width:480px;
        margin:auto;
    }
    
}


.error{
    font-size:12px;
    color:red !important;
}
.feedbackInput::placeholder{
     font: normal normal 14px/16px Montserrat-Light !important;
}
.feedbackInput{
    border-radius:25px!important;
     border:1px solid #000!important;
}
.feedbackcontent {
    
    margin: auto;
    position: fixed;
    bottom: 0px;
}
@media (min-width: 576px){
.feedbackcontent {
    width: 480px;
    margin: auto;
    position: fixed;
    bottom: 0px;
}
}
.footerlocationtext{
    font: normal normal 600 8px/10px Montserrat-SemiBold !important;
}
#closebtn{
    text-decoration:none!important;
    background-color:black!important ;
    color:white!important;
    padding:5px 10px!important;
    border-radius:5px!important;
}
.ptcheading{
  
    font:normal normal 22px/25px Montserrat-Medium;
    color:#E50019;
}
.ptcsubheading{
    font: normal normal 12px/16px AvenirNextLTPro-Demi;
}
.ptccontent{
    font: normal normal 12px/16px AvenirNextLTPro-Regular;
}
.foodstaicon{
    width:29px
}