/*----------------------------------------------------------------------------------

Project     :   Buten - Product Marketing Landing Page
Author      :   thememeta
Athor URI   :   https://themeforest.net/user/thememeta

-------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------

[Table of contents]

Default CSS
Site Preloader
Header
Home Area
Home Slider
Home Newsletter
About Area
Section Heading
Features Area
Video Area
Core Feature Area
Why Choose Area
Newsletter Area
Product Area
Testimonial Area
FAQ Area
Contact Area
Footer

--------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------
    Default CSS
---------------------------------------------------------------------------------------*/

@import url('css.css');
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #000;
    position: relative;
    overflow-x: hidden;
    letter-spacing: 1px;
    background-color: #f3f3ff !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

input:required,
input:invalid,
textarea:required,
textarea:invalid {
    -webkit-box-shadow: none;
    box-shadow: none;
}
input::placeholder {
    font-family: sans-serif !important;
    font-size:12px !important;
}


a,
button {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

a {
    color: #2c3e50;
    font-size: 14px;
}
.feature-single h4 {
    color: #0408c9;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
    font-weight: 400;
    margin-top: 0
}

h1 {
    font-size: 56px;
    line-height: 66px
}

h2 {
    font-size: 36px;
    line-height: 46px
}

h3 {
    font-size: 24px;
    line-height: 34px
}

h4 {
    font-size: 20px;
    line-height: 30px
}

h5 {
    font-size: 18px;
    line-height: 28px
}

h6 {
    font-size: 16px;
    line-height: 26px
}

p {
    font-size: 14px;
    color: #555;
    line-height: 24px;
    font-weight: 500;
}

.d-table {
    width: 100%;
    height: 100%
}

.animation-jump {
    position: relative;
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
}

.animation-bg {
    -webkit-animation: animation-bg 25s ease-in-out infinite;
    animation: animation-bg 25s ease-in-out infinite;
}

@-webkit-keyframes animation-jump {
    0% {
        top: 3px;
    }
    50% {
        top: -3px;
    }
    100% {
        top: 3px;
    }
}

@keyframes animation-jump {
    0% {
        top: 3px;
    }
    50% {
        top: -3px;
    }
    100% {
        top: 3px;
    }
}

@-webkit-keyframes animation-bg {
    0% {
        background-position: top;
    }

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

@keyframes animation-bg {
    0% {
        background-position: top;
    }

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

/*-------------------------------------------------------------------------------------
    Site Preloader
---------------------------------------------------------------------------------------*/

.preloader {
    background-color: #1c1c1c;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999999;
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    Header
---------------------------------------------------------------------------------------*/

#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 9;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    /* padding: 20px 0; */
}

#header.sticky {
    position: fixed !important;!i;!;
    width: 100%;
    padding: 0;
    /* -webkit-box-shadow: 0 2px 10px  !important; */!i;!;
    /* box-shadow: 0 2px 10px #e0e6ff !important; */!i;!;
    background-color: #ffffff !important;!i;!;
    background-image: none;
    z-index: 999;
    padding: 0 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.navbar-nav {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

#header .navbar-nav .nav-item .nav-link {
    font-weight: 700;
    font-size: 12px;
    padding: 0px 35px 0 0px;
    color: #ffffff;
    letter-spacing: 2px
}
#header .navbar-nav .nav-item li a {
    color: #0000f7 !important;
}
.sticky .navbar-nav .nav-item .nav-link {
    color: #15186a !important;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active,{
    color: #ffffff !important;
}

.sticky .nav-item .nav-link.active,
.sticky .nav-item .nav-link:hover {
    color: #1700ff !important;
}

.navbar-nav.buy-btn .nav-link {
    background-color: #fff;
    color: #8a8eff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
}

.navbar-nav.buy-btn .nav-link:hover {
    background-color: #020795;
    color: #fff;
}
.buyer_cart .nav-link:hover {
    /* background-color: #0008ff !important; */
    color: white !important;
    border-radius: 16px;
}

.sticky .navbar-nav.buy-btn a {
    background-color: #0a10b8;
    color: #fff;
}

.sticky .navbar-nav.buy-btn .nav-link:hover {
    color: #fff;
}

.logo-scroll,
.sticky .logo {
    display: none
}

.sticky .logo-scroll {
    display: block;
    margin: 5px;
}

/*-------------------------------------------------------------------------------------
    Home Area
---------------------------------------------------------------------------------------*/

#home-area {
    background-image: url(../images/banner-1.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    height: 100vh
}

.caption-content {
    height: 100vh
}

.caption-content h1 {
    color: #fff;
    font-weight: 800;
}

.caption-content p {
    color: #ddd;
    margin: 20px 0 10px;
}

.caption-content a {
    background-color: #00a0e6;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin: 25px 0 0 0;
}

.caption-content a:hover {
    background-color: #ffffff;
    color: #261067;
}

.caption-content a i {
    padding-right: 2px;
    font-size: 18px;
}

.caption-img {
    padding: 25% 0 0;
    margin: auto;
    text-align: center;
}

/*-------------------------------------------------------------------------------------
    Home Slider
---------------------------------------------------------------------------------------*/

#home-area.slider {
    background-image: url(../images/banner-1.jpg);
}

.slide-single {
    padding: 0 12%;
}

.slide-single .caption-img img {
    max-width: 350px;
    margin: 0 auto;
    padding: 8% 0 0
}

.home-slider .owl-dots {
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    text-align: center
}

.home-slider .owl-dot {
    display: inline-block;
    width: 15px;
    height: 6px;
    margin: 0 4px;
    background-color: #fff;
    border-radius: 2px;
    margin: 0 4px;
    border: 0;
    outline: 0
}

.home-slider .owl-dot.active {
    width: 25px;
}

.owl-item.active .caption-content h1 {
    -webkit-animation: 1s .3s fadeInLeft both;
    animation: 1s .3s fadeInLeft both;
}

.owl-item.active .caption-content p {
    -webkit-animation: 1s .5s fadeInRight both;
    animation: 1s .5s fadeInRight both;
}

.owl-item.active .caption-content a {
    -webkit-animation: 1s .8s fadeInUp both;
    animation: 1s .8s fadeInUp both;
}

/*-------------------------------------------------------------------------------------
    Home Newsletter
---------------------------------------------------------------------------------------*/

#home-area.newsletter {
    background-image: url(../images/banner-2.html);
    position: relative
}

.home-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.newsletter .caption-img img {
    max-width: 350px;
    margin: 10% auto 0
}

.home-newsletter {
    background-color: #fff;
    padding: 40px 30px 50px;
    border-radius: 10px;
    margin: 9% 40px 0
}

.home-newsletter h2 {
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px;
}

.home-newsletter input {
    height: 50px;
    font-size: 15px;
    border: 1px solid #e6f0fa;
}

.home-newsletter button {
    width: 100%;
    height: 50px;
    color: #fff;
    background-color: #2273f8;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    outline: 0
}

.home-newsletter button:hover {
    background-color: #0857d8;
}

/*-------------------------------------------------------------------------------------
    About Area
---------------------------------------------------------------------------------------*/

#about-area {
    padding: 100px 0;
}

.about-img img {
    border-radius: 10px;
}

.about-content h2 {
    font-weight: 800;
    margin: 0 0 41px;
}
.about-content p {
    font-size: 14px;
}
.impact-content p {
    font-size: 18px;
    line-height: 50px;
}


.about-content h4 {
    font-weight: 600;
    color: #2273f8;
}

.about-content ul {
    margin: 20px 0 0;
}

.about-content ul li {
    font-weight: 600;
    padding: 3px 0;
    font-size: 14px;
    line-height: 24px
}

.about-content li i {
    color: #2273f8;
}

/*-------------------------------------------------------------------------------------
    Section Heading
---------------------------------------------------------------------------------------*/

.section-heading h2 {
    font-weight: 800;
}

.section-heading {
    /* margin: 0 0 60px; */
}

/*-------------------------------------------------------------------------------------
    Features Area
---------------------------------------------------------------------------------------*/

#feature-area {
    background-color: #ebf1ff;
    /* padding: 90px 0 30px; */
}

.feature-single {
    margin: 45px 0;
}

.feature-single h4 {
    font-weight: 600;
    margin: 30px 0 10px 0;
}

/*-------------------------------------------------------------------------------------
    Video Area
---------------------------------------------------------------------------------------*/

#video-area {
    position: relative;
    background-image: url(../images/dsc_1049.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    background-color: #fffefe;
    background-attachment: fixed;
    margin: 75px 0 0  0;
}

.video-overlay {
    background-color: rgb(0 7 65 / 79%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-content h2 {
    font-weight: 800;
    color: #fff;
}

.video-content p {
    color: #ddd;
    margin: 0 0 50px;
}

.video-content,
.video-player {
    position: relative
}

.video-player a {
    font-size: 35px;
    color: #6222f8;
    border-radius: 50%;
    display: inline-block;
    background-color: #fff;
    /* width: 80px; */
    /* height: 80px; */
    line-height: 80px;
    position: relative;
    z-index: 2;
    padding: 28px;
}

.video-player a:hover {
    color: #fff;
    background-color: #131a48;
}

.pulse1 {
    position: absolute;
    width: 100px;
    height: 100px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    border: 3px solid rgba(255, 255, 255, .1);
    -webkit-animation: pulsejg1 1.3s linear infinite;
    animation: pulsejg1 1.3s linear infinite;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
    box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pulse2 {
    position: absolute;
    width: 100px;
    height: 100px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0);
    -webkit-animation: pulsejg2 0.9s linear infinite;
    animation: pulsejg2 0.9s linear infinite;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
    box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes pulsejg1 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(.9);
        opacity: .2;
    }

    70% {
        -webkit-transform: scale(1.1);
        opacity: .35;
    }

    80% {
        -webkit-transform: scale(1.25);
        opacity: .2;
    }

    100% {
        -webkit-transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulsejg1 {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
        opacity: .1;
    }

    70% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .25;
    }

    80% {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@-webkit-keyframes pulsejg2 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    40% {
        -webkit-transform: scale(.8);
        opacity: .05;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: .1;
    }

    60% {
        -webkit-transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -webkit-transform: scale(1.2);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulsejg2 {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    40% {
        -webkit-transform: scale(.8);
        transform: scale(.8);
        opacity: .05;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .1;
    }

    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    Core Feature Area
---------------------------------------------------------------------------------------*/

#core-feature-area {
    padding: 90px 0 70px;
}

.core-feat-content {
    padding-top: 20px;
}

.core-feat-single {
    background-color: #fff;
    padding: 20px 20px 8px;
    border-radius: 10px;
    border: 1px solid #eff0f1;
    margin: 0 0 30px;
    -webkit-box-shadow: 0 5px 15px #e6f0fa;
    box-shadow: 0 5px 15px #e6f0fa
}

.core-feat-single i {
    color: #0a10b8;
    font-size: 20px;
    display: inline-block;
}

.core-feat-single h4 {
    font-weight: 600;
    margin-bottom: 5px
}

.core-feat-img {
    background-image: url(../images/circle.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: center;
    background-position-y: 0;
}

.core-feat-img img {
    max-width: 300px;
    position: relative;
    top: -2px;
}

/*-------------------------------------------------------------------------------------
    Why Choose Area
---------------------------------------------------------------------------------------*/

#why-choose-area {
    /* padding: 90px 0 30px; */
    background-color: #fafafa;
}

.why-choose-img img {
    /* max-width: 300px; */
}

.why-choose-single {
    margin: 0 0 30px;
    overflow: hidden
}

.why-choose-single .icon {
    width: 20%;
    float: left;
}

.why-choose-single .content {
    width: 80%;
    float: left;
}

.why-choose-single i {
    display: inline-block;
    font-size: 30px;
    width: 80px;
    height: 80px;
    border: 2px dashed #0a10b8;
    border-radius: 50%;
    line-height: 80px;
    padding: 0 24px;
    color: #0a10b8;
    margin: 15px 0 0;
}

.why-choose-single h4 {
    font-weight: 600;
    margin-bottom: 5px
}

/*-------------------------------------------------------------------------------------
   Newsletter Area
---------------------------------------------------------------------------------------*/

#newsletter-area {
    padding: 25px 0;
    /* background-image: url(../images/dsc_1049.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    /* margin: 10px 0; */
    /* top: 9px; */
}

.newsletter-overlay {
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 -2px 15px #D1D6FF;
}

.newsletter-box {
    /* padding: 40px; */
    border-radius: 10px;
    /* background-color: #fff; */
    position: relative
}

.newsletter-box h2 {
    font-weight: 800;
    margin: 0 0 5px;
    color: #00b1ff;
    font-size: 20px;
}

.newsletter-box p {
    margin: 0;
    color: #002797;
}

.newsletter-form {
    position: relative;
    margin: 14px 0 0
}

.newsletter-form input {
    border-radius: 30px;
    height: 50px;
    padding-left: 30px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
    box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
    font-size: 14px
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    padding: 0 40px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 0;
    background-color: #009eff;
    color: #fff;
    outline: 0;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #ebebeb;
    color: #0f002b;
}

/*-------------------------------------------------------------------------------------
    Product Area
---------------------------------------------------------------------------------------*/

#product-area {
    /* padding: 45px 90px 45px 90px; */
    /* background: red; */
}
.class_home p {
    color: #040768;
    font-size: 13px;
    font-weight: 600;
    /* text-align: justify; */
}
#checkout-area hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    /* border: 0; */
    border-top: 1px solid #c7c7c7;
    width: 100%;
    opacity: 1;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    /* border: 0; */
    /* border-top: 1px solid rgb(255 255 255); */
    width: 100%;
}
.product-single {
    border: 1px solid #d3d3d3;
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
    background-color: #ffffff;
    font-family: 'Arial';
    position: relative;
    margin: 10px 10px;
    /* box-shadow: 0px 0px 7px #d5d5d5; */
}

.product-single img {
    /* max-width: 200px; */
    display: block;
    border-radius: 11px;
}

#latest_product_area .product-single h4 {
    font-weight: 800;
    color: #0a10b8;
    margin: 0 0 20px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
#category-area .product-single h4 {
    display: block;
    padding: 0;
    color: #01002d;
    background-color: transparent !important;!i;!;
    font-weight: 800;
    border-radius: 5px;
    position: relative;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    /* text-align: center; */
    font-size: 16px !important;
    text-overflow: ellipsis;
}

#product-area .product-single h4,#search-area .product-single h4 {
    font-weight: 800;
    color: #241854;
    margin: 15px 0 5px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.product-single .add_to_cart {
    background: #01002d;
    /* display: inline-block; */
    /* float: right; */
    margin: 5px 0;
    padding: 8px 16px;
}
.product-single .add_to_cart:hover {
    background: #0080b8;
}

.product-single span {
    font-weight: 500;
    margin: 10px 0 20px;
    font-size: 35px;
    color: #0086ff;
    font-family: 'Raleway';
    cursor: pointer;
}
.product-single .checked {
    font-weight: 500;
    margin: auto;
    font-size: 18px;
    color: #0029ff;
    font-family: 'Raleway';
    /* display: inline-block; */
    float: right;
    display: none;
}
.product-single .product_price_after_discount {
    font-weight: 500;
    /* float: right; */
    font-size: 35px;
    color: #0871f2;
    margin: 16px;
    font-family: 'Raleway';
}
.product-single .product_price_discount {
    text-decoration:line-through 1px;
    color: #ff5e00 !important;
    font-size: 18px;
}
.product-single h4 a {
    display: block;
    padding: 0;
    color: #01002d;
    background-color: transparent !important;!i;!;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    /* text-align: center; */
    font-size: 12px !important;
    text-overflow: ellipsis;
}
.product-single h4 a:hover::after {
    content: attr(title); /* Use the title attribute's value */
    position: absolute;
    left: 0;
    bottom: -30px; /* Adjust as needed */
    background: #333;
    color: #fff;
    padding: 0px 10px;
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.product-single h4 a:hover::after {
    opacity: 1;
    transform: translateY(0);
}
.product-single a {
    display: block;
    padding: 0;
    color: #fff;
    background-color: #fbfbfb;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    left: 0;
    /* text-align: center; */
    font-size: 12px !important;
}

.related_products a {
    display: block;
    padding: 8px 16px;
    color: #ffffff;
    background-color: transparent;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    left: 0;
    /* text-align: center; */
    font-size: 12px !important;
}


.product-single a:hover {
    background-color: #f7f7f7;
    /* color: red; */
}
.product-single a:hover h4 {
    /* background-color: #ebecef; */
    color: #e76e00;
}

.category-single {
    border: 1px solid #e7e7e7;
    padding: 20px 20px;
    border-radius: 10px;
    margin: 10px 0;
    background-color: #ffffff;
}

.category-single img {
    /* max-width: 200px; */
    width: 100%;
    border-radius: 5px;
}

.category-single h4 a {
    font-weight: 800;
    color: #0067ff;
    margin: 0 0 20px;
    /* text-align: center; */!;!i;!;
    font-size: 15px;
    !;!i;!;
}

.category-single h2 {
    font-weight: 700;
    margin: 10px 0 20px;
    font-size: 30px
}

.category-single span {
    display: block;
    padding: 8px 16px;
    color: #fff;
    background-color: #01002d;
    cursor:pointer;
    font-weight: 600;
    margin: 25px 0;
    border-radius: 7px;
    text-align: center;
}
.category-single .category_img {
    display: block;
    padding: 0;
    color: #fff;
    background-color: transparent;
    cursor:pointer;
    font-weight: 600;
    margin: 0;
    border-radius: 7px;
    text-align: center;
}

.category-single span:hover {
    background-color: #0a10b8;
}

.category-single .category_img:hover {
    background-color: transparent;
}


/*-------------------------------------------------------------------------------------
    Testimonial Area
---------------------------------------------------------------------------------------*/

#testimonial-area {
    padding: 90px 0 135px;
    /* background-image: url(../images/banner-1.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background: #f3f3f3;
}

#testimonial-area .section-heading h2 {
    /* color: #fff; */
}

.client-info img {
    max-width: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.client-info h4 {
    color: #0129f7;
    font-weight: 600;
    margin: 0
}

#testimonial-area .section-heading p,
.client-info p {
    /* color: #ddd; */
}

.client-comment p {
    /* color: #fff; */
    font-style: italic
}

.client-comment i {
    color: #f39c12
}

.testimonial-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    text-align: center
}

.testimonial-carousel .owl-dot {
    display: inline-block;
    width: 15px;
    height: 6px;
    margin: 0 4px;
    background-color: #0a10b8;
    border-radius: 2px;
    margin: 0 4px;
    border: 0;
    outline: 0
}

.testimonial-carousel .owl-dot.active {
    width: 25px;
}

/*-------------------------------------------------------------------------------------
    FAQ Area
---------------------------------------------------------------------------------------*/

#faq-area {
    /* padding: 90px 0 72px; */
}

#accordion .card {
    margin: 0 0 20px;
    border: 0;
    border-radius: 10px;
}

#accordion .card-header {
    border-radius: 10px;
    border: 0;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4) !important;
    box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4) !important;
    background-color: #01003c;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    font-weight: bold;
    color: white;
}

#accordion .card-header.active a,
#accordion .card-header:hover a,
#accordion .card-header:hover:after {
    color: #fff;
}

#accordion .card{
    background-color: #00005a !important;
    color: white !important;
}
#accordion .card-header.active{
    background-color: #00005a !important;
    color: white !important;
}

#accordion .card-header:hover {
    background-color: #00005a !important;
    color: white !important;
    font-weight: bold;
}

#accordion .card-header a:after {
    content: "\eab2";
    font-family: "IcoFont";
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 20px
}

#accordion .card-header.active a:after {
    content: "\eab9";
    color: #fff
}

#accordion .card-header a {
    font-weight: 600;
    font-size: 18px;
    display: block
}

#accordion .collapse.show,
#accordion .card-body {
    background-color: #0000cb;
    color: #fff;
    border-radius: 0 0 10px 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 14px;
    line-height: 24px;
}

.faq-img img {
    max-width: 300px;
    margin-top: 10px
}

/*-------------------------------------------------------------------------------------
   Contact Area
---------------------------------------------------------------------------------------*/

#contact-area {
    padding: 90px 0 85px; */
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #fafafa
}
#checkout-area {
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #fafafa
}
#process-checkout {
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #fafafa
}
.contact-info {
    padding: 0 0 0 15%;
}

.contact-info-single {
    margin: 0 0 30px;
    overflow: hidden
}

.contact-info-single .icon {
    width: 25%;
    float: left;
    margin-right: 10px;
    text-align: center
}

.contact-info-single .content {
    width: 70%;
    float: left;
}

.contact-info-single i {
    font-size: 30px;
    color: #1c1d44;
    border: 1.2px solid #c7c7c7;
    border-radius: 4px;
    width: 55px;
    height: 55px;
    display: inline-block;
    line-height: 55px
}

.contact-info-single p {
    font-size: 15px;
    color: #555
}

.contact-form input {
    height: 50px;
    border: 1px solid #e6f0fa;
    font-size: 14px
}

.contact-form textarea {
    border: 1px solid #e6f0fa;
    padding-top: 12px;
    font-size: 14px
}

.contact-form button {
    background-color: #1c1d44;
    border: 0;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    outline: 0;
    cursor: pointer
}

.contact-form button:hover {
    background-color: #0857d8;
}

.help-block.with-errors li {
    color: #ff0000;
    margin: 4px 0 0;
}

.messages {
    margin: 15px 0 0
}

.messages button {
    color: #000;
    padding: 0;
    background-color: transparent
}

.messages button:hover {
    background-color: transparent
}


/*-------------------------------------------------------------------------------------
    gallery area
---------------------------------------------------------------------------------------*/

#gallery-area {
    padding: 75px 0;
    /* background-image: url(../images/banner-1.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background: #e8e6ff;
}

#gallery-area .section-heading h2 {
    /* color: #fff; */
}

#gallery-area .section-heading p,
.client-info p {
    /* color: #ddd; */
}


/*-------------------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------------------*/


/*********footer*******************/
. kilimanjaro_area {
    position: relative;
    z-index: 1;
	}
	.foo_top_header_one {
    background-color: #000000d6;
    color: #fff;
}
.section_padding_100_70 {
    padding-top: 100px;
    padding-bottom: 70px;
}
.foo_top_header_one {
    color: #fff;
    padding: 25px 0;
}.kilimanjaro_part {
    margin-bottom: 30px;
}
.foo_top_header_one .kilimanjaro_part > h5 {
    color: #fff;
}
.kilimanjaro_part h4, .kilimanjaro_part h5 {
    margin-bottom: 30px;
}
.kilimanjaro_single_contact_info > p, .kilimanjaro_single_contact_info > h5, .kilimanjaro_blog_area > a, .foo_top_header_one .kilimanjaro_part > p {
    color: rgb(255 255 255);
}
p, ul li, ol li {
    font-weight: 300;
}
ul {
    margin: 0;
    padding: 0;
}
.kilimanjaro_bottom_header_one {
    background: #040827;
    /* background-image: url(../images/img26.png); */
}
.section_padding_50 {
    padding: 25px 0;
    border-top: 1px solid #392159;
}
.kilimanjaro_bottom_header_one p {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}
p, ul li, ol li {
    font-weight: 300;
}
.kilimanjaro_bottom_header_one a {
    color: #00ff8c;
    font-size: 14px;
    font-weight: 800;
}
a, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}
.m-top-15 {
    margin-top: 15px;
}
ul {
    margin: 0;
    padding: 0;
}

.kilimanjaro_widget > li {
    display: inline-block;
}
p, ul li, ol li {
    font-weight: 300;
}
ol li, ul li {
    list-style: outside none none;
}
.kilimanjaro_widget a {
    border: 1px solid #ffffff;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 4px;
    padding: 7px 12px;
}
ul {
    margin: 0;
    padding: 0;
}
.kilimanjaro_links a {
    border-bottom: 1px solid #333;
    color: rgba(255,255,255,.5);
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    padding-bottom: 10px;
}
.kilimanjaro_links a {
    color: rgba(255,255,255,.5);
    font-size: 13px;
}
top-15 {
    margin-top: 15px;
}
.foo_top_header_one .kilimanjaro_part > h5 {
    color: #ffbf00;
}
.kilimanjaro_part h4, .kilimanjaro_part h5 {
    margin-bottom: 30px;
}
.kilimanjaro_social_links > li {
    display: inline-block;
}
p, ul li, ol li {
    font-weight: 300;
}
.kilimanjaro_social_links a {
    border: 2px solid #5b58e3;
    border-radius: 6px;
    color: #bfbdff;
    display: inline-block;
    font-size: 20px;
    margin-bottom: 3px;
    font-weight: bolder;
    padding: 7px 7px;
    background: #000000;
}
.kilimanjaro_blog_area .kilimanjaro_date {
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 5px;
}
.kilimanjaro_blog_area > p {
    color: rgba(255,255,255,.5);
    line-height: 1.3;
    margin-bottom: 0;
}
.kilimanjaro_works > a {
    display: inline-block;
    float: left;
    position: relative;
    width: 33.33333333%;
    z-index: 1;
}
.kilimanjaro_thumb {
    left: 10px;
    position: absolute;
    top: 10px;
    width: 75px;
    border: 1px solid #5d5fff;
    border-radius: 0;
}
.kilimanjaro_links a i {
    padding-right: 10px;
}
  /* :: 18.0 Footer Area CSS */

    .footer_area {
        position: relative;
        z-index: 1;
    }
 .footer_bottom p > i,
    .footer_bottom p > a:hover {
        color: #27ae60;
    }	

    .social_links_area {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 50px 0 30px 0;
        text-align: center;
        position: relative;
        z-index: 1;
    }
 .social_links_area > a:hover {
        color: #27ae60;
    }

    .inline-style .social_links_area > a:hover {
        background-color: transparent;
        color: #27ae60;
        border: 0px solid transparent;
    }
 .single_feature:hover .feature_text h4 {
        color: #27ae60;
    }
.kilimanjaro_blog_area {
    border: 1px dashed #5d5fff;
    margin-bottom: 6px;
    padding: 15px 90px;
    position: relative;
    z-index: 1;
    background: #11117575;
    border-radius: 5px;
}
.kilimanjaro_links a {
    border-bottom: 1px solid #373689;
    border-bottom-style: dashed;
    color: rgb(255 255 255);
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    padding-bottom: 10px;
    /* box-shadow: 0px 1px #000000; */
}
/*-------------------------------------------------------------------------------------
    CALL OUT
---------------------------------------------------------------------------------------*/
.callout {
  padding: 0 0;
  position: relative;
  z-index: 1;
  }
  .callout:before {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: -46px;
    bottom: auto;
    right: auto;
    z-index: -1;
    width: 100%;
    height: 50px;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url(../images/bg-bdr2.png); }
  .callout h2 {
    font-size: 35px;
    line-height: 40px;
    color: #fff;
    margin: 0;
    padding: 7px 0 0; }
  .callout .btn-primary {
    font-size: 16px;
    line-height: 20px;
    border: 1px dashed #fff;
    padding: 18px 44px 20px 38px;
    background: none;
    float: right; }
    .callout .btn-primary:hover {
      background: #fff;
      color: #b0c83e;
      border-color: #b0c83e; }


/*-------------------------------------------------------------------------------------
    Live Demo Content
---------------------------------------------------------------------------------------*/

.demo-header {
    padding: 80px 0 90px;
}

.demo-header h1 {
    font-weight: 800;
}

.demo-header h1 span {
    color: #0a89ff
}

.demo-header a {
    display: inline-block;
    background-color: #0a89ff;
    margin: 30px 10px 0;
    padding: 12px 40px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
}

.demo-content {
    background-color: #f5f5f5;
    padding: 100px 0 40px;
}

.demo-single h4 a {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin: 15px 0 0;
}

.demo-single {
    margin: 0 0 50px
}

.demo-single-inner {
    border: 4px solid #fff;
}
nav.pottery_breadcrumb ol {
    background: #dee2ff;
    border-radius: 0;
    /* border-bottom: 1px solid #d2d4ff; */
    margin: auto;
    padding: 0.75rem 1.75rem;
}
nav.pottery_breadcrumb .breadcrumb-item a {
    color: #000aff;
}
nav.pottery_breadcrumb .breadcrumb-item {
    color: #523f04;
}
.demo-single h4 a:hover {
    color: #0a89ff
}
header.is_product-detail,
header.is_new-arrivals,
header.is_collections,
header.is_best-sellings,
header.is_not_found,
header.is_category-detail,
header.is_checkout,
header.is_shipping-policy,
header.is_terms-conditions,
header.is_about-us,
header.is_faq,
header.is_privacy-policy,
header.is_impact,
header.is_trackingorderlogin,
header.is_addresses,
header.is_vieworder
{
        background: #140081;
        padding: 0px 0 25px 0 !important;
        position: relative !important;
}
section.pottery-products_content {
    padding: 150px 0 100px !important;
}

.breadcrumb .breadcrumb-item  {
    font-size: 13px !important;
}
.breadcrumb .breadcrumb-item a  {
    font-size: 12px !important;
}


.card {
  --bs-card-spacer-y: 1.35rem;
  --bs-card-spacer-x: 1.35rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: rgba(33, 40, 50, 0.125);
  --bs-card-border-radius: 0.35rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: 0.35rem;
  --bs-card-cap-padding-y: 1rem;
  --bs-card-cap-padding-x: 1.35rem;
  --bs-card-cap-bg: rgba(33, 40, 50, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

footer.kilimanjaro_area {
    background-image: url(../images/banner-2.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    /* height: 78vh; */
    margin: 0vh 0;
    background-color: #000000;
    background-position-y: 1vh;
    background-position-y: 133px;
}
.product-single i {
    color: #ffffff;
    font-size: 15px;
    line-height: 0;
    position: relative;
    top: 2px;
}
.product-single p i {
    color: #ff9b00;
}
.product-single p i.not {
    color: #dddddd;
}
/* common */
.sold_out {
  width: 151px;
  height: 151px;
  overflow: hidden;
  position: absolute;
  z-index: 9;
}
.sold_out::before,
.sold_out::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #2e000f;
}
.sold_out span {
  position: absolute;
  display: block;
  width: 244px;
  padding: 15px 0;
  background-color: #8b0000;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font: 700 14px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}
.discount {
  width: 151px;
  height: 151px;
  overflow: hidden;
  position: absolute;
  z-index: 9;
}
.discount::before,
.discount::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #963900;
}
.discount span {
  position: absolute;
  display: block;
  /* right: -55px !important; */
  /* top: -12px !important; */
  width: 381px;
  padding: 16px 0;
  background-color: #ff0700;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font: 700 16px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}



/* top left*/
.sold_out-top-left {
  top: -10px;
  left: -10px;
}
/* top left*/
.sold_out-top-left {
  top: -10px;
  left: -10px;
}
.sold_out-top-left::before,
.sold_out-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.sold_out-top-left::before {
  top: 0;
  right: 15px;
}
.sold_out-top-left::after {
  bottom: 15px;
  left: 0;
}
.sold_out-top-left span {
  right: -25px;
  top: 19px;
  transform: rotate(-45deg);
}


/* top left*/
.discount-top-left {
  top: -10px;
  left: -10px;
}
/* top left*/
.discount-top-left {
  top: -10px;
  left: -10px;
}
.discount-top-left::before,
.discount-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.discount-top-left::before {
  top: 0;
  right: 44px;
}
.discount-top-left::after {
  bottom: 44px;
  left: 0px;
}
.discount-top-left span {
  right: -77px;
  top: 2px;
  transform: rotate(-45deg);
}


.is_product-detail {
    background: #03054e;
    position: relative !important;
}
.product-single a.out_of_stock 
{
    color: #8b8b8b;
    background: #e1e1e1;
    margin: 5px 0;
}
.single_product {
    font-family: math;
}
section.py-5.single_product .single_original_price {
    color: red;
    font-size: 30px;
}
span.stock_p {
    background: #a3ffe3;
    padding: 8px 14px;
    font-weight: bolder;
    border-radius: 5px;
}
span.stock_n {
    background: #ffdbeb;
    padding: 0 15px;
    font-weight: bolder;
    border-radius: 5px;
}
span.stock_w {
    background: #ffbf70;
    padding: 0 15px;
    font-weight: bolder;
    border-radius: 5px;
    color: #6c1a00 !important;
}
.lead ul li {
    font-size: 12px;
    margin: 0 0 5px 0;
    color: #253cb1;
    font-weight: bold;
}
.lead p {
    font-size: 13px;
    line-height: 20px;
    color: #111;
}

.lead ul {
    padding: 0 0 30px 0;
}
#product-detail h1.title.text-dark {
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    color: #4f52b3 !important;
}
section#product-detail {
    margin: 20px;
}
span.single_original_price {
    color: red;
    font-size: 30px;
}
span.single_discount {
    color: #4f52b3;
    font-size: 60px;
}
.single_product .small.mb-1 {
    text-decoration: underline;
    color: #4346ff;
}
.border-end {
    /* border-right: 1px solid #dee2e6!important; */
}
.justify-content-center {
    justify-content: center!important;
}
.flex-column {
    flex-direction: column!important;
}
.d-flex {
    display: flex!important;
    margin: 0px 0 24px 0;
}
.main_image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-bottom: 1px solid #eee; */
    /* height: 400px; */
    /* width: 100%; */
    /* overflow: hidden; */
}
.thumbnail_images ul {
    list-style: none;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.thumbnail_images ul li {
    margin: 5px;
    padding: 10px;
    border: 2px solid #eee;
    cursor: pointer;
    transition: all 0.5s;
}
.main_image .badge {
    background: red !important;
    width: 110px;
    height: 20px;
    top: -20px !important;
    right: 95px !important;
    padding: 5px;
}
.product-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    text-align: center
}

.product-carousel .owl-dot {
    display: inline-block;
    width: 15px;
    height: 6px;
    margin: 0 4px;
    background-color: #0a10b8;
    border-radius: 2px;
    margin: 0 4px;
    border: 0;
    outline: 0
}

.product-carousel .owl-dot.active {
    width: 25px;
}



.category-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    text-align: center
}

.category-carousel .owl-dot {
    display: inline-block;
    width: 15px;
    height: 6px;
    margin: 0 4px;
    background-color: #a8aadf;
    border-radius: 2px;
    margin: 0 4px;
    border: 0;
    outline: 0
}

.category-carousel .owl-dot.active {
    width: 25px;
}

.navbar-nav a.by_now {
    padding: 6px !important;
    border-radius: 5px !important;
    margin:10px
}
.pottery-trigger.favorite_user a, .pottery-trigger.account_user a,.cart-trigger.buyer_cart a {
    padding: 0px 10px !important;
    border-radius: 5px !important;
    margin: 0px;
    /* background: #12188f; */
    margin: auto !important;
}
.cart-trigger.buyer_cart a i,.pottery-trigger.favorite_user a i {color: #ffffff !important;font-size: 30px !important;line-height: inherit;}

.sticky .cart-trigger.buyer_cart a i,.sticky .pottery-trigger.account_user  a i,.sticky .pottery-trigger.favorite_user  a i{
    color: #0e1443 !important;
}

.pottery-trigger.account_user a i{color: #ffffff !important;font-size: 22px !important;line-height: inherit;}
.cart-trigger.buyer_cart:hover {
    /* background-color: #8a8ef4; */
    color: #fff;
    border-radius: 3px !important;
}
.sticky .cart-trigger.buyer_cart a i {/* color: #ffffff !important; */line-height: inherit;}


.pottery-trigger.favorite_user a:hover i
{color: #ff9500 !important;}
.pottery-trigger.account_user a:hover i
{color: #fe7300 !important;}
.cart-trigger.buyer_cart a:hover i
{color: #fe7300 !important;}

span#notif_counts  {
  line-height: 0;
  padding: 7px 3px;
  position: absolute;
  right: 5px;
  background: #ff0000;
  top: 10px;
  text-align: center;
  color: #fff;
  margin: auto !important;
  font-family: 'arial';
  font-size: 11px;
  border-radius: 9px;
  border: 1px solid #ff0303;
}
span#fav_counts  {
  line-height: 0;
  padding: 7px 3px;
  position: absolute;
  right: 5px;
  background: #ff0000;
  top: 10px;
  text-align: center;
  color: #fff;
  margin: auto !important;
  font-family: 'arial';
  font-size: 11px;
  border-radius: 9px;
  border: 1px solid #ff0303;
}
.single_product #accordion {
    font-family: 'Arial' !important;
}
.section-heading_category {
    padding: 15px 25px;
    margin: 15px 0;
    background: #fff;
    border-bottom: 1px solid #c1ccff;
    box-shadow: 0px 5px 10px #d4dcff;
    border-radius: 6px;
}
.section-heading_category h2 {
    color: #2d2f71;
    font-weight: 500;
    font-size: 20px;
}
.category_image img {
    padding: 5px;
    background: #0a10b8;
}
#category-area .section-heading {
    margin: 0 0 25px  0!important;
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #d2daff;
    box-shadow: 0px 10px 25px #e1e7ff;
}
#gallery-area .section-heading {
    margin: 0 0 25px  0!important;
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #d2daff;
    box-shadow: 0px 10px 25px #e1e7ff;
}
#latest_product_area .section-heading {
    margin: 0 0 25px  0!important;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #c1ccff;
    box-shadow: 0px 5px 10px #d4dcff;
}
.section-heading.class_about-us {
    margin: 0 0 25px 0!important;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #c1ccff;
    box-shadow: 0px 5px 10px #d4dcff;
}
.collection {
    background: #f6f7ff;
    padding: 15px 0;
    /* border: 1px solid white; */
    border-radius: 5px;
}
.not_found_page h1 {
    margin: 0 0 29px 0;
    font-size: 5em;
    font-family: sans-serif;
    color: #0a10b8;
}
.not_found_page h2 {
    color: #9b9bb3;
    font-weight: 100;
}
nav.pottery_latestdeals {
    /* padding: 15px; */
    background: #ffbc00;
    position: fixed;
    z-index: 1000;
    width: 100%;
}
nav.pottery_latestdeals p {
    margin: 0;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-family: 'Arial';
}
nav.pottery_latestdeals p a {
    margin: 0;
    text-align: center;
    color: #5d33ff;
    font-weight: 600;
    font-family: 'Arial';
    text-decoration: 2px underline;
}
/*----------------------------------- */
/* Compare Properties Widget
------------------------------------- */
.compare-slide-menu {
	position: fixed;
	z-index: 999999;
	top: 0;
	transition: 0.4s ease-in-out;
	height: 100%;
	background-color: #f5eaff;
	right: -350px;
	width: 350px;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
.block-cart {
    color: #000;
    background-color: #fff;
    text-align: left;
    transition: all .3s ease-in-out;
    /* padding: 0 15px 10px; */
    width: 400px;
    max-width: calc(100vw - 3rem);
    height: 100%;
    overflow-y: auto;
    /* overflow-x: hidden; */
    /* transform: translate(100%); */
}
.compare-slide-menu.active {
    right: 0;
}
.csm-content {
	overflow-y: scroll;
	height: 100%;
	/* width: 340px; */
}

.compare-slide-menu.active { right: 0; }

/* Compare Icon */
.compare-button:before {
    content: "\f07e";
    transform: scale(0.95);
}
.compare-button:after {
    content: "\f07e";
    opacity: 0;
    transform: scale(0.5);
    color: #32cfc0;
}
.compare-button:before, .compare-button:after {
    transition: opacity 0.3s, transform 0.4s cubic-bezier(.0,-.41,.19,2.5);
    font-family: "FontAwesome";
    position: absolute;
    right: 0px;
    /* opacity: 0; */
}
.compare-button.compared:after {
    opacity: 1;
    transform: scale(1.1);
    right: 0px;
}
.compare-button.compared:before {
    opacity: 0;
}
.compare-button {
	color: #fff;
	font-size: 20px;
	position: absolute;
	z-index: 101;
	outline: none;
	border: none;
	right: 64px;
	bottom: 27px;
	background-color: transparent;
	width: 28px;
	height: 28px;
	display: block;
	/* background-image: url(../images/compare-icon.svg); */
	background-repeat: no-repeat;
	background-size: 28px;
}
.compar-button.compared:after {
    color: red !important;
}
.compare-slide-menu.active .csm-trigger {
    background-color: #284abb !important;
    color: #fff !important;
}
.pottery-trigger {
    /* background-color: #003dff2e !important; */
    /* transition: 0.5s ease background-color; */
    /* color: #284aba; */
}

.pottery-trigger:hover,.cart-trigger:hover {
    /* background-color: #284abb !important; */
    transition: 0.5s ease background-color;
    color: #fff;
}
.pottery-trigger,.cart-trigger {
    position: relative !important;
    top: 15px;
    /* transform: translateY(-50%); */
    right: 0;
    width: 53px !important;
    /* background-color: #66676b; */
    /* color: #fff; */
    /* border-radius: 3px 0 0 3px; */
    /* text-align: center; */
    /* line-height: 50px; */
    /* height: 50px; */
    /* font-size: 24px; */
    /* cursor: pointer; */
    /* z-index: 1000; */
    padding: 5px;
    float: right;
    text-align: center;
}
.pottery-content h4 p {
    color: #02ceff;
}
.pottery-content h4 {
	font-size: 18px;
	display: block;
	margin: 0 0 0 0;
	padding: 30px;
	position: relative;
	background-color: #66676b;
	color: #fff;
	width: 100%;
	text-align: center;
}
.pottery-content h4 {
    background-color: #432878;
}
.pottery-properties {
	padding: 30px;
	padding-bottom: 0;
	/* overflow-x: hidden; */
	/* overflow-y: auto; */
}
.notification {
	line-height: 24px;
	margin-bottom: 15px;
	position: relative;
	padding: 20px 20px;
	/* padding-right: 50px; */
	border-radius: 3px;
	border: 1px solid #ff0000;
	width: 100%;
	text-align: center;
}

.notification p {margin: 0;color: #4e3a1c;font-weight: 700;text-align: center;}

#result .success,
.notification.success {
	background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
	background-color: #EBF6E0;
}

#result .success,
.notification.success,
.notification.success a,
.notification.success strong {
	color: #5f9025;
}

.notification.error {
	background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
	background-color: #ffe9e9;
}
.notification.error,
.notification.error a,
.notification.error strong {
	color: #de5959;
}

.notification.warning {
	background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
	background-color: #ffdca7;
}
.notification.warning,
.notification.warning a,
.notification.warning strong {
	color: #ffea04;
}

.notification.notice h4 { font-size: 19px; margin: 3px 0 15px 0; }
.notification.notice h4,
.notification.notice,
.notification.notice a,
.notification.notice strong {
	color: #3184ae
}

.notification.notice {
	background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
	background-color: #E9F7FE;
}

.notification.notice.large{
	padding: 32px 36px;
}

body .notification strong { border: none; }

.notification.success .close,
.notification.error .close,
.notification.warning .close,
.notification.notice .close {
	padding: 0px 9px;
	position: absolute;
	right: 0;
	top: 22px;
	display: block;
	height: 8px;
	width: 8px;
	cursor: pointer;
}

.notification.success .close {background: url(../images/alert_boxes_close_ico.html) 0 -8px no-repeat;}
.notification.error .close {background: url(../images/alert_boxes_close_ico.html) 0 0 no-repeat;}
.notification.warning .close {background: url(../images/alert_boxes_close_ico.html) 0 -16px no-repeat;}
.notification.notice .close {background: url(../images/alert_boxes_close_ico.html) 0 -24px no-repeat;}


.notification.notice p span i { font-weight: 500; }
.notification a.button {
	float: right;
	color: #fff;
	margin-top: 3px;
}

.notification.notice a.button { background-color: #388fc5; }
.notification.warning a.button { background-color: #dfbe51; }
.notification.error a.button { background-color: #d34c4c; }
.notification.success a.button { background-color: #79ba38; }

.notification.closeable a.close:before {
	content: "\f00d";
	font-family: "FontAwesome";
	position: absolute;
	right: 25px;
	top: 0;
	cursor: pointer;
}


.go_shopping {
        display: block;
        color: #fff;
        padding: 5px 30px;
        width: 100%;
        text-align: center;
        border-radius: 4px;
        font-weight: 600;
        font-size: 16px;
        margin: 10px 0 0;
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        background-color: #040404;
}
.go_shopping:hover {
    background-color: #ff6000;
    color: #fff;
}
.h_100 {
    height: 100%!important;
}

.w_100 {
    width: 100%!important;
}
.pf {
    position: fixed;
}
.fl {
    /* display: flex; */
}
.f-jce {
    justify-content: flex-end;
}
.ctdrawer {
    top: 0;
    right: 0;
    /* visibility: hidden; */
    /* z-index: 1000; */
    background-color: rgba(0,0,0,0.5);
    transition: all 0.3s ease-in-out;
}
.pottery-mobile-trigger {
    position: absolute;
    cursor: pointer;
    font-size: 35px;
    left: 5px;
    top: 5px;
    color: #c8b5ff;
    z-index: 1000;
    /* padding: 5px 0 5px 5px; */
    /* display: none; */
}
@media(max-width:1200px){
        .desktop_mode
    {
        display :none;
    }
}
@media (max-width: 991px) {

	.pottery-content .compact:hover .listing-img-container:before,
	.pottery-content .compact .listing-img-container:before {
		 opacity: 0 !important;
	}
	.remove-from-compare { opacity: 1; transform: scale(1); }
	.pottery-mobile-trigger { display: block; }

	.compare-slide-menu {
		width: 100%;
		right: -100%;
	}

	.pottery-content { width: 100%; }
}
#loading-overlay {
    position: fixed;
    width: 100%;
    height:100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: none;
    align-items: center;
    background-color: #fff;
    z-index: 9999;
    opacity: 0.7;
}
.product-single a.out_of_stock i {
    color: #8b8b8b;
}
.loading-icon{position:absolute;border-top: 5px solid #fff;border-right: 5px solid #fff;border-bottom: 5px solid #fff;border-left: 5px solid #284abb;border-radius: 100%;width: 68px;height: 68px;margin:0 auto;position:absolute;left:50%;margin-left:-20px;top:50%;margin-top:-20px;z-index:4;-webkit-animation:spin 1s linear infinite;-moz-animation:spin 1s linear infinite;animation:spin 1s linear infinite;}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.listing-item.compact.id_listing img {
    width: 80px;
    float: left;
    padding: 4px;
    border: 2.5px solid #432878;
    border-radius: 10px;
    margin: 5px 5px;
}
.listing-item.id_listing {
    /* display: inline-block; */
    border: 2px solid #dedcff;
    margin: 5px 0;
    padding: 5px 0;
}
.value-button:hover {
    background: #0b0c35;
}

.value-button {
  display: inline-block;
  font-size: 15px;
  color: white;
  border: 1px solid #000000;
  margin: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  padding: 7px 0;
  background: #210061;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.value-button:hover {
  cursor: pointer;
}

.inc_dec #decrease {
  margin-right: -4px;
  border-radius: 8px 0 0 8px;
}

.inc_dec #increase {
  margin-left: -4px;
  border-radius: 0 8px 8px 0;
}

.inc_dec #input-wrap {
  margin: 0px;
  padding: 0px;
}

input.quantity,input.quantity_checkout {
  text-align: center;
  border: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 0px;
  width: 40px;
  height: 40px;
  position: relative;
  top: 1px;
  margin: 0px 0px;
  /* border: 1px solid; */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
div.inc_dec {text-align: right;padding: 0px 5px;}
p.cart_price {
    color: #0080ff;
    font-weight: 700;
    position: relative;
    left: 5px;
}

p.listing-compact-title {
    color: #3213a5;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.25px;
    position: relative;
    left: 5px;
}
button#CartDrawer-Checkout:hover {
    background: #6a00a7;
    transition: all .3s ease-in-out;
}
button#CartDrawer-Checkout {
    display: block;
    color: #fff;
    padding: 5px 30px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    margin: 21px 0 0;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    background-color: #2f342f;
}
div#go_shopping_wrapper {
    /* position: absolute; */
    bottom: 15px;
    /* padding: 0; */
    text-align: center;
    left: 0;
    right: 0;
}
.removable_products {
    position: absolute;
    right: 20px;
    /* top: -10px; */
    background: #ffffff;
    font-size: 12px;
    padding: 5px 5px;
    border-radius: 5px;
    color: #737373;
    cursor: pointer;
    border: 2px solid #210061;
    z-index: 9;
}
.loader-spin,
.loader-spin:after {
  border-radius: 50%;
  width: 3em;
  height: 3em;
}
.loader-spin {
  margin: auto auto;
  font-size: 6px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.8em solid rgb(255 255 255 / 20%);
  border-right: 0.8em solid rgb(255 255 255 / 20%);
  border-bottom: 0.8em solid rgb(255 255 255 / 20%);
  border-left: 0.8em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-spin-an 1.1s infinite linear;
  animation: load-spin-an 1.1s infinite linear;
}
@-webkit-keyframes load-spin-an {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-spin-an {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
span#full_cart_count {
    /* background: #160ab9; */
    border-radius: 20px;
    position: relative;
    top: 0px;
    line-height: 20px;
    padding: 0 10px;
    /* width: 25px; */
    /* height: 25px; */
    /* border: 2px solid #ffffff; */
    font-family: emoji;
    color: #ffba00;
    font-size: 20px;
    display: inline-block;
    font-weight: 800;
}
#spinnerLoader {
    /* display: none; */
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999999999;
    background: rgb(210 215 255 / 71%) url(../images/spinner.gif) center no-repeat;
}
.cart_btns .cart_total {
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
}
.f-jcsb {
    justify-content: space-between;
}
.small-font.mb15 {
    text-align: left;
    font-size: 11px;
}
.small-font.mb15 a {
    font-size: 11px;
    color: #0004ff;
}
.shipping_policy h1,.terms_conditions h1,.privacy_policy h1,.returns_refunds h1 {
    text-align: center;
    /* margin: 0 23px; */
    font-family: 'Raleway';
    color: #16186b;
    /* background: #f2f3f7; */
    font-size: 35px;
}
.shipping_policy strong ,.terms_conditions strong,.privacy_policy strong  {font-weight: 800;color: #0087ff;}
.shipping_policy p span, .terms_conditions p span,.privacy_policy p span {
    color: #2900fb;
    font-weight: bold;
}
.product_detail_to_cart {
    background: #00005a;
    padding: 11px;
    color: #fff !important;
}
.cart_total span:last-child {
    color: #b700ff;
    font-size: 20px;
}
.cart_total span:first-child {
    color: #141414;
    font-size: 18px;
    position: relative;
    top: 3px;
}
#checkout-area  h6 {
    font-size: 12px !important;
}
.home_title_1 h2 {
    color: #040768;
    /* margin: 0vh 0 5vh 0; */
    /* border-bottom: 1px dashed #040768; */
    padding: 0 0 0px 0;
}
.home_title_2 h2,.home_title_3 h2,.home_title_4 h2,.home_title_5 h2 {
    color: #040768;
    /* margin: 0vh 0 0vh 0; */
    /* padding: 0 0 0 0; */
}
.category_carousel_heading h2 {
    color: #040768;
    margin: 0vh 0 2vh 0;
    /* border-bottom: 1px dashed #040768; */
    padding: 0 0 10px 0;
}
.category_carousel_heading p {
    color: #0a10b8;
    font-size: 13px;
    font-weight: 600;
}
.gallery_heading h2 {
    color: #040768;
    margin: 0vh 0 2vh 0;
    /* border-bottom: 1px dashed #040768; */
    padding: 0 0 10px 0;
}
.gallery_heading p {
    color: #0a10b8;
    font-size: 13px;
    font-weight: 600;
}
.class_collections h2,.class_collections p {
    color: #01048f;
}
.class_new-arrivals h2,.class_new-arrivals p {
    color: #01048f;
}
.class_about-us h2,.class_about-us p {
    color: #01048f;
}
.class_faq h2,.class_faq p {
    color: #01048f;
}
.home_title_2,.home_title_3,.home_title_4,.home_title_5 {
    margin: 0 0 50px  0!important;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #c1ccff;
    box-shadow: 0px 5px 10px #d4dcff;
}
.home_title_1 {
    padding: 105px 80px  0 80px;
}
.faq_section_1 {
    padding: 0 00px  20px 00px;
}

#faq-area .section-heading {
    margin: 0 0 25px 0!important;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #c1ccff;
    box-shadow: 0px 5px 10px #d4dcff;
}
.feature-single .icon {
    width: 60px;
    height: 60px;
    display: inline-table;
    background: #c7ceff;
    border-radius: 5px;
}
.feature-single:hover i {
    color: #0600ff;
}
.feature-single i {
    font-size: 45px;
    color: #4a4b56;
    border-radius: 50%;
    transition: 0.5s;
    background-color: #fff0;
    top: 7px;
    left: 1px;
}
#backtotop {
	position: fixed;
	right: 0;
	/* display: none; */
	bottom: 15px;
	margin: 0 10px 0 0;
	z-index: 999999999;
	text-align: center;
}

#backtotop a {
	text-decoration: none;
	border: 0 none;
	display: block;
	width: 48px;
	height: 48px;
	background-color: #ffa700;
	opacity: 1;
	transition: all 0.3s;
	border-radius: 25px;
	text-align: center;
	font-size: 30px;
	/* z-index: 99999999999999; */
	text-align: center;
}
#backtotop a i {
	text-align: center;
	margin: 0 10px;
}

body #backtotop a {color: #0000ff;}

#backtotop a:after {
    content: "\eab2";
    font-family: "IcoFont";
}
img.rounded-4.fit {
    width: 100%;
}
.item-thumb {
    padding: 5px 5px;
}
.product_bottom_detail .info {
    padding: 0 10px;
    background: #f3f3f3;
    display: inline-block;
    font-size: 10px;
}
.product_bottom_detail .info a {
    padding: 0px;
}
.related_container {
    background: whitesmoke;
}
div#detailed_infos .nav-link
{
    background: whitesmoke;
    color: #0f0d89;
    font-weight: bold;
}
div#detailed_infos .nav-link.active {
    color: #FFC107 !important;
    background: #100f65;
    border-bottom: 6px solid #FFC107;
}
div#detailed_infos .nav-link:hover {
    color: #000aff;
}
div#detailed_infos .inner {
    position: relative;
    display: block;
    background: #aeb4ff47;
    text-align: center;
    padding: 30px 0 26px;
    border-radius: 10px;
    border-bottom: 3px solid #9aa6ff;
}

div#detailed_infos .inner .icon{
    font-size: 70px;
    color: #100f65;
}
div#detailed_infos .inner .title{
    position: relative;
    display: block;
}
div#detailed_infos .inner .title h4{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin: 18px 0 0;
    color: #00950d;
}
div#detailed_infos h2{
    font-size: 20px;
}
section#product-detail .rating i.icofont-star {
 color :#ffb83d;   
}
section#product-detail .rating i.not {
 color: #dddddd;
}
span.reviews {
    color: #979797;
    font-size: 18px;
}
.review-list ul li .left span {
     width: 32px;
     height: 32px;
     display: inline-block;
}
 .review-list ul li .left {
     flex: none;
     max-width: none;
     margin: 0 10px 0 0;
}
 .review-list ul li .left span img {
     border-radius: 50%;
}
 .review-list ul li .right h4 {
     font-size: 16px;
     margin: 0;
     display: flex;
}
 .review-list ul li .right h4 .gig-rating {
     display: flex;
     align-items: center;
     margin-left: 10px;
     color: #ffbf00;
}
 .review-list ul li .right h4 .gig-rating svg {
     margin: 0 4px 0 0px;
}
 .country .country-flag {
     width: 16px;
     height: 16px;
     vertical-align: text-bottom;
     margin: 0 7px 0 0px;
     border: 1px solid #fff;
     border-radius: 50px;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
 .country .country-name {
     color: #95979d;
     font-size: 13px;
     font-weight: 600;
}
 .review-list ul li {
     border-bottom: 1px solid #dadbdd;
     padding: 10px 0;
     margin: 10px 0;
}
 .review-list ul li .right {
     flex: auto;
}
 .review-list ul li .review-description {
     /* margin: 20px 0 0; */
}
 .review-list ul li .review-description p {
     font-size: 14px;
     margin: 0;
}
 .review-list ul li .publish {
     font-size: 13px;
     color: #95979d;
     padding: 10px 0 !important;
}

.review-section h4 {
     font-size: 24px;
     color: #e7b500;
     font-weight: 700;
}
 .review-section .stars-counters tr .stars-filter.fit-button {
     padding: 6px;
     border: none;
     color: #8f8f8f;
     text-align: left;
     font-size: 12px;
}
 .review-section .fit-progressbar-bar .fit-progressbar-background {
     position: relative;
     height: 8px;
     background: #efeff0;
     -webkit-box-flex: 1;
     -ms-flex-positive: 1;
     flex-grow: 1;
     /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
     background-color: #e8eaed;
     border-radius: 999px;
}
 .review-section .stars-counters tr .star-progress-bar .progress-fill {
     background-color: #e7b80f;
}
 .review-section .fit-progressbar-bar .progress-fill {
     background: #2cdd9b;
     background-color: rgb(29, 191, 115);
     height: 100%;
     position: absolute;
     left: 0;
     z-index: 1;
     border-radius: 999px;
}
 .review-section .fit-progressbar-bar {
     display: flex;
     align-items: center;
}
 .review-section .stars-counters td {
     white-space: nowrap;
}
tr.rating_percentage td {
    padding: 10px 0;
}
 .review-section .stars-counters tr .progress-bar-container {
     width: 100%;
     padding: 0 10px 0 6px;
     margin: auto;
}
 .ranking h6 {
     font-weight: 600;
     padding-bottom: 16px;
}
 .ranking li {
     display: flex;
     justify-content: space-between;
     color: #95979d;
     padding-bottom: 8px;
}
 .review-section .stars-counters td.star-num {
     color: #706d3f;
     font-weight: bold;
}
 .ranking li>span {
     color: #62646a;
     white-space: nowrap;
     margin-left: 12px;
}
 .review-section {
     border-bottom: 1px solid #dadbdd;
     padding-bottom: 24px;
     margin-bottom: 34px;
     /* padding-top: 64px; */
     /* background: red; */
}
 .review-section select, .review-section .select2-container {
     width: 188px !important;
     border-radius: 3px;
}
ul, ul li {
    list-style: none;
    margin: 0px;
}
.helpful-thumbs, .helpful-thumb {
    display: flex;
    align-items: center;
    font-weight: 700;
}
h5.reviews_count {
    font-size: 15px;
    margin: 20px 0 0 0;
    font-weight: bolder;
    color: #ff4900;
}
.review-list {
    background: #f7f7f7;
    padding: 20px;
    border: 1px solid #e5e5e5;
}
span.based_rating {
    font-size: 12px;
    color: #100f65;
}
form#ReviewForm .error {
    color: red;
    font-size: 12px;
}
.rating_customer i.not {
    color: #dedede !important;
}

.rating_customer i.icofont-star {
    color: #ffb300;
}
.prd_dimenstions tr td span {
    color: #8d8d8d;
    font-size: 12px;
}
td.py-2 .icofont-square {
    font-size: 30px;
    line-height: 0;
}
#button-minus {
    line-height: 0 !important;
    font-size: 33px;
    background: #fff;
    border: none;
    color: red;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
#button-add {
    line-height: 0 !important;
    background: #fff;
    border: none;
    color: #0257ff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
a#addToCart {
    width: 100%;
    background: #151515;
    border-color: #000000;
}
#checkout-area .user_detail {
    background: white;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    padding: 25px 40px;
}
h4.detail-heading {
    padding: 15px 0;
    font-weight: 500;
    color: #646464;
    font-size: 30px;
    border-bottom: 1px solid #ebebeb;
}
.margin-auto{
    margin:auto;
}
.subtotal {
    color: #646464;
    font-size: 15px;
    font-weight: 800;
}
.checkout_img {
    background: #ededed;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
}
.checkout_count_by_product
{
    color: #00db1d;
    font-family:'Arial';
    font-weight: 700;
}
td.cart_price {
    font-weight: bold;
    font-family: 'Arial';
    text-align: right;
    color: #004fc9;
}
td.total_result {
    text-align: right;
    /* font-family: 'Arial'; */
    font-weight: 600;
    padding: 15px 0 0 0;
}



.product-card {
    position: relative;
    max-width: 380px;
    padding-top: 12px;
    padding-bottom: 43px;
    transition: all 0.35s;
    border: 1px solid #e7e7e7;
  }
  .product-card .product-head {
    padding: 0 15px 8px;
  }
  .product-card .product-head .badge {
    margin: 0;
  }
  .product-card .product-thumb {
    display: block;
  }
  .product-card .product-thumb > img {
    display: block;
    width: 100%;
  }
  .product-card .product-card-body {
    padding: 0 20px;
    text-align: center;
  }
  .product-card .product-meta {
    display: block;
    padding: 12px 0 2px;
    transition: color 0.25s;
    color: rgba(140, 140, 140, .75);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
  }
  .product-card .product-meta:hover {
    color: #8c8c8c;
  }
  .product-card .product-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
  }
  .product-card .product-title > a {
    transition: color 0.3s;
    color: #343b43;
    text-decoration: none;
  }
  .product-card .product-title > a:hover {
    color: #ac32e4;
  }
  .product-card .product-price {
    display: block;
    color: #404040;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
  }
  .product-card .product-price > del {
    margin-right: 6px;
    color: rgba(140, 140, 140, .75);
  }
  .product-card .product-buttons-wrap {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
  }
  .product-card .product-buttons {
    display: table;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 12px 20px 1px rgba(64, 64, 64, .11);
  }
  .product-card .product-button {
    display: table-cell;
    position: relative;
    width: 50px;
    height: 40px;
    border-right: 1px solid rgba(231, 231, 231, .6);
  }
  .product-card .product-button:last-child {
    border-right: 0;
  }
  .product-card .product-button > a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    color: #404040;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
  }
  .product-card .product-button > a:hover {
    background-color: #ac32e4;
    color: #fff;
  }
  .product-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 20px 1px rgba(64, 64, 64, .09);
  }
  .product-category-card {
    display: block;
    max-width: 400px;
    text-align: center;
    text-decoration: none !important;
  }
  .product-category-card .product-category-card-thumb {
    display: table;
    width: 100%;
    box-shadow: 0 12px 20px 1px rgba(64, 64, 64, .09);
  }
  .product-category-card .product-category-card-body {
    padding: 20px;
    padding-bottom: 28px;
  }
  .product-category-card .main-img, .product-category-card .thumblist {
    display: table-cell;
    padding: 15px;
    vertical-align: middle;
  }
  .product-category-card .main-img > img, .product-category-card .thumblist > img {
    display: block;
    width: 100%;
  }
  .product-category-card .main-img {
    width: 65%;
    padding-right: 10px;
  }
  .product-category-card .thumblist {
    width: 35%;
    padding-left: 10px;
  }
  .product-category-card .thumblist > img:first-child {
    margin-bottom: 6px;
  }
  .product-category-card .product-category-card-meta {
    display: block;
    padding-bottom: 9px;
    color: rgba(140, 140, 140, .75);
    font-size: 11px;
    font-weight: 600;
  }
  .product-category-card .product-category-card-title {
    margin-bottom: 0;
    transition: color 0.3s;
    color: #343b43;
    font-size: 18px;
  }
  .product-category-card:hover .product-category-card-title {
    color: #ac32e4;
  }
  .product-gallery {
    position: relative;
    padding: 45px 15px 0;
    box-shadow: 0 12px 20px 1px rgba(64, 64, 64, .09);
  }
  .product-gallery .gallery-item::before {
    display: none !important;
  }
  .product-gallery .gallery-item::after {
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, .26);
  }
  .product-gallery .video-player-button, .product-gallery .badge {
    position: absolute;
    z-index: 5;
  }
  .product-gallery .badge {
    top: 15px;
    left: 15px;
    margin-left: 0;
  }
  .product-gallery .video-player-button {
    top: 0;
    right: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .product-gallery .product-thumbnails {
    display: block;
    margin: 0 -15px;
    padding: 12px;
    border-top: 1px solid #e7e7e7;
    list-style: none;
    text-align: center;
  }
  .product-gallery .product-thumbnails > li {
    display: inline-block;
    margin: 10px 3px;
  }
  .product-gallery .product-thumbnails > li > a {
    display: block;
    width: 94px;
    transition: all 0.25s;
    border: 1px solid transparent;
    background-color: #fff;
    opacity: 0.75;
  }
  .product-gallery .product-thumbnails > li:hover > a {
    opacity: 1;
  }
  .product-gallery .product-thumbnails > li.active > a {
    border-color: #ac32e4;
    cursor: default;
    opacity: 1;
  }
  .product-meta {
    padding-bottom: 10px;
  }
  .product-meta > a, .product-meta > i {
    display: inline-block;
    margin-right: 5px;
    color: rgba(140, 140, 140, .75);
    vertical-align: middle;
  }
  .product-meta > i {
    margin-top: 2px;
  }
  .product-meta > a {
    transition: color 0.25s;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }
  .product-meta > a:hover {
    color: #8c8c8c;
  }
  .cart-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 50px 0 10px;
    background-color: #fff;
    box-shadow: 0 12px 20px 1px rgba(64, 64, 64, .09);
  }
  .stock_in_cmd .cart-item-label {
    color: #000000 !important;
  }
  .cart-item .cart-item-label {
    display: block;
    margin-bottom: 15px;
    color: #8c8c8c;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .cart-item .cart-item-product {
    display: table;
    width: 420px;
    text-decoration: none;
  }
  .cart-item .cart-item-product-thumb, .cart-item .cart-item-product-info {
    display: table-cell;
    vertical-align: top;
  }
  .cart-item .cart-item-product-thumb {
    /* width: 110px; */
  }
  .cart-item .cart-item-product-thumb > img {
    display: block;
    /* width: 100%; */
  }
  .cart-item .cart-item-product-info {
    /* padding-top: 25px; */
    position: relative;
    left: 5px;
  }
  .cart-item .cart-item-product-info > span {
    display: block;
    margin-bottom: 2px;
    color: #404040;
    font-size: 12px;
  }
  .cart-item h4.cart-item-product-title {
    margin-bottom: 8px;
    transition: color, 0.3s;
    color: #343b43;
    font-size: 16px;
    font-weight: bold;
  }
  .cart-item .cart-item-product:hover .cart-item-product-title {
    color: #0400ff;
  }
  .cart-item .count-input {
    display: inline-block;
    /* width: 85px; */
  }
  .cart-item .remove-item {
    right: -10px !important;
  }
  @media (max-width: 991px) {
      #header li.nav-item {
    padding: 10px 10px;
    border-bottom: 1px solid #00c4ff;
    margin: 0  0 5px 0;
}
          #header {
     background : #00071f;
    }
    .cart-item {
      padding-right: 30px;
    }
    .cart-item .cart-item-product {
      width: auto;
    }
  }
  @media (max-width: 768px) {
#header form.d-flex.searchmode {
    position: relative;
    top: 0px !important;
    left: 0 !important;
    margin: auto;
}

      
      #header li.nav-item {
    padding: 10px 10px;
    border-bottom: 1px solid #787cff;
    margin: 0  0 5px 0;
}
    .sticky li.nav-item {
        border-bottom: 1px solid #e5e7e7 !important;
    }

    .cart-item {
      padding-right: 10px;
      padding-bottom: 15px;
    }
    .cart-item .cart-item-product {
      display: block;
      width: 100%;
      text-align: center;
    }
    .cart-item .cart-item-product-thumb, .cart-item .cart-item-product-info {
      display: block;
    }
    .cart-item .cart-item-product-thumb {
      margin: 0 auto 10px;
    }
    .cart-item .cart-item-product-info {
      padding-left: 0;
    }
    .cart-item .cart-item-label {
      margin-bottom: 8px;
    }
  }
  .comparison-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .comparison-table table {
    min-width: 750px;
    table-layout: fixed;
  }
  .comparison-table .comparison-item {
    position: relative;
    margin-bottom: 10px;
    padding: 13px 12px 18px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 12px 20px 1px rgba(64, 64, 64, .09);
  }
  .comparison-table .comparison-item .comparison-item-thumb {
    display: block;
    width: 80px;
    margin-right: auto;
    margin-bottom: 12px;
    margin-left: auto;
  }
  .comparison-table .comparison-item .comparison-item-thumb > img {
    display: block;
    width: 100%;
  }
  .comparison-table .comparison-item .comparison-item-title {
    display: block;
    margin-bottom: 14px;
    transition: color 0.25s;
    color: #404040;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
  .comparison-table .comparison-item .comparison-item-title:hover {
    color: #ac32e4;
  }
  .remove-item {
    display: block;
    position: absolute;
    top: -15px;
    font-size: 15px;
    width: 30px;
    height: 30px;
    padding: 7px 7px;
    border-radius: 50%;
    background-color: #ff5252;
    color: #fff;
    line-height: 23px;
    border: none;
    text-align: center;
    box-shadow: 0 3px 12px 0 rgba(255, 82, 82, .5);
    cursor: pointer;
  }
.stock_in_cmd .removable_products{
    background: #fbfbfb;
    color: black;
    box-shadow: 0 3px 12px 0 rgb(0 0 0 / 50%);
}

  .card-wrapper {
    margin: 30px -15px;
  }
  @media (max-width: 576px) {
    .card-wrapper .jp-card-container {
      width: 260px !important;
    }
    .card-wrapper .jp-card {
      min-width: 250px !important;
    }
  }
span.product_category {
    margin: 0 10px 0 0;
    background: #001252;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 5px;
    font-weight: bold;
    color: #e5e5e5;
}
p.heading_terms {
    font-weight: bold !important;
    background: #ffe000;
    color: #523f04 !important;
}
.terms_conditions ul {
    padding: 0 35px;
}
.terms_conditions ul li {
    padding: 0px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
}
.terms_conditions p {
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 28px;
    color: black;
}
.shipping_policy p {
    margin: 0 0 25px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    color: black;
}
.privacy_policy p {
    margin: 0 0 35px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
    color: black;
}
.returns_refunds p {
    margin: 0 0 35px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
    color: black;
}
.privacy_policy h3.mt-4,.shipping_policy h3.mt-4,.terms_conditions h3.mt-4,.returns_refunds h3.mt-4 {
    color: #0e0baf;
    font-size: 15px;
    font-weight: 800;
    border-bottom: 1px dashed #0500ff;
    display: inline-block;
}
.of_privacy {
    /* background: #f2f3f7; */
}
.terms_conditions {
    background: #fff;
    padding: 0 15px;
    margin: 20px 0;
}
.privacy_policy {
    background: white;
    padding: 0 15px;
    margin: 20px 0;
}
.shipping_policy {
    padding: 0 15px;
    background: #fff;
    margin: 20px 0;
}
.returns_refunds {
    background: white;
    padding: 0 15px;
    margin: 20px 0;
}

.shipping_policy .heading_terms strong {
    color: #ff6c00;
}
.feature-single.text-center p {
    font-weight: 600;
    font-size: 12px;
}
.returns_refunds span.notice {
    color: #4c2700;
    font-weight: bold;
    background: #ffe000;
    padding: 5px 5px;
}
.contaniner {
  position: relative;
  flex-grow: 1;
  margin: auto;
  max-width: 1200px;
  max-height: 1200px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 2vmin;
  justify-items: center;
  align-items: center;
}
 
.contaniner img {
  z-index: 1;
  grid-column: span 2;
  max-width: 100%;
  margin-bottom: -52%;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all .25s;
}
.contaniner img:nth-child(7n + 1) {
  grid-column: 2 / span 2;
}
.contaniner img:hover {
  z-index: 2;
  -webkit-transform: scale(2);
  transform: scale(1.4);
}

form.searchbox {
    margin: auto 0;
}
#header ul.navbar-nav {
    /* background: white; */
    /* padding: 8px; */
    /* margin: 0 10px; */
    /* border-radius: 10px; */
}

.sticky form.d-flex.searchmode {border: 1px solid #cdcdcd;}
.searchmode {
    background: white;
    border-radius: 5px;
}
.searchmode button {
    margin: 5px auto;
    text-align: center;
}

.searchmode input {
    margin: auto !important;
    border: none;
}
@media(min-width:1199px){
        .mobile_mode{
        display: none !important;!i;!;
        background: #0000006e;
    }
}
@media (min-width: 992px) {
        .navbar-expand-lg .navbar-toggler {
        /* display: block; */
    }
    .mobile_mode{
        display: block;
        background: #0000006e;
    }
    .sticky    .mobile_mode{
        display: block;
        background: #080040;
    }
        .sticky    .mobile_mode .navbar-nav .nav-item .nav-link{
        display: block;
        color: #ffffff !important;!i;!;
    }
#header div#navbarsExample07XL {
    /* margin: 15px auto; */
    position: relative;
    left: 50px;
    top: 20px;
    /* background: #ffffff; */
    padding: 5px;
    border-radius: 10px;
}
.mobile_mode div#navbarsExample07XL {
    /* margin: 15px auto; */
    position: relative;
    left: 50px;
    top: 0 !important;!i;!;
    /* background: #ffffff; */
    padding: 5px;
    border-radius: 10px;
}
    #header form.d-flex.searchmode {
    position: relative;
    top: 25px;
    /* left: 50px; */
}
}
#header ul.dropdown-menu li {
    padding: 10px;
    background: white;
}

ul.dropdown-menu.show {}

#header ul.dropdown-menu {
    margin: 15px 0;
}
#header form.d-flex.searchmode {
    position: relative;
    top: 20px;
    /* left: 25px; */
}
#header .dropdown-menu .nav-item:last-child {background: #ffa700;}
span.discount_n {
    background: #4d4d4d;
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}
span.discount_y {
    background: #d9d9d9;
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    color: #4f4f4f;
    font-weight: bolder;
}
#checkout-area .cart_total span:last-child {
    font-weight: bold;
    font-family: 'Raleway';
    font-size: 15px;
    color: black;
    top: 0px;
}
.font-size-10 {
    font-size: 12px;
    font-weight: bolder;
}
#checkout-area .cart_price,#checkout-area .carte_price_out_stock {
    color: #000000;
    font-weight: bolder;
}
#checkout-area span#net_total {
    font-size: 27px;
    font-weight: bolder;
    color: #2304bf;
}
.bg-custom {
    background: #fdcc07 !important;
}
td.net_total span {
    position: relative;
    top: -10px;
}
#checkout-area .badge-pill {
    color: #002799;
    font-size: 20px;
}
#checkout-area i.icofont-square {
    font-size: 20px;
    /* border: 1px solid red; */
}
.stock_in_cmd {
    top: -30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #ffffff;
    border: 1px solid #0048a1;
}
.cart-item-order-stock {
    padding: 0px 80px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #5e5e5e;
}
.out_of_stock {
    background: #b5ddff;
    border-top: 1px solid #1d82ff;
}
input.quantity_offset {
    font-weight: bold;
    background: #d0edff;
    color: #5b7f9d;
    border: 1px solid #5b7f9d;
    margin: 0 5px;
    text-align: center;
    width: 40px;
    height: 40px;
    position: relative;
    top: 1px;
}
button.disabled {background: #5b7f9d;cursor: default !important;border: none;}
button.disabled:hover {background: #2d3a45;cursor: default !important;border: none;}
.d-none {
    display: none !important;
}
.cart-item-order-stock strong {
    color: black;
    font-size: 17px;
}
.out_of_stock .cart-item-product:hover .cart-item-product-title {
    color: #003466 !important;
}
#checkout-area .out_of_stock .carte_price_out_stock {
    color: #003f8d;
}
.out_of_stock .cart-item-label {
    color: #012a4b;
}
input.quantity_checkout {
    border: 1px solid #404040;
}
.stock_in_cmd .value-button {
    background: #16186b;
}
.icofont-duotone.icofont-menu:before {
    content: "\13b65";
    top: 6px !important;
    color: #8eb300;
}

.icofont-duotone.icofont-menu:after {
    content: "\13b64";
    position: relative;
    top: 4px !important;
    color: #0e8fa5;
}
.icofont-duotone.icofont-components:before {
    content: "\13aef";
    top: 7px !important;
    color: #b59000;
}
.icofont-duotone.icofont-components:after {
    content: "\13aee";
    position: relative;
    top: 5px !important;
}
.icofont-dashboard:before {
    content: "\eefa";
    left: -23px !important;
    top: 0px !important;
}
.icofont-chat:before {
    content: "\eed5";
    left: -23px !important;
    top: 5px !important;
}
.icofont-simple-smile:before {
    content: "\eb02";
    left: -23px !important;
    top: 4px !important;
}
.icofont-fast-delivery:before {
    content: "\ee21";
    top: -2px !important;
    left: -33px !important;
    font-size: 60px;
}
.product-single {
    position: relative;
}

.favorite-icon {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    cursor: pointer;
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    background-color: rgba(255, 255, 255, 0.8); /* Optional background */
    border-radius: 50%; /* Optional rounded shape */
    align-items: center;
    justify-content: center;
}

.product-single:hover .favorite-icon {
    display: flex;
}

.favorite-icon i {
    font-size: 25px;
    color: #fe0700;
}
section#impact-area_1,section#impact-area_2,section#impact-area_3,section#impact-area_4 {
    padding: 50px 0 50px 0;
}
.impact-img {
    text-align: center;
}

section.impact_1_section {
    background: #f7f5e9;
}
section.impact_2_section {
    background: #caedcf;
}
section.impact_3_section {
    background: #fcfcf2;
}
section.impact_4_section {
    background: #f8f1e6;
}

.impact-img img {
    border-radius: 10px;
    /* text-align: center; */
}
.radio-buttons-container {
    align-items: center;
    gap: 24px;
  }
  
  .radio-button {
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    background: #fbfdff;
    padding: 15px;
    border: 1px solid #4980ff;
    /* border-left: 1px solid #005fff; */
    /* border-right: 1px solid #005fff; */
    margin: 0 0 5px auto;
  }
  
  .radio-button__input {
    position: relative;
    left: 30px;
  }
  
  .radio-button__label {
    display: inline-block;
    padding-left: 30px;
    /* margin-bottom: 10px; */
    font-size: 16px !important;
    position: relative;
    /* font-size: 16px; */
    color: #0078ff;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .radio-button__custom {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #005fff;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .radio-button__input:checked + .radio-button__label .radio-button__custom {
    transform: translateY(-50%) scale(0.9);
    border: 5px solid #005fff;
    color: #000000;
  }
  
  .radio-button__input:checked + .radio-button__label {
    color: #0a10b8;
  }
  
  .radio-button__label:hover .radio-button__custom {
    transform: translateY(-50%) scale(1.2);
    border-color: #005fff;
    box-shadow: 0 0 10px #ffffff80;
  }
  
  #process-checkout {
    font-family: 'Raleway', sans-serif !important;
    font-weight: bolder;
    font-size: 10px;
    text-transform: uppercase;
    padding: 75px 0;
}

  
  #process-checkout label{
    'Raleway', font-family: sans-serif;
    /* font-family: 'Raleway', sans-serif !important; */
    /* font-weight: bolder; */
    font-size: 13px;
    text-transform: uppercase;
}
h4.checking_titles {
    background: #ececec;
    padding: 10px;
    font-weight: bold;
    color: #0006fa;
}
.payment_card h6 {position: relative;top: 10px;left: 5px;margin-right: 15px;}
.payment_card .price_of_single {
    color: black !important;
    font-weight: bold;
    font-size: 13px;
    font-family: sans-serif;
}
.payment_card small.count_small {
    position: absolute;
    background: #004dff;
    border-radius: 50px;
    font-weight: bolder;
    border: 1px solid #0023ff;
    padding: 5px 0;
    top: 0;
    color: white;
    text-align: center;
    left: 5px;
    font-family: monospace;
    min-block-size: 2rem;
    min-height: 2rem;
    min-inline-size: 2rem;
    min-width: 2rem;
}
.payment_card strong.total {
    font-size: 25px;
    font-weight: bolder;
    color: #00fff0;
}
.payement_icons {
    position: relative;
    top: 10px;
    right: 5px;
}
.card-footer.total_payment {
    background: #090080;
    font-family: math;
    padding: 10px;
    border-radius: 5px;
}

.card-footer.total_payment span {
    font-size: 23px;
    color: #fff;
}
#collapseDebitCard {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

#collapseDebitCard.show {
    height: auto; /* Allow the content to take full height when expanded */
    overflow: visible;
}
#paymentAccordion .accordion-item {
    border: none;
}

section#checkout-area .accordion-item {
    background: none;
    border: none;
}
.customerInfo {
    background: white;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #cecece;
}
.totalInfo {
    /* background: white; */
    border-radius: 5px;
    padding: 10px;
    /* border: 1px solid #cecece; */
}
.checkout_total_button {
    width: 100%;
}
label.label_newsletter {
    font-size: 12px;
    color: #001888 !important;
    font-weight: bold;
}
@media (min-width: 1025px) {
.h-custom {
height: 100vh !important;
}
}

.horizontal-timeline .items {border-top: 2px solid #040768;}

.horizontal-timeline .items .items-list {
position: relative;
margin-right: 0;
}

.horizontal-timeline .items .items-list:before {content: "";position: absolute;height: 8px;width: 8px;border-radius: 50%;background-color: #040768;top: 0;margin-top: -5px;}

.horizontal-timeline .items .items-list {
padding-top: 15px;
}
section#order_confirmed-area hr {
    border: 1px solid #040768;
    opacity: 1;
}
div#__cmus {
    background: #141e73;
    color: #fff;
    border: 3px solid #88e8ff;
}
.full_description p {
    font-weight: bold;
    line-height: 2.5;
    font-size: 14px;
    margin: 25px 0 0 0;
}
.full_description strong {
    font-weight: 900;
    line-height: 3;
    font-size: 15px;
    color: #4f52b3;
}
.full_description ul li {
    font-weight: 900;
    line-height: 2.5;
    font-size: 12px;
    color
}
#product-detail hr {
    border: 1px dashed #ffffff;
    /* opacity: 1; */
}
.row.detail_product_items dd {
    padding: 5px 0px;
    font-family: 'Arial';
}
.row.detail_product_items dt {
    padding: 5px 0;
    font-family: 'Raleway';
}
.detail_product_items{
    margin: 0px 0  45px 25px;
    position: relative;
    top: 25px;
}
#contact_form .form-group {
    margin: 10px 0;
}
#contact_form .error {
    color: red;
    background: #ffd9d9;
    display: block;
    padding: 5px;
    font-size: 15px;
    margin: 10px 0;
}


.card{
    margin: auto;
    border-top: 3px solid rgb(252, 103, 49);
    border-bottom: 3px solid rgb(252, 103, 49);
    border-left: none;
    border-right: none;
}
@media(max-width:768px){
    .card{
        width: 90%;
    }
}
#single_order_detail-area .title{
    color: rgb(61 0 187);
    font-weight: 600;
    margin-bottom: 2vh;
    padding: 0px 8%;
    font-size: initial;
    font-size: 23px;
}
#details{
    font-weight: 400;
}
.info{
    padding: 5% 8%;
}
.info .col-5{
    padding: 0;
}
#heading{
    color: grey;
    line-height: 6vh;
}
.pricing{
    background-color: #ebb1ff33;
    padding: 2vh 8%;
    font-weight: 400;
    line-height: 2.5;
}
.pricing .col-3{
    padding: 0;
}
.total{
    padding: 2vh 8%;
    color: rgb(252, 103, 49);
    font-weight: bold;
}
.total .col-3{
    padding: 0;
}
.footer{
    padding: 0 8%;
    font-size: x-small;
    color: black;
}
.footer img{
    height: 5vh;
    opacity: 0.2;
}
.footer a{
    color: rgb(193 8 255);
}
.footer .col-10, .col-2{
    display: flex;
    padding: 3vh 0 0;
    align-items: center;
}
.footer .row{
    margin: 0;
}
#progressbar {
    margin-bottom: 3vh;
    overflow: hidden;
    color: rgb(252, 103, 49);
    padding-left: 0px;
    margin-top: 3vh
}

#progressbar li {
    list-style-type: none;
    font-size: x-small;
    width: 25%;
    float: left;
    position: relative;
    text-align: center;
    font-weight: 400;
    color: rgb(160, 159, 159);
}

#progressbar #step1:before {
    content: "";
    color: rgb(252, 103, 49);
    width: 5px;
    height: 5px;
    margin-left: 0px !important;
    /* padding-left: 11px !important */
}

#progressbar #step2:before {
    content: "";
    color: #fff;
    width: 5px;
    height: 5px;
}

#progressbar #step3:before {
    content: "";
    color: #fff;
    width: 5px;
    height: 5px;
    margin-right: 32% ; 
    /* padding-right: 11px !important */
}

#progressbar #step4:before {
    content: "";
    color: #fff;
    width: 5px;
    height: 5px;
    margin-right: 0px !important;
    /* padding-right: 11px !important */
}

#progressbar li:before {
    line-height: 29px;
    display: block;
    font-size: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    margin-bottom: 1vh;
}

#progressbar li:after {
    content: '';
    height: 2px;
    background: #ddd;
    position: absolute;
    left: 0%;
    right: 0%;
    margin-bottom: 2vh;
    top: 1px;
    z-index: 1;
}
.progress-track{
    padding: 0 8%;
}
#progressbar li:nth-child(2):after {
    margin-right: auto;
}

#progressbar li:nth-child(1):after {
    margin: auto;
}

#progressbar li:nth-child(3):after {
    float: left;
    width: 68%;
}
#progressbar li:nth-child(4):after {
    margin-left: auto;
    width: 132%;
}

#progressbar  li.active{
    color: black;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: rgb(252, 103, 49);
}
section#single_order_detail-area .card {
    margin: 5vh auto;
    /* width: 38%; */
    max-width:600px;
    padding: 4vh 0;
}
.pottery-trigger a.nav-link,.cart-trigger a.nav-link {
    padding: 0 !important;!i;!;
}
.sticky .navbar-toggler {
    background: #ff6100;
}
#header a.logo {
    position: relative;
    /* top: 5px; */
}
#search-area .product-image {
    /* width: 150px; */
}
#search-area .add_to_cart {
    background: #241854;
    /* display: inline-block; */
    /* float: right; */
    margin: 5px 0;
    padding: 8px 16px;
}
#search-area .add_to_cart:hover {
    background: #ac3e02;
}
#search-area .product-single h5 {
    font-weight: 800;
    color: #0a10b8;
    margin: 0 0 20px;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.category-single h4 {
    text-align: center;
    margin: 0 0 20px 0;
}



.timeline {
  width: 100%;
  background-color: #eff2ff;
  box-shadow: 0 5px 25px 5px rgb(230 234 255);
  /* padding: 10; */
}
.timeline .swiper-container {
  height: 600px;
  width: 100%;
  position: relative;
  border-bottom: 3px dotted #acbcff;
  border-top: 3px dotted #acbcff;
}
.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.timeline .swiper-slide {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.7); */
  /* box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7); */
  border-radius: 100%;
}
.timeline .swiper-slide-content {
  position: absolute;
  text-align: center;
  width: 80%;
  /* max-width: 310px; */
  right: 50%;
  top: 0;
  transform: translate(50%, 0);
  font-size: 12px;
  z-index: 2;
}
.timeline .swiper-slide .timeline-year {
  display: block;
  font-style: italic;
  font-size: 42px;
  /* margin-bottom: 50px; */
  transform: translate3d(20px, 0, 0);
  color: #ffffff;
  text-shadow: 0 3px 4px black;
  font-weight: 600;
  opacity: 0;
  transition: 0.2s ease 0.4s;
}
.timeline .swiper-slide .timeline-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.5s;
}
.timeline .swiper-slide .timeline-text {
  line-height: 1.5;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.6s;
}
.timeline .swiper-slide-active .timeline-year {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.6s;
}
.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.7s;
}
.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.8s;
  color: #000000 !important;!i;!;
  font-weight: 600;
}
.timeline .swiper-pagination {
  right: 15% !important;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}
.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: rgb(172 188 255);
}
.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: #b0b0b0;
  margin: 15px 0 !important;
  position: relative;
  font-weight: 600;
}
.timeline .swiper-pagination-bullet::before {
  content: "";
  border: 3px solid #8794ff;
  position: absolute;
  top: 8px;
  left: -36px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #ffffff;
  transform: scale(0);
  transition: 0.2s;
}
.timeline .swiper-pagination-bullet-active {
  color: #6d71ff;
  font-weight: 700;
}
.timeline .swiper-pagination-bullet-active::before {
  transform: scale(1);
}
.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
}
.timeline .swiper-button-prev {
  /* left: 8%; */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.timeline .swiper-button-prev:hover {
  transform: translateX(-3px);
}
.timeline .swiper-button-next {
  /* right: 8%; */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.timeline .swiper-button-next:hover {
  transform: translateX(3px);
}
@media screen and (min-width: 768px) {
  .timeline .swiper-slide::after {
    right: -30%;
    bottom: -8%;
    width: 240px;
    height: 50%;
    /* box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7); */
  }
  .timeline .swiper-slide-content {
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 675px;
    font-size: 11px;
    text-align: left;
  }
  .timeline .swiper-slide .timeline-year {
    margin-bottom: 0;
    font-size: 40px;
  }
  .timeline .swiper-slide .timeline-title {
    font-size: 46px;
    margin: 0;
    line-height: 1.2;
  }
  .timeline .swiper-pagination {
    display: flex;
  }
  .timeline .swiper-button-prev {
    top: 15%;
    left: auto;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-prev:hover {
    transform: rotate(90deg) translate(-3px, 10px);
  }
  .timeline .swiper-button-next {
    top: auto;
    bottom: 15%;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-next:hover {
    transform: rotate(90deg) translate(3px, 10px);
  }
}
@media screen and (min-width: 1024px) {
  .timeline .swiper-slide::after {
    left: 0;
    bottom: -12%;
    width: 240px;
    height: 50%;
    /* box-shadow: -230px 0 150px 39vw rgb(0 0 0 / 70%); */
  }
  .timeline .swiper-slide-content {
    left: 7%;
    padding: 0 40px;
  }
}
.nav-timeline {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.nav-timeline li {
    display: inline;
}
.nav-timeline a {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    background-color: #ff7700;
    color: white;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}
.nav-timeline a:hover, .nav-timeline a.active {
    background-color: #cc5f00;
    transform: scale(1.05);
}
.tab-content {
    padding: 20px;
    background: white;
    /* border: 1px solid #d5d8dc; */
    border-width: 1px;
}
#pills-tab li .nav-link.active {
    background-color: #ffffff !important;!i;!;
    color: #7483ff;
    border-radius: 0 !important;!i;!;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Raleway';
    letter-spacing: 2px;
    font-size: 12px;
}
#pills-tab li .nav-link {
    color: #929292;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.rts-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("../ressources/images/footer_bg.png");
  background-color: #080e3d;
  /* border-top-right-radius: 215px; */
  position: relative;
}
@media (max-width: 768px) {
  .rts-footer {
    padding-bottom: 0;
    padding-top: 40px;
  }
.rts-footer__widget--column:first-child {
    /* padding-bottom: 120px; */
    /* padding-top: 0; */
    background: transparent !important;!i;!;!i;!;
  }
    .rts-footer__widget--column:first-child .brand-desc, .rts-footer__widget--column:first-child .contact-method a {color: #d0ccff !important;!i;!;}
}
@media screen and (max-width: 992px) {
  .rts-footer.site-footer-one {
    padding-bottom: 130px;
  }
}
.rts-footer__widget {
  font-family: var(--font-secondary);
}
.rts-footer__widget.extra-padding {
  margin-left: 30px;
}
@media screen and (max-width: 1200px) {
  .rts-footer__widget.extra-padding {
    margin-left: 0;
  }
}
.rts-footer__widget a.footer__logo {
  margin-bottom: 20px;
  display: inline-block;
  margin-top: 0px;
}
.rts-footer__widget .brand-desc {
  font-family: var(--font-secondary);
  font-weight: bolder;
  margin-bottom: 0;
  color: #080e3d;
}
.rts-footer__widget .contact-method {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}
.rts-footer__widget .contact-method a span {
  height: 34px;
  width: 34px;
  border-radius: 3px;
  background: #0f052c;
  border: 1px solid #d09900;
  color: #fea600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 20px;
}
.rts-footer__widget h5.widget-title {
  color: #d0ccff;
  font-weight: var(--semibold);
  font-family: var(--font-secondary);
  display: inline-block;
  text-transform: capitalize;
  margin-bottom: 30px;
  line-height: 2;
  margin-top: 20px;
  font-weight: 800;
  border-bottom: 2px solid #ffa700;
}
.rts-footer__widget--menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.rts-footer__widget--menu ul li:not(:last-child) {
  margin-bottom: 16px;
}
.rts-footer__widget--menu ul li a {
    border-bottom: 1px dotted #8e85ff;
    /* border-bottom-style: dashed; */
    color: rgb(255 255 255);
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    padding-bottom: 10px;
    /* display: table; */
}
.rts-footer__widget form.newsletter {
  margin-bottom: 30px;
  position: relative;
}
.rts-footer__widget form.newsletter input {
  width: 100%;
  padding: 10px 50px;
  border-radius: 50px;
  background: var(--body-bg);
  box-shadow: 0px 4px 20px 0px rgba(229, 238, 255, 0.6);
  position: relative;
  border: 1px solid #EAF1FF;
}
.rts-footer__widget form.newsletter input.home-one {
  padding: 15px 50px;
}
.rts-footer__widget form.newsletter span {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.rts-footer__widget form.newsletter button {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--body-bg);
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.rts-footer__widget form.newsletter button i {
  transform: rotate(-30deg);
}
.rts-footer__widget form.newsletter button:hover {
  background: var(--color-third);
  color: var(--color-secondary);
}
.rts-footer__copyright {
  margin-top: 120px;
  padding: 30px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  border-top: 1px solid #D4DCFF;
}
.rts-footer__copyright p {
  margin: 0;
  line-height: 1.2;
}
.rts-footer.site-footer-two {
  padding: 120px 0;
  background: transparent !important;
}
.rts-footer__copyright-two {
  border-top: 1px solid #EAEAEA;
}
.rts-footer__copyright-two__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  line-height: 100%;
}
@media (max-width: 768px) {
  .rts-footer__copyright-two__wrapper {
    display: block;
    text-align: center;
  }
}
.rts-footer__copyright-two__wrapper p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .rts-footer__copyright-two__wrapper p {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .rts-footer__copyright-two__wrapper .payment__method ul {
    justify-content: center;
  }
}
.rts-footer.site-footer-three {
  background: var(--color-secondary);
}
.rts-footer.site-footer-four {
  background: #121833;
  position: relative;
  padding: 100px 0;
}
.rts-footer.site-footer-four::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url(../images/footer/footer__four__bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.rts-footer.site-footer-four .z-1 {
  z-index: 1;
}
.rts-footer.site-footer-four .rts-footer__widget .brand-desc {
  color: var(--color-white);
}
.rts-footer.site-footer-four .rts-footer__widget .site-default-border {
  border-color: #182040;
}
.rts-footer.site-footer-four .rts-footer__widget .contact-method {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.rts-footer.site-footer-four .rts-footer__widget .contact-method a {
  color: #fff;
}
.rts-footer.site-footer-four .rts-footer__widget .contact-method a span {
  height: 34px;
  width: 34px;
  border-radius: 3px;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.rts-footer.site-footer-four .rts-footer__widget h5.widget-title {
  color: var(--color-white);
}
.rts-footer.site-footer-four .rts-footer__widget p {
  color: var(--color-white);
}
.rts-footer.site-footer-four .rts-footer__widget--menu ul li a {
  color: var(--color-white);
  transition: all 0.3s ease;
}
.rts-footer.site-footer-four .rts-footer__widget--menu ul li a:hover {
  color: var(--color-third);
}
.rts-footer.site-footer-four .rts-footer__widget form.newsletter input {
  box-shadow: none;
}
.rts-footer.site-footer-four .rts-footer__widget .social__media h5 {
  color: var(--color-white);
}
.rts-footer.site-footer-four .rts-footer__widget .social__media .media {
  border-color: #182040;
  color: var(--color-white);
}
.rts-footer__copyright-two.style-four {
  border-color: #182040;
  background: #121833;
}
.rts-footer__copyright-two.style-four p {
  color: var(--color-white);
}
.rts-footer.site-footer-six {
  background: #121833;
  border-radius: 30px 30px 0 0;
  padding: 100px 0 80px 0;
}
.rts-footer.site-footer-six .rts-footer__widget {
  color: var(--color-white);
}
.rts-footer.site-footer-six .rts-footer__widget h5 {
  color: var(--color-white);
}
.rts-footer.site-footer-six .newsletter-style-six {
  padding: 30px 40px;
  border-radius: 10px;
  border: 1px solid #1E2751;
}
@media (max-width: 450px) {
  .rts-footer.site-footer-six .newsletter-style-six {
    padding: 30px 10px;
  }
}
.rts-footer.site-footer-six .newsletter-style-six h5 {
  color: var(--color-white);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.rts-footer.site-footer-six .newsletter-style-six h5 span {
  height: 30px;
  width: 30px;
  background: #4C5671;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--color-white);
}
.rts-footer.site-footer-six .newsletter-style-six p {
  color: var(--color-white);
}
.rts-footer.site-footer-six .newsletter-style-six form {
  margin: 25px 0;
}
.rts-footer.site-footer-six .newsletter-style-six .icon {
  color: var(--btc);
}
.rts-footer.site-footer-six .newsletter-style-six input {
  border-radius: 4px;
  box-shadow: none;
  color: var(--btc);
}
.rts-footer.site-footer-six .newsletter-style-six button {
  border-radius: 4px;
}
.rts-footer.site-footer-six .newsletter-style-six .social__media {
  display: flex;
  gap: 15px;
  align-items: center;
}
.rts-footer.site-footer-six .newsletter-style-six .social__media h5 {
  font-size: 16px;
  margin-bottom: 0;
}
.rts-footer.site-footer-six .newsletter-style-six .social__media .media {
  border-color: #1E2751;
  color: var(--color-white);
}
.rts-footer.game-footer {
  background: linear-gradient(360deg, #0F1329 0%, #0B0F21 82.55%);
  background-image: url(../images/game/footer__game__bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.rts-footer.game-footer .rts-footer__copyright {
  border-top: 1px solid #121833;
}
.rts-footer.game-footer .site-default-border {
  border-color: #121833;
}
.rts-footer.game-footer .payment__method h5 {
  color: var(--color-white);
}
.rts-footer.game-footer .rts-footer__widget .brand-desc {
  color: #D4DCFF;
}
.rts-footer.game-footer .rts-footer__widget h5.widget-title {
  color: var(--color-white);
}
.rts-footer.game-footer .rts-footer__widget .social__media h5 {
  color: var(--color-white);
}
.rts-footer.game-footer .rts-footer__widget .social__media--list .media {
  border-color: #121833;
}
.rts-footer.game-footer .rts-footer__widget .social__media--list .media:hover {
  background: var(--color-third);
  color: var(--color-secondary);
}
.rts-footer.game-footer .rts-footer__widget form.newsletter input {
  box-shadow: none;
  color: #121833;
}
.rts-footer.game-footer .rts-footer__widget form.newsletter span {
  color: #6F7A98;
}
.rts-footer.game-footer .rts-footer__widget form.newsletter button {
  background: #121833;
}
.rts-footer.game-footer .rts-footer__widget form.newsletter button:hover {
  background: var(--color-third);
}
.rts-footer.game-footer .rts-footer__widget--menu ul li a {
  color: #D4DCFF;
}
.rts-footer.game-footer .rts-footer__widget--menu ul li a:hover {
  color: var(--color-third);
}
.rts-footer.game-footer .rts-footer__copyright p {
  color: #D4DCFF;
}

@media (max-width: 991px) {
  .rts-footer__widget--column {
    margin-bottom: 50px;
  }
}
.rts-footer__widget--column.no-margin {
  margin-bottom: 0;
}
@media screen and (max-width: 576px) {
  .rts-footer__widget--column.xs-margin {
    margin-bottom: 50px;
  }
}
.social__media--list .media {
  height: 45px;
  width: 45px;
  border-radius: 4px;
  border: 2px solid #f79d00;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  background: #090824;
  transition: all 0.3s ease-in;
  font-size: 25px !important;
  color: #ffa700;
}
.social__media--list .media:hover {
  background: #ffa700;
  border-color: #030303;
  color: #090824;
}
.contact-method a {
    color: #080e3d;
    font-weight: 700;
}
.separator.site-default-border {
    background-image: url("/ressources/images/footer_shape_2.png");
    height: 9px;
    /* background-repeat: no-repeat; */
    background-color: #ffffff;
    /* width: 83%; */
    position: relative;
    z-index: 99;
}
.rts-footer__widget--column:first-child {
    background: #e9eeff;
    border-radius: 8px;
}
.flip-down {transform: scaleY(-1);margin: 0px 0 -10px 0;background-repeat: repeat !important;!i;!;background-color: #040827 !important;!i;!;width: 100% !important;!i;!;height: 14px !important;!i;!;}
.goofy_footer {
    background: #ffffff;
}
section#category-area .section-heading p {
    color: #0004bd;
    font-weight: 600;
}
.lead.full_description h3 {
    color: #2760fc;
    border-bottom: 2px dashed #000000;
    padding: 0 0 5px 0;
    display: inline-block;
}
.full_description li {
    color: #112955 !important;
}