@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    font-family: 'Heebo', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
}

a {
    color: #cb9b4e;
}

a:hover {
    color: #cb9b4e;
    text-decoration: underline;
}

.header {
    width: 100%;
    z-index: 99;
    position: absolute;
}

.header .container-fluid {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.logo {
    margin: 0;
    padding: 10px;
}


.bannerUl {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.bannerUl li {
    position: relative;
}

.bannerUl li img {
    max-width: 100%;
}

.bannerUl .slick-arrow {
    text-decoration: none;
    transition: 0.5s all;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: "all .3s ease";
    -o-transition: "all .3s ease";
    transition: "all .3s ease";
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    opacity: .5;
    text-align: center;
    font-size: 25px;
    background-color: #222;
    color: #fff;
    font-size: 0;
    border: 0;
}

.bannerUl .slick-arrow:before {
    font-family: FontAwesome;
    font-size: 27px;
    display: inline-block;
    line-height: 60px;
}

.bannerUl .slick-arrow.slick-prev {
    left: -60px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.bannerUl .slick-arrow.slick-prev:before {
    content: "\f104";
}

.bannerUl .slick-arrow.slick-next {
    right: -60px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.bannerUl .slick-arrow.slick-next:before {
    content: "\f105";
}

.bannerUl:hover .slick-arrow.slick-prev {
    left: 40px;
}

.bannerUl:hover .slick-arrow.slick-next {
    right: 40px;
}


.slideshowTextWrap {
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: 55%;
    text-align: center;
}

.slideshowTextContent {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
    transition: all .6s cubic-bezier(.44, .13, .48, .87);
    transition-delay: 0.3s;
    z-index: 3;
}


.slick-active .slideshowTextContent {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}


.slideshowTextWrap h2 {
    font-size: 85px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 40px;
    padding: 0;
    color: #FFF;

}

.btn {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 50px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #cb9b4e;
    border-color: #cb9b4e;
    color: #ffffff;
}

.navigation .navbar-collapse {
    margin-left: auto;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle::after {
    border: 0;
}

.dropdown-submenu a.has-sub-menu::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.widget .dropdown-submenu a.has-sub-menu::after {
    top: 1.5em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

.header .navbar-nav .nav-link {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 20px;
}

.header .navbar-nav .nav-link:hover {
    color: #cb9b4e;
}

.topBar {
    padding: 10px;
}

.topBar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.topBar ul li {
    display: inline-block;
    margin-right: 20px;
}

.topBar ul li a {
    color: #000;
    font-size: 16px;
}

.topBar ul li a:hover {
    color: #FFF;
}

.categories {
    margin-top: -60px;
}

.categories h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
    line-height: 60px;
    text-align: center;
    background: #FFF;
}

.categories .cate-image {
    overflow: hidden;
}

.categories .cate-image img {
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    width: auto;
    height: auto;
    max-width: 100%;
}

.categories .cate-image:hover img {
    transform: scale(1.1) rotate(
        -1deg
    );
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.about-section {
    position: relative;
    padding: 130px 0 70px;
    background-image: url(https://f.hubspotusercontent00.net/hubfs/20162809/raw_assets/public/carpetx/images/icons/bg-shapes-3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons .icon {
    position: absolute;
}

.about-section .icon-dots {
    left: -90px;
    top: 130px;
    height: 262px;
    width: 262px;
    border-radius: 50%;
    background-image: url(https://f.hubspotusercontent00.net/hubfs/20162809/raw_assets/public/carpetx/images/icons/icon-dots.png);
    background-repeat: repeat;
}

.about-section .icon-dots-2 {
    right: -150px;
    bottom: 130px;
    height: 160px;
    width: 160px;
    background-image: url(https://f.hubspotusercontent00.net/hubfs/20162809/raw_assets/public/carpetx/images/icons/dots-dark.png);
    background-repeat: repeat;
}

.anim-icons .icon.auto-spin {
    -webkit-animation: fa-spin 30s infinite;
    animation: fa-spin 30s infinite;
}

.anim-icons .icon.auto-spin-2x {
    -webkit-animation: fa-spin 60s infinite;
    animation: fa-spin 60s infinite;
}


.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding: 70px 0 0;
    padding-left: 70px;
}

.sec-title {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .sec-title {
    margin-bottom: 20px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 1.2em;
    color: #1b212f;
    font-weight: 700;

}

.sec-title .text {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #505050;
    font-weight: 600;
    margin-top: 18px;
}

.about-section .content-column p {
    font-size: 16px;
    line-height: 24px;
    color: rgba(27, 33, 47, .75);
    margin-bottom: 15px;
}

.btn1 {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    background-color: #cb9b4e;
    border-radius: 50px;
    overflow: hidden;
    text-transform: uppercase;
    display: inline-block;
    border: 0;
}

.btn1:hover {
    background: #000;
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
}

.about-section .btn1 {
    margin-top: 30px;
}

.about-section .images-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .image-box {
    position: relative;
    margin-left: -40px;
}

.about-section .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.about-section .image-box .image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
}

.about-section .fact-counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.about-section .counter-column {
    position: relative;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
    background: #fff;
    -webkit-box-shadow: 5px 25px 60px rgb(77 33 47 / 10%);
    box-shadow: 5px 25px 60px rgb(77 33 47 / 10%);
    text-align: center;
}

.about-section .counter-column.style-one {
    position: absolute;
    right: -20px;
    top: 40px;
}

.about-section .counter-column.style-two {
    background: #cb9b4e;
    position: absolute;
    left: -100px;
    top: 42%;
    height: 170px;
    width: 170px;
}

.about-section .counter-column.style-three {
    position: absolute;
    right: -15px;
    bottom: -25px;
    height: 150px;
    width: 150px;
}

.about-section .count-box {
    position: relative;
    font-size: 30px;
    color: #cb9b4e;
    line-height: 1em;
    font-weight: 700;
}

.about-section .count-box .count-text {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: #cb9b4e;
    line-height: 1em;
    font-weight: 700;
}

.about-section .counter-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #505050;
    margin-top: 3px;
}

.about-section .counter-column.style-two .count-box, .about-section .counter-column.style-two .count-box .count-text, .about-section .counter-column.style-two .counter-title {
    color: #fff;
}

.topBar ul li.lang {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    padding-left: 18px;
    margin-right: 0;
}

.topBar ul li.lang a {
    font-size: 13px;
    text-transform: uppercase;
}

.topBar ul li.lang a:hover {
    text-decoration: none;
}

.sec-title.big h2 {
    font-size: 50px;
    text-transform: uppercase;
}

.sec-title.borAfter h2 {
    position: relative;
    padding-bottom: 30px;
}

.sec-title.borAfter h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 150px;
    height: 2px;
    background: #cb9b4e;
    transform: translateX(-50%);
}

.professionalCont {
    display: flex;
    align-items: center;
}

.professionalCont .contWrap {
    width: 50%;
    padding: 50px 50px 50px 0;
}

.professionalCont .contWrap h3 {
    margin-bottom: 20px;
}

.professionalCont .imgWrap {
    width: 50%;
}

.professionalCont .imgWrap img {
    width: 100%;
}

.professionalCont.oppsite .contWrap {
    order: 2;
    padding: 50px 0 50px 50px;
}

.whyChooseSection {
    background: #f3f3f3;
}

.whyChoose {
    margin-top: 30px;
}

.whyChoose .icon {
    margin-bottom: 30px;
    width: 80px;
    height: 80px;
    position: relative;
}

.whyChoose .icon::after {
    position: absolute;
    left: 20px;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../img/dottedBG.png);
    z-index: 1;
    background-size: contain;
    border-radius: 50%;
    -webkit-animation: fa-spin 30s infinite;
    animation: fa-spin 30s infinite;
}

.whyChoose .icon img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.whyChoose .info h4 {
    margin-bottom: 10px;
}

.whyChoose .info p {
    text-align: justify;
}

.footer {
    background: #000;
    position: relative;
}

.footer .footer-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.5;
}

.default-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.footer .default-padding {
    padding-top: 40px;
}

.footer .item {
    margin-top: 50px;
}

.footer .f-item.about {
    padding-right: 30px;
}

.footer .f-item img {
    margin-bottom: 30px;
}

.footer p {
    color: #adb5bd;
}

.footer form {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 30px;
}

.footer .f-items form input {
    border: none !important;
    box-shadow: inherit;
    border-radius: 5px;
    min-height: 56px;
    padding-left: 20px;
    background: transparent;
    color: #ffffff;
}

.footer form .btn1 {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 13px 20px;
    text-transform: initial;
}

.footer form .btn1:hover {
    background: #cb9b4e;
}

.footer .f-item .widget-title {
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 30px;
    color: #FFF;
}

.footer ul li {
    margin-top: 20px;
    list-style: none;
}

.footer ul li a {
    color: #adb5bd;
}

.footer ul li a:hover {
    color: #cb9b4e;
    text-decoration: none;
}

.footer .f-item .address li {
    margin-top: 15px;
    display: flex;
}

.footer .f-item .address li .icon {
    padding-right: 15px;
}

.footer .f-item .address li strong {
    display: block;
    color: #FFF;
}

.footer .f-item .address li i {
    color: #cb9b4e;
    font-size: 24px;
    position: relative;
    top: 5px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom li {
    display: inline-block;
    margin-left: 15px;
    margin-top: 0 !important;
}

.footer-bottom li a {
    color: #adb5bd;
}

.footer-shape img {
    max-width: 100%;
}

.header.inner {
    position: static;
}

.header.inner .topBar ul li a:hover {
    color: #cb9b4e;
}

.sappraterInner {
    background: url(../img/productsingl.webp) no-repeat center center / cover;
    padding: 50px 0;
}

.sappraterInner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sappraterInner .container h3 {
    font-size: 40px;
    color: #FFF;
    text-transform: uppercase;
    margin: 0;
    width: 100%;
    text-align: center;
}

.sappraterInner .container ul {
    list-style: none;
    margin: 0;
    width: 100%;
    text-align: center;
}

.sappraterInner .container ul li {
    color: #FFF;
    display: inline-block;
}

.sappraterInner .container ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.sappraterInner .container ul li span {
    margin: 0 15px;
    color: #FFF;
}

.sappraterInner .container ul li a:hover {
    color: #FFF;
}

.innerSec {
    padding: 50px 0;
}

.productPage {
    display: flex;
    flex-wrap: wrap;
}

.productPage .sidebar {
    width: 250px;
}

.sidebar .widget {
    padding: 0;
    margin: 0;
    text-align: left;
}

.sidebar .widget .widget-title {
    margin: 0;
    display: block;
}

.widget .widget-title h3 {
    text-transform: uppercase;
    margin: 0;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: .28em;
    background-color: #000;
    padding: 0 50px;
}

.sidebar .widget .widget-title h3 {
    text-align: left;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .1em;
    padding: 15px 20px;
    color: #FFF;
}

.sidebar .widget .blog-banner-container, .sidebar .widget .widget-content {
    border: 1px solid #dbdbdb;
    display: inline-block;
    width: 100%;
    padding: 20px 30px;
    list-style: none;
    margin: 0 0 30px;
    width: 100%;
    text-align: left;
}

.sidebar .widget-category .widget-content > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .widget-category .widget-content > ul > li > a {
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 13px;
    text-transform: capitalize;
    padding: 10px 0;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
    color: #000;
}

.sidebar .widget-category .widget-content > ul > li > a:hover {
    color: #000000;
    background-color: #ffffff;
}



.sidebar .widget .filter-custom .widget-content li a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 0;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    line-height: 20px;
}
.sidebar .widget .blog-banner-container .li-color .color, .sidebar .widget .widget-content .li-color .color {
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    display: inline-block !important;
    margin-right: 10px;
    margin-top: 0;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    background: #ccc;
}

.sidebar .widget .blog-banner-container .li-color .color.red, .sidebar .widget .widget-content .li-color .color.red {
    background-color: red;
}

.sidebar .widget .blog-banner-container .li-color .color.pink, .sidebar .widget .widget-content .li-color .color.pink {
    background-color: #f43c7e;
}

.sidebar .widget .blog-banner-container .li-color .color.yellow, .sidebar .widget .widget-content .li-color .color.yellow {
    background-color: #ff0;
}

.sidebar .widget .blog-banner-container .li-color .color.blue, .sidebar .widget .widget-content .li-color .color.blue {
    background-color: #00f;
}

.sidebar .widget .blog-banner-container .li-color .color.orange, .sidebar .widget .widget-content .li-color .color.orange {
    background-color: #f53d2d;
}

.sidebar .widget .filter-custom.size .widget-content li {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

.filter-custom.size .widget-content li a {
    margin: 0;
    padding: 0 10px;
    width: auto;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #eee;
    color: #000;
}

.sidebar .widget .filter-custom.size .widget-content li a {
    margin: 0;
    padding: 0 10px;
    width: auto;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #eee;
}

.sidebar .widget .filter-custom.size .widget-content li a:hover {
    background-color: #f0f0f0;
}

.sidebar .widget-category .widget-content a.active{color: #cb9b4e;}
.sidebar .widget .filter-custom.size .widget-content li a.active span{color: #ffffff;background-color: #cb9b4e}
.sidebar .widget .filter-custom.size .widget-content li a.active:hover span{color: #ffffff;background-color: #cb9b4e}
.sidebar .widget .filter-custom.size .widget-content li a.active{background-color: #cb9b4e}
.sidebar .widget .filter-custom.size .widget-content li a.active:hover{background-color: #cb9b4e}

.productPage .productList {
    width: calc(100% - 250px);
    padding-left: 30px;
}

.template-collection .product-item {
    margin-bottom: 20px;
    position: relative;
}

.products-grid .grid-item .product-image {
    display: table;
    position: relative;
    table-layout: fixed;
    text-align: center;
    width: 100%;
    overflow: hidden;
    z-index: 3;
}

.product-image img {
    width: 100%;
}

.product-item .product-inner .product-image .product-label, .product-item .product-inner .product-image .sale_tag, .product-list-image .product-inner .product-image .product-label, .product-list-image .product-inner .product-image .sale_tag {
    background-color: #cb9b4e;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    left: 15px;
    text-align: center;
    text-transform: uppercase;
    top: 20px;
    z-index: 100;
    padding: 0 5px;
}

.product-list .grid-item .product-image > a, .products-grid .grid-item .product-image > a {
    display: block;
    line-height: 0;
    vertical-align: middle;
}

.product-item .product-actions {
    margin: 0 15px 0;
    position: relative;
    z-index: 99;
}

.product-item .product-actions .product-actions-inner {
    display: inline-block;
    width: 100%;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    visibility: hidden;
    position: absolute;
    text-align: center;
    z-index: 9;
    left: 0;
    line-height: 0;
    display: flex;
    justify-content: space-between;
}

.product-item .product-actions-inner .add-to-link, .product-item .product-actions-inner .add-to-wishlist {
    display: inline-block;
}

.product-item .product-actions .product-actions-inner .add {
    width: 33.3%;
    float: left;
}

.product-item .add-to-link .product-quick-view, .product-item .add-to-link .wishlist, .product-item .add-to-wishlist .product-quick-view, .product-item .add-to-wishlist .wishlist {
    display: inline-block;
    float: left;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
}

.product-item .product-actions .product-actions-inner .add .quickview-button, .product-item .product-actions .product-actions-inner .add .wishlist {
    display: inline-block;
    width: 100%;
    height: 80px;
    border: 0;
    line-height: 80px;
    background: #FFF;
}

.product-item .wishlist i {
    color: #000;
    font-size: 20px;
    line-height: 80px;
}

.product-item:hover .product-actions-inner {
    bottom: 15px;
    opacity: 1;
    visibility: visible;
}

.grid-item .product-inner .information h3, .grid-item .product-inner .product-name h3 {
    font-family: Poppins, sans-serif;
    margin-bottom: 0;
    padding: 25px 0 10px;
    line-height: 20px;
    font-size: 14px;
}

.grid-item .product-inner .information h3 a, .grid-item .product-inner .product-name h3 a {
    font-weight: 400;
}

.product-name h3 {
    padding: 25px 0 10px;
    line-height: 20px;
    font-size: 14px;
    text-align: center;
}

.product-name h3 a {
    color: #000;
    font-size: 14px;
}

.product-name h3 a span {
    font-size: 14px;
}


.price-box {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
}

.price-box .old-price {
    color: #999;
    font-size: 13px;
    font-weight: 400;
    line-height: 0;
    text-decoration: line-through;
    margin-right: 5px;
}

.price-box .old-price span {
    font-size: 13px;
}

.special-price span {
    font-size: 18px;
}

.poductBanner {
    margin-bottom: 30px;
}

.poductBanner img {
    max-width: 100%;
}

.sidebarFilter {
    display: none;
}


.title-products h1 span {
    font-size: 24px;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    color: #000;
}

.spr-badge {
    min-height: auto;
    min-width: auto;
    display: block;
}

.spr-badge-starrating {
    margin: 0 3px 0 0;
}

.fa-star-o {
    font-size: 14px;
    position: relative;
    top: 1px;
    width: 1.3em;
    height: 1.3em;
}

.spr-badge-starrating .fa-star-o {
    color: #fc0;
}

.product-price {
    font-family: Poppins, sans-serif;
    display: block;
    margin: 20px 0;
    clear: both;
}

.product-price .compare-price {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    padding-right: 10px;
    text-decoration: line-through;
}

.price.on-sale {
    color: #cb9b4e;
    font-size: 24px;
    font-weight: 700;
    padding-top: 0;
    letter-spacing: 0;
}

.availability {
    margin-bottom: 10px;
}

.availability span {
    color: #cb9b4e;
}

.productSize h5 {
    font-size: 18px;
}

.productSize ul {
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.productSize ul li {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px #ddd solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
}

.productSize ul li:hover {
    background: #000;
    border-color: #000;
    color: #FFF;
}

.gts-action .clear_fix {
    margin: 0;
    padding: 30px 0;
    border-bottom: 1px solid #dbdbdb;
    border-top: 1px solid #dbdbdb;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;

}

.gts-action .clear_fix .btn1 {
    background: #000;
    border-radius: 0;
    margin-left: 15px;
}

.inputNumber {
    display: flex;
    width: 120px;
}

.inputNumber .form-control {
    text-align: center;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
}

.form-control[type="number"]::-webkit-inner-spin-button,
.form-control[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-minus {
    background: #333;
    width: 40px;
    font-size: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.btn-plus {
    background: #333;
    width: 40px;
    font-size: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.product-socials .share-product-text {
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
}

.product-socials a {
    width: 40px;
    height: 40px;
    background-color: #1e75cf;
    color: #fff;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 45px;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
}

.product-socials a.bo-social-twitter {
    background-color: #00c1f1;
}

.product-socials a.bo-social-pinterest {
    background-color: #c02b17;
}

.product-socials a.bo-social-google-plus {
    background-color: #db4437;
}

.productSlider {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 400px;
}

.productSlider li img {
    width: 100%;
    border: 1px #bfbfbf solid;
}

.productSliderNav {
    margin: 20px -10px 0 -10px;
    padding: 0;
    list-style: none;
    width: calc(100% + 20px);
    max-width: 420px;
}

.productSliderNav li {
    width: 100%;
    margin: 0 10px;
    border: 1px transparent solid;
}

.productSliderNav li img {
    width: 100%;
}

.productSliderNav li.slick-current {
    border-color: #bfbfbf;
}

.productSliderNav .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px #000 solid;
    z-index: 9;
    opacity: 0;
    transition: all 0.5s;
    cursor: pointer;
}

.productSliderNav .slick-arrow:focus {
    outline: 0;
}

.productSliderNav .slick-prev {
    left: 20px;
    background: url(../img/arrowLeft.png) no-repeat center center;
}

.productSliderNav .slick-next {
    right: 20px;
    background: url(../img/arrowRight.png) no-repeat center center;
}

.productSliderNav:hover .slick-arrow {
    opacity: 1;
}


.img-magnifier-container {
    position: relative;
}

.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: 200px;
    height: 200px;
}


.dropdown-menu {
    display: none
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.contact-form{
    background: #f3f3f3;
    margin-top: 2%;
    margin-bottom: 1%;
    width: 70%;
}
.contact-form .form-control{
    border-radius:1rem;
}
.contact-image{
    text-align: center;
}
.contact-image img{
    border-radius: 6rem;
    width: 11%;
    margin-top: -3%;
    transform: rotate(29deg);
}
.contact-form form{
    /*padding: 14%;*/
}
.contact-form form .row{
    /*margin-bottom: -7%;*/
}
.contact-form h3{
    margin-bottom: 8%;
    margin-top: -10%;
    text-align: center;
    color: #cb9b4e;
}
.contact-form .btnContact {
    width: 50%;
    border: none;
    border-radius: 1rem;
    padding: 1.5%;
    background: #cb9b4e;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.btnContactSubmit
{
    width: 50%;
    border-radius: 1rem;
    padding: 1.5%;
    color: #fff;
    background-color: #cb9b4e;
    border: none;
    cursor: pointer;
}

.error-message{
    font-size: 12px;
    color: red;
    margin-left: 10px;
}

.btn-auth {
    background: #cb9b4e;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 23px;
    text-transform: inherit;
}
.paginations {
    padding-top: 50px;
}
.page-link {
    color: #000000;
}
.page-item.active .page-link {
    background-color: #000000;
    border-color: #000000;
}
.show_more {
    margin-top: 50px;
}
.logout .nav-link {
    color: #cb9b4e !important;
}

.register-btn {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: #cb9b4e;
    float: right;
    padding: 5px 15px;
}

/* Responsive Start */

@media (max-width: 991px) {
    .about-section .content-column {
        margin-bottom: 0;
    }

    .about-section .content-column .inner-column {
        padding: 0;
    }

    .professionalCont {
        flex-wrap: wrap;
    }

    .professionalCont .contWrap {
        width: 100%;
        order: 2;
        padding-top: 20px;
    }

    .professionalCont .imgWrap {
        width: 100%;
        order: 1;
    }

    .slideshowTextWrap h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .topBar {
        height: 40px;
    }

    .topBar ul {
        display: none;
    }

    .categories {
        margin-top: -40px;
    }

    .categories h4 {
        line-height: 40px;
    }

    .header .container {
        position: static;
    }

    .navbar {
        position: static;
        padding: 0;
    }

    .navbar .navbar-toggler {
        position: absolute;
        right: 10px;
        top: 20px;
        color: #000;
    }

    .header .navbar-nav .nav-link {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        border-bottom: 1px rgba(0, 0, 0, 0.2) solid;
    }

    .header .navbar-nav .nav-item:first-child a {
        border-top: 1px rgba(0, 0, 0, 0.2) solid;
    }

    .navbar .navbar-collapse {
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        z-index: 9;
    }

    .navbar .navbar-collapse .navbar-nav {
        background: #FFF;
    }

    .navbar-toggler, .navbar-toggler {
        border: 0;
        outline: 0;
    }

    .navbar-toggler:focus, .navbar-toggler:hover {
        border: 0;
        outline: 0;
    }

    .logo {
        padding: 10px;
        top: 0;
        z-index: 10;
    }

    .logo img {
        width: 150px;
    }

    .productSlider {
        max-width: 100%;
    }

    .productSliderNav {
        max-width: calc(100% + 20px);
    }

}

@media (max-width: 767px) {
    .productPage .sidebar {
        position: absolute;
        z-index: 9;
        background: #FFF;
        left: 0;
        top: 84px;
        transform: translateX(-100%);
        transition: all 0.5s;
    }

    .productPage .productList {
        width: 100%;
        padding: 0;
    }

    .sidebarFilter {
        display: block;
        text-align: right;
        margin-bottom: 10px;
        width: 100%;
    }

    .sidebarFilter span {
        cursor: pointer;
    }

    .productPageWrap {
        position: relative;
    }

    .productPage .sidebar.active {
        transform: translateX(0);
    }


}




















