@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #333;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #50d8af;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #71dfbe;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: rgb(244, 218, 69);
    /*  border-bottom: 1px solid #eee;*/
    font-size: 14px;
    padding: 10px 0;
    height: 38px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #50d8af;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #444;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #50d8af;
}

#topbar .social-links a {
    color: #555;
    padding: 0 15px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
    color: #50d8af;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    /*  height: 120px;*/
    transition: all 0.5s;
    z-index: 997;
    background: #000000;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
    /*  overflow: hidden;*/
}

#header #logo h1 {
    font-size: 42px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

#header #logo h1 a {
    color: #0c2e8a;
}

#header #logo h1 a span {
    color: #50d8af;
}

#header #logo img {
    padding: 0;
    margin: 0;
    width: 70px;
}

@media (max-width: 768px) {
    #header {
        height: 60px;
    }

    #header #logo h1 {
        font-size: 34px;
    }

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

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    padding-bottom: 10px;
    padding-top: 17px;
}

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

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 13px;
    font-weight: normal;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
    font-family: 'Jost-Regular';
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #50d8af;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 6px 20px;
    font-size: 12px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #50d8af;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #0c2e8a;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    /*.mobile-nav-toggle {
      display: block;
    }*/
    .navbar ul:not(.apsw_data_container) {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(8, 30, 91, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0c2e8a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #50d8af;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #50d8af;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url("../img/hero-carousel/1.jpg") no-repeat;
    background-size: cover;
    padding: 0;
}

#hero .hero-content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero .hero-content h2 {
    color: #0c2e8a;
    margin-bottom: 30px;
    font-size: 64px;
    font-weight: 700;
}

#hero .hero-content h2 span {
    color: #50d8af;
    text-decoration: underline;
}

@media (max-width: 767px) {
    #hero .hero-content h2 {
        font-size: 34px;
    }
}

#hero .hero-content .btn-get-started,
#hero .hero-content .btn-projects {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
}

#hero .hero-content .btn-get-started {
    background: #0c2e8a;
    border: 2px solid #0c2e8a;
}

#hero .hero-content .btn-get-started:hover {
    background: none;
    color: #0c2e8a;
}

#hero .hero-content .btn-projects {
    background: #50d8af;
    border: 2px solid #50d8af;
}

#hero .hero-content .btn-projects:hover {
    background: none;
    color: #50d8af;
}

#hero .hero-slider {
    z-index: 8;
    height: 60vh;
}

#hero .hero-slider::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 7;
}

#hero .hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: opacity;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #0c2e8a;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #50d8af;
    bottom: 0;
    left: 0;
}

.section-header p {
    padding: 0;
    margin: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #fafafa;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* About Section
--------------------------------*/
#about {
    padding: 60px 0 30px 0;
}

#about .about-img {
    overflow: hidden;
}

#about .about-img img {
    margin-left: -15px;
    max-width: 100%;
}

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }

    #about .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#about .content h2 {
    color: #0c2e8a;
    font-weight: 700;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
}

#about .content h3 {
    color: #555;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
}

#about .content p {
    line-height: 26px;
}

#about .content p:last-child {
    margin-bottom: 0;
}

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #50d8af;
}

#about .content ul {
    list-style: none;
    padding: 0;
}

#about .content ul li {
    padding-bottom: 10px;
}

/* Services Section
--------------------------------*/
#services {
    padding: 40px 0;
}

#services .box {
    padding: 40px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
    height: 100%;
}

#services .box:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

#services .box .icon {
    float: left;
}

#services .box .icon i {
    color: #444;
    font-size: 64px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 34px;
}

#services .box .icon i:before {
    background: #0c2e8a;
    background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .box h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

#services .box h4 a {
    color: #444;
}

#services .box p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
}

@media (max-width: 767px) {
    #services .box .box {
        margin-bottom: 20px;
    }

    #services .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #services .box h4,
    #services .box p {
        margin-left: 0;
        text-align: center;
    }
}

/* Clients Section
--------------------------------*/
#clients {
    padding: 30px 0;
}

#clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

#clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #50d8af;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #50d8af;
}

/* Our Portfolio Section
--------------------------------*/
#portfolio {
    background: #fff;
    padding: 30px 0;
}

#portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

#portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 18px 12px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #f7f7f7;
    border-radius: 4px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #50d8af;
}

#portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

#portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

#portfolio .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: #50d8af;
    padding: 15px 20px;
}

#portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: rgba(255, 255, 255, 0.6);
    transition: ease-in-out 0.3s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover,
#portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #fff;
}

#portfolio .portfolio-item .portfolio-info .details-link {
    right: 15px;
}

#portfolio .portfolio-item:hover img {
    top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #50d8af;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #50d8af;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
    padding: 30px 0;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
    overflow: hidden;
}

#testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 0 30px;
    margin: 30px 15px;
    text-align: center;
    min-height: 350px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    #testimonials .testimonial-item {
        margin: 30px 10px;
    }
}

#testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

#testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

#testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #50d8af;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #50d8af;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: #081e5b;
    background-size: cover;
    padding: 40px 0;
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
}

#call-to-action .cta-btn:hover {
    background: #50d8af;
    border: 3px solid #50d8af;
}

/* Our Team Section
--------------------------------*/
#team {
    background: #fff;
    padding: 30px 0 0 0;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
}

#team .member .pic {
    overflow: hidden;
    text-align: center;
}

#team .member .pic img {
    max-width: 100%;
}

#team .member .details {
    background: #50d8af;
    color: #fff;
    padding: 15px;
    border-radius: 0 0 3px 3px;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

#team .member .social {
    margin-top: 5px;
}

#team .member .social a {
    color: #fff;
}

#team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
    padding: 30px 0;
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #50d8af;
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}

#contact .contact-info a {
    color: #000;
}

#contact .contact-info a:hover {
    color: #50d8af;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
}

@media (min-width: 768px) {

    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }
}

@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

#contact #google-map {
    height: 290px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    #contact #google-map {
        margin-top: 20px;
    }
}

#contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

#contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

#contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
    background-color: #50d8af;
}

#contact .php-email-form button[type=submit] {
    background: #50d8af;
    border: 0;
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
    background: #2dc899;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    /*    background: url(../img/footer.png) no-repeat center;*/
    background: #ffffff;
    padding: 0 0 30px 0;
    font-size: 14px;
    min-height: 400px;
    background-position: center;
    background-size: cover;
    float: left;
    width: 100%;
    position: relative;
}

.left-mirror {
    position: absolute;
    left: 10px;
    top: 105px;
    cursor: pointer;
}

.left-mirror img {
    max-width: 90%;
}

.right-mirror {
    position: absolute;
    right: 10px;
    top: 110px;
    cursor: pointer;
}

.right-mirror img {
    max-width: 88%;
    float: right;
}

#footer .copyright {
    text-align: left;
    padding-top: 30px;
    font-size: 12px;
    padding-left: 45px;
    font-family: 'Jost-Light';
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #555;
}

#footer .credits a {
    color: #0c2e8a;
}

.search-bar {
    float: left;
    width: 100%;
    padding-left: 30px;
    position: relative;
    margin-top: 19px;
    margin-bottom: 10px;
}

.search-bar input {
    background: #ffffff;
    border: none;
    width: 60%;
    border-radius: 30px;
    height: 30px;
    padding: 15px;
    font-size: 12px;
}

.search-bar button {
    position: relative;
    right: 40px;
    background: transparent;
    border: none;
}

#topbar p {
    font-size: 14px;
    padding-top: 0;
    margin-bottom: 0;
    font-family: 'Jost-Light';
}

.conpany {
    float: left;
}

.country {
    float: right;
}

.country a {
    float: left;
    width: 21px;
    margin: 1px;
}

.country a img {
    width: 100%;
}

.conpany select#subject {
    background: transparent;
    border: none;
    font-size: 12px;
    font-family: 'Jost-Light';
}


.live-chat {
    width: auto;
    float: right;
    font-size: 12px;
    padding-top: 23px;
    padding-left: 30px;
    color: #ffffff;
}

.live-chat a {
    display: inline-block;
    font-size: 12px;
    color: #ffffff;
    font-family: 'Jost-Medium';
}

.live-chat a img {
    width: 22px;
}

.cart_rap {
    float: left;
    width: 100%;
    text-align: right;
    position: relative;
}

.cart_rap a {
    display: inline-block;
    margin: 3px;
}

.cart_rap a img {
    width: 22px;
}

.back-top {
    float: left;
    width: 100%;
    padding: 40px;
}

.back-top a {
    color: #000000;
    font-size: 12px;
    font-family: 'Jost-Regular';
}

.back-top a img {
    width: 13px;
}

.subs_cribe {
    float: left;
    width: 100%;
    padding-left: 50px;
}

h2 {
}

.subs_cribe h2 {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Playfair Display';
}

input.form-control {
    float: left;
    width: 100%;
}

.subs_cribe input.form-control {
    border-radius: 30px;
    font-size: 12px;
}

.subs_cribe span.input-group-btn {
    background: #000000;
    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}

.subs_cribe span.input-group-btn button.btn.btn-theme {
    color: #ffffff;
    font-size: 12px;
    padding: 9px 22px;
}

.foot_links {
    float: left;
    width: 100%;
}

.foot_links h2 {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    font-family: 'Playfair Display';
}

.foot_links ul {
    float: left;
    list-style: none;
    width: 100%;
    padding: 0;
}

.foot_links ul li {
    float: left;
    width: 100%;
}

.foot_links ul li a {
    float: left;
    width: 100%;
    color: #000000;
    font-size: 12px;
    padding: 3px;
    font-family: 'Jost-Light';
}

.foot_links ul li a:hover {
    padding-left: 5px;
}

.foot_lin_all {
    float: left;
    width: 100%;
    text-align: left;
    padding: 26px 0;
}

.foot_lin_all a {
    color: #000000;
    font-size: 12px;
    font-family: 'Jost-Light';
}

.foot-text {
    float: left;
    width: 80%;
    padding-left: 46px;
}

.foot-text p {
    font-size: 12px;
    font-family: 'Jost-Light';
}

.social {
    float: left;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
}

.social a {
    margin: 4px;
    color: #000000;
}

.scrolled-offset div#logo {
    padding: 40px;
}

.fixed-top div#logo {
    padding-top: -2px;
}

.fixed-top .top_search {
    display: none;
}

.fixed-top .live-chat {
    display: none;
}

.fixed-top nav#navbar {
    padding-top: 15px;
}

.fixed-top .cart_rap {
    padding-top: 15px;
}

div#logo {
    padding-top: 34px;
}

.fixed-top div#logo {
    padding-top: 0;
}

.may-like .eael-product-carousel {
    background: #ffffff !important;
    border: none !important;
}

.may-like .product-details-wrap {
    float: left;
    width: 100%;
    padding: 0px !important;
    display: block !important;
}

.may-like .product-details-wrap .product-details {
    width: 100% !important;
    float: left;
}

.may-like .product-details-wrap .eael-product-price {
    width: 100% !important;
    float: left;
    text-align: left !important;
    margin-top: 0;
}

.may-like .product-details-wrap .product-details a h2 {
    color: #000000;
    font-size: 12px;
    margin: 0;
}

.may-like .product-details-wrap .eael-product-price span.woocommerce-Price-amount.amount {
    font-size: 12px;
    color: #000000;
    font-weight: bold;
}

.may-like .eael-woo-product-carousel-container.swiper-container-wrap .swiper-button-prev {
    background: none !important;
}

.may-like .eael-woo-product-carousel-container.preset-1.swiper-container-wrap .swiper-button-next {
    background: none !important;
}


/*----------------------------new css-----------------------------------------*/

.woocommerce-checkout .woocommerce-form-coupon-toggle {
    margin-top: 20px;
}

div#customer_address_details {
    background: #ffffff;
    padding: 20px;
}

div#customer_address_details h3.border_html {
    background: none;
    border: navajowhite;
    font-size: 14px !important;
    font-weight: bold;
    letter-spacing: 0px;
    margin: 0px !important;
    padding: 0;
    padding-bottom: 10px;
}

p#wc-stripe-payment-request-button-separator {
    font-size: 12px;
}

.woocommerce-billing-fields__field-wrapper label {
    font-size: 12px;
    font-weight: bold;
}

.woocommerce-billing-fields__field-wrapper input {
    border: 1px solid #cccccc63;
    font-size: 12px !important;
}

.woocommerce-billing-fields__field-wrapper select {
    font-size: 12px !important;
}

span.selection {
    font-size: 12px !important;
}

span#select2-billing_country-container {
    font-size: 12px;
}

span#select2-billing_state-container {
    font-size: 12px;
}

div#cclw_order_details_table {
    background: #ffffff;
    padding: 20px;
}

div#cclw_payment_section {
    background: #ffffff;
    padding: 20px;
}


div#cclw_order_details_table h3.border_html {
    background: none;
    border: navajowhite;
    font-size: 14px !important;
    font-weight: bold;
    letter-spacing: 0px;
    margin: 0px !important;
    padding: 0;
    padding-bottom: 10px;
}

div#cclw_payment_section h3.border_html {
    background: none;
    border: navajowhite;
    font-size: 14px !important;
    font-weight: bold;
    letter-spacing: 0px;
    margin: 0px !important;
    padding: 0;
    padding-bottom: 10px;
}

div#cclw_additional_fields {
    background: #ffffff;
    padding: 20px;
    margin: 15px 0;
}

div#cclw_additional_fields h3.border_html {
    background: none;
    border: none;
    font-size: 14px !important;
    font-weight: bold;
    letter-spacing: 0px;
    margin: 0px !important;
    padding: 0;
    padding-bottom: 10px;
}

div#cclw_additional_fields label {
    font-size: 12px;
    color: #000000;
    font-weight: bold;
}

div#cclw_additional_fields textarea#order_comments {
    font-size: 12px;
    min-height: 110px;
}

.woocommerce-checkout .woocommerce-info {
    background: #ffffff;
    border: none;
    margin: 0 10px 10px;
    text-align: center;
    padding: 16px 0;
    font-size: 14px;
    color: #000000;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
}

.woocommerce-checkout .woocommerce-info::before {
    position: relative !important;
    color: #000000;
    top: -18px !important;
    left: 176px !important;
}

.woocommerce-checkout .woocommerce-info a.showcoupon {
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.woocommerce-info::before {
    color: rgb(244, 218, 69);
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 thead {
    display: none;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.thumb a {
    float: left;
    width: 100%;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.thumb a img {
    width: 100%;
    border: 1px solid #000000;
    padding: 4px;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.removepro {
    width: 5% !important;
}


.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.removepro a.cclw_remove {
    color: #000000 !important;
}

.wrapper_qty button.cclwminus {
    background: #ffffff !important;
    color: #000000 !important;
}

.woocommerce-checkout .wrapper_qty {
    border: 1px solid #000000;
}

.woocommerce-checkout button.cclwplus {
    background: #ffffff !important;
    color: #000000 !important;
}

.woocommerce-checkout input#qty1 {
    border-top: none !important;
    border-bottom: none !important;
}

.woocommerce-checkout .cart_totals.cclw_cart_totals .cart-subtotal {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.cart_totals.cclw_cart_totals .cart-subtotal {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

div#payment {
    background: #ffffff !important;
}

.woocommerce-checkout .payment_box.payment_method_stripe {
    background: #ffffff !important;
    padding: 0px !important;
}

.woocommerce-checkout .payment_box.payment_method_stripe ::before {
    display: none !important;
}

.payment_box.payment_method_stripe::before {
    display: none !important;
}

fieldset#wc-stripe-cc-form {
    margin: 0px !important;
    padding: 0px !important;
}

fieldset#wc-stripe-cc-form .form-row {
    padding: 7px 0px 0px !important;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.thumb {
    width: 20% !important;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.cclw_qty {
    width: 75% !important;
    text-align: left !important;
    padding-left: 10px !important;
    font-size: 14px;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.total {
    padding-right: 10px !important;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.removepro {
    padding-top: 3px !important;
}

.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.cclw_qty span.woocommerce-Price-amount.amount {
    float: left;
    width: 100%;
    padding-top: 4px;
    font-size: 12px;
    font-weight: bold;
}

#wc-stripe-cc-form .form-row.form-row-wide div#stripe-card-element {
    height: 40px;
    padding: 11px;
    font-size: 10px !important;
    border-radius: 6px;
}

#wc-stripe-cc-form .form-row.form-row-wide .__PrivateStripeElement {
    font-size: 10px !important;
}

#stripe-exp-element {
    height: 40px !important;
    padding: 12px;
    border-radius: 6px;
}

#stripe-cvc-element {
    height: 40px;
    padding: 12px;
    border-radius: 4px;
}

#wc-stripe-cc-form .form-row.form-row-wide div#stripe-card-element {
    height: 40px;
    padding: 11px;
    font-size: 10px !important;
    border-radius: 4px;
}

#wc-stripe-cc-form .form-row.form-row-wide .__PrivateStripeElement {
    font-size: 10px !important;
}

#stripe-exp-element {
    height: 40px !important;
    padding: 12px;
    border-radius: 4px;
}

#stripe-cvc-element {
    height: 40px;
    padding: 12px;
    border-radius: 4px;
}

.form-row.place-order {
    width: 100%;
    display: inline-block;
}

button#place_order {
    width: 100% !important;
    float: left !important;
    margin: 9px auto;
    border-radius: 30px;
    background: #000000 !important;
    font-size: 14px !important;
    font-family: "Raleway", sans-serif;
}

.woocommerce-privacy-policy-text p {
    font-size: 12px !important;
    padding-bottom: 10px;
    font-family: "Raleway", sans-serif;
}

#stripe-payment-data p {
    font-size: 12px !important;
    padding-bottom: 10px;
    font-family: "Raleway", sans-serif;
}


.woocommerce-cart .woocommerce {
    padding: 10px 0px 60px;
    /* background: #ffffff; */
    margin-bottom: 40px;
    margin-top: 10px;
}

.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead {
    background: #bdbdbd;
}

.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead th {
    padding: 14px;
    color: #000000;
    font-family: 'Jost-Light' !important;
}

.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead th.product-thumbnail {
    color: #ffffff !important;
}

.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead th.product-thumbnail span.screen-reader-text {
    color: #ffffff !important;
}

.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents td.product-thumbnail img {
    width: 70px;
    /* border: 1px solid #000000; */
    padding: 6px;
}


.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents td.product-name a {
    color: #000000 !important;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
}

.woocommerce-cart button.button.wp-element-button {
    background: #000000;
    color: #ffffff;
    font-size: 12px !important;
    padding: 10px 20px;
    line-height: normal;
    border-radius: 30px;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals h2 {
    font-size: 14px;
    font-weight: bold;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.button.alt.wc-forward.wp-element-button {
    background: #000000;
    border-radius: 30px;
    font-size: 12px;
    padding: 15px;
    width: 175px;
}

.woocommerce-cart input#coupon_code {
    border-radius: 30px;
    padding: 8px;
    font-size: 12px;
}

.woocommerce-shop {
    background: #f9f4f2;
}

.banner_top {
    float: left;
    width: 100%;
    padding: 0;
    display: flex;
}

.chand_eliers {
    /* background-image: url(../img/pic-2.png); */
    /* background-repeat: no-repeat; */
    padding: 108px 30px;
    min-height: 489px;
    /* background-size: cover; */
    background: #F9F9F9;
    /* text-align: right; */
    max-width: 370px;
    float: right;
}

.chand_eliers p {
    margin: 0;
    padding-bottom: 10px;
    color: #000000;
    font-family: 'Jost-Medium';
    font-size: 13px;
}

.chand_eliers p a {
    color: #000000;
}

.chand_eliers h2 {
    font-size: 35px;
    color: #000000;
    font-weight: 500;
    font-family: 'Playfair Display';
    float: right;
}

.chand_eliers a {
    background: #000000;
    font-size: 14px;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 30px;
    margin-top: 10px;
    float: left;
    font-family: 'Jost-Medium';
}


.chand_eliers_im_g {
    float: left;
    width: 100%;
    padding-top: 25px;
    padding-left: 10px;
}

.filter_warp {
    padding-top: 40px;
}

.product_warp {
    padding-top: 40px;
    position: relative;
}

.product_warp ul.products.columns-3 {
    float: left;
    width: 100%;
    border-top: 1px solid #c2c2c2;
    padding-top: 20px;
    border-left: 1px solid #c2c2c2;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
}

.product_warp .berocket_lgv_widget {
    display: none;
}

.product_warp p.woocommerce-result-count {
    margin-top: 0 !important;
    font-size: 12px;
    font-family: "Raleway", sans-serif;
    color: #000000;
    font-weight: 600;
}


.product_warp a.woof_show_auto_form.woof_btn_default {
    display: none !important;
}


.product_warp header.woocommerce-products-header {
    display: none;
}

.product_warp nav.woocommerce-breadcrumb {
    display: none;
}


.product_warp form.woocommerce-ordering select.orderby {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 0;
}

.filter_warp .widget.widget-woof {
    font-size: 20px;
    font-family: "Raleway", sans-serif;
}

.filter_warp .woof_text_search_container.woof_container.woof_container_woof_text {
    display: none;
}

.filter_warp .woof.woof_sid.woof_sid_widget {
    padding-top: 23px;
}


.filter_warp .woof_redraw_zone h4 {
    font-size: 12px;
    font-weight: bold;
}

.filter_warp .woof_redraw_zone ul.woof_authors {
    padding: 0;
}

.filter_warp .woof_redraw_zone ul.woof_authors li label {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}

.filter_warp .woof_redraw_zone ul.woof_authors .iradio_square-blue {
    border: 1px solid #cccccc;
    background: none;
    background: #ffffff;
}

.filter_warp .woof_price5_search_container.woof_container.woof_price_filter {
    border-bottom: 1px solid #cccccc;
}

.chand_eliers_im_g img {
    width: 100%;
    height: 489px !important;
    /*object-fit: cover;*/
}

.filter_warp .woof.woof_sid.woof_sid_widget label {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}

.filter_warp .woof_container.woof_container_checkbox.woof_container_product_cat.woof_container_3.woof_container_productcategories {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
}

.filter_warp .woof_container.woof_container_checkbox.woof_container_pa_color.woof_container_5.woof_container_productcolor {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
}

.filter_warp .woof_container_inner.woof_container_inner_productsize {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
}

.filter_warp .icheckbox_square-blue {
    background: #ffffff;
    border: 1px solid #cccccc;
}

.filter_warp .woof_container.woof_container_checkbox.woof_container_pa_style.woof_container_7.woof_container_productstyle {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
}

.product_warp li.berocket_lgv_grid {
    background: #ffffff;
    width: 31% !important;
    margin: 10px !important;
    min-height: 472px;
}


.product_warp li.berocket_lgv_grid h2.woocommerce-loop-product__title {
    color: #000000;
    float: left;
    width: 100%;
    padding: 0 10px !important;
    font-size: 14px !important;
    font-family: "Raleway", sans-serif;
}

.product_warp li.berocket_lgv_grid .eael-star-rating.star-rating {
    float: left;
    width: 100%;
    margin-left: 10px;
    margin-top: 5px;
}


.product_warp li.berocket_lgv_grid span.price {
    float: left;
    width: 100%;
    padding: 0 10px;
}

.product_warp li.berocket_lgv_grid span.price span.woocommerce-Price-amount.amount {
    color: #000000;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
}

.product_warp li.berocket_lgv_grid a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none;
}

.product_warp li.berocket_lgv_grid a.compare.button {
    background: none;
    font-size: 12px !important;
    padding: 0;
    margin: 0;
    margin-left: 10px;
    font-weight: normal !important;
    font-family: "Raleway", sans-serif;
}

.product_warp li.berocket_lgv_grid a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    display: none;
}

.product_warp li.berocket_lgv_grid a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    float: left;
    width: 100%;
}

.product_warp li.berocket_lgv_grid ul.archive-variable-items {
    float: left;
    padding-left: 6px;
}

.product_warp .woof.woof_sid.woof_sid_flat_grey.woof_auto_1_columns {
    display: none;
}

.filter_warp .widget .woof_redraw_zone ul li {
    padding-top: 2px !important;
}

.single-product {
    background: #f9f4f2;
}

.single-product nav.woocommerce-breadcrumb {
    padding-top: 35px;
    padding-bottom: 10px;
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    font-family: "Raleway", sans-serif;
}

.single-product nav.woocommerce-breadcrumb a {
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    font-family: "Raleway", sans-serif;
}

.single-product h1.product_title.entry-title {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Jost-Regular';
    margin: 0;
}

.single-product p.price {
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 500;
    margin: 0;
    padding: 5px 0;
    font-family: 'Jost-Regular';
    display: flex;
    float: left;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .button {
    display: none !important;
}

.single-product span.price {
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 500;
    margin: 0;
    padding: 5px 0;
    font-family: 'Jost-Regular';
}

.woocommerce ul.products li.product .price {
    width: 100%;
    background: #f9f9f9;
}

.woocommerce ul.products li.product .price.osp {
    margin-top: -41px;
}

.woocommerce ul.products li.product .price {
    float: left;
}

.woocommerce.woocommerce-page div.product p.price del,
.woocommerce.woocommerce-page div.product span.price del,
.woocommerce.woocommerce-page div.product p.price .old-price,
.woocommerce.woocommerce-page div.product span.price .old-price,
.woocommerce ul.products li.product .price .old-price,
.woocommerce ul.products li.product .price .old-price del {
    font-size: 12px !important;
    opacity: 1;
}

.woocommerce.woocommerce-page div.product p.price del span.woocommerce-Price-amount.amount,
.woocommerce.woocommerce-page div.product span.price del span.woocommerce-Price-amount.amount {
    font-size: 12px !important;
}

.woocommerce.woocommerce-page div.product p.price .old-price,
.woocommerce.woocommerce-page div.product span.price .old-price,
.woocommerce ul.products li.product .price .old-price {
    opacity: 0.5;
}

.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
    text-decoration: none;
}

.single-product p.price .price-line,
.woocommerce ul.products li.product .price .price-line {
    display: flex;
    flex-direction: column;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
    line-height: 2.8em !important;
}

.single-product table.variations label {
    font-size: 12px;
    font-family: "Raleway", sans-serif;
    color: #000000;
    line-height: normal;
}

.single-product del span.woocommerce-Price-amount.amount {
    font-size: 12px !important;
}

.single-product span.variable-item-span.variable-item-span-button {
    font-size: 8px !important;
    font-weight: bold;
}

.single-product a.reset_variations {
    display: none;
}


.single-product .quantity input {
    height: 40px;
    width: 70px !important;
    border: none;
}

.single-product button.single_add_to_cart_button {
    background: #000000 !important;
    height: 40px;
    border-radius: 0 !important;
    font-size: 12px !important;
    width: 170px;
}

.price-line {
    display: inline-flex !important;
    flex-direction: column;
}

.price-line del,
.price-line del .woocommerce-Price-amount.amount {
    font-size: 12px !important;
}


.single-product table.variations {
    margin-bottom: 0px !important;
}

.single-product a.reset_variations {
    color: #000000;
    font-size: 12px !important;
    font-weight: bold;
    font-family: "Raleway", sans-serif;
}

.single-product span.woocommerce-Price-amount.amount {
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 500;
}

.single-product span.price-line {
    margin-right: 20px;
}

.single-product .xoo-wsc-qty-price span.price-line {
    margin-right: 0px;
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.xoo-wsc-qty-price {
    font-size: 14px !important;
}

.xoo-wsc-container, .xoo-wsc-slider {
    max-width: 430px !important;
    right: -430px !important;
}

.xoo-wsc-cart-active .xoo-wsc-container, .xoo-wsc-slider-active .xoo-wsc-slider {
    right: 0 !important;
}

.single-product .xoo-wsc-qty-price span.woocommerce-Price-amount.amount {
    font-size: 14px !important;
}

.single-product .xoo-wsc-qty-price del span.woocommerce-Price-amount.amount {
    font-size: 12px !important;
}


.single-product span.woo-selected-variation-item-name {
    font-size: 12px;
    font-family: 'Jost-Regular';
}


.single-product span.yith-wapo-addon-label {
    font-size: 14px;
    font-family: 'Jost-Regular';
}


.single-product .summary.entry-summary {
    float: left;
    width: 100%;
    margin-bottom: 0px !important;
}

.single-product form.variations_form.cart.wvs-loaded {
    margin-bottom: 10px !important;
}

.single-product a.compare.button {
    background: none !important;
    padding: 0;
    font-size: 12px;
    color: #000000 !important;
    font-weight: bold !important;
    letter-spacing: 0px !important;
    font-family: "Raleway", sans-serif;
}

.single-product .product_meta {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    font-family: 'Jost-Regular';
}


.single-product .woof_products_top_panel .woof_products_top_panel ul li {
    font-size: 14px !important;
    font-family: 'Jost-Regular';
}

.recommendations ul.products.columns-3.slick-initialized.slick-slider {
    padding: 0 20px;
}

.single span.yith-wapo-addon-label {
    font-size: 14px;
    font-family: 'Jost-Regular';
}

.single tr.wapo-product-price {
    display: none;
}

.single tr.wapo-total-options {
    display: none;
}

.single tr.wapo-total-order {
    font-size: 15px;
    font-family: 'Jost-Regular';
}

.single button.single_add_to_cart_button.button.alt.wp-element-button {
    font-family: 'Jost-Regular';
    font-size: 15px !important;
}


.single h3.wapo-addon-title.toggle-closed {
    font-size: 16px;
    font-family: 'Jost-Regular';
}

.single-product .product_meta span.posted_in a {
    color: #0a090996;
    font-family: "Raleway", sans-serif;
}

.single-product img.wp-post-image.wvg-post-image.attachment-woocommerce_single.size-woocommerce_single {
    margin-bottom: 10px !important;
}

.single-product .woo-variation-gallery-slider-wrapper {
    margin-bottom: 10px !important;
}


.single-product ul.tabs.wc-tabs li#tab-title-description {
    font-size: 12px;
    color: #000000;
    font-family: "Raleway", sans-serif;
}


.single-product li#tab-title-additional_information {
    font-size: 12px;
    color: #000000 !important;
    font-family: "Raleway", sans-serif;
}

.single-product li#tab-title-reviews {
    font-size: 12px;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 20px !important;
}

.single-product .mt-2.detabs-details p {
    font-size: 12px;
    color: #000000;
}

.single-product .details-tab-specifications.font-weight-regular.detabs-details .content-title.mt-4 {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 10px;
    color: #000000;
}


.single-product div#tab-description h2 {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}

.single-product .attribute1 ul {
    padding: 0;
    list-style: none;
}

.single-product .attribute1 ul li {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
    font-family: 'Jost-Regular';
}

.single-product .attribute-heading.font-weight-medium.mt-4 {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    padding-bottom: 10px;
}

.single-product ul.attributes.options-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.single-product ul.attributes.options-list li.option-values {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}


.single-product div#tab-additional_information h2 {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}

.single-product th.woocommerce-product-attributes-item__label {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}

.single-product .woocommerce-product-attributes-item__value p {
    color: #000000;
    font-size: 12px;
}

.single-product td.woocommerce-product-attributes-item__value p a {
    color: #000000;
    font-weight: bold;
    font-style: normal;
}

.single-product div#comments h2.woocommerce-Reviews-title {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    margin: 0;
    padding-bottom: 10px;
    font-family: "Raleway", sans-serif;
}

.single-product p.woocommerce-noreviews {
    font-size: 12px;
    margin: 0;
    color: #000000;
    font-weight: bold;
    padding-bottom: 10px;
    font-family: "Raleway", sans-serif;
}

.single-product div#review_form span#reply-title {
    font-size: 12px;
    color: #000000;
    font-weight: bold;
    font-family: "Raleway", sans-serif;
}

.single-product form#commentform p {
    font-size: 12px;
    color: #000000;
    font-family: "Raleway", sans-serif;
}


.single-product .comment-form-rating label {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product .woocommerce p.stars a::before {
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product textarea#comment {
    max-width: 300px !important;
    border: 1px solid #cccccc;
    font-family: "Raleway", sans-serif;
}

.single-product p.comment-form-comment label {
    float: left;
    width: 100%;
    padding-bottom: 7px;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product p.comment-form-author label {
    float: left;
    width: 100%;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product p.comment-form-author input#author {
    height: 32px;
    border: 1px solid #cccccc;
    width: 300px;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product p.comment-form-email label {
    float: left;
    width: 100%;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product p.comment-form-email input#email {
    height: 30px;
    border: 1px solid #cccccc;
    width: 300px;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product p.comment-form-cookies-consent label {
    font-size: 12px;
    color: #000000;
    font-family: "Raleway", sans-serif;
}

.single-product p.form-submit input#submit {
    background: #000000 !important;
    border-radius: 0px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-family: "Raleway", sans-serif;
    padding: 11px 30px !important;
}

.single-product section.related.products {
    float: left;
    width: 100%;
}

.single-product section.related.products h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.single-product section.related.products li {
    background: #ffffff;
}

.single-product section.related.products li h2.woocommerce-loop-product__title {
    font-size: 14px !important;
    float: left;
    width: 100%;
    padding: 4px 10px !important;
}

.single-product section.related.products li .eael-star-rating.star-rating {
    float: left;
    width: 100%;
    margin-left: 10px;
}

.single-product section.related.products li span.price {
    float: left;
    width: 100%;
    padding-left: 10px;
}


.single-product section.related.products li a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none;
}

.single-product section.related.products li a.compare.button {
    float: left;
    width: 100%;
    padding: 10px;
    padding-top: 0;
}

.single-product .woocommerce p.stars a {
    color: #000000 !important;
}


a.xoo-el-action-sc.xoo-el-login-tgr {
    position: relative;
    visibility: hidden;
    width: 30px;
}

a.xoo-el-action-sc.xoo-el-login-tgr:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 31px;
    top: 0;
    left: 0;
    background-image: url(../img/user.png);
    background-repeat: no-repeat;
    visibility: visible;
}

.filter_warp .woof_container.woof_container_checkbox.woof_container_pa_led.woof_container_4.woof_container_led {
    border-bottom: 1px solid #cccccc;
}

.filter_warp .woof_container.woof_container_radio.woof_container_pa_luxury.woof_container_5.woof_container_inthepremiumversion {
    border-bottom: 1px solid #cccccc;
}

.filter_warp .woof_container.woof_container_radio.woof_container_pa_shop-by-room.woof_container_6.woof_container_productshopbyroom {
    border-bottom: 1px solid #cccccc;
}

.filter_warp .woof_container.woof_container_radio.woof_container_pa_shop-by-style.woof_container_7.woof_container_productshopbystyle {
    border-bottom: 1px solid #cccccc;
}

.filter_warp .woof_container.woof_container_checkbox.woof_container_pa_color.woof_container_8.woof_container_productcolor {
    border-bottom: 1px solid #cccccc;
}

.filter_warp .woof_container.woof_container_checkbox.woof_container_product_cat.woof_container_3.woof_container_productcategories {
    border-bottom: 1px solid #cccccc;
}

.woocommerce-cart button.button.wp-element-button {
    width: 160px;
    height: 40px;
}

.woocommerce p.stars a {
    color: #000000;
}


a.xoo-el-action-sc {
    position: relative;
    visibility: hidden;
    width: 20px;
}

a.xoo-el-action-sc:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 21px;
    top: 4px;
    left: 0;
    background-image: url(../img/logout.png);
    background-repeat: no-repeat;
    visibility: visible;
}

a.woof_front_toggle {
    font-size: 20px !important;
    color: #000000;
    padding-right: 10px;
    margin-top: -4px;
    font-weight: 600;
}

/*---------------------account-----------------------------------------*/
.woocommerce-account {
    background: #f9f4f2;
}

nav.woocommerce-MyAccount-navigation {
    background: #ffffff;
    width: 20% !important;
    margin: 50px 0;
    padding: 35px 10px;
}

.woocommerce-MyAccount-content {
    width: 80% !important;
    padding: 20px;
    margin: 50px 0;
    padding-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 0;
    list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #cccccc;
    float: left;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: #000000;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    float: left;
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
    background: #000000;
    border: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    color: #ffffff;
    position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    color: #ffffff;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:hover {
    background: #000000;
    border: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active:after {
    width: 5px;
    height: 37px;
    content: "";
    background: #f00;
    top: 0;
    left: 0;
    position: absolute;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 12px;
    margin: 0;
    font-family: "Raleway", sans-serif;
    color: #000000;
}

.woocommerce-account .woocommerce-MyAccount-content p a {
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
    font-family: "Raleway", sans-serif;
}

.woocommerce-account .woocommerce-message.woocommerce-message--info.woocommerce-Message.woocommerce-Message--info.woocommerce-info {
    background: #ffffff;
    margin: 0;
    font-size: 13px;
    border: none;
}

.woocommerce-account .woocommerce-message.woocommerce-message--info.woocommerce-Message.woocommerce-Message--info.woocommerce-info::before {
    top: 1px !important;
    left: -6px !important;
    color: #000000;
}

.woocommerce-account .woocommerce-message.woocommerce-message--info.woocommerce-Message.woocommerce-Message--info.woocommerce-info a.woocommerce-Button.button {
    background: #000000;
    border-radius: 0;
    color: #ffffff;
    font-size: 12px;
    padding: 13px 26px;
}

a.added_to_cart.wc-forward {
    color: #000000;
    font-size: 12px;
    font-family: "Raleway", sans-serif;
    border: 1px solid #000000;
    height: 40px;
    padding: 10px;
}

.woocommerce-order-received .woocommerce-order {
    background: #ffffff;
    margin-top: 30px;
    padding: 40px;
    margin-bottom: 30px;
}

.woocommerce-order-received .woocommerce-order p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 12px;
    color: #000000;
    font-family: "Raleway", sans-serif;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.woocommerce-order-received ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    background: #f9f4f2;
    padding: 20px;
    margin-bottom: 0;
}

.woocommerce-order-received section.woocommerce-order-details {
    background: #f9f4f2;
    margin-top: 8px;
    padding: 20px;
}

.woocommerce-order-received section.woocommerce-order-details h2.woocommerce-order-details__title {
    font-size: 14px;
    font-weight: bold;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead {
    background: #000000;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    border: none;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead th {
    color: #ffffff;
    font-size: 14px;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody {
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td {
    color: #000000;
    font-size: 12px;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td a {
    color: #000000;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td ul.wc-item-meta {
    padding: 0;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot th {
    font-size: 12px;
}

.woocommerce-order-received section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot td {
    font-size: 12px;
}

.woocommerce-order-received section.woocommerce-customer-details h2 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 8px;
}

.woocommerce-order-received section.woocommerce-customer-details {
    background: #f9f4f2;
    padding: 20px;
}

.woocommerce-order-received section.woocommerce-customer-details address {
    border: none !important;
    font-size: 12px;
    color: #000000;
}

.woocommerce-account table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
    border: none;
}

.woocommerce-account table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table thead {
    background: #000000;
}

.woocommerce-account table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table thead th {
    padding: 10px;
    color: #ffffff;
    font-size: 12px;
}


.woocommerce-account table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table tbody td {
    border-bottom: 1px solid #cccccc;
}

.woocommerce-account table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table tbody td a {
    color: #000000;
    font-size: 12px;
}

.woocommerce-account table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table tbody td a.woocommerce-button.wp-element-button.button.view {
    background: #000000;
    color: #ffffff;
}

.woocommerce-account .woocommerce-Message.woocommerce-Message--info.woocommerce-info {
    background: #ffffff;
    border: none;
    font-size: 12px;
    color: #000000;
    padding: 20px;
}

.woocommerce-account .woocommerce-Message.woocommerce-Message--info.woocommerce-info::before {
    left: -2px !important;
    top: 2px !important;
}

.woocommerce-account .woocommerce-Message.woocommerce-Message--info.woocommerce-info a.woocommerce-Button.button {
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    border-radius: 0;
    padding: 12px;
}

.woocommerce-account section.woocommerce-order-details {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px !important;
}

.woocommerce-account section.woocommerce-order-details h2 {
    font-size: 16px !important;
    font-weight: bold;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    border: none;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead {
    background: #000000;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead th {
    color: #ffffff;
    font-size: 12px;
    padding: 12px;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td {
    font-size: 12px;
    color: #000000;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td a {
    color: #000000;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody td ul.wc-item-meta {
    padding: 0;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot th {
    font-size: 12px;
}

.woocommerce-account section.woocommerce-order-details table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot td {
    font-size: 12px;
}

section.woocommerce-customer-details {
    background: #ffffff;
    padding: 20px;
}

.woocommerce-account section.woocommerce-customer-details h2.woocommerce-column__title {
    font-size: 16px;
    font-weight: bold;
}

.woocommerce-account section.woocommerce-customer-details address {
    border: none !important;
    font-size: 12px;
}

.xoo-el-main {
    background: #F9F9F9;
}

.xoo-el-wrap {
    background: #f9f9f9;
}

.xoo-el-srcont {
    background: #f9f9f9 !important;
}

.xoo-el-form-container ul.xoo-el-tabs li {
    background: #ffffff;
}

button.button.btn.xoo-el-action-btn.xoo-el-login-btn {
    width: 110px !important;
    font-size: 12px !important;
    border-radius: 0px !important;
}

li.xoo-el-login-tgr.xoo-el-active {
    font-size: 12px;
}

li.xoo-el-reg-tgr {
}

li.xoo-el-reg-tgr {
    font-size: 12px;
}

label.xoo-el-form-label {
    font-size: 12px !important;
}

a.xoo-el-lostpw-tgr {
    font-size: 12px !important;
}

.xoo-el-main a {
    font-size: 12px !important;
}

.xoo-aff-group label {
    font-size: 12px;
}

button.button.btn.xoo-el-action-btn.xoo-el-register-btn {
    font-size: 12px !important;
    width: 110px !important;
    border-radius: 0px !important;
}

#customer_address_details span.select2-selection {
    border: var(--wc-form-border-width) solid var(--wc-form-border-color) !important;
    border-radius: var(--wc-form-border-radius) !important;
}

.woocommerce-cart {
    background: #f6f0ed !important;
}

.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents {
    background: #ffffff;
}

.woocommerce-cart .cart_totals {
    background: #ffffff;
    padding: 20px;
}


.woocommerce-account .u-column1.col-1.woocommerce-Address {
    background: #ffffff;
    padding: 20px;
    margin-top: 15px;
    min-height: 200px;
}

.woocommerce-account .u-column1.col-1.woocommerce-Address h3 {
    font-size: 16px;
    font-weight: bold;
}

.woocommerce-account .u-column1.col-1.woocommerce-Address
a.edit {
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 30px;
}

.woocommerce-account .u-column1.col-1.woocommerce-Address address {
    font-size: 12px;
    color: #000000;
}

.woocommerce-account .u-column2.col-2.woocommerce-Address {
    background: #ffffff;
    padding: 20px;
    margin-top: 15px;
    min-height: 200px;
}

.woocommerce-account .u-column2.col-2.woocommerce-Address h3 {
    font-size: 16px;
    font-weight: bold;
}

.woocommerce-account .u-column2.col-2.woocommerce-Address
a.edit {
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 30px;
}

.woocommerce-account .u-column2.col-2.woocommerce-Address address {
    font-size: 12px;
    color: #000000;
}

.woocommerce-account .woocommerce-MyAccount-content form {
    background: #ffffff;
    padding: 20px;
}

.woocommerce-account .woocommerce-MyAccount-content form h3 {
    font-size: 16px;
    font-weight: bold;
}

.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper label {
    color: #000000;
    font-weight: bold;
}

.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper input {
    height: 36px;
    padding: 10px;
}

.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-address-fields .woocommerce-address-fields__field-wrapper span.select2-selection {
    height: 36px;
}

.woocommerce-account .woocommerce-MyAccount-content form .woocommerce-address-fields button.button.wp-element-button {
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    border-radius: 0;
    padding: 12px 20px;
}

.woocommerce-account table.woocommerce-MyAccount-paymentMethods.shop_table.shop_table_responsive.account-payment-methods-table {
    background: #ffffff;
    border: none;
    border-radius: 0;
}

.woocommerce-account table.woocommerce-MyAccount-paymentMethods.shop_table.shop_table_responsive.account-payment-methods-table thead {
    background: #000000;
    color: #ffffff;
    font-size: 12px;
}

.woocommerce-account table.woocommerce-MyAccount-paymentMethods.shop_table.shop_table_responsive.account-payment-methods-table thead th {
    padding: 14px;
}

.woocommerce-account table.woocommerce-MyAccount-paymentMethods.shop_table.shop_table_responsive.account-payment-methods-table tbody td {
    font-size: 12px;
}

.woocommerce-account table.woocommerce-MyAccount-paymentMethods.shop_table.shop_table_responsive.account-payment-methods-table tbody td a.button.delete {
    background: #000000;
    color: #ffffff;
    font-size: 12px !important;
    border-radius: 0;
    padding: 10px 20px;
}

.woocommerce-account form.woocommerce-EditAccountForm.edit-account label {
    font-weight: bold;
    font-size: 12px;
}

.woocommerce-account form.woocommerce-EditAccountForm.edit-account input {
    height: 35px;
    padding: 12px;
}

.woocommerce-account form.woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button.wp-element-button {
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    border-radius: 0;
    padding: 10px 20px;
}

.woocommerce-account ul.woocommerce-error li {
    font-size: 12px;
    color: #000000;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    position: relative;
}


/*---------------------checkout header-------------------------*/

.continue-shop_warp {

}

.continue-shop_warp a {
    font-size: 12px;
    color: #000000;
    display: flex;
    align-items: center;
}

.continue-shop_warp a img {
    width: 20px;
    padding-right: 0px;
}

div#logo_check a img {
    width: 70px;
}

.icon_text_warp {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.icon_text_warp a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    max-width: 70px;
}

.icon_text_warp img {
    width: 21px;
}

.icon_text_warp a span {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
}

.woocommerce-checkout .scrolled-offset {
    margin-top: 80px;
}

/*---------------------checkout footer-------------------------*/

footer#footer2 {
    /*background: #323232;*/
    background: #F9F9F9;
}

.foot_link_warp {
    display: flex;
    padding: 20px 15px;
    border-bottom: 1px solid #cccccc26;
    margin-bottom: 30px;
}

.foot_link_warp a {
    /*color: #ffffff;*/
    color: #454545;
    font-size: 12px;
}

.foot_link_warp a img {
    width: 23px;
    padding-right: 10px;
}

button.accordion-button.collapsed {
    /*background: #323232;*/
    background: #ece3de;
    /*color: #ffffff;*/
    color: #454545;
    font-size: 12px;
    padding: 10px;
}


.foot_link_warp {
    display: flex;
    padding: 20px 15px;
    border-bottom: 1px solid #454545;
    margin-bottom: 30px;
}

.foot_link_warp a {
    /*color: #ffffff;*/
    color: #454545;
    font-size: 12px;
}

.foot_link_warp a img {
    width: 23px;
    padding-right: 10px;
}

button.accordion-button.collapsed {
    /*background: #323232;*/
    background: #ece3de;
    /*color: #ffffff;*/
    color: #454545;
    font-size: 12px;
    padding: 10px;
}

.accordion-button::after {
    background-image: url("../img/ki-1.png") !important;
}

.accordion-button .collapsed::after {
    background-image: url("../img/ki-2.png");
}

.accordion-item {
    background: #ffffff1c;
    float: left;
    width: 100%;
}

button.accordion-button {
    /*background-color: #323232 !important;*/
    background-color: #dfd7d3c2 !important;
    /* color: #ffffff !important;*/
    color: #454545 !important;
    font-size: 12px;
    margin-bottom: 1px;
}

.accordion-body {
    /*color: #ffffff;*/
    color: #454545;
    font-size: 12px;
}

.accordion-body code {
    /*color: #ffffff;*/
    color: #454545;
}

.copyright_check {
    float: left;
    width: 100%;
    border-top: 1px solid #cccccc1c;
    margin: 20px 0;
    padding: 10px 0;
    /*color: #ffffff;*/
    color: #454545;
    font-size: 12px;
}

.copyright_check a {
    color: #745602;
    padding-left: 5px;
}

.foot-hed-lin {
    float: left;
    width: 100%;
    text-align: center;
}

.foot-hed-lin h2 {
    font-size: 16px;
    text-transform: uppercase;
    /*color: #ffffff;*/
    color: #454545;
}

div#cclw_order_details_table h3.border_html span {
    border: 1px solid #000000;
    width: 20px;
    float: left;
    height: 20px;
    text-align: center;
    border-radius: 100%;
    margin-right: 8px;
}

div#customer_address_details h3.border_html span {
    border: 1px solid #000000;
    width: 20px;
    float: left;
    height: 20px;
    text-align: center;
    border-radius: 100%;
    margin-right: 8px;
}

div#cclw_payment_section h3.border_html span {
    border: 1px solid #000000;
    width: 20px;
    float: left;
    height: 20px;
    text-align: center;
    border-radius: 100%;
    margin-right: 8px;
}


.mo_il {
    float: left;
}


.contact_warp {
    float: left;
    width: 100%;
}


.contact_warp h2 {
    font-size: 12px;
    color: #000000;
    font-weight: bold;
    float: left;
    width: 100%;
}

.contact_warp input {
    float: left;
    width: 100%;
    height: 40px;
    border: 1px solid #ebebeb;
    font-size: 12px;
    padding: 10px;
    border-radius: 6px;
}

.contact_warp span.wpcf7-not-valid-tip {
    font-size: 12px;
    display: inline-block;
}

.contact_warp p {
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

.contact_warp select {
    float: left;
    width: 100%;
    height: 40px;
    font-size: 12px;
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 6px;
}

.contact_warp textarea {
    border: 1px solid #ebebeb;
    float: left;
    width: 100%;
    height: 110px;
    padding: 10px;
    font-size: 12px;
    border-radius: 6px;
}

.contact_warp .contac_inn {
    float: left;
    width: 50%;
    margin: 0px;
}

.contact_warp .contact_warp p span {
    float: left;
    width: 100%;
    padding-bottom: 8px;
}

.contact_warp input[type="checkbox"] {
    width: auto;
}

.contact_warp span.wpcf7-list-item-label {
    font-size: 12px;
    padding-left: 10px;
    margin-top: 10px;
    float: left;
    width: 95%;
}

.contact_warp input.wpcf7-form-control.has-spinner.wpcf7-submit {
    width: 180px;
    border-radius: 30px;
    background: #323130;
    color: #ffffff;
    height: 45px;
}

.post_code {
    margin-left: 10px;
    width: 97% !important;
}

.wpcf7-response-output {
    float: left;
    font-size: 16px;
    width: 100%;
}

h2.elementor-heading-title.elementor-size-default {
    font-family: 'Playfair Display';
}

h2.elementor-heading-title.elementor-size-default {
    font-family: 'Playfair Display';
    font-weight: normal;
}

h2.elementor-heading-title.elementor-size-default {
    font-family: 'Playfair Display';
}

.elementor-widget-container {
    font-family: 'Jost-Light';
}

a.elementor-button-link.elementor-button.elementor-size-sm {
    font-family: 'Jost-Regular';
}

section#feat_ured {
    float: left;
    width: 100%;
}

.feach_ed_warp {
    background: #ffffff;
    padding: 20px;
    float: left;
    width: 100%;
}

.rec_vie .owl-item {
    float: left;
}

.owl-carousel-2 .owl-item {
    float: left;
}

.daer {
    overflow: hidden;
    margin-bottom: 30px;
}

.feach_ed_warp h2 {
    text-align: center;
    font-size: 20px;
    font-family: 'Jost-Regular';
    margin-bottom: 0px;
    padding-bottom: 35px;
    color: #000000;
    font-weight: 600;
}

.owl-carousel-2 .owl-dots {
    display: none;
}

.owl-carousel-2 .owl-nav button {
    border: none;
    background: #ffffff;
}

.owl-carousel-2 .owl-nav {
    position: absolute;
    width: 100%;
    top: 30px;
}

.owl-carousel-2 {
    position: relative;
}

.owl-carousel-2 .owl-nav button.owl-prev {
    position: relative;
    left: 0;
    font-size: 30px;
}

.owl-carousel-2 .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    font-size: 30px;
}

.ymal_warp {
    float: left;
    width: 100%;
}

.ymal_warp p {
    float: left;
    width: auto;
    margin: 0;
    font-size: 30px;
    font-family: 'Jost-Bold';
    color: #000000;
}

.ymal_warp form {
    float: right;
}

.ymal_inner {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.ymal_inner ul {
    float: left;
    width: 100%;
    list-style: none;
    padding: 0;
}

.ymal_inner ul li {
    float: left;
    width: 19%;
    margin: 6px;
    background: #ffffff;
    padding: 10px 0;
}

.ymal_inner ul li a {
    float: left;
    width: 100%;
    padding: 10px;
}

.ymal_inner ul li a h2 {
    color: #000000;
    font-size: 14px;
    padding: 12px 0 0;
    float: left;
    width: 100%;
    margin: 0 !important; /*font-family: 'Jost-Bold';*/
    min-height: 50px;
}

.ymal_inner ul li a h3 {
    color: #000000;
    font-size: 14px;
    padding: 12px 0;
    float: left;
    width: 100%;
    margin: 0 !important;
    font-family: 'Jost-Light';
}

.ymal_warp form label.form-label {
    float: left;
    font-size: 13px;
    font-family: 'Jost-Medium';
    padding-top: 5px;
    padding-right: 7px;
}

.ymal_warp form select {
    width: 190px;
    border: none;
    font-size: 10px;
    color: #cccccc;
    height: 32px;
    font-family: 'Jost-Light';
}

.rec_vie h2 {
    width: 100%;
    margin: 0;
    font-size: 30px;
    font-family: 'Jost-Bold';
    color: #000000;
    padding-bottom: 25px;
}

.rec_vie .owl-carousel .owl-dots {
    display: none;
}

.rec_vie .owl-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 100px;
}

.rec_vie .owl-carousel {
    position: relative;
}

.rec_vie .owl-carousel .owl-nav button {
    border: none;
    background: transparent;
    font-size: 45px;
}

.rec_vie .owl-carousel .owl-nav button.owl-prev.disabled {
    position: relative;
    left: -13px;
    z-index: 9;
}

.rec_vie .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -0px;
}

.rec_vie .owl-item .item a {
    float: left;
    width: 100%;
    padding: 10px;
}

.rec_vie .owl-item .item a h2 {
    color: #000000;
    font-size: 14px;
    padding: 12px 0 0;
    float: left;
    width: 100%;
    margin: 0 !important;
    font-family: 'Jost-Bold';
}

.rec_vie .owl-item .item a h3 {
    color: #000000;
    font-size: 14px;
    padding: 12px 0;
    float: left;
    width: 100%;
    margin: 0 !important;
    font-family: 'Jost-Light';
}

/*--------------------------------------2.10.23--------------------------------------*/

.n2-ss-layer .n2-ss-item-content {
    font-family: 'Playfair Display' !important;
    font-size: 50px !important;
}

.n2-ss-layer .n2-ss-item-content a {
    font-size: 20px !important;
    font-size: 20px !important;
    top: -62px;
    position: relative;
}

.besp_oke .elementor-widget-container {
    font-family: 'Jost-Regular';
}

.besp_oke h2.elementor-heading-title.elementor-size-default {
    font-family: 'Jost-Regular';
}

.bhgt h2.elementor-heading-title.elementor-size-default {
    font-family: 'Jost-Regular' !important;
}

.besp_oke .elementor-widget-container {
    font-weight: 500;
    font-size: 12px;
    color: #ffffffbd;
}

.hom_slit h2.wpcu-product__title a {
    font-size: 12px;
    font-family: 'Jost-Regular';
}

.hom_slit h2.wpcu-product__title {
    border-bottom: 0px !important;
}

.hom_slit .wpcu-product__price {
    font-family: 'Jost-Regular';
}

.toge_ther .elementor-widget-container {
    font-size: 30px; /* font-family: 'Jost-Light' !important; */
    font-family: 'Playfair Display' !important;
}

.ftpf ul {
    float: left;
    width: 100%;
    list-style: none;
    padding: 0;
}

.ftpf {
    float: left;
    width: 100%;
}

.ftpf ul li {
    width: 24%;
    float: left;
    margin: 6px;
}

.foot-text a {
    color: #000000;
}

.qu_ality .elementor-widget-container {
    font-size: 18px;
}

.vfrw h2.elementor-image-box-title {
    font-family: 'Playfair Display' !important;
}

.vfrw p.elementor-image-box-description {
    font-family: 'Jost-Light';
    font-size: 14px;
}

.gteo h2.elementor-image-box-title {
    font-family: 'Playfair Display' !important;
    font-size: 18px;
    margin-bottom: 3px !important;
    padding-left: 16px;
}

.gteo p.elementor-image-box-description {
    font-family: 'Jost-Light';
    font-size: 14px;
    padding: 0 18px 20px;
}

.wpcf7-form {
    border: none !important;
}

.wpcf7-form .cf7_mls_steps_item_content p.cf7mls_progress_bar_title {
    display: none !important;
}

.wpcf7-form ul {
    margin-top: 20px !important;
}

.cf7mls_bar_style_largerSign_squaren.cf7mls_bar_style_text_vertical li:before {
    border-radius: 100% !important;
    background: none !important;
    border: 1px solid #ffffff !important;
    width: 35px !important;
    height: 35px !important;
}

.cf7mls_bar_style_largerSign_squaren.cf7mls_bar_style_text_vertical[data-id-form="2045"] li.active:before {
    background: #000000 !important;
}

.wpcf7-form input {
    margin-bottom: 10px;
    height: 40px;
    padding: 10px;
}

.wpcf7-form .cf7mls-btns {
    text-align: center;
}

.wpcf7-form button#cf7mls-next-btn-cf7mls_step-1 {
    float: none;
    margin: 0;
    background: none;
    border: 1px solid #ffffff;
    padding: 10px 30px;
}

.cf7mls_bar_style_largerSign_squaren.cf7mls_bar_style_text_vertical li:after {
    border: none !important;
    transform: rotate(0deg) !important;
    width: 80px !important;
    height: 1px !important;
    background: #ffffff;
    left: -36px;
    top: 16px !important;
}

button#cf7mls-back-btn-cf7mls_step-2 {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px;
}

button#cf7mls-next-btn-cf7mls_step-2 {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    line-height: 0 !important;
}

button#cf7mls-back-btn-cf7mls_step-3 {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px;
}

.wpcf7-response-output {
    color: #ffffff;
    float: left;
    width: 98%;
    margin: 0px !important;
}

/*------------------------------------blog page-------------------------------------------*/
.ymc-smart-filter-container .filter-layout.filter-layout1 .filter-entry .filter-item .filter-link {
    background: none !important;
    color: #000000 !important;
    font-size: 12px !important;
}


.ymc-smart-filter-container ul {
    justify-content: center !important;
    border-bottom: 1px solid #e1e1e1;
    width: 78%;
    margin: 3px auto 30px !important;
}

li.filter-item {
    margin: 0px !important;
}

#ymc-smart-filter-container-1 .filter-layout.filter-layout1 .filter-entry .filter-item .filter-link.active {
    /* border-bottom: 2px solid #000000; */
    position: relative;
}

#ymc-smart-filter-container-1 .filter-layout.filter-layout1 .filter-entry .filter-item .filter-link.active:after {
    content: "";
    border-bottom: 2px solid #000000;
    bottom: -1px;
    position: absolute;
    left: 0;
    width: 100%;
}


.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 {
    border: none !important;
    padding: 0px !important;
    background: #ffffff;
    padding-bottom: 20px !important;
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 .category {
    display: none;
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 header.title {
    padding: 0 20px;
    font-size: 16px;
    font-family: 'Jost-Light';
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 span.date {
    display: none;
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 span.author {
    display: none;
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 .excerpt {
    padding: 0 20px;
    font-size: 12px !important;
    font-family: 'Jost-Light';
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 .read-more {
    float: left;
    margin-left: 20px;
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 .read-more .btn {
    background: none !important;
    color: #000000 !important;
    font-size: 12px !important;
    padding: 0 !important;
    font-family: 'Jost-Light';
    position: relative;
}

.ymc-smart-filter-container .container-posts .post-entry.post-layout1 .ymc-post-layout1 .read-more .btn:after {
    content: "";
    position: absolute;
    top: 3px;
    right: -16px;
    background: url(../img/arrow_red.png) no-repeat;
    width: 11px;
    height: 12px;
}

a.btn-load {
    border: none !important;
    color: #000000 !important;
    font-family: 'Jost-Light';
    font-size: 14px !important;
    font-weight: bold !important;
}

.fech_erd {
    float: left;
    width: 100%;
    margin-top: 60px;
    padding-bottom: 30px;
}

.fech_erd img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.fech_erd h1.entry-title {
    font-size: 20px;
    font-family: 'Jost-Light';
    font-weight: bold;
    padding-top: 20px;
}

.fech_erd .comments-link {
    display: none;
}

.fech_erd section {
    padding-top: 0;
}

.fech_erd section .elementor-container.elementor-column-gap-default {
    max-width: 100% !important;
}

.fech_erd p {
    color: #000000;
    font-size: 14px;
    font-family: 'Jost-Light';
}

.fech_erd h2, h3 {
    font-size: 20px;
    font-family: 'Jost-Light';
    font-weight: bold;
    padding-top: 20px;
    color: #000000;
}

.fech_erd p a {
    color: #ff0000;
    font-size: 14px;
    font-family: 'Jost-Light';
    font-weight: bold !important;
}

.single footer.entry-meta {
    font-size: 12px;
    color: #000000;
}

.single nav.nav-single {
    font-size: 12px;
    color: #000000;
}

.single h3.assistive-text {
    font-size: 14px;
}

.single h3#reply-title {
    font-size: 14px;
}

.single p.comment-form-comment {
    float: left;
    width: 100%;
}

.single p.comment-form-comment label {
    float: left;
    width: 100%;
}

.single p.comment-form-comment textarea#comment {
    width: 100%;
}

.single input#submit {
    background: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
    border-radius: 0px !important;
    margin: 0 !important;
    padding: 5px 15px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    border-radius: 0px !important;
    border: none !important;
    box-shadow: none !important;
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    border-radius: 0px !important;
    border: none !important;
    box-shadow: none !important;
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding-left: 0px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover:after {
    content: "";
    border-bottom: 2px solid #000000;
    bottom: -1px;
    position: absolute;
    left: 0;
    width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:after {
    content: "";
    border-bottom: 2px solid #000000;
    bottom: -1px;
    position: absolute;
    left: 0;
    width: 100%;
}


.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 12px !important;
}

.wpgs-nav .slick-current {
    border: none !important;
}

.curre_ntly {
    padding: 20px;
    float: right;
}

.curre_ntly section.recent_products {
    padding-bottom: 0px;
    padding-top: 0px;
}

.curre_ntly section.recent_products h2 {
    padding-bottom: 0;
    padding-top: 0;
}

.curre_ntly section.recent_products ul.products.rvpscarousel.slick-initialized.slick-slider .slick-track {
    width: 100%;
}

.curre_ntly section.recent_products ul.products.rvpscarousel.slick-initialized.slick-slider .slick-slide.slick-current.slick-active {
    padding: 0;
    padding-top: 22px;
}

.ftpf {
    padding: 30px;
}

.curre_ntly h2.woocommerce-loop-product__title {
    color: #000000;
    font-size: 19px !important;
    text-align: left;
}

.curre_ntly .eael-star-rating.star-rating {
    color: #000000;
}

.curre_ntly span.price {
    color: #000000;
}

.curre_ntly a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    background: #000000;
    border-radius: 0px;
    color: #ffffff;
    font-size: 12px;
    padding: 12px 20px;
    margin-right: 10px;
}

.curre_ntly a.compare.button {
    border: 1px solid #000000;
    padding: 12px 20px;
    border-radius: 0px;
}

.curre_ntly ul.products.rvpscarousel.slick-initialized.slick-slider {
    padding: 0px !important;
}

.curre_ntly li.berocket_lgv_grid.berocket_lgv_list_grid.product.type-product.post-195.status-publish.instock.product_cat-ceiling-lights.product_cat-wall-lamps.has-post-thumbnail.featured.shipping-taxable.purchasable.product-type-simple {
    margin-bottom: 0;
}

.woo-product-gallery-slider .draggable .slick-track {
    height: 161px;
    overflow: hidden;
}

.cfr_t h2.elementor-heading-title.elementor-size-default {
    font-family: 'Jost-Regular' !important;
    font-size: 16px !important;
    min-height: 32px;
}

.hom_slit h2.wpcu-product__title {
    padding: 0px !important;
}

.hom_slit .wpcu-product__price {
    padding: 0px !important;
}


.hom_slit .wpcu-products .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--prev {
    background: none !important;
    border: none !important;
    left: 0;
    z-index: 9;
    position: relative;
}

.hom_slit .wpcu-products .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--prev svg {
    width: 15px !important;
}

.hom_slit .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--next {
    background: none !important;
    border: none !important;
    left: 0;
    z-index: 9;
    position: relative;
}

.hom_slit .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--next svg {
    width: 15px !important;
}

.ymc-smart-filter-container .container-posts .post-entry {
    grid-gap: 10px;
}

.jarnal #ymc-smart-filter-container-1 .container-posts .post-entry .ymc-post-layout1 {
    box-shadow: 0px 0px 8px 0px #00000033 !important;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #f9f4f2;
    z-index: 9;
}

.sticky + .content {
    padding-top: 102px;
}

.page-id-2113 .fixed-top {
    position: absolute;
}


.sticky ul {
    width: 100% !important;
    margin: 0px !important;
    padding: 20px !important;
}


a.refs-preview {
    float: left;
    width: 100%;
}

a.refs-preview .refs-preview--img {
    float: left;
    width: 100%;
    height: 470px;
    overflow: hidden;
}

a.refs-preview .refs-preview--img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.carousel-inner {
    height: 500px !important;
}

.carousel-inner .carousel-item {
    height: 100%;
    background: #f0eeee;
    position: relative;
    overflow: hidden;
}

.carousel-inner .carousel-item img {
    width: auto !important;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}


#referenze span.refs-preview--info {
    float: left;
    width: 100%;
    padding: 10px 0;
}

#referenze span.refs-preview--info span.refs-preview--info__title {
    float: left;
    width: 100%;
    font-size: 20px;
    color: #000000;
    font-weight: bold;
}

#referenze span.refs-preview--info small.refs-preview--info__place {
    float: left;
    width: 100%;
    color: #000000;
    position: relative;
    padding-left: 59px;
}

#referenze span.refs-preview--info small.refs-preview--info__place:after {
    content: "";
    position: absolute;
    background: #000000;
    width: 50px;
    height: 1px;
    left: 0;
    top: 12px;
}

div#referenze {
    position: relative;
    float: left;
    margin-bottom: 30px;
}


.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: #ffffff;
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #000000;
    display: block;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 32px;
    font-size: 45px !important;
}

.thc {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 26px;
}

div#myCarousel {
    float: left;
    width: 100%;
}

.thc h2 {
    font-size: 20px;
    margin-bottom: 0;
}

.glyphicon-chevron-left:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 20px;
    background: url(img/p-1.png);
    background-repeat: no-repeat;
}

a.left.carousel-control {
    height: auto;
    background: none;
}

.carousel-control .glyphicon-chevron-left {
    top: -44px;
}

span.glyphicon.glyphicon-chevron-right {
    top: -44px;
}

span.glyphicon.glyphicon-chevron-right:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 20px;
    background: url(img/p-2.png);
    background-repeat: no-repeat;
}


/* Style the tab */
.tab {
    overflow: hidden;
    /* border: 1px solid #ccc;
     background-color: #f1f1f1;*/
    float: left;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 10px;
    transition: 0.3s;
    font-size: 12px;
    margin: 0 4px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ede3de;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ede3de;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}


.project_warp {
    float: left;
    padding: 26px 15px 0;
    width: 100%;
}

.project_warp h2 {
    float: left;
    width: 100%;
    padding-bottom: 11px;
    font-family: 'Playfair Display';
}

.tabcontent {
    float: left;
    width: 100%;
}

.slid_er .wpcu-carousel-nav__btn {
    border-radius: 100%;
}

.slid_er h2.wpcu-product__title a {
    font-size: 14px !important;
    font-family: 'Jost-Regular';
    color: #000000 !important;
}

.slid_er .wpcu-product__price span.wpcu-product__price__sale {
    font-size: 12px !important;
    font-family: 'Jost-Regular';
}

.slid_er h2.wpcu-product__title {
    padding-bottom: 0px !important;
}

#woopspro-product-slider-1 .slick-track li h2.woocommerce-loop-product__title {
    display: none;
    text-align: center;
}

#woopspro-product-slider-1 .slick-track li .eael-star-rating.star-rating {
    display: none;
}

#woopspro-product-slider-1 .slick-track li a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none;
}

#woopspro-product-slider-1 .slick-track li span.price {
    display: none;
    position: absolute;
    top: 0;
    width: 95%;
    background: #0000004d;
    height: 100%;
    line-height: normal;
    text-align: center;
    padding-top: 84px;
    margin: 0px !important;
}

#woopspro-product-slider-1 .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #ffffff !important;
    font-family: 'Jost-Regular';
    font-size: 12px !important;
}

#woopspro-product-slider-1 .slick-track li a {
    float: left;
    width: 100%;
}

#woopspro-product-slider-1 .slick-track li a img {
    width: 100% !important;
    margin: 0;
}


#woopspro-product-slider-1 .slick-track li a:hover span.price {
    display: block !important;
}

#woopspro-product-slider-1 a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    display: none;
}

#woopspro-product-slider-1 ul.variations {
    display: none;
}


div#woopspro-product-slider-1 {
    padding: 0 20px;
}

div#woopspro-product-slider-1 button.slick-prev.slick-arrow {
    left: -30px !important;
    background: url(../img/arrow-left3.png) center center no-repeat !important;
}

div#woopspro-product-slider-1 button.slick-next.slick-arrow {
    right: -32px;
    background: url(../img/arrow-left2.png) center center no-repeat !important;
}


#woopspro-product-slider-2 .slick-track li h2.woocommerce-loop-product__title {
    display: none;
}

#woopspro-product-slider-2 .slick-track li .eael-star-rating.star-rating {
    display: none;
}

#woopspro-product-slider-2 .slick-track li a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none;
}

#woopspro-product-slider-2 .slick-track li span.price {
    display: none;
    position: absolute;
    top: 0;
    width: 95%;
    background: #0000004d;
    height: 100%;
    line-height: normal;
    text-align: center;
    padding-top: 81px;
    margin: 0px !important;
}

#woopspro-product-slider-2 .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #ffffff !important;
    font-family: 'Jost-Regular';
    font-size: 12px !important;
}

.product_del {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    font-family: 'Jost-Regular';
}

#woopspro-product-slider-2 .slick-track li a:hover h2.woocommerce-loop-product__title {
    display: block;
    font-family: 'Jost-Regular';
    font-size: 12px;
    position: absolute;
    top: 22px;
    width: 95%;
    color: #ffffff;
    z-index: 9;
    padding: 10px;
}

#woopspro-product-slider-2 .slick-track li a {
    float: left;
    width: 100%;
}

#woopspro-product-slider-2 .slick-track li a img {
    width: 100% !important;
    margin: 0;
}


#woopspro-product-slider-2 .slick-track li a:hover span.price {
    display: block !important;
}

#woopspro-product-slider-2 a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    display: none;
}

#woopspro-product-slider-2 ul.variations {
    display: none;
}


div#woopspro-product-slider-2 {
    padding: 0 20px;
}

div#woopspro-product-slider-2 button.slick-prev.slick-arrow {
    left: -30px !important;
    background: url(../img/arrow-left3.png) center center no-repeat !important;
}

div#woopspro-product-slider-2 button.slick-next.slick-arrow {
    right: -32px;
    background: url(../img/arrow-left2.png) center center no-repeat !important;
}

#woopspro-product-slider-3 ul li h2.woocommerce-loop-product__title {
    display: none;
}

#woopspro-product-slider-3 ul li .eael-star-rating.star-rating {
    display: none;
}

#woopspro-product-slider-3 ul li span.price {
    display: none;
}

#woopspro-product-slider-3 ul li a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    display: none;
}

#woopspro-product-slider-3 ul li .wvs-archive-variations-wrapper.wvs-pro-loaded {
    display: none;
}

#woopspro-product-slider-3 ul li a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none;
}

.ymal_warp ul li span.price {
    color: #000000 !important;
    font-size: 14px !important;
    padding: 0;
    float: left;
    width: 100%;
    margin: 0 !important;
    /* font-family: 'Jost-Bold'; */
    font-weight: normal !important;
}

.wpgs-lightbox-icon:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: url(../img/zoom-icon-png-0.png) no-repeat;
    top: 50px;
    right: 50px;
}

div#n2-ss-2 .n2-style-0e5c594e3df5e8bbb555e811c47fd866-heading {
    background: #0000007a !important;
    opacity: 1 !important;
}


/*-----------------------------------product Category--------------------------------*/

.box {
    background-color: #ffffff;
    float: left;
    width: 370px;
    margin-top: 60px;
    padding: 24px;
    position: relative;
}

.transform {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.transform-active {
    background-color: #ffffffd9; /*height: 200px;*/
    width: 100%;
    float: left;
}

.refs2-preview--img {
    float: left;
    width: 100%;
}

.refs2-preview--img img {
    width: 100%;
}

.sjo_kh {
    float: left;
    width: 100%;
}

div#referenze2 {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

#referenze2 a {
    float: left;
    width: 100%;
}

.tit_el {
    float: left;
    width: 50%;
}

.shop_bot {
    float: left;
    width: 50%;
    text-align: right;
    padding-top: 10px;
}

.tit_el h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    padding: 11px 7px;
    font-size: 22px;
    font-family: 'Jost-Regular';
}

.shop_bot a {
    float: right !important;
    background: #000000;
    width: 96px !important;
    border-radius: 30px;
    padding: 8px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Jost-Regular';
    font-size: 12px;
}

.dip_rap {
    background: url(../img/back_k.jpg);
    background-repeat: no-repeat;
    float: left;
    width: 100%;
    background-size: cover;
    min-height: 2220px; /*margin-bottom: 50px;*/
}

.transform-active .git_view {
    display: none;
}

.list_view {
    display: none;
}

.transform-active .list_view {
    display: block;
}

.list_view {
    float: left;
    width: 100%;
    padding-top: 44px;
}

.list_view ul {
    float: left;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
}

.list_view ul li {
    float: left;
    width: 19.1%;
    list-style: none;
    margin: 5px;
    background: #ffffff;
}

.list_view ul li a {
    float: left;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

.list_view ul li a img {
    width: 200px;
    height: 220px;
    object-fit: contain;
    padding-top: 7px;
}

.list_view ul li a h2 {
    font-size: 14px;
    margin: 0;
    padding: 15px 10px 30px;
    color: #000000;
    font-family: 'Jost-Regular';
}

ul.bir-i {
    float: left;
}

ul.bir-i li {
    width: 24.1%;
}

.git_view {
    float: left;
    width: 100%;
}

.git_view h2 {
    float: left;
    width: 100%;
    font-size: 20px;
    margin: 0;
    padding: 10px 0; /* font-weight: bold; */
    font-family: 'Playfair Display' !important;
}

.git_view ul {
    float: left;
    width: 100%;
    padding-left: 0;
    list-style: none;
}

.git_view ul li {
    float: left;
    width: 100%;
}

.git_view ul li a {
    color: #000000;
    padding: 5px 0px;
    float: left;
    width: 100%;
    text-decoration: none;
    font-family: 'Jost-Regular';
    font-size: 16px;
}

a#button {
    position: absolute;
    right: 14px;
    top: 12px;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-family: 'Jost-Regular';
}

a#button2 {
    position: absolute;
    right: 14px;
    top: 12px;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    z-index: 99;
}

.transform-active .kiu {
    display: block !important;
    padding-top: 10px;
}

.transform-active a#button {
    display: none;
}

.transform-active a#button2 {
    display: block;
    font-family: 'Jost-Regular';
}

h2.hui_u {
    float: left;
    width: 100%;
    margin: 0;
    position: absolute;
    top: 21px;
    font-size: 22px;
    padding-left: 9px;
    font-family: 'Playfair Display' !important;
}

.ght_r h2 {
    float: left;
    width: 100%;
    margin: 0;
    font-size: 22px;
    padding-left: 9px;
    font-family: 'Playfair Display' !important;
    padding: 20px 7px;
}

.her_ding {
    float: left;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.her_ding h2 {
    float: left;
    width: 100%;
    margin: 0;
    font-size: 30px;
    padding-left: 9px;
    font-family: 'Playfair Display' !important;
}

.her_ding h2 span {
    font-family: 'Satisfy', cursive;
}

a#button img {
    padding-left: 5px;
}

.transform-active a#button2 img {
    padding-left: 5px;
}

.crea_ting h2 span {
    font-family: 'Satisfy', cursive;
}


/*-------------------------project  css-----------------------*/
.smp {
    float: left;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

div.div2 {
    position: relative;
    float: left;
    width: 100%;
}

ul.inn_to {
    float: left;
    width: 100%;
    list-style: none;
    padding: 0;
}

ul.inn_to li {
    float: left;
    width: 20%;
}

ul.inn_to li a {
    float: left;
    width: auto;
}

ul.inn_to li a img {
    width: 50px;
    float: left;
}

ul.inn_to li a h2 {
    font-size: 14px;
    float: left;
    padding-top: 50px;
    width: 50%;
}

ul.inn_to li a:hover {
    color: #000000;
}

div#div2 ul.inn_to {
    position: absolute;
    z-index: 9;
    background: #ffffff;
    margin: 6px;
    width: 99%;
    top: 510px;
}

.smp a#img2 {
    font-size: 14px;
    font-family: 'Jost-Regular';
    color: #000000;
}

.smp a#img2:hover {
    color: #000000;
}

.over_lay {
    position: absolute;
    background: #0000009e;
    width: 100%;
    height: 68vh;
    z-index: 1;
}


div#demo {
    float: left;
    width: 100%;
    height: 660px;
}

div#demo .carousel-inner {
    height: 660px;
}

div#demo .carousel-inner img {
    object-fit: cover;
    height: 800px;
}

ul.inn_to li a img {
    height: auto !important;
}


p.tit_el {
    font-family: 'Playfair Display' !important;
    font-size: 36px;
    padding-bottom: 20px;
}

.recommendations #woopspro-product-slider-1 .slick-track li h2.woocommerce-loop-product__title {
    display: block;
    text-align: center;
}

.recommendations #woopspro-product-slider-1 .slick-track li span.price {
    display: block;
    position: relative;
    background: none;
    color: #000000;
    padding: 0;
    text-align: center;
}

.recommendations #woopspro-product-slider-1 .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #000000 !important;
}

.recommendations #woopspro-product-slider-2 .slick-track li h2.woocommerce-loop-product__title {
    display: block;
    text-align: center;
}

.recommendations #woopspro-product-slider-2 .slick-track li span.price {
    display: block;
    position: relative;
    background: none;
    color: #000000;
    padding: 0;
    text-align: center;
}

.recommendations #woopspro-product-slider-2 .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #000000 !important;
}


.single a.reset_variations {
    display: none !important;
}

.single .woocommerce-variation-price span.price {
    display: none;
}

.recomme_ndations .star-rating {
    display: none !important;
}

.recomme_ndations
h2.woocommerce-loop-product__title {
    text-align: center;
}

/*.recomme_ndations .slick-track li span.price {
    position: relative !important;
    background: none !important;
    color: #000000 !important;
    padding-top: 0px !important;
    display: block !important;
}

.recomme_ndations #woopspro-product-slider-1 .slick-track li h2.woocommerce-loop-product__title {
    display: block !important;
    color: #000000 !important;
    position: relative !important;
}

.recomme_ndations .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #000000 !important;
}
*/

.archive nav.woocommerce-breadcrumb {
    float: left;
    width: 100%;
    padding-top: 20px;
    color: #000000;
    font-family: 'Jost-Light' !important;
}

.archive nav.woocommerce-breadcrumb a {
    color: #000000;
}

.archive header.woocommerce-products-header {
    float: left;
    width: 100%;
}

.archive header.woocommerce-products-header h1 {
    font-family: 'Playfair Display' !important;
    color: #000000;
    font-size: 30px;
}

.archive ul.products {
    float: left;
    width: 100%;
    border-top: 1px solid #cccccc;
    padding-top: 10px !important;
    margin-top: 15px !important;
}

.archive p.woocommerce-result-count {
    font-family: 'Jost-Light' !important;
    color: #000000;
    font-size: 13px;
}

.archive form.woocommerce-ordering select.orderby {
    border: 1px solid #cccccc;
    height: 40px;
    padding: 6px;
    font-family: 'Jost-Light' !important;
    font-size: 12px;
}

.archive .berocket_lgv_widget {
    width: 100%;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px !important;
    margin-bottom: 15px;
    font-family: 'Jost-Light' !important;
    color: #000000;
}

.archive form.woocommerce-ordering {
    margin-bottom: 0px !important;
}


.archive .berocket_lgv_widget .br_lgv_product_count_block a {
    font-family: 'Jost-Light' !important;
    color: #000000;
    font-size: 13px;
}

.archive ul.products li {
    float: left;
}

.archive ul.products li h2.woocommerce-loop-product__title {
    float: left;
    width: 100%;
    font-family: 'Jost-Light' !important;
    color: #000000;
    font-weight: 700;
    min-height: 80px;
}

.archive ul.products li a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    float: left;
    width: 100%;
}


.woocommerce .star-rating::before {
    color: #ffb600 !important;
}


.woocommerce .star-rating span::before {
    color: #ffb600 !important;
}

.woocommerce ul.products li.product .price {
    color: #000000 !important;
    font-family: 'Jost-Light' !important;
    font-weight: 700 !important;
    text-align: left;
}

.woocommerce ul.products li.product .button {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 6px;
    font-family: 'Jost-Light' !important;
    display: none;
}


.woocommerce ul.products li.product.first {
    clear: none !important;
}

.woocommerce ul.products li.product {
    margin: 20px;
    width: 21.9% !important;
}

.home .woocommerce ul.products li.product .star-rating {
    display: none;
}

.cclw_qty .wrapper_qty {
    float: left;
}

.cclw_cart_totals ul#shipping_method {
    text-align: left !important;
}

ul#shipping_method {
    float: left;
    width: 100%;
}

ul#shipping_method li {
    float: left;
    width: 100%;
    /* border-bottom: 1px solid #cccccc; */
    padding: 12px;
    font-family: 'Jost-Light';
    background: #ECEAE2;
    border-radius: 6px;
}

ul#shipping_method {
    margin-top: 25px;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background: #ECEAE2 !important;
    border-radius: 6px !important;
    margin-top: 6px !important;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid #ECEAE2 !important;
    border-right-color: transparent!important;
    border-left-color: transparent!important;
    border-top-color: transparent!important;
}

.woocommerce-checkout .grid-col-2.grid-col-checkout {
    background: transparent;
}

div#customer_address_details,
div#cclw_additional_fields,
div#cclw_order_details_table,
div#cclw_payment_section {
    border-radius: 12px;
}

div#cclw_additional_fields {
    margin: 10px 0;
}

.woocommerce-checkout  #ship-to-different-address {
    padding: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

form.checkout.woocommerce-checkout .required {
    color: #000000;
}

ul.woof_list_color.woof_color_title_col li .woof_color_title {
    font-size: 12px !important;
    font-weight: 500;
    color: #444;
}

.yith-wacp-wrapper.woocommerce {
    width: 830px !important;
}

#yith-wacp-popup .product-thumb {
    width: 18%;
}


#yith-wacp-popup .info-box {
    float: left;
    width: 56%;
}

#yith-wacp-popup .popup-actions {
    width: 20%;
    float: left;
    clear: none;
    border: none;
    margin: 0;
    text-align: left;
}

#yith-wacp-popup .woocommmerce.yith-wacp-related {
    float: left;
    width: 100%;
    border-top: 1px solid #cccccc;
}

#yith-wacp-popup .cart-info {
    border: none;
    padding: 0;
    font-family: 'Jost-Light' !important;
}

#yith-wacp-popup h3.product-title {
    margin: 0;
    padding: 0;
    height: auto;
}

#yith-wacp-popup .product-info {
    border: none;
    padding-bottom: 0;
}

#yith-wacp-popup .cart-shipping {
    font-family: 'Jost-Light' !important;
}


#yith-wacp-popup .yith-wacp-content ul.products li {
    width: 10% !important;
}

#yith-wacp-popup h3.product-title {
    font-size: 11px !important;
}

#yith-wacp-popup .yith-wacp-message {
    text-align: center;
    background: #ffffff !important;
    border-bottom: 1px solid #cccccc;
}

.yith-wacp-content .cart-info > div {
    font-size: 12px !important;
    font-family: 'Jost-Light' !important;
}

.woocommerce-cart form.woocommerce-cart-form {
    float: left;
    width: 69%;
    margin-right: 10px;
}

.woocommerce-cart .cart-collaterals {
    float: left;
    width: 30% !important;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}

.woocommerce-cart .cart-collaterals a.shipping-calculator-button {
    color: #000000;
    font-family: 'Jost-Light' !important;
}

.woocommerce-cart .cart-collaterals {
    position: relative;
    padding-top: 55px;
}

.woocommerce-cart .cart-collaterals:after {
    content: "Order Summary" !important;
    position: absolute;
    background: #bdbdbd;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    height: 52px;
    font-size: 16px;
    font-family: 'Jost-Light' !important;
    font-weight: bold;
    color: #000000;
    line-height: 30px;
    padding-left: 20px;
    display: inline-block;
}

.woocommerce-cart .woocommerce table.shop_table td {
    border-top: 10px solid rgb(246 240 237);
    padding: 20px;
}

.woocommerce-cart .woocommerce .quantity .qty {
    border: 1px solid #cccccc;
    font-size: 12px;
}

.woocommerce-cart td.actions {
    background: #f6f0ed;
}

.woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents {
    border: none;
}

#cclw_order_details_table .cclw_order_review_table .cclw_cart_totals div.order-total-save {
    padding: 0 0 20px 0;
    color: red;
}

.price ins {
    text-decoration: none;
}

.woocommerce-page .cart-collaterals .cart_totals div.order-total-save {
    padding: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: red;
}

.feach_ed_warp ul {
    float: left;
    width: 100%;
    list-style: none;
    padding-left: 0;
}

.feach_ed_warp ul li a {
    float: left;
    text-align: center;
    width: 100%;
}

.single-product p.currently-price {
    color: #000000;
    text-align: left;
}

.single-product h1.product_title.entry-title {
    text-align: left;
}


#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
    width: 25% !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
    width: 16%;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    /*width: 992px !important; */
    width: 1024px !important;
}

.mobail {
    display: none;
}


/*-----------------------------------responsive---------------------------------*/

@media only screen and (max-width: 767px) {

    /**nav-expand for footer with head and ul**/
    .nav-folderized .nav h2 {
        cursor: pointer;
    }

    .nav-folderized ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s ease-out;
    }

    .nav-folderized .nav h2:after {
        content: "+";
        float: right;
    }

    .nav-folderized .nav.open h2:after {
        content: "-";
    }

    .nav-folderized .nav.open ul {
        height: auto;
        max-height: 500px;
        transition: max-height 1s ease-in !important;
    }

    /**nav-expand for footer with head and ul**/
    a.refs-preview .refs-preview--img {
        height: 300px;
    }


}


@media screen and (max-height: 450px) {
    .overlay {
        overflow-y: auto;
    }

    .overlay a {
        font-size: 20px
    }

    .closebtn {
        font-size: 40px !important;
        top: 15px;
        right: 35px;
    }
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
    .icon_text_warp a:not(:first-child) {
        display: none;
    }

    .trad_e.text-left {
        display: none;
    }

    .free-shiping.text-center {
        padding: 6px 0;
    }

    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        top: 27px;
    }

    .search-bar.mobail {
        width: 70%;
    }

    .search-bar input {
        width: 100%;
    }

    .mobail {
        display: block;
        width: 123px;
        margin-left: 60px;
        position: relative;
        z-index: 9;
        margin: 10px 0px;
    }

    /*.fixed-top {position:relative !important;}*/
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
        width: 100% !important;
    }

    #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
        width: 100% !important;
    }

    /*    .scrolled-offset {margin-top: 0px;}*/
    .home #woopspro-product-slider-1 .slick-track li span.price {
        display: block;
        position: relative;
        height: auto;
        padding: 0;
        background: none;
        color: #000000 !important;
    }

    .home #woopspro-product-slider-1 .slick-track li span.price span.woocommerce-Price-amount.amount {
        color: #000000 !important;
    }

    .home div#woopspro-product-slider-1 {
        padding: 50px;
    }

    .home #woopspro-product-slider-1 .slick-track li span.price button.slick-prev.slick-arrow {
    }

    .home #woopspro-product-slider-1 button.slick-prev.slick-arrow {
        border: 1px solid #000000 !important;
        left: -47px !important;
    }

    .home #woopspro-product-slider-1 button.slick-next.slick-arrow {
        border: 1px solid #000000 !important;
        right: -44px;
    }

    .woocommerce-cart .woocommerce {
        padding: 6px;
    }

    .woocommerce-cart form.woocommerce-cart-form {
        width: 100%;
    }

    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
    }


    div#div2 ul.inn_to {
        top: 146px;
        width: 97%;
    }

    ul.inn_to li {
        width: 40%;
    }

    ul.inn_to li a img {
        width: 20px;
    }

    ul.inn_to li a h2 {
        padding-top: 0;
    }

    div#demo {
        height: auto !important;
    }

    div#demo .carousel-inner {
        height: auto;
    }

    div#demo .carousel-inner img {
        height: auto;
    }

    .contact_warp span.wpcf7-list-item-label {
        width: 90%;
    }

    form.checkout.woocommerce-checkout .required {
        color: #000000;
    }

    .foot_link_warp {
        padding: 0;
        float: left;
        width: 100%;
        border: none;
        margin-top: 14px;
    }

    .foot_link_warp .col-md-3.col-sm-12 {
        width: 50% !important;
        float: left;
    }

    .foot_link_warp a {
        float: left;
        width: 99%;
        background: #c3bbb6;
        padding: 20px;
        text-align: center;
        height: 80px;
        margin: 1px;
    }

    .woocommerce-checkout #header .col-lg-2 {
        float: left;
        width: 30%;
    }

    .woocommerce-checkout #header .col-lg-7.text-center {
        float: left;
        width: 70%;
        text-align: left;
    }

    .woocommerce-checkout #header .col-lg-7.text-center div#logo_check {
        text-align: left;
        padding-left: 40px;
    }

    .woocommerce-checkout #header {
        padding-top: 10px;
    }

    .woocommerce-checkout #header .col-lg-3 {
        padding: 0;
    }

    /*.n2-ss-slide.n2-ow.n2-ss-slide-6.n2-ss-slide-active {
        height: 200px !important;
    }*/
    .n2-ss-layers-container.n2-ss-slide-limiter.n2-ow {
        /*        height: 250px !important;*/
        /* top: -72px !important; */
    }

    div#n2-ss-2 .n2-style-0e5c594e3df5e8bbb555e811c47fd866-heading {
        font-size: 20px !important;
        padding: 10px !important;
    }

    /*.n2-ss-slide.n2-ow.n2-ss-slide-3 {
        height: 250px !important;
    }*/
    .n2-ss-button-container.n2-ss-item-content.n2-ow.n2-font-48ca96ad9a7eace257d537a7f255a795-link.n2-ss-nowrap.n2-ss-button-container--non-full-width {
        padding: 0px !important;
    }

    /*.n2-ss-slider .n2-ss-slide-background-image img {
        height: 250px !important;
    }

    div#n2-ss-2 .n2-ss-slider-4 {
        height: 251px;
    }

    .n2-ss-slide--focus {
        height: 251px !important;
    }

    .n2-ss-slide.n2-ow.n2-ss-slide-7.n2-ss-slide-active {
        height: 251px !important;
    }*/
    #woopspro-product-slider-1 .slick-track li h2.woocommerce-loop-product__title {
        display: block;
        color: #000000;
        text-align: center;
    }


    i.bi.bi-list.mobile-nav-toggle {
        display: none;
    }

    nav#navbar {
        position: absolute;
        left: 0;
        width: 100%;
        padding: 0px !important;
    }

    nav#navbar div#mega-menu-wrap-primary {
        width: 100%;
        top: -50px;
    }

    #mega-menu-wrap-primary .mega-menu-toggle {
        background: #f6f0ed !important;
    }

    #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
        background-color: #000000 !important;
    }

    #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
        background: #000000;
    }

    #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
        background: #000000;
    }

    div#logo {
        position: relative;
        z-index: 9;
    }

    #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
        margin-top: 19px;
    }

    ul#mega-menu-primary {
        margin-top: 21px !important;
    }


    .tab button {
        float: left;
        width: 97%;
        border: 1px solid #0000000d;
        margin-bottom: 5px;
        font-size: 16px;
    }

    .project_warp h2 {
        padding-left: 10px;
    }

    .closebtn {
        top: -13px;
        right: 5px;
    }

    span.glyphicon.glyphicon-chevron-right {
        top: auto;
        bottom: -12px;
        right: 90px;
    }

    .carousel-control .glyphicon-chevron-left {
        top: auto;
        bottom: -12px;
    }


}


#yith-wacp-popup .product-info h3 a {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Jost-Regular';
    margin: 0;
}

#yith-wacp-popup .yith-wacp-content .product-price {
    font-family: 'Jost-Regular';
}

#yith-wacp-popup .cart-shipping {
    font-family: 'Jost-Regular';
}

#yith-wacp-popup .cart-totals {
    font-family: 'Jost-Regular';
}

#yith-wacp-popup a.button.go-cart {
    background: #000000 !important;
    font-family: 'Jost-Regular';
    color: #ffffff !important;
    border-radius: 30px !important;
    min-width: 18% !important;
}

#yith-wacp-popup a.button.go-checkout {
    background: #000000 !important;
    font-family: 'Jost-Regular';
    color: #ffffff !important;
    border-radius: 30px !important;
    min-width: 18% !important;
}

#yith-wacp-popup .product-info h3 a {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Jost-Regular';
    margin: 0;
}

#yith-wacp-popup .yith-wacp-content .product-price {
    font-family: 'Jost-Regular';
}

#yith-wacp-popup .cart-shipping {
    font-family: 'Jost-Regular';
}

#yith-wacp-popup .cart-totals {
    font-family: 'Jost-Regular';
}

#yith-wacp-popup a.button.go-cart {
    background: #000000 !important;
    font-family: 'Jost-Regular';
    color: #ffffff !important;
    border-radius: 0px !important;
    min-width: 18% !important;
}

#yith-wacp-popup a.button.go-checkout {
    background: #ffffff !important;
    font-family: 'Jost-Regular';
    color: #000000 !important;
    border-radius: 0px !important;
    min-width: 18% !important;
    border: 1px solid #000000;
}


#yith-wacp-popup .yith-wacp-content ul.products li {
    width: 21%;
}

#yith-wacp-popup h3.product-title {
    font-family: 'Jost-Regular';
    height: 42px;
}

#yith-wacp-popup .product-price {
    font-family: 'Jost-Regular';
}

#yith-wacp-popup a.button.wp-element-button.product_type_simple.add_to_cart_button {
    margin-top: 0;
    background: #000000 !important;
    color: #ffffff !important;
    font-family: 'Jost-Regular';
}

#yith-wacp-popup a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    margin-top: 0;
    background: #000000 !important;
    color: #ffffff !important;
    font-family: 'Jost-Regular';
    /* margin-top: 16px;*/
}

.myt_i {
    float: left;
    position: absolute;
    background: #ffffff;
    top: 66px;
    width: 150px;
    border-radius: 6px;
    padding: 10px;
    z-index: 9999;
    text-align: left;
}

a.comp_any {
    color: #000000;
    font-family: 'Jost-Light';
    /*    display: none;*/
}

.myt_i ul {
    float: left;
    padding-left: 0;
    list-style: none;
    width: 100%;
    margin-bottom: 0;
}

.myt_i ul li {
    float: left;
    width: 100%;
}

.myt_i ul li a {
    float: left;
    width: 100%;
    font-family: 'Jost-Light';
    color: #000000;
    padding: 5px;
}


.feach_ed_warp .star-rating {
    display: none !important;
}

#woopspro-product-slider-1 .slick-track li a:hover h2.woocommerce-loop-product__title {
    display: block !important;
    font-size: 12px;
    position: absolute;
    z-index: 9;
    color: #ffffff;
    top: 21px;
    width: 95%;
}


.woocommerce div.product .woocommerce-product-rating a.woocommerce-review-link {
    color: #000000;
    font-family: 'Jost-Regular';
}

select#pa_size {
    height: 40px;
    border: 1px solid #cccccccc;
    font-family: 'Jost-Regular';
    font-size: 16px;
    padding: 7px 15px;
}

.wc-tab h2.yikes-custom-woo-tab-title.yikes-custom-woo-tab-title-warranty-shipping-returns {
    font-size: 16px;
    font-family: 'Jost-Regular';
    font-weight: bold;
}

.wc-tab p {
    font-family: 'Jost-Regular';
    font-size: 12px;
}

.rec_vie .products li {
    width: 12% !important;
    margin: 5px !important;
}

.rec_vie .products li a h2.woocommerce-loop-product__title {
    display: none;
}

.rec_vie .products li a .eael-star-rating.star-rating {
    display: none;
}

.rec_vie .products li a span.price {
    display: none !important;
}

.rec_vie .products li a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none;
}

.rec_vie .products li a .star-rating {
    display: none;
}

.rec_vie .products li a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    display: none;
}

.rec_vie .products li .wvs-archive-variations-wrapper.wvs-pro-loaded {
    display: none;
}

#woopspro-product-slider-3 img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.curre_ntly .star-rating {
    display: block !important;
    color: #000000;
}

.curre_ntly .star-rating {
    display: block !important;
    color: #000000;
}

.curre_ntly a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    background: #000000;
    color: #ffffff;
    font-family: 'Jost-Regular';
    font-size: 16px;
}

.curre_ntly ul li {
    margin-bottom: 0px !important;
}

.wpgs-lightbox-icon img {
    /* padding: 40px; */
    /* height: 800px !important; */
}

.product_del {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    font-family: 'Jost-Regular';
}


.magin_warp {
    float: left;
    width: 100%;
}

.magin_warp ul {
    float: left;
    width: 100%;
    list-style: none;
    padding: 0;
}

.magin_warp ul li {
    float: left;
    margin: 10px;
    width: 23.2%;
    background: #ffffff;
    padding: 20px;
    padding-bottom: 7px;
    position: relative;
}

.magin_warp ul li img {
    width: 100%;
    padding: 15px;
}

.magin_warp ul li h2 {
    float: left;
    width: 100%;
    font-size: 15px;
    font-family: 'Jost-Regular';
    font-weight: bold;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.magin_warp ul li a {
    float: left;
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Jost-Regular';
    padding-top: 8px;
}

.magin_warp ul li span {
    float: right;
    width: auto;
    padding: 0;
}

div#toggle {
    display: none;
    background: #000000a6;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 85%;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-family: 'Jost-Regular';
    font-size: 16px;
}

ul.pagination {
    text-align: center;
    margin: 0 auto;
    float: none;
    display: inline-block;
}

ul.pagination li {
    width: auto;
    margin: 0;
    padding: 8px 10px;
    float: none;
    display: inline-block;
    border: 1px solid #cccccc;
}

ul.pagination li a {
    line-height: normal;
    padding: 0;
}

li.activ {
    background: #575757 !important;
}

li.activ a {
    color: #ffffff !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    font-family: 'Jost-Light' !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-family: 'Jost-Light' !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    font-family: 'Jost-Light' !important;
    font-weight: normal;
!important;
}


/*===============3-22-23=============*/
.cart-title {
    margin-top: 30px;
}

.cart-title h1 {
    font-family: 'Playfair Display' !important;
    color: #000000;
    font-size: 30px;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    margin-top: 8px;
}

#yith-wacp-popup .yith-wacp-content ul.products li {
    width: 13% !important;
}

#yith-wacp-popup .yith-wacp-content ul.products li {
    position: relative;
}

#yith-wacp-popup .yith-wacp-content ul.products li a {
    position: relative;
}

#yith-wacp-popup .yith-wacp-content ul.products li:hover a:before {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: 1;
}

#yith-wacp-popup .yith-wacp-content ul.products li .product-title {
    position: absolute;
    top: 0;
    z-index: 2;
    color: #fff;
    opacity: 0;
    padding: 5px;
}

#yith-wacp-popup .yith-wacp-content .product-price {
    position: absolute;
    bottom: 0;
    z-index: 2;
    color: #fff;
    opacity: 0;
    padding: 5px;
}

#yith-wacp-popup .yith-wacp-content .product-price span.woocommerce-Price-amount.amount {
    color: #fff !important;
}

#yith-wacp-popup .yith-wacp-content ul.products li:hover .product-title {
    opacity: 1;
}

#yith-wacp-popup .yith-wacp-content ul.products li:hover .product-price {
    opacity: 1;
}

.feach_ed_warp.curre_ntly .post-product .cur_view_bnt {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
}

.woocommerce .track_order .input-text {
    border: 1px solid #ebebeb;
    height: 40px;
    padding: 10px;
    border-radius: 6px;
}

.woocommerce .track_order .button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
}

.elementor-element-46cbd5e .woocommerce-order-details {
    padding: 10px 0;
}

.elementor-element-46cbd5e h2 {
    font-size: 30px;
    font-family: 'Jost-Bold';
    color: #000000;
}

/*======================================*/
.shop-the-look-slider {
    position: relative;
}

.shop-the-look-slider #woopspro-product-slider-1 .slick-track li h2.woocommerce-loop-product__title {
    display: block;
    position: relative;
    color: #000;
}

.shop-the-look-slider #woopspro-product-slider-1 .slick-track li span.price {
    display: block;
    position: relative;
    padding-top: 0;
    background-color: transparent;
    font-size: 1em;
}

.shop-the-look-slider #woopspro-product-slider-1 .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #000 !important;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-1 .slick-track li .star-rating {
    display: none;
}

.shop-the-look-slider #woopspro-product-slider-1 .slick-track li a:hover h2.woocommerce-loop-product__title {
    position: relative;
    color: #000;
    top: 0;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-1 .slick-track li a:hover span.price span.woocommerce-Price-amount.amount {
    color: #000 !important;
    top: 0;
    position: relative;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-2 .slick-track li h2.woocommerce-loop-product__title {
    display: block;
    position: relative;
    color: #000;
}

.shop-the-look-slider #woopspro-product-slider-2 .slick-track li span.price {
    display: block;
    position: relative;
    padding-top: 0;
    background-color: transparent;
    font-size: 1em;
}

.shop-the-look-slider #woopspro-product-slider-2 .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #000 !important;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-2 .slick-track li .star-rating {
    display: none;
}

.shop-the-look-slider #woopspro-product-slider-2 .slick-track li a:hover h2.woocommerce-loop-product__title {
    position: relative;
    color: #000;
    top: 0;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-2 .slick-track li a:hover span.price span.woocommerce-Price-amount.amount {
    color: #000 !important;
    top: 0;
    position: relative;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-3 .slick-track li h2.woocommerce-loop-product__title {
    display: block;
    position: relative;
    color: #000;
}

.shop-the-look-slider #woopspro-product-slider-3 .slick-track li span.price {
    display: block;
    position: relative;
    padding-top: 0;
    background-color: transparent;
    font-size: 1em;
}

.shop-the-look-slider #woopspro-product-slider-3 .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #000 !important;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-3 .slick-track li .star-rating {
    display: none;
}

.shop-the-look-slider #woopspro-product-slider-3 .slick-track li a:hover h2.woocommerce-loop-product__title {
    position: relative;
    color: #000;
    top: 0;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-3 .slick-track li a:hover span.price span.woocommerce-Price-amount.amount {
    color: #000 !important;
    top: 0;
    position: relative;
    font-size: 1em;
    width: 100%;
}

.shop-the-look-slider #woopspro-product-slider-3 img {
    width: 100%;
}


.shop-the-look-slider .woopspro-product-slider .slick-track li h2.woocommerce-loop-product__title {
    display: block;
    position: relative;
    color: #000;
    text-align: center;
}

.shop-the-look-slider .woopspro-product-slider .slick-track li span.price {
    display: block;
    position: relative;
    padding-top: 0;
    background-color: transparent;
    font-size: 1em;
    text-align: center;
}

.shop-the-look-slider .woopspro-product-slider .slick-track li span.price span.woocommerce-Price-amount.amount {
    color: #000 !important;
    font-size: 1em;
    width: 100%;
    text-align: center;
}

.shop-the-look-slider .woopspro-product-slider .slick-track li .star-rating {
    display: none;
}

/*.shop-the-look-slider #woopspro-product-slider-3 .slick-track li a:hover h2.woocommerce-loop-product__title{
    position: relative;
    color: #000;
    top: 0;
    font-size: 1em;
    width: 100%;
}
.shop-the-look-slider #woopspro-product-slider-3 .slick-track li a:hover span.price span.woocommerce-Price-amount.amount{
    color: #000 !important;
    top: 0;
     position: relative;
    font-size: 1em;
    width: 100%;
}*/
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
    margin-left: 6px;
}

#yith-wacp-popup .yith-wacp-content ul.products li a {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
}

#yith-wacp-popup .yith-wacp-content ul.products li:hover a:before {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
}

#yith-wacp-popup .yith-wacp-content ul.products li p .button {
    display: none;
}

.woocommerce .product-remove a.remove {
    font-size: 13px;
    width: 70px;
    border-radius: 0;
    font-weight: normal;
}

/*================================*/
.ymal_inner_mob {
    display: none;
    width: 100%;
}

.ymal_inner_mob .item a {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #fff;
}

.ymal_inner_mob .item a h2 {
    color: #000000;
    font-size: 14px;
    padding: 12px 0 0;
    float: left;
    width: 100%;
    margin: 0 !important;
    min-height: 50px;
}

.ymal_inner_mob .item a span.price {
    color: #000000 !important;
    font-size: 14px !important;
    padding: 0;
    float: left;
    width: 100%;
    margin: 0 !important;
    font-weight: normal !important;
}

.xoo-wsc-basket {
    bottom: 80px !important;
}


@media (max-width: 768px) {

    .feach_ed_warp ul li a {
        text-align: center;
    }

    .live-chat {
        display: none;
    }

    section#topbar {
        display: block !important;
        height: 68px;
    }

    div#logo {
        padding-top: 7px !important;
    }

    div#logo img {
        width: 50px !important;
    }

    .top_search {
        display: none;
    }

    .cart_rap {
        display: none;
    }

    .subs_cribe {
        padding-left: 0;
        padding-bottom: 10px;
    }

    .copyright {
        padding: 0px !important;
    }

    .foot_lin_all {
        padding: 0px;
        width: 100%;
    }

    .foot-text {
        width: 100%;
        padding: 0;
    }

    .n2-ss-layer {
        margin: 12px !important;
    }

    .n2-ss-item-contenw {
        padding: 0 !important;
    }

    .n2-ss-item-content {
        padding: 0px !important;
        font-size: 30px !important;
    }

    .n2-ss-button-container a {
        font-size: 12px !important;
    }


    .woocommerce-checkout #header {
        height: auto !important;
    }

    .continue-shop_warp {
        text-align: center;
    }

    .woocommerce-checkout .form-row.form-row-first {
        width: 100% !important;
    }

    .woocommerce-checkout .form-row-last {
        width: 100% !important;
    }

    .foot_link_warp {
        display: block;
    }

    .banner_top {
        display: none;
    }

    .mo_il {
        width: 100%;
    }

    .product_warp .woof_hide_filter {
        display: block;
    }

    .product_warp p.woocommerce-result-count {
        float: left;
        width: 100%;
    }

    form.woocommerce-ordering {
        float: left;
        width: 100%;
    }

    .product_warp ul.products.columns-3 {
        border: none;
        padding: 0;
    }

    .product_warp li.berocket_lgv_grid {
        width: 100% !important;
        margin: 0px !important;
        min-height: auto !important;
        margin-bottom: 10px !important;
    }

    .contac_inn {
        width: 100% !important;
    }

    .post_code {
        width: 100% !important;
        margin-left: 0;
    }

    .n2-ss-layer .n2-ss-item-content {
        font-size: 30px !important;
        padding: 20px !important;
    }

    .n2-ss-layer .n2-ss-item-content a {
        font-size: 11px !important;
        top: -12px;
        position: relative;
        padding: 7px 30px !important;
    }

    p.cf7mls_number {
        color: #ffffff !important;
    }

    p.cf7mls_step_current {
        color: #ffffff !important;
    }

    .cf7mls_progress_percent {
        height: 2px !important;
        background: #ffffff !important;
    }

    .ymc-smart-filter-container ul {
        width: 100%;
    }

    .ymc-smart-filter-container .filter-layout.filter-layout1 .filter-entry .filter-item .filter-link {
        /* background: #000000 !important; */
        /* color: #ffffff !important; */
        margin: 3px;
        width: 100%;
        padding: 10px;
        border-bottom: 1px dotted #cccccc75;
    }

    li.filter-item {
        float: left;
        width: 100%;
    }

    button.slick-prev.slick-arrow {
        margin-left: 19px;
        margin-top: -26px;
    }

    button.slick-next.slick-arrow {
        margin-right: 25px;
        margin-top: -29px;
    }

    .woocommerce div.product form.cart .button {
        width: 50%;
    }

    .feach_ed_warp {
        margin-bottom: 15px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        padding: 5px !important;
    }

    .curre_ntly {
        padding: 0;
        padding-top: 20px;
    }

    .curre_ntly .slick-track {
        width: 100% !important;
    }

    .curre_ntly .slick-track .slick-slide.slick-current.slick-active {
        width: 100% !important;
        padding: 20px !important;
    }

    .ftpf ul li {
        width: 100%;
        padding: 20px;
        margin: 0;
    }

    .feach_ed_warp h2 {
        padding-bottom: 0;
    }

    .ymal_warp p {
        text-align: left;
        width: 100%;
    }

    .ymal_warp form {
        float: left;
        width: 100%;
        margin-top: 10px;
    }

    .ymal_inner ul li {
        width: 100%;
    }

    .list_view ul li {
        width: 100%;
    }

    p.tit_el {
        font-size: 24px;
        width: 100%;
    }

    .woo-product-gallery-slider .slick-slide {
        height: auto !important;
    }

    .woo-product-gallery-slider .draggable .slick-track {
        height: 99px;
    }

    .woocommerce-product-details__short-description {
        font-family: 'Jost-Regular';
    }

    .woocommerce-product-details__short-description p {
        margin-bottom: 0;
    }

    div#yith-wapo-option-1-0 {
        width: 100%;
    }

    section {
        padding-top: 0;
    }

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        margin-bottom: 0;
        margin-bottom: 0 !important;
    }

    .curre_ntly ul.products.rvpscarousel.slick-initialized.slick-slider {
        margin-bottom: 0;
    }


    .magin_warp ul li {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

    div#toggle {
        height: 89%;
    }

    ul.pagination li {
        width: auto;
    }


}


@media (min-width: 1300px) {
    .slid_er {
        padding-left: 10px !important;
    }

    .slid_er .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--next.swiper-button-disabled {
        margin-right: 10px;
    }

}


@media (min-width: 1400px) {
    .slid_er {
        padding-left: 34px !important;
    }

    .slid_er .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--next.swiper-button-disabled {
        margin-right: 10px;
    }

}


@media (min-width: 1480px) {
    .slid_er {
        padding-left: 75px !important;
    }

    .slid_er .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--next.swiper-button-disabled {
        margin-right: 10px;
    }

}

@media (min-width: 1600px) {
    .slid_er {
        padding-left: 288px !important;
    }

    .slid_er .wpcu-carousel-nav__btn.wpcu-carousel-nav__btn--next.swiper-button-disabled {
        margin-right: 10px;
    }


}


@media only screen and (min-width: 320px) and (max-width: 767.99px) {
    /*.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: 46% !important;
    }*/
    #yith-wacp-popup .yith-wacp-wrapper {
        max-width: 90% !important;
        max-height: 550px;
        left: 5% !important;
    }

    #yith-wacp-popup .popup-actions {
        width: 40%;
    }

    #yith-wacp-popup .yith-wacp-content ul.products li {
        width: 46% !important;
    }

    .woocommerce-cart .woocommerce table.shop_table td {
        border-top: 1px solid rgb(246 240 237);
    }

    nav#navbar div#mega-menu-wrap-primary {
        top: 7px
    }

    .woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
        display: block !important;
    }

    .woocommerce-cart table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents td.product-thumbnail img {
        width: 300px;
    }

    .woocommerce-cart table.cart .product-thumbnail {
        text-align: center !important;
    }

    div#cclw_order_details_table {
        margin-bottom: 10px;
    }

    .elementor-2320 .elementor-element.elementor-element-bcfa510 > .elementor-element-populated {
        padding: 70px 15px 0px 19px;
    }

    .rec_vie .woocommerce .products li {
        width: 97% !important;
    }

    /*.feach_ed_warp.curre_ntly h2{
        display: none;
    }*/
    .feach_ed_warp.curre_ntly .post-product {
        padding: 10px;
    }

    .feach_ed_warp.curre_ntly .post-product .product_title {
        margin-top: 10px;
    }

    .feach_ed_warp.curre_ntly .post-product .cur_view_bnt {
        background-color: #000;
        color: #fff;
        padding: 10px 20px;
        display: inline-block;
    }

    /*#header{
        position: relative;
    }*/
    #header .navbar .mega-toggle-blocks-right {
        position: absolute;
        right: 0;
        top: -50px;
    }

    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        top: -32px;
    }

    #mega-menu-wrap-primary .mega-menu-toggle {
        background-color: transparent !important;
    }

    .woocommerce ul#shipping_method li {
        text-align: left;
    }

    .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-thumbnail {
        order: 1;
    }

    .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name {
        order: 2;
    }

    .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity {
        order: 3;
    }

    .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-price {
        order: 4;
    }

    .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal {
        order: 5;
    }

    .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove {
        order: 6;
        text-align: right;
    }

    .woocommerce .product-remove a.remove {
        display: inline-block;
    }

    .elementor-element-46b1e0c .elementor-element-4ea7a4f {
        margin-bottom: 0px;
    }


    /*==========================*/
    .ymal_inner_desk {
        display: none;
    }

    .ymal_inner_mob {
        display: inline-block;
    }

    .ymal_inner_mob .owl-nav .owl-prev {
        position: absolute;
        left: 0;
        top: 50%;
        font-size: 60px;
        line-height: 60px;
        height: 50px;
        margin-top: -35px;
    }

    .ymal_inner_mob .owl-nav .owl-prev span {
        font-size: 60px;
        line-height: 30px;
        height: 40px;
        display: inline-block;
    }

    .ymal_inner_mob .owl-nav .owl-next {
        position: absolute;
        right: 0;
        top: 50%;
        font-size: 60px;
        line-height: 60px;
        height: 50px;
        margin-top: -35px;
    }

    .ymal_inner_mob .owl-nav .owl-next span {
        font-size: 60px;
        line-height: 30px;
        height: 40px;
        display: inline-block;
    }

    .feach_ed_warp.curre_ntly {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
        margin-bottom: 0;
    }

    .feach_ed_warp.curre_ntly a {
        display: flex;
    }

    .feach_ed_warp.curre_ntly a .type-product-thumb {
        flex-basis: 25%;
    }

    .feach_ed_warp.curre_ntly a .type-product-cont {
        flex-basis: 75%;
        padding-left: 10px;
    }

    .feach_ed_warp.curre_ntly a .type-product-cont .product_title {
        margin-top: 0;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feach_ed_warp.curre_ntly a .type-product-cont p {
        margin-bottom: 0;
    }


}


/*---------------------------------new css-------------------------------*/
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #ffffff !important;
}

.subs_cribe .input-group-btn {
    left: 0 !important;
}

div#n2-ss-2 .n2-style-0e5c594e3df5e8bbb555e811c47fd866-heading {
    display: none !important;
}

div#n2-ss-2 .n2-font-48ca96ad9a7eace257d537a7f255a795-link a {
    display: none;
}

div#n2-ss-2 .n2-font-48ca96ad9a7eace257d537a7f255a795-link a {
    display: none !important;
}

.woocommerce-page:not(.woocommerce-checkout) {
    background: #f9f9f9 !important;
}

.woocommerce-page.woocommerce-checkout {
    background: #ECEAE2 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    padding: 0px 6px 0px 6px !important;
    font-size: 13px !important;
}

#cclw_order_details_table .cclw_order_review_table table.cclw-style-1 td a img {
    height: auto;
    max-width: 80px !important;
    width: 60px !important;
}


.woocommerce-checkout-review-order-table table.onestepcheckout-summary.cclw-style-1 tbody td.cclw_qty {
    font-size: 9px !important;
}

.woocommerce-checkout #header {
    padding: 10px 0 !important;
    z-index: 99999;
}


.woocommerce-checkout #logo_check a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 24px;
}

.more_details_slide {
    float: left;
    width: 100%;
}


.woocommerce ul.products li.last, .woocommerce-page ul.products li.last {
    margin-right: 20px !important;
}

.woocommerce h2.woocommerce-loop-product__title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 61px;
    line-height: 28px;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    margin-right: 8px !important;
}

.woocommerce ul.products li.product {
    margin: 8px;
    width: 22.8% !important;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
    float: none !important;
}

.woocommerce nav.woocommerce-pagination ul { /* float: left; */
    width: 100%;
    border: none !important;
    text-align: center;
    display: inline-block;
}

.woocommerce nav.woocommerce-pagination ul li a {
    color: #000000 !important;
    font-family: 'Jost-Light' !important;
    font-weight: 700 !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #000000 !important;
    color: #ffffff !important;
}


.xoo-wsc-products {
    padding: 15px;
    font-size: 14px;
}

.by-shape ul li a {
    font-weight: bold !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu li {
    font-weight: bold !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu li a {
    /* font-weight: normal !important; */
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-weight: bold !important;
}


@media (max-width: 768px) {
    .woocommerce h2.woocommerce-loop-product__title {
        min-height: 25px;
        line-height: 27px;
    }

    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        margin-right: 0px !important;
    }


}

.content-box-area .elementor-element-populated {
    float: left;
    /*  max-width: 500px;*/
}

#header .container {
    /*  overflow: hidden;*/
}

.swiper-wrapper.products .eael-product-carousel {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: #fcfcfc;
}

.woocommerce ul.swiper-wrapper li.swiper-slide a img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto !important;
    border-radius: 0px !important;
}


@media (max-width: 991px) {
    .carousel-inner {
        height: 385px !important;
    }


}

@media (max-width: 767px) {
    .carousel-inner {
        height: 300px !important;
    }

    div#reviews {
        padding: 15px;
    }

    /*.swiper-wrapper.products .eael-product-carousel{
      height: 140px;
    }*/
    .woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
        padding: 0;
        margin: 0;
        font-size: 14px;
    }

    .product-details-wrap {
        padding: 6px !important;
    }

    .eael-woo-product-carousel-container.preset-2 .eael-woo-product-carousel.eael-hover-buttons .eael-product-carousel:hover .icons-wrap li {
        -webkit-transform: translateX(-52px);
        -ms-transform: translateX(-52px);
        transform: translateX(-52px);
    }


}

.banner-black-overlay .schedule-bnt {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: #000000 !important;
    background-color: #FFFFFF;
    border-radius: 25px 25px 25px 25px !important;
}

.banner-black-overlay .schedule-bnt:hover {
    color: #000000;
    background-color: #F4DA45;
}

.banner-black-overlay p {
    font-family: "Poppins", Sans-serif;
    margin-bottom: 5px !important;
    font-weight: 400;
}

.elementor-widget p:not(:last-child) {
    margin-bottom: 10px !important;
}

.custom-btn .connect-bnt {
    font-family: "Poppins", Sans-serif;
    font-size: 18px !important;
    font-weight: 500;
    text-transform: capitalize;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #000000;
}

.custom-btn .connect-bnt:hover {
    background-color: #F4DA45 !important;
    color: #000 !important;
}

.details-section figure table {
    width: 100% !important;
}

.n2-ss-slider [data-mode="fit"] .n2-ss-slide-background-image img {
    object-fit: cover !important;
}


.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 0px !important;
}

.banner .owl-carousel {
    height: 100vh;
}

.banner .owl-nav {
    position: absolute;
    top: 43%;
    height: 1px;
    width: 100%;
}

.banner .owl-nav .owl-prev {
    float: left;
    margin-left: 15px;
    background: url(/wp-content/themes/chicksloft/images/left-arw.png) no-repeat left top !important;
    width: 35px;
    height: 90px;
    background-size: 20px !important;
}

.banner .owl-nav .owl-prev .las {
    display: none;
}

.banner .owl-nav .owl-next {
    float: right;
    margin-right: 15px;
    background: url(/wp-content/themes/chicksloft/images//right-arw.png) no-repeat left top !important;
    width: 35px;
    height: 90px;
    background-size: 20px !important;
}

.banner .owl-nav .owl-next .las {
    display: none;
}

.banner .item {
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.banner .banner-container {
    position: absolute;
    z-index: 5;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 1170px;
    z-index: 5;
}

.black-contant {
    padding: 50px;
    background: rgba(0, 0, 0, 0.5);
    width: 60%;
    display: inline-block;
    min-height: 245px;
}

.black-contant h1 {
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.black-contant p {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
    margin-top: 12px;
}

.div2 ul.inn_to {
    top: 410px !important;
}

.woof_reset_button_2 {
    padding: 4px 15px !important;
    background: #333;
    color: #fff;
    border: none;
    font-size: 15px;
    border-radius: 3px;
}

.woof_reset_button_2:hover {
    background: #000 !important;
    color: #fff;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-size: 17px;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 12px 20px !important;
    font-weight: 500 !important;
    border-radius: 3px;
    left: auto;
    color: #fff !important;
    background-color: #333;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}

.woocommerce #respond input#submit:hover, .woocommerce a.button:hover,
.woocommerce button.button:hover, .woocommerce input.button:hover {
    background-color: #000 !important;
    color: #fff;
}

.show-mobile, .mobile-filter-btn {
    display: none;
}

.woof_list_color li {
    width: 100%;
}

.woof_color_term {
    width: 25px !important;
    height: 25px !important;
    border: 1px solid #ccc;
!important;
}

.woof_color_term.checked {
    border-color: #292f38;
    box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.48);
}


@media (max-width: 1199px) {
    #topbar .col-lg-4 {
        display: none;
    }

    #topbar .col-lg-3 {
        width: 50%;
        text-align: right;
    }

    #topbar .col-lg-3 .conpany {
        float: none;
        display: inline-block;
    }

    .banner-text {
        min-width: 100%;
        padding: 0 50px;
    }

    .black-contant {
        padding: 30px;
        min-height: auto;
    }

    .black-contant h1 {
        font-size: 30px;
    }

    .black-contant p {
        font-size: 17px;
    }

    .banner .item, .banner .owl-carousel {
        height: 70vh;
    }

    .left-mirror img {
        max-width: 80%;
    }

    .right-mirror {
        top: 137px;
    }

    .right-mirror img {
        max-width: 74%;
    }

}

/*1199*/

@media (max-width: 991px) {
    #header .col-lg-11 .col-lg-9 {
        width: 65%;
    }

    #header .col-lg-11 .col-lg-3 {
        width: 30%;
    }

    .cart_rap {
        margin-bottom: 10px;
    }

    #topbar .col-lg-5 {
        width: 50%;
        text-align: left;
    }

    .banner-text {
        min-width: 100%;
        padding: 0 20px 0 75px;
    }

    .black-contant {
        padding: 25px;
        width: auto;
    }

    .black-contant h1 {
        font-size: 24px;
    }

    .black-contant p {
        font-size: 15px;
    }

    .left-mirror, .right-mirror {
        display: none;
    }

}


@media (max-width: 767px) {
    #topbar .col-lg-3 {
        width: 100%;
        text-align: left;
    }

    .search-bar.mobail {
        width: 70%;
        position: absolute;
        right: 70px;
        top: -1px;
    }

    #header .navbar .mega-toggle-blocks-right {
        top: 4px;
    }

    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        top: 27px;
    }

    .free-shiping.text-center {
        padding: 0 0 6px 0;
    }

    #topbar .col-lg-5 {
        width: 100%;
        text-align: center;
    }

    .myt_i {
        top: 110px;
    }

    .custom-btn .connect-bnt {
        font-size: 14px !important;
    }

    .banner-black-overlay .schedule-bnt {
        font-size: 15px !important;
        padding: 12px 25px !important;
    }

    .Mobile-position-change .elementor-container {
        display: inline-flex;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    section.elementor-section.elementor-top-section.elementor-element.elementor-element-9ae114f.elementor-section-full_width.elementor-section-height-min-height.elementor-section-height-default.elementor-section-items-middle {
        height: auto !important;
    }

    div#n2-ss-2 .n2-ss-slide {
        height: auto !important;
        width: auto !important;
    }

    .banner .item, .banner .owl-carousel {
        height: 50vh;
    }

    .banner .owl-nav .owl-next {
        margin-right: 7px;
        width: 20px;
        height: 40px;
        background-size: 12px !important;
    }

    .banner .owl-nav .owl-prev {
        margin-left: 7px;
        width: 20px;
        height: 40px;
        background-size: 12px !important;
    }

    .black-contant {
        padding: 20px;
    }

    .black-contant h1 {
        font-size: 20px;
    }

    .black-contant p {
        margin-top: 6px;
    }

    .show-mobile {
        display: none;
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        z-index: 9999;
        height: 100%;
        transition: 0.4s;
    }

    .mobile-filter-btn {
        display: block;
        position: absolute;
        right: 0;
        top: 72px;
        color: #000;
        background: #ede3de;
        font-weight: 500;
        font-size: 16px;
        padding: 9px 26px;
        cursor: pointer;
        z-index: 99;
    }

    .add-filter {
        right: 0px;
        display: block;
    }

    .show-mobile .filter_warp {
        position: relative;
        background: #F7EEE3;
        padding: 25px;
    }

    .close-filter {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: inline-block;
        line-height: 29px;
        background: #fff;
        color: #333;
        font-size: 25px;
        cursor: pointer;
        position: absolute;
        right: 12px;
        top: 24px;
        text-align: center;
    }

    .close-filter:hover {
        color: red;
        background: #fff;
    }

    .no-show-mobile {
        display: none;
    }

    .scrolled-offset {
        margin-top: 180px;
    }


}

@media (max-width: 575px) {
    .banner-text {
        padding: 0 35px;
    }

    .banner .item, .banner .owl-carousel {
        height: 38vh;
    }


}


@media only screen and (min-width: 1800px) and (max-width: 2200px) {
    .banner_top {
        padding-left: 2%;
    }


}

@media only screen and (min-width: 2201px) and (max-width: 3500px) {
    .banner_top {
        padding-left: 5%;
    }


}

ul.apsw_data_container li .apsw_result_category {
    display: none !important;
}

.pswp__button--arrow--right {
    right: 35px !important;
}

.pswp__button--arrow--left {
    left: 35px !important;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
    display: none;
}

.search-bar.mobail ul.apsw_data_container li a {
    white-space: initial;
    padding: 0;
}

.search-bar.mobail .apsw_ajax_result {
    width: calc(100vw - 12px);
    transform: translateX(-50%);
    left: 49%;
    right: unset;
    top: 45px;
}

.search-bar.mobail ul.apsw_data_container li .apsw-price {
    position: static;
}

.search-bar.mobail .apsw-price span.price-line,
.search-bar.mobail .apsw-price span.price-line span.woocommerce-Price-amount.amount {
    margin: 0;
    font-size: 12px !important;
    font-weight: bold;
}

.apsw_ajax_result ul.apsw_data_container li .apsw-price {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: bold;
    max-width: 130px;
    transform: translateY(-50%);
    width: 100%;
}

.apsw_ajax_result ul.apsw_data_container .apsw_result_excerpt,
.apsw_ajax_result ul.apsw_data_container .apsw-name {
    padding-right: 135px;
}

.apsw_ajax_result .apsw-info-product span.apsw-price span.price-prefix {
    display: block;
}

.apsw_ajax_result .apsw-info-product span.apsw-price span ins,
.apsw_ajax_result .apsw-info-product span.apsw-price span del {
    text-decoration: none;
}

.apsw_ajax_result .apsw-info-product span.apsw-price span.old-price {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    color: #989499;
}

@media (max-width: 768px) {
    .apsw_ajax_result ul.apsw_data_container .apsw_result_excerpt,
    .apsw_ajax_result ul.apsw_data_container .apsw-name {
        padding-right: 0;
    }

    .apsw_ajax_result ul.apsw_data_container li .apsw-price {
        position: static;
        transform: none;
        float: none;
        max-width: 100%;
    }

    .apsw_ajax_result ul.apsw_data_container .apsw-info-product span.apsw-price span {
        display: inline-block;
        margin: 0;
    }

    .apsw_ajax_result ul.apsw_data_container li .apsw-price .price-line {
        display: flex !important;
        gap: 0 5px;
        align-items: baseline;
        flex-wrap: wrap;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

.search-results .woof_products_top_panel {
    display: none !important;
}

.elementor-field-type-upload {
    margin-bottom: 40px !important;
    position: relative !important;
}

.elementor-field-type-upload .small-info {
    position: absolute;
    bottom: -30px;
    left: 0;
    font-family: 'Jost', sans-serif;
}

.elementor-field-group .elementor-select-wrapper .select-caret-down-wrapper {
    display: none !important;
}
.elementor-field-group .elementor-select-wrapper.remove-before:before {
    content: "\e92a" !important;
}

.sdl-hover-item {
    background: #FFFFFF;
    padding: 25px;
    width: 616px;
    height: 378px;
}

.sdl-hover-item .header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #DEDEDE;
}

.sdl-hover-item .header .title {
    font-family: Jost, sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.sdl-hover-item .header .close {
    font-size: 32px;
    line-height: 32px;
}

.sdl-hover-item .content>[data-element_type="container"] {
    padding-top: 25px;
    display: flex;
    flex-direction: row !important;
    gap: 20px !important;
    width: 100% !important;
}


.sdl-hover-item .content>[data-element_type="container"] > .elementor-widget-image {
    min-width: fit-content;
}

.sdl-hover-item .content>[data-element_type="container"] > .elementor-element {
    padding: 0 !important;
}

.sdl-hover-item .content img {
    min-width: 249px;
    width: 249px;
    height: auto;
    aspect-ratio: 1/1 !important;
}

.sdl-hover-item .content .sdl-buttons {
    display: flex !important;
}


/* new banner */

#banner-slider .item {
    position: relative;
}

#banner-slider .item a {
    display: block;
    background-color: #eceae22e;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.3);
    fill: #ffffff;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 30px 30px 30px 30px;
    padding: 10px 20px 10px 20px;
    transition: all 0.3s;
}

#banner-slider .item a:hover {
    transform: scale(1.05);
}

.banner-text{
    display:flex;
    justify-content:center;
    align-items:center;
}

.black-contant {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:transparent;
    width:94%;
}

.black-contant h1 {
    font-size: 3.125rem;
    font-weight: 300;
}

#banner-slider .item{
    display: block;
    background-image: var(--desktop-bg);
}

#banner-slider .item.shadow{
    background-color:#00000040;
    background-blend-mode:multiply;
    background-size: cover;
    background-position: center center;
}


@media only screen and (max-width: 767px) {

    #banner-slider .item{
        background-image: var(--mobile-bg);
    }

    .black-contant h1 {
        font-size: 20px;
        font-weight: 300;
    }

    .black-contant {
        width: 100%;
    }

    .black-contant p {
        font-size: 12px;
    }


    .banner .item, .banner .owl-carousel {
        height: 53vh;
    }

    .ftr-mirror {
        display: none;
    }

    .bottom-content p {
        font-size: 14px;
    }

    #banner-slider .item a {
        font-size: 12px;
        line-height: 14px;
    }
}

/*  */

@media (max-width: 768px) {
    .sdl-hover-item {
        background: #FFFFFF;
        padding: 25px;
        width: 300px;
        height: auto;
    }

    .sdl-hover-item .header .title {
        font-size: 20px;
    }

    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
        width: 100% !important;
    }
}

/* CCL Coupon */
.checkout_coupon_wrapper {
    padding: 15px 0 !important;
}

.checkout_coupon_wrapper div {
    padding: 0 !important;
}

.checkout_coupon_wrapper .form-coupon-row:before,
.checkout_coupon_wrapper .form-coupon-row:after {
    display: none !important;
}

.checkout_coupon_wrapper .form-coupon-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.checkout_coupon_wrapper .form-coupon-row button {
    border-radius: 30px !important;
    background: #000000 !important;
    font-size: 14px !important;
    font-family: "Raleway", sans-serif;
    padding: 10px 20px !important;
}

.woocommerce-checkout .checkout_coupon .message span {
    margin-top: 5px;
    font-size: 12px;
}

.woocommerce-checkout .checkout_coupon .message span.error {
    color: red;
}

.woocommerce-checkout .checkout_coupon .message span.success {
    color: green;
}


/* CCL Improvements */
.woocommerce table.cart td.actions .coupon input#coupon_code {
    width: 160px;
}

.header-cart-icon {
    position: relative;
}

.header-cart-icon .count {
    position: absolute;
    right: -3px;
    top: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #f4da45;
    color: #000000;
    width: 16px;
    height: 16px;
    font-size: 12px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .woocommerce table.cart td.actions .coupon {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .checkout .checkout-three-column-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .checkout .checkout-three-column-layout .grid-col-checkout:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .woocommerce table.cart td.actions .coupon label {
        display: block !important;
        margin-bottom: 10px;
        text-align: left;
    }
    .checkout .checkout-three-column-layout {
        grid-template-columns: repeat(1, 1fr);
    }
    .checkout .checkout-three-column-layout .grid-col-checkout:last-child {
        grid-column: span 1;
    }

}




