:root {
    --dark-bg: #00222f;
    --light-bg: #e9e9e9;
    --secondary-bg: linear-gradient(to bottom, #3a3a3c, #18191b);
    --header-text: #9e9e9e;
    --main-color: #00f0ff;
    --text-color: #fff;
    --text-color2: #fff;
    --red-color: #fb0000;
    --cta-color: linear-gradient(to bottom, #fb0000, #be0000);
    --cta-hover: linear-gradient(to bottom, #be0000, #fb0000);
}

* {
    box-sizing: border-box;
}

aside,
footer,
header,
nav,
section {
    display: block;
}

html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

body {
    background: var(--dark-bg);
    color: #141412;
    line-height: 1.5;
    margin: 0;
}

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

a:visited {
    color: var(--text-color);
}

a:focus {
    outline: thin dotted;
}

a:active,
a:hover {
    color: #ce7852;
    outline: 0;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4 {
    clear: both;
    font-family: Bitter, Georgia, serif;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    margin: 33px 0;
}

h2 {
    font-size: 30px;
    margin: 25px 0;
}

h3 {
    font-size: 22px;
    margin: 22px 0;
}

h4 {
    font-size: 20px;
    margin: 25px 0;
}

strong {
    font-weight: bold;
}

p {
    margin: 0 0 24px;
}

ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: square;
}

nav ul {
    list-style: none;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
}

form {
    margin: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
}

button, textarea, input {
    line-height: normal;
    outline: none;
}

button {
    -webkit-appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
    color: #7d7b6d;
}

:-moz-placeholder {
    color: #7d7b6d;
}

:-ms-input-placeholder {
    color: #7d7b6d;
}

/**
Typography
*/
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-size: 14px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: var(--text-color);
}

:-moz-placeholder {
    color: var(--text-color);
}

.minisearch ::-moz-placeholder {
    color: #fff;
}

.minisearch ::-webkit-input-placeholder {
    color: #fff;
}

:-ms-input-placeholder {
    color: var(--text-color);
}

h1, h2, h3, h4, p, ul {
    margin: 0;
}

h1, h2, h3, h4 {
    font-family: "Poppins", sans-serif;
    line-height: 1.35;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }
}

h1, h2 {
    font-weight: 700;
}

h3, h4 {
    font-weight: 700;
}

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

/**
Helper Class
*/

.animation1 {
    transition-duration: 400ms;
}

ul {
    list-style: none;
}

a#scrollUp {
    background: #ce7852;
    color: #fff;
    bottom: 40px;
    right: 40px;
    border-radius: 100px;
    height: 45px;
    width: 45px;
    font-size: 25px;
    text-align: center;
    padding: 9px 0;
    box-shadow: 0 0 15px 0px rgba(50, 50, 50, 0.2);
    transition: 0.3s;
}

a#scrollUp:hover {
    background: #fff;
    color: #ce7852;
}

img {
    max-width: 100%;
}

a:hover {
    color: #ce7852;
}

a {
    transition: 0.3s;
}
.tab-content {
    width: 100%;
  }
  
  .tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
  }
  
  .tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    overflow: visible;
  }

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

/* Define Colors */
.color--theme {
    color: var(--main-color);
}

/* Background Color */

.bg--white {
    background: #ffffff;
}
.bg--dark {
    background: var(--dark-bg);
}

.bg__cat--8 {
    background: var(--dark-bg);
}

/* Background Image */

.bg-image--2 {
    background-image: url(https://imagedelivery.net/xWfkx0Wh93qKgPfNbVhPpA/e6f3f0b9-1f86-451e-9f2e-9f92fd0aae00/public);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-image--3 {
    background-image: url(https://imagedelivery.net/xWfkx0Wh93qKgPfNbVhPpA/e6f3f0b9-1f86-451e-9f2e-9f92fd0aae00/public);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-image--4 {
    background-image: url(../images/bg/4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-image--6 {
    background-image: url(../images/bg/6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* spacing */

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

.mt--50 {
    margin-top: 50px;
}

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

.mt--80 {
    margin-top: 80px;
}

/* spacing */

.pt--80 {
    padding-top: 80px;
}

/* spacing */
.pb--30 {
    padding-bottom: 30px;
}

.pb--55 {
    padding-bottom: 55px;
}

.pb--80 {
    padding-bottom: 80px;
}

/* spacing */

.ptb--150 {
    padding: 150px 0;
}

/* Text specialized */

/* Font specialized */

/* Height and width */

/* Section padding */

.section-padding--lg {
    padding: 80px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .section-padding--lg {
        padding: 80px 0;
    }

    .md-mt-40 {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {

    .section-padding--lg {
        padding: 80px 0;
    }

    .page-about.about_area.bg--white.section-padding--lg {
        padding-bottom: 55px;
    }

    .sm-mt-40 {
        margin-top: 40px;
    }
}

/* Overlay styles */

/*******************
Elements Styles
********************/
/*------------------------------
  Button Styles
------------------------------*/

/*-------------------------------
  Section Title Styles
---------------------------------*/
.section__title {
    margin: 0 auto;
    /*max-width: 650px;*/
}

.section__title h2 {
    color: #fff;
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .section__title h2 {
        font-size: 25px;
    }
}

.wn__newsletter__area .section__title > h2 {
    letter-spacing: 2px;
}

.section__title--3 h2 {
    color: var(--text-color);
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    vertical-align: top;
}

.section__title--3 h2 {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}


@media only screen and (max-width: 420px) {
    .section__title h2 {
        font-size: 26px;
    }

}

/*------------------------------
  Slide Activation Styles
------------------------------*/
.arrows_style {
    position: relative;
}

.arrows_style .owl-nav div {
    left: 0;
    position: absolute;
    top: 50%;
    transition: all 300ms ease-in 0s;
    opacity: 0;
}

.arrows_style .owl-nav div i {
    position: relative;
}

.arrows_style .owl-nav div.owl-prev {
    left: -50px;
}

.arrows_style .owl-nav div.owl-next {
    left: auto;
    right: -50px;
}

.arrows_style.owl-theme .owl-nav [class*="owl-"] {
    background: #f7f7f7 none repeat scroll 0 0;
    border-radius: 100%;
    box-shadow: 2px 5px 5px 0 rgba(0, 0, 0, 0.07);
    color: var(--text-color);
    cursor: pointer;
    font-size: 24px;
    height: 40px;
    line-height: 38px;
    position: absolute;
    text-align: center;
    top: 32%;
    width: 40px;
    z-index: 1;
}

.product__indicator--4.arrows_style.owl-theme .owl-nav [class*="owl-"] {
    top: 41%;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    color: #ce7852;
    border-color: #ce7852;
    transition: all 300ms ease-in 0s;
}

.arrows_style:hover .owl-nav div {
    opacity: 1;
    transition: all 300ms ease-in 0s;
}
.product__indicator--4 .single__product__inner {
    max-width: 100%;
    width: 100%;
}

.owl-theme .owl-nav {
    margin-top: 0;
}

.brown--color .owl-theme .owl-nav [class*="owl-"]:hover {
    color: #ce7852;
}

/*------------------------------
  Social Icon Styles
------------------------------*/
.social__net li {
    margin-right: 10px;
}

.social__net li a {
    border-radius: 100%;
    color: var(--text-color);
    display: inline-block;
    font-size: 32px;
    height: 34px;
    line-height: 32px;
    margin-right: 10px;
    padding: 0;
    text-align: center;
    transition: all 300ms ease-in 0s;
    width: 34px;
}

.social__net li a:hover {
    border-color: #fff;
    color: #fff;
}

.social__net.social__net--2 li a:hover {
    border-color: #ce7852;
    color: #ce7852;
}

.brown--color .social__net.social__net--2 li a:hover {
    border-color: #ce7852;
    color: #ce7852;
}

/*-------------------------------
  Popup Styles
---------------------------------*/
.block-bg {
    background: rgba(22, 22, 27, 0.97) none repeat scroll 0 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    text-align: center;
    top: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    transition: -webkit-transform 0.8s ease 0s, transform 0.8s ease 0s, opacity 0.5s ease 0s, visibility 0.5s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 999;
}

.block-bg .close__wrap {
    color: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 25px;
    margin-top: -12.5px;
    padding-right: 25px;
    position: absolute;
    right: 15px;
    text-transform: uppercase;
    top: 50%;
    z-index: 11;
    transition: 0.4s;
}

.block-bg .close__wrap:hover {
    color: #ce7852;
}

.block-bg .close__wrap::after {
    content: "\f136";
    font-family: Material-Design-Iconic-Font;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.block-bg.close__top .close__wrap {
    right: 90px;
    top: 50px;
}

.minisearch .field__search {
    left: 0;
    margin: 0 auto auto;
    max-width: 1000px;
    padding: 0 5px;
    position: fixed;
    right: 0;
    top: 50%;
}

.minisearch .field__search input {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: transparent none repeat scroll 0 0;
    border-color: currentcolor currentcolor #ebebeb;
    -o-border-image: none;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 1px;
    color: #fff;
    height: 60px;
    padding: 10px 60px 10px 10px;
    position: static;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    z-index: 1;
    font-size: 16px;
    outline: none;
}

.minisearch .field__search .action {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.minisearch .field__search .action a i {
    color: #fff;
    display: inline-block;
    font-size: 26px;
    height: 60px;
    left: 0;
    line-height: 60px;
    text-align: center;
    top: 0;
    width: 60px;
}

.brown--color.block-bg .close__wrap:hover {
    color: #ce7852;
}

/*------------------------------
  Cart Box Styles
------------------------------*/

/*------------------------------
  Setting Styles
------------------------------*/

/*******************
Blocks Styles
********************/
/**
Header Styles
*/

.header__area .container-fluid {
    padding: 0 80px;
}

.header__area .logo {
    height: 90px;
    line-height: 90px;
}

.header__area .header__sidebar__right {
    height: 90px;
    list-style: outside none none;
    position: relative;
    z-index: 9;
}

.header__area .header__sidebar__right > li {
    align-items: center;
    align-self: stretch;
    display: flex;
}

.header__area .header__sidebar__right > li.shop_search > a {
    background: rgba(0, 0, 0, 0) url("../images/icons/search.png") no-repeat scroll 0 center;
    height: 100%;
    line-height: 35px;
    width: 24px;
}

.header__area .header__sidebar__right > li.wishlist > a {
    background: rgba(0, 0, 0, 0) url("../images/icons/button-wishlist.png") no-repeat scroll 0 center;
    height: 100%;
    line-height: 35px;
    width: 24px;
}

.header__area .header__sidebar__right > li > a {
    position: relative;
    display: block;
}

.header__area .header__sidebar__right > li.wishlist {
    padding-left: 25px;
    padding-right: 25px;
}

/* Header Style Two*/

.mainmenu__nav {
    align-items: center;
    align-self: start;
    display: flex;
    height: 90px;
    justify-content: flex-end;
}

.mainmenu__nav .meninmenu {
    align-items: center;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}

.mainmenu__nav .meninmenu li {
    align-self: stretch;
    display: flex;
}

.mainmenu__nav .meninmenu li a {
    align-items: center;
    align-self: stretch;
    color: var(--text-color);
    display: flex;
    font-size: 14px;
    font-weight: 600;
    padding: 0 25px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}

.mainmenu__nav .meninmenu li a:hover {
    color: #ce7852;
}

.mainmenu__nav .meninmenu li:first-child a {
    padding-left: 0;
}

.oth-page .mainmenu__nav .meninmenu li a {
    color: #fff;
}

.oth-page.header__area .header__sidebar__right > li.shop_search > a {
    background: rgba(0, 0, 0, 0) url("../images/icons/search_white.png") no-repeat scroll 0 center;
}

.oth-page.header__area .header__sidebar__right > li.wishlist > a {
    background: rgba(0, 0, 0, 0) url("../images/icons/button-wishlist_white.png") no-repeat scroll 0 center;
}

.oth-page.header__absolute {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



/* Dropdown Menu*/

/* Header Style Three*/

/* Header Style Four*/
.header__absolute {
    left: 0;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: 9;
}


/* switcher account*/

/* Header Style 14*/
.mainmenu__nav {
    justify-content: left;
}

/* Header Style 15*/

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

/* Responsive Css*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .header__area .container-fluid {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .header__area .container-fluid {
        padding: 0 20px;
    }

    .header__area .header__sidebar__right {
        z-index: 9;
    }

    .header__area .logo {
        z-index: 10;
        position: relative;
    }

    .header__absolute {
        top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .header__area .header__sidebar__right {
        z-index: 9;
    }

    .header__area .logo {
        z-index: 10;
        position: relative;
    }

    .header__area .container-fluid {
        padding: 0 18px;
    }
}

/**
Navigation Styles
*/

/*------------------------------
  Testimonial Styles
------------------------------*/

/*------------------------------
  Product Styles
------------------------------*/
.product {
    position: relative;
    overflow: hidden;
}

.shop-grid .product {
    margin-bottom: 15px;
}

.product .product__thumb {
    overflow: hidden;
    position: relative;
}

.product .product__thumb a {
    display: block;
}

.product .product__thumb a img {
    width: 100%;
}

.product .product__thumb a.second__img {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition-property: all;
    transition-timing-function: linear;
}

.product .product__thumb a.second__img img {
    width: 100%;
}

.product .product__thumb .hot__box {
    background: #f0cd02 none repeat scroll 0 0;
    /*background: var(--main-color);*/
    color: var(--dark-bg);
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    left: 0;
    line-height: 15px;
    min-width: 55px;
    padding: 4px 10px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0px;
    z-index: 3;
}

.product .product__thumb .hot__box::after {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: transparent transparent transparent #f0cd02;
    border-image: none;
    border-style: solid;
    border-width: 6px;
    content: "";
    margin-top: -6px;
    position: absolute;
    right: -11px;
    top: 50%;
}

/*.product .product__content .action .actions_inner .add_to_links li a:hover {*/
/*    color: #fff;*/
/*    background-color: #ce7852;*/
/*}*/

/*.product:hover .product__content h4, .product:hover .product__content ul.price {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: all 0.2s ease 0s;*/
/*}*/

.product .product__content {
    background: #fff;
    padding: 20px 0;
    width: 100%;
}

.product .product__content h4 {
    color: #3a3939;
    font-size: 14px;
    line-height: 23px;
    opacity: 1;
    transition: all 0.4s ease 0s;
    visibility: visible;
}

.product .product__content h4 a {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
    white-space: nowrap;
}

.product:hover .product__thumb a.second__img {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.product.product__style--3 .product__thumb {
    transition: all 0.3s ease-in-out 0s;
}

.product.product__style--3 .product__content {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    padding: 20px 15px;
    text-align: left;
}

.product.product__style--3 .product__content h4 a {
    color: var(--text-color);
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 0;
    text-transform: capitalize;
}

.product.product__style--3 .product__content h4 a:hover {
    color: var(--main-color);
}


.product__nav a {
    border-left: 1px solid #ebebeb;
    color: var(--text-color);
    cursor: pointer;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 18px;
    padding: 0 25px;
    position: relative;
    text-transform: uppercase;
    transition: all 300ms ease-in 0s;
}

@media (max-width: 991px) {
    .product__nav a {
        padding: 0 10px;
    }
}

.product__nav a:first-child {
    border-left: 0 none;
}

.product__nav a:hover, .product__nav a.active {
    color: var(--main-color);
    transition: all 300ms ease-in 0s;
}

/* ---X mas Best Seller --- */

.product.product__style--3 .product__content.content--center {
    text-align: center;
}

/*------------------------------
  06. Quickview Area
--------------------------------*/

@media only screen and (max-width: 575px) {

    .product__nav a {
        margin-bottom: 10px;
        padding: 0 11px;
    }
}

@media only screen and (max-width: 420px) {
    .product__nav a {
        padding: 0 18px;
    }

    .product__info__main .product-addto-links a.wishlist {
        display: none;
    }
}

/*--------------------------
  Newsletter Styles
----------------------------*/
.newsletter__block {
    margin-top: 20px;
}

.newsletter__block p {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    padding: 0 60px 60px;
}

.newsletter__block .newsletter__box {
    display: inline-block;
    margin-top: 5px;
    max-width: 470px;
    position: relative;
    width: 100%;
}

.newsletter__block .newsletter__box input {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: transparent none repeat scroll 0 0;
    border-color: currentcolor currentcolor #aaa;
    border-image: none;
    border-radius: 0;
    border-style: none none solid;
    border-width: 0 0 1px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    height: 50px;
    line-height: 30px;
    outline: medium none;
    padding: 10px 145px 10px 15px;
    width: 100%;
}

.newsletter__block .newsletter__box button {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    height: 50px;
    letter-spacing: 0.025em;
    line-height: 36px;
    padding: 0 15px 0 35px;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    font-family: Poppins;
    transition: all 300ms ease-in 0s;
}

.newsletter__block .newsletter__box button:hover {
    color: #ce7852;
}

@media only screen and (max-width: 767px) {
    .newsletter__block p {
        /*color: #000;*/
    }

    .newsletter__block .newsletter__box input {
        padding: 10px 98px 10px 10px;
    }
}

@media only screen and (max-width: 575px) {
    .newsletter__block {
        margin-top: 30px;
    }

    .newsletter__block .newsletter__box button {
        font-size: 12px;
        padding: 0 10px;
    }
}

/*-------------------------
  Slider Styles
-------------------------*/

@media only screen and (max-width: 767px) {

    .arrows_style .owl-nav div.owl-prev {
        left: 0;
    }

    .arrows_style .owl-nav div.owl-next {
        left: auto;
        right: 0;
    }

    .furniture--4.border--round {
        margin-left: 0;
    }

    .header__area .header__sidebar__right {
        margin-right: 50px;
    }

    .header__area .header__sidebar__right > li.wishlist {
        padding-left: 10px;
        padding-right: 10px;
    }

    .newsletter__block p {
        padding: 0 50px 60px;
    }

    .wn__newsletter__area.bg-image--2 {
        /*background: #f6f6f6 none repeat scroll 0 0;*/
    }

    .newsletter__block .newsletter__box {
        max-width: 280px;
    }

    .product__nav a {
        padding: 0 15px;
    }

    .product__indicator--4.arrows_style.owl-theme .owl-nav [class*="owl-"] {
        top: 42%;
    }

    .copy__right__inner {
        margin-bottom: 15px;
    }

    .copy__right__inner, .payment {
        text-align: center !important;
    }
}

/*---Snow Fall CSS---*/

/*-------------------------
  Brand Styles
-------------------------*/

/*-------------------------
  Blog Styles
-------------------------*/

/*--------------------------
  Recent Post Styles
----------------------------*/

/*--------------------------
  Video Styles
----------------------------*/

/*--------------------------
  Info Styles
----------------------------*/

/*--------------------------
  Module Product
----------------------------*/

/*--------------------------
  Breadcaump Styles
----------------------------*/
.ht__breadcrumb__area {
    padding-bottom: 110px;
    padding-top: 220px;
}

.breadcrumb__inner .breadcrumb-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 30px;
}

.breadcrumb__inner .breadcrumb-content {
    padding: 15px 0;
}

.breadcrumb__inner .breadcrumb-content .breadcrumb_item {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
}

.breadcrumb__inner .breadcrumb-content .breadcrumb_item.active, .breadcrumb__inner .breadcrumb-content .breadcrumb_item:hover {
    color: #ce7852;
}

.breadcrumb__inner .breadcrumb-content span.brd-separator {
    color: #fff;
    font-style: italic;
    margin: 0 7px;
}

/*--------------------------
  Single Product Styles
----------------------------*/
.product__info__main h1 {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.42857;
    margin: 0 0 3px;
}

.product__info__main .product-reviews-summary {
    padding: 3px 0 0;
}

.product__info__main .product-reviews-summary .rating-summary {
    margin-right: 8px;
}

.product__info__main .product-reviews-summary .rating-summary li i {
    color: #ce7852;
    font-size: 18px;
    margin-right: 4px;
}

.product__info__main .box-tocart {
    margin: 0;
    margin-bottom: 25px;
}

.product__info__main .box-tocart .addtocart__actions .tocart {
    background: var(--cta-color);
    border: 0 none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    text-transform: uppercase;
}

.product__info__main .product-share > ul li {
    color: var(--white);
    display: inline-block;
    font-weight: 600;
    margin-right: 14px;
    text-align: center;
}

.product__info__main .product-share > ul li a {
    border: 1px solid #fff;
    border-radius: 50px;
    color: var(--white);
    display: inline-block;
    height: 30px;
    text-align: center;
    width: 30px;
    line-height: 32px;
}

.product__info__main .product-share {
    margin-top: 15px;
}

.product__info__main .box-tocart .addtocart__actions .tocart:hover {
    background-color: var(--cta-hover);
    border-color: var(--red-color);
}

.product__info__main .product-addto-links a {
    border: 2px solid #ebebeb;
    border-radius: 100%;
    float: left;
    font-size: 0;
    height: 40px;
    line-height: 36px;
    margin-left: 7px;
    padding: 0;
    position: relative;
    text-align: center;
    width: 40px;
}

.product__info__main .product-addto-links a.wishlist {
    background: #ffffff url("../images/icons/product-info.png") no-repeat scroll 0 0;
}

.product__info__main .product-addto-links a:hover {
    background-color: var(--red-color);
    background-position: 100% center;
    border-color: var(--red-color);
}

.product__info__main .product__overview {
    border-top: 1px solid #ebebeb;
    clear: both;
    line-height: 24px;
    margin: 20px 0 0;
    padding: 30px 0;
}

.product__info__main .product__overview p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

/*--------------------------
  Sidebar Styles
----------------------------*/

/*--------------------------
  Blog Details Styles
----------------------------*/

/*--------------------------
  Portfolio Styles
----------------------------*/

/*--------------------------
  About Styles
----------------------------*/

.about_area .content {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 50px;
}

.about_area .content p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0;
}

.about_area .content strong {
    font-weight: 700;
    color: var(--text-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .about_area .content p {
        margin: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about_area .content {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about_area .content {
        padding: 30px;
    }

    .about_area .content {
        padding: 0 30px;
    }
}

/*--------------------------
  Team Styles
----------------------------*/

/*--------------------------
  Error Styles
----------------------------*/

/*--------------------------
  Contact Styles
----------------------------*/
.contact__title {
    color: #2e2e2e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-form-wrap .single-contact-form {
    margin: 0 0 35px;
}

.contact-form-wrap .single-contact-form.space-between {
    display: flex;
    justify-content: space-around;
    margin-left: -10px;
    margin-right: -10px;
}

.contact-form-wrap .single-contact-form.space-between input {
    margin: 0 10px;
}

.contact-form-wrap .single-contact-form input {
    border: 1px solid #c1c1c1;
    border-radius: 0;
    height: 42px;
    outline: medium none;
    padding: 0 0px;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.contact-form-wrap .single-contact-form textarea {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
    border-radius: 0;
    max-width: 100%;
    padding: 10px;
    height: 180px;
    padding: 0px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    width: 100%;
    outline: none;
}

.contact-form-wrap .contact-btn button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid var(--text-color);
    box-shadow: none;
    color: var(--text-color);
    display: inline-block;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 34px;
    padding: 2px 20px 0;
    text-shadow: none;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}

.contact-form-wrap .contact-btn button:hover {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-color: #ce7852;
    color: #ce7852;
}

@media only screen and (max-width: 420px) {
    .contact-form-wrap .single-contact-form.space-between {
        flex-wrap: wrap;
    }

    .contact-form-wrap .single-contact-form.space-between input + input {
        margin-top: 30px;
    }
}

p.form-messege {
    margin: 15px 0 0;
}
/*--------------------------
  Faq Styles
----------------------------*/

/*--------------------------
  MyAccount Styles
----------------------------*/

/*======= Cart Styles =======*/
/*---------------------------------------
  26. Our Cart Area
----------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .product__info__main h1 {
        margin: 30px 0 3px;
    }
}

@media only screen and (max-width: 575px) {

    .section__title--3 h2 {
        font-size: 28px;
        line-height: 34px;
    }
}

/*--------------------------
  Wishlist Styles
----------------------------*/

/*--------------------------
  Checkout Styles
----------------------------*/

@media only screen and (max-width: 767px) {

    .product__info__main h1 {
        margin: 30px 0 3px;
    }
}

/*--------------------------
  Shop Single Styles
----------------------------*/
.widget__title {
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.widget__categories.products--cat {
    margin: 0 0 30px;
}

.widget__categories.products--cat ul li {
    border-bottom: 1px dashed #e1e1e1;
    line-height: 45px;
    text-align: left;
    text-transform: capitalize;
}

.widget__categories.products--cat ul li a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
}

.widget__categories.products--cat ul li a:hover {
    color: #ce7852;
}

.shop__list__wrapper {
    border-bottom: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    margin: 0 0 30px;
    padding: 10px 0;
    width: 100%;
}

.shop__list__wrapper .shop__list a {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 15px;
    height: 31px;
    line-height: 32px;
    margin-right: 8px;
    padding: 0 !important;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 31px;
}

.shop__list__wrapper .shop__list a.active, .shop__list__wrapper .shop__list a:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.shop__list__wrapper .orderby__wrapper span {
    color: var(--main-color);
    display: inline-block;
    height: 31px;
    line-height: 31px;
}

.shot__byselect {
    border: 1px solid var(--main-color);
    color: var(--dark-bg);
    height: 30px;
    margin-left: 10px;
    padding: 0 10px;
}

.list__view {
    display: flex;
}

.list__view .thumb {
    flex-basis: 30%;
    overflow: hidden;
    position: relative;
}

.list__view .thumb a {
    display: block;
}

.list__view .thumb a img {
    width: 100%;
}

.list__view .thumb a.second__img {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition-property: all;
    transition-timing-function: linear;
}

.list__view .content {
    flex-basis: 70%;
    padding-left: 32px;
}

.list__view .content h2 {
    margin: 5px 0 0;
}

.list__view .content h2 a {
    color: #2e2e2e;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.list__view:hover .thumb a.second__img {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .orderby__wrapper {
        flex-basis: 100%;
        margin-top: 14px;
    }

    .list__view {
        flex-wrap: wrap;
    }

    .list__view .thumb {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .list__view .content {
        flex-basis: 100%;
        padding-left: 0;
    }
}

/*-------------------------
  Footer Styles
-------------------------*/
.ft__logo {
    margin: 0 auto 25px;
    max-width: 615px;
}

.social__net {
    margin-bottom: 30px;
}

.footer-static-top {
    background: #ffffff none repeat scroll 0 0;
    border-bottom: 1px solid #ebebeb;
    padding: 70px 0;
    text-align: center;
}

.copyright__wrapper {
    padding: 18px 0;
}

.footer__menu .ft__logo a {
    display: block;
    margin-bottom: 25px;
    text-align: center;
}

.footer__menu .footer__content .mainmenu li {
    display: inline-block;
    padding: 0 22px;
}

.footer__menu .footer__content .mainmenu li a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease 0s;
}

.footer__menu .footer__content .mainmenu li a:hover {
    color: #ce7852;
}

.bg__cat--8 .footer-static-top {
    background: transparent none repeat scroll 0 0;
}

.brown--color .copy__right__inner p a:hover {
    color: #ce7852;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    section.wn_contact_area {
        padding-bottom: 60px;
    }

    .header__area .header__sidebar__right {
        margin-right: 45px;
    }

    .header__area .header__sidebar__right > li.wishlist {
        padding-left: 15px;
        padding-right: 15px;
    }

    .wn__newsletter__area.bg-image--2 {
        background: #f6f6f6;
    }
}

@media only screen and (max-width: 767px) {

    .footer-static-top {
        padding: 50px 0;
    }

    .footer__menu .footer__content .mainmenu li {
        padding: 0 13px;
    }

    .footer__menu .footer__content .mainmenu li {
        margin-bottom: 10px;
        padding: 0 13px;
    }

    .footer__menu .footer__content .mainmenu {
        flex-wrap: wrap;
    }

}

@media only screen and (max-width: 420px) {

    section.wn_contact_area {
        padding-bottom: 60px;
    }
}

/*  Home Box Css */

@media only screen and (max-width: 767px) {

    .maincontent {
        padding-bottom: 80px;
    }

    section.wn_contact_area {
        padding-bottom: 60px;
    }
}


/* ---Snow Effect--- */

.logo img {
    height: 35px;
}

.search-container {
    background: #085775;
    padding: 30px 60px 20px;
    border-radius: 5px;
}

.search-container input, .search-container select {
    background: var(--light-bg);
}

.search-button {
    background: var(--cta-color);
    color: #fff;
    border: none;
    width: 100%;
}

.search-button:hover {
    background: var(--cta-hover);
    color: #fff;
}
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.row {
    --bs-gutter-x: 30px;
  }


/* Absolute Center Spinner */
.loading {
    display: none;
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}