/********** Template CSS **********/
/*
     Theme Colours
    ----------------
    only change The variable : --primary, --dark, --light, --primary55, --custom-gradient. 
      ------X---------------
    change the Box Shadows of Primay and Light colour values Like 
    --------------------------------------------------------------
    Primary box-shadow  rgba(159, 193, 49, a)  hsl(5, 99%, 47%)    Don't Change a = Value
    Light   box-shadow  rgba(246, 250, 235, a) hsl(76, 60%, 95%)   Don't Change a = Value
      ------X---------------
     ::-webkit-scrollbar-track 
    box-shadow: inset 0 0 5px #e5efc2; Change 85%  of primary Colour  
       ------X---------------
*/
:root {
    --primary: #9FC131; /*47% rgba(159, 193, 49, 0.25) hsl(74, 60%, 47%)*/
    --dark: #692475; /*Use for Combination*/
    --light: #f6faeb; /*95%*/ /*rgba(246, 250, 235, .95) hsl(76, 60%, 95%)*/
    --primary55: #acd147; /*55% new */
    --primary85: #e5efc2; /*85% new*/
    --secondary: #E93C05;
    --tertiary: #555555;
    --custom-gradient: linear-gradient(360deg, rgba(2, 0, 36, 1) 5%, rgba(159, 193, 49, 1) 100%);
}

/* Custom Scrollbars */

/* width */
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e5efc2; /*85% of primary*/
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Custom Scrollbars - End */

.svg-fill-color {
    fill: var(--primary);
}

td > a {
    color: var(--dark);
    text-decoration: none;
}


.quick-order {
    position: fixed;    
    right: 30px;
    top: 25%;
    width:180px;
    height:120px;
    z-index: 99;     
    border-radius: 50%;
    color: #fff;
    border-radius:5px;
}

.back-to-top {
position: fixed;
display: none;
right: 30px;
bottom: 30px;
z-index: 999;
background-color: var(--primary);
border-radius: 50%;
color: #fff;
}

.back-to-top:hover {
    background-color: #fff;
    border-color: var(--primary);
    color: var(--primary);
}

.whatsapp-icon {
position: fixed;
display: none;
right: 30px;
bottom: 100px;
z-index: 999;
background-color: #25d366;
border-radius: 50%;
color: #fff;
}

.whatsapp-icon:hover {
    background-color: #25d366;
    color: #fff;
}

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

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

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


/*** Spinner ***/
#spinner {
opacity: 0;
visibility: hidden;
transition: opacity .5s ease-out, visibility 0s linear .5s;
z-index: 99999;
}

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

.spinner {
width: 6rem;
height: 6rem;
background-color: var(--light);
}

#spinner img {
position: absolute;
/* Position the image in the center of the spinner */
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}



/***Section heading ***/
.section-heading {
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    color: var(--dark);
    text-align: center;
    vertical-align: middle;
    user-select: none;
   /* background-color: var(--primary);*/
    border: 1px solid var(--dark);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 8px;
}


/*** Button ***/
.btn {
transition: .5s;
font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
color: var(--light);
}

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

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

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

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

.text-primary {
color: var(--bs-primary) !important;
}


/*** Header ***/
.carousel-caption {
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
text-align: start;
z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
width: 3rem;
height: 3rem;
background-color: var(--primary);
border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
#header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}

/* .page-header {
padding-top: 12rem;
padding-bottom: 6rem;
background: url(../assets/img/header.jpg) top left no-repeat;
background-size: cover;   
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
color: var(--dark);
} */

.page-header {
position: relative;
padding-top: 18rem;
padding-bottom: 12rem;
overflow: hidden;
}

.page-header img.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--dark);
}


.page-header-shopping {
    position: relative;  
    height:100px;
   /* overflow: hidden;*/
}

/*** Facts ***/
.facts {
background: linear-gradient(rgba(246, 250, 235, .95), rgba(246, 250, 235, .95)),url(../img/bg.png); /*light*/
color: var(--dark);
}

/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}



/*** Team ***/
.team-item {
position: relative;
padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-social a {
font-family: "Jost", sans-serif;
font-size: 20px;
font-weight: bold;
color: var(--dark);
}

.team-item:hover .team-social a {
color: #FFFFFF;
}



.team-item:hover .team-social .btn {
background: #FFFFFF;
}

.team-item .team-social .btn:hover {
background: var(--primary);
color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
position: relative;
text-align: center;
padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
margin: 0 auto;
width: 100px;
height: 100px;
}

.testimonial-carousel .owl-dots {
margin-top: 25px;
display: flex;
align-items: flex-end;
justify-content: center;
}

.testimonial-carousel .owl-dot {
position: relative;
display: inline-block;
margin: 0 5px;
width: 30px;
height: 30px;
border: 1px solid var(--light);
border-radius: 30px;
transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/

#footer .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    display: inline-flex;
    line-height: 1;    
}

#footer .logo img {
    max-height: 40px;
}

#footer .logo h2 {
    margin: auto;
    font-family: "Bookman Old Style", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color:var(--dark);
    padding:0.25rem;
}

.footer {
    background: linear-gradient(rgba(246, 250, 235, .95), rgba(246, 250, 235, .95)),url(../img/bg.png); /*light*/
    /* background : var(--dark); */
    color: var(--dark);
    /* border-top: 1px solid rgba(0, 43, 128, .07); */
}

.footer h4 {
    color: var(--dark);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--dark);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

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

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer-social {
    color: var(--dark);  
    border-color: var(--dark);
}

.footer-social:hover {
    color: var(--dark);
    border-color: var(--primary);
    background-color:var(--primary);

}

.footer-social:focus {
    box-shadow: 0 0 0 0.25rem rgba(159, 193, 49, 0.5);
}

.copyright {
    color: var(--dark);
    background: var(--light);
    border-top: 1px solid var(--primary);
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--primary);
}

/*Mts site style*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
background: #fff;
transition: all 0.5s;
z-index: 997;
padding: 15px 0;
top: 0px;
box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Bookman Old Style", Georgia, serif;
}

#header .logo a {
    color: var(--primary);
}

#header .logo img {
    max-height: 40px;
}


/*--------------------------------------------------------------
* Appointment Button *
--------------------------------------------------------------*/

.appointment-btn {
margin-left: 25px;
background: var(--primary);
color: var(--dark);
border-radius: 50px;
padding: 8px 25px;
white-space: nowrap;
transition: 0.3s;
font-size: 14px;
display: inline-block;
}

.appointment-btn:hover {
    background: var(--primary55);
    color: #fff;
}

@media (max-width: 768px) {
.appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/*** Navbar ***/
/*** CompanyName Font ***/
.navbar h1 {
    font-family: "Bookman Old Style", Georgia, serif;
}

.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    background-color: var(--light);
    border-bottom: 1px solid rgba(246, 250, 235, .07); /*--light*/
}


/**
* Desktop Navigation 
*/

.navbar {
padding: 0;
background-color: #fff;
}

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

.navbar li {
    position: relative;
}

.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--tertiary);
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #fff;
    padding: 5px 2px;
}

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

.navbar .active {
    color: var(--primary);
    border-color: var(--primary);
}

.topmenu-links li::after {
    content: "";
    margin: auto; /*for starting from centre*/
    display: block;
    height: 2px;
    width: 0%;
    /*  position: absolute;*/
    /* left: 8px;
    bottom: 8px;*/
    background-color: transparent;
    transition: width 0.6s ease;
}

@media only screen and (min-width:992px) {
    .topmenu-links li:hover::after {
        width: 100%;
        background-color: var(--primary);
    }

    /*.topmenu-links li:hover:not(:has(.nav-link.active))::after {
    background-color: var(--primary);
    width: 100%;
    }
    */
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    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-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--primary);
    border: none;
}

.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: var(--primary);
}

.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: var(--primary);
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--primary);
}

@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(28, 47, 65, 0.9);  /*rgba(28, 47, 65, 0.9);*/
transition: 0.3s;
z-index: 9999;
}

.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 > ul > li {
    padding: 0;
    border-bottom:1px solid var(--primary);
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--tertiary);
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--primary);
}

.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: 9999; 
    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: var(--primary);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}
/*------------------------------------------------------------------------*/
/*Shopping Pagesstyle */
/*------------------------------------------------------------------------*/

.shopping-banner {
    border-color: var(--dark);
    background-image: url("../img/shopping-banner.jpg");
    background-repeat: no-repeat;
}


/* ** Item cart */
/*----------------------------------------------*/
/* Product Card*/
.product-card {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 5px;
    width: 280px;
    display: inline-block;
    vertical-align: top;
    /* text-align: center;*/
    transition: 0.3s;
    border-radius: 0.5rem;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
   /* box-shadow: 1px 2px 11px 4px rgb(14 55 54 /15%);*/
}
.product-card:hover {
    transform: scale(1.03);
    box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 5px;
}

/* Discount Offer */
.offer-container {
    position: relative;
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    margin: 5px auto;
    border-radius: 50%; /* Makes it circular */
    overflow: hidden; /* Ensures pseudo-element doesn't go outside */
}

.offer-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url("../img/discount.png") no-repeat center center; /* Replace with your image */
    background-size: cover;
    /*animation: rotate-bg 5s linear infinite;*/ /* Apply rotation animation */
    /*-webkit-animation: rotate-bg 5s linear infinite;*/
    z-index: 0; /* Behind the text */
}

.offer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px; /* Adjust as needed */
    font-weight: bold;
    color: #fff; /* Primary-color Adjust text color */
    text-align: center;
    z-index: 1; /* Ensure it stays above the rotating background */
}


/* Hover state: Fast rotation 4 times, then slows down */
.product-card:hover .discount-badge {
    animation: fastRotate 1.5s ease-out forwards;
}


/*Text Cross*/
.cross {
    position: relative;
    display: inline-block;
}

    .cross::before, .cross::after {
        content: '';
        width: 100%;
        position: absolute;
        right: 0;
        top: 50%;
    }

    .cross::before {
        border-bottom: 2px solid red;
        -webkit-transform: skewY(-10deg);
        transform: skewY(-10deg);
    }

    .cross::after {
        border-bottom: 2px solid red;
        -webkit-transform: skewY(10deg);
        transform: skewY(10deg);
    }
/*video icoo*/
.video-icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    /* background-color: transparent;    */
    /*left:5px;
        top:5px;*/
    margin: 5px auto;
    z-index: 1;
    border-radius: 0.5rem;
    animation: jump 0.8s linear infinite alternate;
    /* border:1px solid var(--bs-mainclr);   */
}

.video-icon-box a i {
    position: absolute;
    display: block;
    color: #FF0000;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.5rem;
}

.video-icon-box:hover {
    animation: none;
}

#videoFrame {
    width: 100%;
    height: 600px;
}

.popup-max-scrollable {
    max-height: 700px;
    overflow-y: scroll;
}

 /*outofstock style*/
.outof-stock {
    display:flex;
    align-items:center;
    justify-content:center;   
    color: #dc3545; /*red danger*/
}

.qty-text {
    text-align: center !important;
}

/*Cart items section*/
.cat-sticky-top {
    z-index: 2;
}

.cart-items-total {
    position: fixed;
    /*  margin:auto;*/
    right: 0px;
    top: 120px;
    height: 55px;
    background-color: var(--primary);
    color: #000;
    transition: 0.5s;
    z-index: 3;
}

@media (max-width: 991.98px) {
    .cart-items-total {
        position: fixed;
        /*  margin:auto;*/
        right: 0px;
        top: 100px;
        height: 65px;
        background-color: var(--primary);
        color: #000;
        transition: 0.5s;
        z-index: 3;
    }   
}

/*Cart notifications*/
/*-------------------------------*/
.cart-notification {
    position: relative;
    width: 40px;
    height: 40px; 
    /*background-color: var(--light);*/
    border-radius: 5px;
    color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-notification a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cart-notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    color: var(--dark);
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}


.linkbtn-Disabled {
    pointer-events: none; /* Prevents click events */
    opacity: 0.6; /* Makes it look disabled */
    cursor: not-allowed; /* Shows the disabled cursor */
    background-color: transparent;
    border-color: transparent;
    color: var(--dark);
}

/*alert messages*/
.alert-success-mts {
    color: black;
    background-color: #bcdcce; /*#0f5132 #d1e7dd*/
    border-color: #0f5132; /*#badbcc*/
    border-width: 2px;
}

.alert-warning-mts {
    color: #ad1f2a;
    background-color: #fff3cd; /*#f8d7da - red*/
    border-color: #ad1f2a;
    border-width: 2px;
}

.alert-info-mts {
    color: #003366;
    background-color: #99ccff;
    border-color: #0066cc;
    border-width: 2px;
}

.alert-danger-mts {
    color: white;
    background-color: #b30000;
    border-color: #b30000;
    border-width: 2px;
}

    .alert-danger-mts .alert-link {
        color: #6a1a21;
    }

.alert-position-center-mts {
    position: absolute;
    top: 20%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/*Dropdown style*/
.dropdown-style {
    background-color: #fff !important; /* #e9ecef*/
    padding: 1rem 0.75rem;
    border: 1px solid var(--primary);
}


/* card - Start */
.card-mts {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    /* background-clip: border-box;*/
    border: 2px solid var(--primary); /*rgba(0, 0, 0, 0.125);*/
    border-radius: 0.5rem;
}

.card-header-mts {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background: linear-gradient(to bottom, var(--primary85) 0%, var(--light) 50%); /*85% Primary colour*/    
    border-bottom: 3px solid var(--primary55); /*primary-ho*/
}

.card-header-mts:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-body-mts {
    /*-ms-flex: 1 1 auto;*/
    /* flex: 1 1 auto;*/
    min-height: 1px;
    padding: 1.25rem;
}

.card-header-nobg-mts {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border-bottom: 3px solid var(--primary55); /*primary-ho*/
}
/* card - End */
.btn-jump {
    display: inline-block;
    animation: upDown 1s linear infinite alternate;
}

/*---------------------------------------*/
/*Animations*/
/*--------------------------------------*/
/*Discount rotate animations*/
@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-bg-deg {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Discount badge Ground chakkar animation */
@keyframes fastRotate {
    0% {
        transform: rotate(0deg);
    }
    /* 20% {
        transform: rotate(1080deg);
    }*/
    /* Fast 3x rotations (360 * 3) */
    100% {
        transform: rotate(1440deg);
    }
    /* Slow final rotation */
}
/*Video icon Jump*/
@keyframes jump {
    to {
        transform: scale(1.2);
    }
}
/*Download Icon Jump*/
@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


