@charset "UTF-8";
    :root {
    --color-success: #00c9a7;
    --color-info: #96ed89;
    --color-warning: #faa806;
    --color-danger: #ec2434;
    --color-border: #e4e4e4;
    --color-text: #707070;
    --color-contrast: #fff;
    --color-heading: #282828;
    --cowlor-dark: #8a8a8a;
}
* {
    font-family: var(--primary-font);
    font-weight: 400;
}
#app{background-color:#ffffff!important;}
html {
    font-size: 62.5%}
body {
    font-size: 14px;
    overflow-y:auto;
}
h1, h2, h3, h4, h5 {
    position: relative;
    color: var(--color-heading);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
    color: inherit;
}
h1 {
    font-size:  60px;
    color:  #222;
    font-weight:  700;
    text-transform:  uppercase;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5, p {
    font-size: 14px;
}
p {
    line-height: 1.6em;
    color: var(--color-text);
}
p span {
    font-family: inherit;
    font-size: inherit;
}
a, p span {
    color: inherit;
}
a {
    position: relative;
    text-decoration: none;
    transition: all .4s ease;
}

a:hover {
    color: #d4b196;
}
a, button, input, select, textarea {
    outline: none;
}
a:hover, h1:focus, h2:focus, h3:focus, h4:focus, h5:focus {
    text-decoration: none;
}
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    text-decoration: none;
}
iframe, img {
    max-width: 100%}
iframe {
    border: 0;
    width: 100%}
figure {
    margin: 0;
}
body, html {
    min-height: 100%;
    position: relative;
}
@media (min-width:1200px) {
    .container {
    max-width: 97%}
}body {
    overflow-x: hidden;
     font-family: Lato, sans-serif;
    position: relative;
    font-size: 14px;
    background-color:rgba(255, 192, 203, 0.1)!important;
    -webkit-background-color: white; /* for older versions of WebKit (iOS) */
}

.list--social {
    margin: 0;
    padding: 0;
}
.list--social li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
}
.list--social li a {
    display: inline-block;
    font-size: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #636363;
    border: 1px solid #404040;
}
.list--social li a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}
.list--social li a:hover {
    color: var(--color-1st);
    border-color: var(--color-1st);
    background-color: var(--color-1st);
}
.list--social li a:hover i {
    color: #fff;
}
.list--social li a.facebook {
    background-color: #3b5998;
}
.list--social li a.facebook i {
    color: #fff;
}
.list--social li a.twitter {
    background-color: #0084b4;
}
.list--social li a.twitter i {
    color: #fff;
}
.list--social li a.instagram i {
    color: #c32aa3;
}
.list--social li:last-child {
    margin-right: 0;
}
.list--plus li {
    margin: 10px 0;
}
.list--plus li a {
    display: block;
    position: relative;
    padding-left: 18px;
    line-height: 25px;
}
.list--plus li a:before {
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 20px;
}
.btn--hamburger {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    background-color: rgba(206, 135, 58, .6);
}
.btn--hamburger:after, .btn--hamburger:before, .btn--hamburger span {
    position: absolute;
    height: 2px;
    width: 20px;
    background-color: #fff;
    z-index: 100;
    transition: all .4s ease;
}
.btn--hamburger span {
    left: 15px;
    width: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.btn--hamburger:after, .btn--hamburger:before {
    content: "";
    left: 15px;
}
.btn--hamburger:before {
    top: 16px;
}
.btn--hamburger:after {
    bottom: 16px;
}
.btn--hamburger:hover {
    cursor: pointer;
}
.btn--hamburger.active span {
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
}
.btn--hamburger.active:after, .btn--hamburger.active:before {
    top: 50%;
    bottom: auto;
    width: 20px;
    transform-origin: 50% 50%;
    background-color: #fc354c;
}
.btn--hamburger.active:before {
    transform: rotate(45deg);
}
.btn--hamburger.active:after {
    transform: rotate(-45deg);
}
@media (max-width:1199px) {
    .btn--hamburger {
    display: inline-block;
}
}.btn--custom, button.btn--custom {
    display: inline-block;
    padding: 15px 35px;
    font-size: 17px;
    line-height: 20px;
    border: none;
    font-weight: 600;
    transition: all .4s ease;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--color-1st);
    cursor: pointer;
}
.btn--custom.btn--rounded, button.btn--custom.btn--rounded {
    border-radius: 50px;
}
.btn--custom.btn--curve, button.btn--custom.btn--curve {
    border-radius: 5px;
}
.btn--custom.btn--outline, button.btn--custom.btn--outline {
    padding: 14px 36px;
    font-size: 14px;
    color: var(--color-1st);
    border: 1px solid var(--color-1st);
    text-transform: uppercase;
    background-color: transparent;
}
.btn--custom.btn--outline:hover, button.btn--custom.btn--outline:hover {
    background-color: var(--color-1st);
    border-color: var(--color-1st);
    color: #fff;
}
.btn--custom.btn--fullwidth, button.btn--custom.btn--fullwidth {
    width: 100%;
    text-align: center;
}
.btn--custom.btn--sm, button.btn--custom.btn--sm {
    padding: .5rem 2rem;
    font-size: 1.2rem;
}
.btn--custom.btn--sm.btn--curve, button.btn--custom.btn--sm.btn--curve {
    border-radius: 3px;
}
.btn--custom.btn--lg, button.btn--custom.btn--lg {
    padding: 1.5rem 4rem;
}
.btn--custom.btn--xl, button.btn--custom.btn--xl {
    padding: 2rem 6rem;
    font-size: 1.6rem;
}
.btn--custom.btn--reverse, button.btn--custom.btn--reverse {
    background-color: #576391;
}
.btn--custom.btn--reverse:hover, button.btn--custom.btn--reverse:hover {
    background-color: var(--color-2nd);
}
.btn--custom.btn--gray, button.btn--custom.btn--gray {
    background-color: #e5e5e5;
    color: #000;
    font-size: 1.6rem;
}
.btn--custom.btn--black, button.btn--custom.btn--black {
    background-color: var(--color-heading);
}
.btn--custom.btn--black.btn--outline, button.btn--custom.btn--black.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-heading);
    color: var(--color-heading);
}
.btn--custom.btn--black.btn--outline:hover, button.btn--custom.btn--black.btn--outline:hover {
    background-color: var(--color-heading);
    color: #fff;
}
.btn--custom.btn--success, button.btn--custom.btn--success {
    background-color: var(--color-success);
}
.btn--custom:active, .btn--custom:hover, button.btn--custom:active, button.btn--custom:hover {
    color: #fff;
    background-color: chocolate;
}
.btn--custom:active.btn--black, .btn--custom:hover.btn--black, button.btn--custom:active.btn--black, button.btn--custom:hover.btn--black {
    background-color: var(--color-1st);
}
.btn--remove {
    outline: none;
    font-size: 20px;
    border: none;
}
.btn--remove:hover {
    color: var(--color-danger);
}
.btn--close {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    transition: all .4s ease;
    border-radius: 50%}
.btn--close:after, .btn--close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50%;
    background-color: #9f9a98;
    transform-origin: center center;
    transition: all .4s ease;
}
.btn--close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.btn--close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.btn--close:hover {
    transform: rotate(180deg);
}
.btn--close:hover:after, .btn--close:hover:before {
    background-color: #f44336;
    transition-delay: .3s;
}
.form-control {
    outline: none;
    font-size: 15px;
    padding: 0 15px;
    height: 55px;
    border-radius: 0;
    border: 1px solid #e5e5e5;
    transition: all .4s ease;
    box-shadow: 0 0 0 transparent;
    background-color: transparent;
    color: #222;
    font-weight: 600;
}
.form-control::-webkit-input-placeholder {
    opacity: 1;
    font-size: 14px;
}
.form-control:-moz-placeholder, .form-control::-moz-placeholder {
    opacity: 1;
    font-size: 14px;
}
.form-control:-ms-input-placeholder {
    opacity: 1;
    font-size: 14px;
}
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 #000;
    border-color: var(--color-1st);
}
textarea.form-control {
    height: auto;
    padding: 10px;
    resize: none;
}
.checkbox {
    position: relative;
    display: block;
}
.checkbox>input {
    position: absolute;
    visibility: hidden;
}
.checkbox label {
    margin-bottom: 0;
    position: relative;
    padding-left: 30px;
    font-family: var(--primary-font);
    color: rgba(var(--color-heading), .5);
    font-weight: 400;
    cursor: pointer;
}
.checkbox label:before {
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border: 1px solid var(--color-heading);
}
.checkbox label:after, .checkbox label:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    transition: all .4s ease;
}
.checkbox label:after {
    top: 4px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    opacity: 0;
    transform: rotate(0deg);
}
.checkbox input[type=checkbox]:checked~label:before {
    background-color: var(--color-2nd);
    border-color: var(--color-2nd);
}
.checkbox input[type=checkbox]:checked~label:after {
    transform: rotate(45deg);
    opacity: 1;
}
.radio {
    position: relative;
}
.radio>input {
    position: absolute;
    visibility: hidden;
}
.radio label {
    position: relative;
    margin-bottom: 0;
    padding-left: 30px;
    font-family: var(--primary-font);
    color: #737373;
    font-weight: 400;
    cursor: pointer;
}
.radio label:before {
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    z-index: 10;
    border: 1px solid rgba(19, 8, 1, .2);
    transition: all .4s ease;
    border-radius: 50%}
.radio label:after, .radio label:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
}
.radio label:after {
    width: 8px;
    height: 8px;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    z-index: 15;
    opacity: 0;
    transition: all .6s ease;
}
.radio input[type=checkbox]:checked~label:before {
    background-color: transparent;
}
.radio input[type=checkbox]:checked~label:after {
    border-radius: 50%;
    border: none;
    width: 8px;
    height: 8px;
    top: 6px;
    left: 6px;
    opacity: 1;
    background-color: var(--color-1st);
}
.form-group {
    margin-bottom: 0px;
}
.form-group>label {
    /*margin-bottom: 10px;*/
    font-weight: 500;
    color: #000;
    line-height: 1em;
    font-size: 14px;
    margin-bottom:7.5px;
}
.form-group>label sup {
    color: var(--color-danger);
}
.form-group--inline {
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.form-group--inline>label {
    margin-bottom: 0;
}
.form-group--inline .form-group__content {
    width: 100%}
.form-group--number {
    display: inline-block;
    position: relative;
    border: 2px solid #000;
}
.form-group--number button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    max-width: 20px;
    color: var(--color-heading);
    font-size: 30px;
    border: none;
    padding:23px;
    background: none;
}
.up,.down{
        background: #000!important;
    border: 2px solid #000;
    color: #fff;
    height: 30px!important;
    line-height: 15px;

}
.form-group--number button.up {
    right: 0px;
    border-left:1px solid #000;
}
.form-group--number button.up:after, .form-group--number button.up:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    content: "";
    width: 15px;
    height: 2px;
    background-color: white;
}
.form-group--number button.up:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.form-group--number button.up:after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.form-group--number button.down {
    left: 0px;
    border-right:1px solid #000;
}
.form-group--number button.down:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    content: "";
    width: 15px;
    height: 2px;
    background-color: white;
    transform: translate(-50%, -50%) rotate(0deg);
}
.form-group--number .form-control {
    height: 45px;
    padding: 0 5px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border: none;
    color: var(--color-heading);
    background-color: transparent;
}
.form-group--number .form-control::-webkit-input-placeholder {
    color: var(--color-heading);
}
.form-group--number .form-control:-moz-placeholder, .form-group--number .form-control::-moz-placeholder {
    color: var(--color-heading);
}
.form-group--number .form-control:-ms-input-placeholder {
    color: var(--color-heading);
}
.select--arrow {
    position: relative;
}
.select--arrow i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
.select--arrow .form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown>a {
    position: relative;
    display: block;
    padding-right: 20px;
}
.dropdown ul {
    position: absolute;
    z-index: 100;
    /*min-width: 120px;*/
    /*max-width: 120px;*/
    width: 100%;
    padding: 4px 0;
    background-color: #fff;
    box-shadow: 0 1px 1px 2px hsla(0, 0%, 80%, .2);
    visibility: hidden;
    opacity: 0;
    text-align: left;
}
.dropdown ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.dropdown ul li a {
    display: block;
    font-size: 1.3rem;
    padding: 6px 10px;
}
.dropdown:hover ul {
    visibility: visible;
    opacity: 1;
}

.custom-checkbox input[type=checkbox], .custom-checkbox input[type=radio], .custom-radio input[type=checkbox], .custom-radio input[type=radio] {
    display: none;
}
.custom-checkbox label, .custom-radio label {
    display: block;
}
.custom-checkbox span, .custom-radio span {
    display: block;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
}
.custom-checkbox input[type=checkbox]:checked~span:before, .custom-checkbox input[type=radio]:checked~span:before, .custom-radio input[type=checkbox]:checked~span:before, .custom-radio input[type=radio]:checked~span:before {
    content: "";
    display: block;
    border: 2px solid var(--color-1st);
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%}
.custom-checkbox.disabled label, .custom-radio.disabled label {
    position: relative;
}
.custom-checkbox.disabled label:after, .custom-checkbox.disabled label:before, .custom-radio.disabled label:after, .custom-radio.disabled label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 90%;
    background-color: var(--color-heading);
    transition: all .4s ease;
    transform-origin: 50% 50%;
    z-index: 20;
}
.custom-checkbox.disabled label:before, .custom-radio.disabled label:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.custom-checkbox.disabled label:after, .custom-radio.disabled label:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.custom-checkbox.disabled span, .custom-radio.disabled span {
    opacity: .9;
}
.custom-checkbox.disabled input[type=checkbox]:checked~span:before, .custom-checkbox.disabled input[type=radio]:checked~span:before, .custom-radio.disabled input[type=checkbox]:checked~span:before, .custom-radio.disabled input[type=radio]:checked~span:before {
    display: none;
}
.collection {
    position: relative;
}
.collection img {
    width: 100%}
.collection .collection__more_link {
    position: absolute;
    bottom: 30px;
    left: 50%;
    min-width: 160px;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-top-left-radius:  15px;
    border-bottom-right-radius:  15px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 20;
    color: var(--color-1st);
    transform: translateX(-50%);
}
.collection .collection__more_link:hover {
    color: #fff;
    background-color: var(--color-1st);
}
.post .post__wrapper {
    transition: all .3s ease-in-out;
    box-shadow:  0 1px 1px rgba(0,  0,  0,  0.1),  0 2px 2px rgba(0,  0,  0,  0.1),  0 4px 4px rgba(0,  0,  0,  0.1),  0 8px 8px rgba(0,  0,  0,  0.1),  0 16px 16px rgba(0,  0,  0,  0.1);
}
.post .post__wrapper .post__content {
    padding: 15px 15px 70px 15px;
}
.post:hover .post__wrapper {
    transform: translateY(-5px);
}
.post .post__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.post .post__title {
    font-weight: 600;
}
.post .post__title a {
    font-weight: inherit;
}
.post .post__thumbnail {
    position: relative;
    overflow: hidden;
}
.post .post__thumbnail img {
    transition: all .25s ease;
    width:100%;
}
.post .post__header {
    padding-bottom: 10px;
}
.post .post__content {
    padding-top: 20px;
}
.post:hover .post__overlay {
    background-color: rgba(0, 0, 0, .25);
}
@media screen and (min-width:480px) and (max-width:992px) {
    .post {
    display: flex;
    flex-flow: row nowrap;
}
.post>* {
    flex-basis: 100%;
    max-width: 50%}
.post .post__content {
    padding-left: 20px;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
}
}.post--detail .post__header {
    text-align: center;
    padding: 20px 0;
}
.post--detail .post__header h1 {
    font-size: 20px;
    text-transform: uppercase;
}
@media screen and (min-width:768px) {
    .post--detail .post__header {
    padding: 30px 0;
}
.post--detail .post__header h1 {
    font-size: 30px;
}
}.pagination .page-item.active span {
    background: var(--color-1st);
    color: #fff;
}
.pagination .page-item .page-link {
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #e9ecef;
    color: var(--color-text);
    outline: none;
}
.pagination .page-item .page-link:hover {
    background: var(--color-1st);
    color: #fff;
}
.pagination .page-item.disabled .page-link {
    background-color: #e9ecef!important;
}
.shop__pagination {
    text-align: center;
    padding-top: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.breadcrumb-wrapper {
    background-color:  #f9f9f9;
    padding:  15px 0;
    border-bottom:  1px solid #ddd;
}
.breadcrumb-wrapper .breadcrumb--custom {
    margin: 0;
    padding: 0;
    list-style:  none;
    
    background-color:  transparent;
    
    -webkit-box-pack:  end;
    
    -ms-flex-pack:  end;
    
    text-transform:  uppercase;
    
    font-size:  14px;
    
    color:  #555;
    
    font-weight:  600;
    
    margin:  0;
    
    padding-right:  0;
}
.breadcrumb-wrapper .breadcrumb--custom li {
    position: relative;
    display: inline-block;
    font-size:  14px;
    
    color:  #6c757d;
    
    font-weight:  600;
    
    font-family:  Lato,  sans-serif;
}
.breadcrumb-wrapper .breadcrumb--custom li:before {
    margin:  0 5px;
    
    float:  left;
    
    padding-right:  0.5rem;
    
    color:  #6c757d;
    
    content:  var(--bs-breadcrumb-divider,  "/") /* rtl: var(--bs-breadcrumb-divider,  "/") */;
}
.breadcrumb-wrapper .breadcrumb--custom li a {
        font-size:  14px;
    
    color:  #555;
    
    font-weight:  600;
    
    font-family:  Lato,  sans-serif;
}

    .breadcrumb-wrapper .breadcrumb--custom li a: hover {
    color: var(--color-heading);
}
.breadcrumb-wrapper .breadcrumb--custom li:first-child:before {
    display: none;
}
.block--contact-info {
    margin-bottom: 30px;
}
.block--contact-info h3 {
    font-size: 18px;
    text-transform: uppercase;
}
.block--contact-info .block__image img {
    width: 100%}
@media screen and (min-width:768px) {
    .block--contact-info h3 {
    font-size: 20px;
}
}@media screen and (min-width:992px) {
    .block--contact-info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.block--contact-info>* {
    flex-basis: 100%;
    max-width: 50%}
.block--contact-info .block__image {
    margin-bottom: 0;
}
.block--contact-info .block__info {
    padding-left: 60px;
}
}.block--review .block__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.block--review .block__header img {
    border: 1px solid #ddd;
    border-radius: 50%}
.block--review .block__header h5 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6em;
    color: var(--color-heading);
}
.block--review .block__header .block__info {
    padding-left: 15px;
}
.block--review .block__content {
    padding-top: 10px;
}
.block--product-reviews>.block__header {
    padding-bottom: 15px;
}
.block--product-reviews>.block__header p {
    color: var(--color-heading);
    font-weight: 600;
}
.block--product-reviews>.block__header p i {
    margin-right: .5em;
    font-size: 16px;
}
.block--product-reviews>.block__header p span {
    color: var(--color-heading);
    font-weight: inherit;
}
.block--product-reviews .block--review {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}
.block--product-reviews .block--review:last-child {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: none;
}
.panel--sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    width: 400px;
    background-color: #fff;
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    z-index: 1000001;
    transform: translate3d(400px, 0, 0);
}
.ft6{
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-left: 40px;
    text-transform: uppercase;
    margin-top: 15px;
    left:0;
}
.ft6:after, .ft6:before{
    transform:none!important;
    content: "\f104"!important;
    position: absolute!important;
    right: 40px!important;
    transform-origin: 50% 50%!important;
    transition: all .4s ease!important;
    font-family: FontAwesome!important;
    font-size: 19px!important;
    top: 0!important;
    left: -55%!important;
    width:0px!important;
    height: 0!important;
    background-color: transparent!important;
}
.panel--sidebar .panel__close {
       position: absolute;
       margin:0px!important;
       right:10px;
}
.panel__close i{padding-left:8px;font-weight: 400;font-size:21px;
    color: #d4b196;
    cursor: pointer;}

.panel--sidebar .panel__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.panel--sidebar .panel__header h4 {
    margin-bottom: 0;
    font-weight: 500;
    font-size:20px;
    color: #d4b196;
    text-transform: capitalize;
}
.panel--sidebar .panel__content {
    padding: 10px 10px;
    margin-bottom: 0;
    position: relative;
    flex: 1 1 auto;
    display: flex;
    height: auto;
}
.panel--sidebar.active {
    transform: none;
}
@media screen and (max-width:479px) {
    .panel--sidebar {
    max-width: 100%}
}.widget--footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget--footer p strong {
    color: var(--color-heading);
}
.widget--footer .widget__title {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 23px;
    font-weight: 600;
    color: var(--color-heading);
    text-transform: uppercase;
}
.widget--footer .widget__links li {
    margin-bottom: .5em;
}
.widget--footer .widget__links li a {
    display: block;
    line-height: 20px;
}
.widget--footer .widget__links li:last-child {
    margin-bottom: 0;
}
.widget--shop .widget__title {
    position: relative;
    margin-bottom: 25px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-top: 15px;
}
.widget--shop .widget__links li a {
    font-weight: 500;
    font-size: 18px;
}
.widget--tags .list--tags li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}
.widget--tags .list--tags li a {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid var(--color-heading);
}
.widget--tags .list--tags li a:hover {
    border-color: var(--color-1st);
}
.widget--colors .color-swatch li {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    margin-bottom: 5px;
}
.widget--colors .color-swatch li label {
    margin-bottom: 0;
}
.slick-slider .slick-slide {
    outline: none;
    box-shadow: 0 0 transparent;
}
.slick-slider .slick-slide:active, .slick-slider .slick-slide:focus, .slick-slider .slick-slide:hover {
    outline: none;
}
.owl-carousel .owl-item .slider-item {
    margin: 0;
    max-height: 650px;
}
.carousel--nav .owl-nav>* i {
    color: var(--color-heading);
}
#nonlinear {
    width: 96%;
    margin: 10px auto;
}
.noUi-connect {
    background-color: var(--color-1st);
}
.noUi-horizontal {
    height: 6px;
}
.noUi-handle:after, .noUi-handle:before {
    display: none;
}
.noUi-horizontal .noUi-handle {
    width: 16px;
    height: 16px;
    left: -17px;
    top: -6px;
    outline: none;
    background-color: var(--color-1st);
}
html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    right: -7px;
}
.noUi-handle {
    border: 3px solid var(--color-1st);
    border-radius: 50%;
    box-shadow: none;
}
.product .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    color: #fff;
}
.product .badge i {
    font-style: normal;
    color: #fff;
    text-align: center;
    line-height: 1.2em;
    font-size: 1.3rem;
}
.product .badge--sale {
    background-color: #d4b196;
}
.product .product__badges {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 30;
}
.product .product__shopping {
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    text-align: center;
    color: var(--color-text);
    line-height: 2rem;
    background-color: #fff;
    transform: translateY(100%);
    transition: all .5s ease;
}
.product .product__actions, .product .product__shopping {
    position: absolute;
    z-index: 30;
    visibility: hidden;
    opacity: 0;
}
.product .product__actions {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    transition: all .25s ease;
    width: 100%}
.product .product__actions li {
    margin-bottom: 10px;
    text-align: center;
}
.product .product__actions li a {
    display: inline-block;
    padding: 10px 30px;
    line-height: 20px;
    text-align: center;
    color: var(--color-heading);
    border-radius: 4px;
    background-color: #fff;
}
.product .product__actions li a:hover {
    background-color: var(--color-heading);
    color: #fff;
}
.product .product__actions li a:hover i {
    color: var(--color-1st);
}
.product .product__actions li:last-child {
    margin-bottom: 0;
}
.product .product__overlay {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.product .product__thumbnail {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.product .product__thumbnail img {
    width: 100%;
    max-width: 100%}
.product .product__thumbnail:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    z-index: 1;
    background-color: rgba(0, 0, 0, .15);
    transition: all .4s ease;
    visibility: hidden;
    opacity: 0;
}
.product .product__thumbnail .product__actions {
    z-index: 11;
}
.product .product__thumbnail .product__favorite {
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 40;
    color: #fff;
    visibility: visible;
    opacity: 1;
    transition: all .4s ease;
    font-size: 22px;
}
.product .product__thumbnail .product__favorite.active, .product .product__thumbnail .product__favorite:hover {
    color: red;
}
.product .product__thumbnail:hover .product__shopping {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.product .product__thumbnail:hover .product__actions {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.product .product__variants {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.product .product__variants li {
    margin-right: 6px;
}
.product .product__variants li:last-child {
    margin-right: 0;
}
.product .product__content {
    padding: 15px 0 0;
    text-align: left;
    background-color: #fff;
}
.product .product__price {
    margin-bottom: 0px;
    font-size: 20px!important;
    line-height:1.1em;
    font-weight: 600!important;
    color:  chocolate!important;
    font-family:  Lato, sans-serif!important;
}
.product .product__price del {
    margin-left: 5px;
    color: var(--color-text);
}
.product .product__price.sale del {
    font-size:  17px;
    color:  #aaa;
    font-weight:  400;
    font-family: Lato, sans-serif;
}
@media (max-width:767px) {
    .product {
    max-width: 350px;
    margin: 0 auto 2rem;
}
}.product--on-cart {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.product--on-cart>* {
    flex-basis: 100%}
.product--on-cart .product__thumbnail {
    max-width: 56px;
}
.product--on-cart .product__content {
    position: relative;
    padding-right: 25px;
    padding-left: 15px;
}
.product--on-cart .product__content .product__remove {
    position: absolute;
    top: 30%;
    right: 0px;
    font-size: 18px;
    color: var(--color-text);
}
.product--on-cart .product__content .product__remove:hover {
    text-decoration: none;
    color: var(--color-danger);
}
.product--on-cart .product__content a {
    display: block;
    color: var(--color-heading);
    font-size: 16px;
    text-transform:  CAPITALIZE;
    font-weight:  600;
}
.product--on-cart .product__content a:hover {
    text-decoration: underline;
}
.product--on-cart .product__content small {
    font-size: 14px;
    color: var(--color-heading);
    font-weight: 600;
}
.product--on-cart .product__content .qty-box small {
    font-size: 14px;
    color: var(--color-heading);
    font-weight: 600;
    margin:auto;
    padding-right:5px;
}
.product--on-cart .product__content  .cart-price {
    color: #222;
    font-weight:  600;
}

.product--on-cart .product__content .cart-price:hover{   text-decoration:none!important;}
.product--cart {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.product--cart .product__title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
}
.product--cart .product__title:hover {
    color: var(--color-1st);
}
.product--cart .product__thumbnail {
    flex-basis: 110px;
}
.product--cart .product__content {
    padding-left: 15px;
}
.product--cart .product__content small {
    font-size: 14px;
}
.product--detail figure.product__sharing figcaption, .product--detail figure.product__tags figcaption {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 20px;
}
.product--detail .product__info-header {
    margin-bottom: 0px;
}
.product--detail .product__title {
    font-size: 24px;
    line-height: 1.3em;
    font-weight: 500;
    color: var(--color-heading);
    text-transform: uppercase;
    display: inline-block;
}
.product--detail .product__variants .item {
    margin-bottom: 10px;
    border: 2px solid transparent;
    cursor: pointer;
}
.product--detail .product__variants .item img {
    opacity: .5;
    transition: all .4s ease;
}
.product--detail .product__variants .item:last-child {
    margin-bottom: 0;
}
.product--detail .product__variants .item.slick-current img {
    opacity: 1;
}
.product--detail .product__variants .item:hover img {
    width: 100%;
    opacity: 1;
}
.product--detail .product__gallery {
    position: relative;
}
.product--detail .product__gallery img {
    width: 100%}
.product--detail .product__gallery .slick-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 100;
    width: 35px;
    height: 35px;
    color: #000;
    font-size: 18px;
    background-color: hsla(0, 0%, 100%, .5);
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
}
.product--detail .product__gallery .slick-arrow i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product--detail .product__gallery .slick-arrow:first-child {
    left: 20px;
}
.product--detail .product__gallery .slick-arrow:last-child {
    right: 10px;
}
.product--detail .product__gallery .slick-arrow:hover {
    background-color: var(--color-1st);
    color: #fff;
}
.product--detail .product__gallery:hover .item:before, .product--detail .product__gallery:hover .slick-arrow {
    visibility: visible;
    opacity: 1;
}
.product--detail .product__info {
    text-align: left;
}
.product--detail .product__add-wishlist {
    font-size: 14px;
}
.product--detail .product__add-wishlist span {
    padding-left: 5px;
    text-decoration: underline;
}
.product--detail .product__price {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-heading);
}
.product--detail .product__price del {
    font-style: normal;
    color: #bcbcbc;
    font-size: 1.3rem;
}
.product--detail .product__price p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
}
.product--detail .product__price p span {
    font-weight: 600;
}
.product--detail .product__price.sale {
    color: var(--color-heading);
}
.product--detail .product__price.sale del {
    margin-right: 0px;
    font-size: 22px;
    color: var(--color-danger);
    font-weight:  600;
    font-family:  Lato, sans-serif;
}
.product--detail .product__attribute {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border-bottom: 1px dashed slategrey;
    /*margin-left:8px;*/
}
/*.product--detail .product__attribute>* {*/
/*    flex-basis: 100%}*/

.product--detail .product__attribute .form-control {
    border: none;
}
.product--detail .product__color {
    padding-bottom: 0rem;
}
.product--detail .product__color .color-swatch li {
    display: inline-flex;
    vertical-align: top;
    margin-right: 5px;
}
.product--detail .product__color .color-swatch li:last-child {
    margin-right: 0;
}
.product--detail .product__color .color-swatch55 li span {
    margin-bottom: 0;
    margin-left:18px;
    position: relative;
    bottom: 1.5px;
    font-weight:700;
}
.product--detail .product__color .color-swatch33 li span {
    margin-bottom: 0;
    margin-left:29px;
    font-weight:700;
}
.color-swatch44 li span {
    margin-bottom: 0;
    margin-left:13px;
    top: 2px;
    position: relative;
    font-weight:700;
}
.color-swatch22 li span {
    margin-bottom: 0;
    margin-left:27.5px;
    top: 2px;
    position: relative;
    font-weight:700;
    font-size:16px;
}
.product--detail .product__desc {
    margin-bottom: 20px;
}
.product--detail .product__desc p {
    margin-bottom: 0;
    color: #777;
    font-size: 14px;
}
.product--detail .product__shopping {
    margin-bottom: 36px;
}
.product--detail .product__shopping figure {
    display: flex;
    justify-content: space-between;
    max-width: 470px;
    padding-bottom: 20px;
}
.product--detail .product__shopping figure>* {
    margin-right: 10px;
}
.product--detail .product__shopping figure .form-group--number {
    max-width: 150px;
}
.product--detail .product__shopping figure .form-group--number input {
    border-radius: 0;
}
.product--detail .product__shopping figure .product__favorite {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    min-width: 45px;
    height: 45px;
    vertical-align: top;
    color: #999;
    border: 2px solid #eaeaea;
}
.product--detail .product__shopping figure .product__favorite i {
    padding-top: 2px;
    color: var(--color-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product--detail .product__shopping figure .product__favorite:hover {
    border-color: var(--color-1st);
}
.product--detail .product__shopping figure .product__favorite:hover i {
    color: var(--color-1st);
}
.product--detail .product__shopping .btn--black {
    letter-spacing: .1em;
}
.product--detail .product__sharing {
    margin-bottom: 0;
}
.product--detail .product__sharing p {
    line-height: 30px;
    color: var(--color-heading);
    font-weight: 500;
}
.product--detail .product__sharing a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    vertical-align: top;
    border-radius: 50%}
.product--detail .product__sharing a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: var(--color-heading);
}
.product--detail .product__sharing a:last-child {
    margin-right: 0;
}
.product--detail .product__sharing a:hover {
    color: #fff;
    background-color: var(--color-1st);
}
.product--detail .product__sharing p {
    margin-bottom: 0;
}
.product--detail .product__sharing .list--social li {
    margin-right: 5px;
}
.product--detail .product__sharing .list--social a {
    width: 40px;
    height: 40px;
}
.product--detail .product__tags a {
    margin-right: 6px;
    margin-bottom: 6px;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid var(--color-heading);
}
.product--detail .product__tags a:hover {
    color: #fff;
    background-color: var(--color-1st);
    border-color: var(--color-1st);
}
.product--detail .product__thumbnail {
    display: flex;
    flex-flow: column wrap;
    margin-bottom: 30px;
    width: 100%}
.product--detail .product__thumbnail>* {
    width: 100%}
.product--detail .product__thumbnail figure {
    position: relative;
    display: block;
}
.product--detail .product__thumbnail .product__variants {
    width: 100%;
    min-width: 80px;
}
.product--detail .product__thumbnail .wrapper {
    position: relative;
    margin-bottom: 10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] {
    flex-flow: column wrap;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] figure {
    max-width: 100%;
    padding-left: 0;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants {
    max-width: 100%;
    text-align: center;
    width: 100%}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .item {
    margin-bottom: 0;
    margin-right: 10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .item.slick-active:last-child {
    margin-right: 0;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-list {
    margin-right: -10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow {
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:first-child {
    left: -20px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:first-child i:before {
    content: ""}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:last-child {
    right: 0;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:last-child i:before {
    content: ""}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__variants .slick-arrow:hover i {
    color: #000;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__gallery {
    margin-bottom: 10px;
}
.product--detail .product__thumbnail.product__thumbnail[data-vertical=false] .product__gallery img {
    width: 100%}
.product--detail .tab-list {
    position: relative;
    display: block;
    margin: 0 0 30px;
    padding: 20px 0;
    text-align: center;
}
.product--detail .tab-list li {
    display: inline-block;
    margin-right: 30px;
}
.product--detail .tab-list li a {
    position: relative;
    padding: 10px 0;
    display: inline-block;
    line-height: 20px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    color: var(--color-text);
    border: 1px solid transparent;
    text-transform: uppercase;
}
.product--detail .tab-list li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d4b196;
    visibility: hidden;
    opacity: 0;
}
.product--detail .tab-list li a:hover {
    color: var(--color-heading);
}
.product--detail .tab-list li:last-child {
    margin-right: 0;
}
.product--detail .tab-list li.active a {
    color: #222;
}
.product--detail .tab-list li.active a:before {
    visibility: visible;
    opacity: 1;
}
.product--detail .product__content {
    padding-top: 50px;
}
@media (max-width:480px) {
    .product--detail .product__shopping figure {
    flex-flow: row wrap;
}
.product--detail .product__shopping figure .form-group--number {
    margin-right: 0;
    max-width: 100%;
    width: 100%}
.product--detail .product__shopping figure>* {
    margin-bottom: 10px;
}
}@media (min-width:768px) {
    .product--detail .product__thumbnail {
    max-width: 900px;
    margin-bottom:0px!important;
}
}@media (min-width:992px) {
    .product--detail .product__title {
    font-size: 30px;
}
.product--detail .product__desc p {
    font-size: 16px;
}
.product--detail .product__price {
    margin-bottom: 0px;
    font-size: 24px;
}
.product--detail .product__sharing {
    padding-top: 20px;
}
.product--detail .product__header {
    display: flex;
    flex-flow: row nowrap;
}
.product--detail .product__header>* {
    width: 100%;
    max-width: 50%}
.product--detail .product__header .product__thumbnail {
    padding-right: 0px;
}
.product--detail .product__content {
    padding-top: 50px;
}
}@media (min-width:1200px) {
    .product--detail .product__thumbnail {
    flex-flow: row-reverse nowrap;
    align-content: flex-start;
}
.product--detail .product__thumbnail figure {
    max-width: calc(100% - 80px);
    padding-left: 10px;
}
.product--detail .product__variants {
    max-width: 80px;
}
.product--detail .product__info {
    padding-left: 15px;
}
}.table--cart .form-group--number {
    max-width: 120px;
}
.table--cart .total {
    color: var(--color-text);
    font-size: 18px;
}
.table--cart .total strong {
    color: var(--color-heading);
    text-transform: uppercase;
}
.table--cart .total span {
    font-size: 15px;
    text-transform: capitalize;
}
.table--cart .total .total__price {
    font-size: 30px;
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.2em;
}
.table--cart .total .total__price span {
    display: block;
    font-size: 20px;
    font-weight: 600;
}
.table--cart thead tr th {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-bottom: 1px solid #e5e5e5;
}
.table--cart tbody tr td {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 20px;
    padding-bottom: 20px;
    vertical-align: middle;
}
.table--cart tbody tr td strong {
    font-weight: 600;
}
.table--cart tbody tr td:first-child {
    padding-left: 0;
}
.table--cart tbody tr td:last-child {
    padding-right: 0;
    text-align: center;
}
.table--cart tbody tr td:last-child button {
    background-color: transparent;
}
.table--orders thead tr th {
    border: none;
}
.table--orders tbody td {
    padding: 10px;
    vertical-align: middle;
}
.table--orders tbody td:first-child {
    padding-left: 0;
}
.table--orders tbody td:last-child {
    padding-right: 0;
    text-align: center;
}
.half-circle-spinner, .half-circle-spinner * {
    box-sizing: border-box;
}
.half-circle-spinner {
    width: 60px;
    height: 60px;
    margin: 20px auto;
    border-radius: 100%;
    position: relative;
}
.half-circle-spinner .circle {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 6px solid transparent;
}
.half-circle-spinner .circle.circle-1 {
    border-top-color: var(--color-1st);
    -webkit-animation: half-circle-spinner-animation 1s infinite;
    animation: half-circle-spinner-animation 1s infinite;
}
.half-circle-spinner .circle.circle-2 {
    border-bottom-color: var(--color-1st);
    -webkit-animation: half-circle-spinner-animation 1s infinite alternate;
    animation: half-circle-spinner-animation 1s infinite alternate;
}
@-webkit-keyframes half-circle-spinner-animation {
    0% {
    transform: rotate(0deg);
}
to {
    transform: rotate(1turn);
}
}@keyframes half-circle-spinner-animation {
    0% {
    transform: rotate(0deg);
}
to {
    transform: rotate(1turn);
}
}.tab {
    display: none;
}
.tab.active {
    display: block;
}
.cart--mini {
    display: flex;
    flex-direction: column;
}
.cart--mini, .cart--mini .cart__items {
    position: relative;
    flex: 1 1 auto;
}
.cart--mini .cart__items {
    border-bottom: none;
    overflow-y: auto;
}
.cart--mini .cart__items .product--on-cart {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1.5px dashed chocolate;
}
.cart--mini .cart__summary p {
    display: flex;
    flex-flow: row nowrap;
    font-size:18px;
    justify-content: space-between; 
}
.cart--mini .cart__summary p strong {
    color: var(--color-heading);
    font-weight: 600;
}
.cart--mini .cart__actions {
    padding: 0;
}
.cart--mini .cart__actions .btn--custom {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 0;
    text-transform: none;
}
.cart--mini .cart__footer {
    padding-top: 20px;
    border-top: 1px solid darkgrey;
}
.cart--mini figure .btn--black {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    min-height: 48px;
}
.form--subscribe {
    position: relative;
}
.form--subscribe input {
    height: 40px;
}
.form--subscribe button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: transparent;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-heading);
    height: 30px;
    padding: 0 20px;
}
.form--primary-search {
    position: relative;
}
.form--primary-search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: transparent;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-heading);
    height: 50px;
    padding: 0 15px;
    font-size:26px;
}
.form--contact {
    margin-bottom: 30px;
}
.form--contact .form-group {
    margin-bottom: 35px;
}
.form--contact .form__submit .btn--custom {
    min-width: 175px;
    text-align: center;
}
.form--auth .form__header {
    text-align: center;
    padding-bottom: 10px;
}
.form--auth .form__header h3 {
    font-size: 20px;
    text-transform: uppercase;
}
.form--auth .form__actions p a {
    color: var(--color-1st);
}
.form--auth .form__actions p a:hover {
    text-decoration: underline;
}
.form--auth .form__actions button {
    text-align: center;
    margin:auto;
}
@media screen and (min-width:992px) {
    .form--auth .form__header {
    padding-bottom: 20px;
}
.form--auth .form__header h3 {
    font-size: 30px;
}
.form--auth .form__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0px;
}
.form--auth .form__actions button {
    width: auto;
}
}.form--login .form__password {
    position: relative;
}
.form--login .form__password a {
    display: block;
    margin-top: 20px;
}
@media screen and (min-width:768px) {
    .form--login .form__password {
    position: relative;
}
.form--login .form__password a {
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
}.form--shopping-cart .form__section h4 {
    margin-bottom: 20px;
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1em;
    padding-bottom: 5px;
}
.form--shopping-cart .form__section h4:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: var(--color-heading);
}
.form--review-product .form__submit button {
    min-width: 175px;
}
.panel--search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height:80px;
    visibility: hidden;
    opacity: 0;
    transition-delay: 0;
    background-color: black;
    transition: all .25s cubic-bezier(.7, 0, .3, 1);
    transform-style: preserve-3d;
    border-bottom: 1px solid #d4b196;
}
.panel--search .panel__close {
    color:white;
    margin-left:auto;
    border-radius: 50%;
    align-items:center;
    z-index: 99;
    transition: all .4s ease;
}
.panel--search .container{align-items:center}
.panel--search .container img{width:175px;height:57.35px;}
.panel--search .panel__close:hover{color:chocolate;}
.panel--search .panel__close i {
    font-size: 30px;
}

.panel--search.act {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    vertical-align:middle;
}
.panel--search.act:before {
    transform: scaleX(1);
    transform-origin: 50% 0;
}
@media (max-width:479px) {
 
}.section .section__header h3 {
    font-size: 20px;
    text-transform: uppercase;
}
@media screen and (min-width:1200px) {
    .section .section__header h3 {
    font-size: 30px;
}
}.section--homepage {
    padding-top: 30px;
}
.section--homepage .section__header {
    text-align: center;padding-bottom:20px;
}
.bt1-burlywood{border-top:1px solid burlywood;}
.pt-25px{padding-top:25px!important;} .pb-25px{padding-bottom:25px!important;}
.pt-10px{padding-top:10px!important;} .pb-10px{padding-bottom:10px!important;}.mt-10px{margin-top:10px;}.mt-30px{margin-top:30px;}
.section--homepage .section__header h3 {
    margin-bottom: 0px;
    padding-bottom: 10px;
    font-size:  28px;
    font-weight:  600;
    text-transform:  uppercase;
    line-height:  1;
    letter-spacing:  0.02em;
    font-family:  Lato,  sans-serif;
}
.section--homepage .section__header p {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
@media screen and (min-width:992px) {
    .section--homepage {
    padding-top: 25px;
}
}@media screen and (min-width:1200px) {
    .section--homepage {
    padding-bottom: 25px;
}
}.home-collection .collection {
    margin-bottom: 32px;
}
.shop--sidebar {
    padding-top: 25px;
}
.shop--sidebar .shop__header {
    display: block;
    height: 40px;
}
.shop--sidebar .shop__header:after {
    clear: both;
}
.shop--sidebar .shop__header .panel-trigger {
    padding: 10px 30px;
}
.shop--sidebar .shop__left {
    display: none;
    margin-top: 20px;
}
.shop--sidebar .shop__left .widget--shop {
    margin-bottom: 20px;
    padding: 25px 20px;
    background-color: #f5f5f5;
}
.shop--sidebar .shop__sort {
    display: none;
}
.shop--sidebar .shop__sort .form-group--inline {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.shop--sidebar .shop__sort .form-group--inline label {
    min-width: 60px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
}
.shop--sidebar .shop__sort .form-group--inline .form-control {
    height: 40px;
    padding: 0 30px;
    border-radius: 50px;
    border-color: var(--color-heading);
}
@media screen and (min-width:992px) {
    .shop--sidebar .shop__left {
    padding-right: 0px;
}
.shop--sidebar .shop__sort {
    display: block;
    float: right;
}
}@media screen and (min-width:1200px) {
    .shop--sidebar {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 0px;
}
.shop--sidebar .shop__left {
    max-width: 300px;
    display: block;
    margin-right: 30px;
    margin-top: 0px;
}
.shop--sidebar .shop__content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
.shop--sidebar .shop__content>* {
    flex-basis: 100%}
}.section--blog {
    padding: 30px 0;
}
.section--blog .section__header {
    text-align: center;
    padding-bottom: 30px;
}
.section--blog .section__header h1 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-heading);
}
.section--blog .section__content .post {
    margin-bottom: 30px;
}
.section--blog .section__footer {
    padding-top: 30px;
}
@media screen and (min-width:1200px) {
    .section--blog {
    padding: 30px 0 60px;
}
.section--blog .section__header {
    padding-bottom: 30px;
}
}.section--related-posts {
    padding-top: 0px;
    text-align:center;
}
.section--related-posts .post {
    margin-bottom: 30px;
}
.section--related-posts .section__header {
    padding-bottom: 0px;
}
.section--related-posts .section__header h3 {
    font-size:  calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    text-transform: capitalize;
    color: #222;
}
@media screen and (min-width:992px) {
    .section--related-posts .post {
    margin-bottom: 0;
}
}.section--auth .form--auth {
    max-width: 600px;
    margin: 0 auto 100px;
    padding: 30px;
    background-color: #f7f7f7;
}
.section--auth .form--auth .form-control, .section--auth .form--auth button.btn--custom.btn--outline {
    background-color: #fff;
}
.section--shopping-cart .section__header {
    text-align: center;
    padding-bottom: 20px;
}
@media screen and (min-width:992px) {
    .section--shopping-cart .section__header {
    padding-bottom: 40px;
}
}.home-blog {
    margin-bottom: 60px;
}
@media screen and (max-width:1199px) {
    .home-blog .post {
    margin-bottom: 30px;
}
}.page--blog{
    padding: 30px 0;
}
@media screen and (min-width:768px) {
    .page--blog, .page--inner {
    padding: 30px 0 50px;
}
}@media screen and (min-width:1200px) {
    .page--blog, .page--inner {
    padding: 25px 0 50px;
}
}.page--shop {
    padding-bottom: 50px;
}
.page--shop .page__hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    text-transform: uppercase;
}
.page--shop .page__hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, .25);
}
.page--shop .page__hero h1 {
    position: relative;
    z-index: 10;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
}
@media screen and (min-width:768px) {
    .page--shop .page__hero h1 {
    font-size: 30px;
}
}@media screen and (min-width:992px) {
    .page--shop .page__hero h1 {
    font-size: 36px;
}
}@media screen and (min-width:1200px) {
    .page--shop {
    padding-bottom: 90px;
}
.page--shop .page__hero h1 {
    font-size: 48px;
}
}.page--product--detail .product--detail {
    margin-bottom: 50px;
}
.sub-toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transform-style: preserve-3d;
}
.sub-toggle:after, .sub-toggle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background-color: var(--color-heading);
}
.sub-toggle:before {
    transform: translateX(-50%);
}
.sub-toggle:after {
    transform: translateX(-50%) rotate(90deg);
}
.sub-toggle.active:after {
    display: none;
}
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    z-index: 1000;
    transition: all .25s ease;
    border: 1px solid #eee;
    background-color: hsla(0, 0%, 100%, .95);
    visibility: hidden;
    opacity: 0;
}
.sub-menu:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    display: none;
}
.sub-menu>li {
    display: block;
}
.sub-menu>li>a {
    display: inline-block;
    padding: 10px 20px;
    width: 100%;
    font-size: 15px;
    color: var(--color-text);
    text-transform: capitalize;
    transition: all .8s cubic-bezier(.19, 1, .22, 1);
}
.sub-menu>li>a:hover {
    color: var(--color-1st);
}
.sub-menu>li:last-child a {
    border-bottom: 1px solid #eee;
}
.sub-menu>li.menu-item-has-children {
    position: relative;
}
.sub-menu>li.menu-item-has-children>.sub-toggle {
    display: none;
}
.sub-menu>li.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.sub-menu>li.menu-item-has-children>.sub-menu:before {
    display: none;
}
.sub-menu>li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.sub-menu>li:last-child {
    border-bottom: none;
}
.menu>li {
    padding-right: 20px;
}
.menu>li, .menu>li>a {
    display: inline-block;
}
.menu>li>a {
    display:block;
    position: relative;
    padding: 30px 0;
    font-size: 17px;
    font-family: Lato;
    letter-spacing:  0.07em;
    font-weight: 400;
    line-height: 23px;
    color: white;
    text-transform: uppercase;
    transform-style: preserve-3d;
}
.menu>li>a:hover {
    color: #d4b196;
}
.menu>li:first-child {
    padding-left: 0;
}
.menu>li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.menu>li .sub-toggle {
    display: none;
}
.menu>li.menu-item-has-children {
    position: relative;
}
.menu>li.menu-item-has-children .sub-toggle {
    margin-left: 5px;
    display: none;
}
.menu>li.menu-item-has-children .sub-menu {
    visibility: hidden;
    opacity: 0;
    transform: scaleZ(0) translateY(30px);
}
.menu>li.menu-item-has-children:hover .sub-toggle {
    color: #fff;
}
.menu>li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1) translateY(0);
}
.menu>li.current-menu-item>a {
    color: var(--color-1st);
}
.menu>li.current-menu-item .sub-toggle {
    color: #fff;
}
@media (max-width:1199px) {
    .menu>li {
    display: block;
    padding-right: 0;
    /*border-bottom: 1px dashed #e4e4e4;*/
}
.menu>li>a {
    display: block;
    color: var(--color-heading);
    font-size: 1.5rem;
    padding: 0.5rem 0;
    line-height: 20px;
}
.menu>li.menu-item-has-children {
    position: relative;
}
.menu>li.menu-item-has-children>.sub-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    transition: all 0s ease;
}
.menu>li.menu-item-has-children>.sub-menu>.menu-item-has-children>.sub-toggle {
    height: 40px;
    width: 40px;
}
.menu>li.menu-item-has-children .sub-toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    height: 30px;
    width: 30px;
    margin-left: 0;
}
.menu>li.menu-item-has-children .sub-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menu>li.current-menu-item {
    border-left: 2px solid var(--color-1st);
    padding-left: 1rem;
}
.menu>li.current-menu-item>a:before {
    display: none;
}
}.menu--mobile {
    width: 100%}
.menu--mobile .sub-menu {
    position: relative;
    display: none;
    transform: translate(0);
    visibility: visible;
    opacity: 1;
    transition: all 0s ease;
    border: none;
}
.menu--mobile .sub-menu>li>a {
    border: none;
    padding: 10px 20px;
}
.menu--mobile .sub-toggle:after, .menu--mobile .sub-toggle:before {
    background-color: var(--color-text);
}
.menu--mobile>li {
    padding-left: 1rem!important;
}
.menu--mobile>li>a {
    font-size: 20px;
    position: relative;
    z-index: 10;
    display: block;
    line-height: 20px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.menu--mobile>li.menu-item-has-children:not(.has-mega-menu) {
    position: relative;
}
.menu--mobile>li.menu-item-has-children:not(.has-mega-menu) .sub-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 20;
    display: inline-block;
}
.navigation>.container {
    flex-flow: row nowrap;
}
.navigation--mobile, .navigation>.container {
    display: flex;
    justify-content:  space-between;
    align-items: center;
}
.navigation--mobile {
    padding: 10px 10px;
    background-color:  #0f172a;
    border-bottom:  1px solid burlywood;
    /*position: fixed;*/
    width: 100%;
    z-index: 9;
    top: 0;
    height:50px;
}
@media screen and (min-width:1200px) {
    .navigation--mobile {
    display: none;
}
}.header {
    display: none;
}
.header .btn-shopping-cart {
    position: relative;
}
.header .btn-shopping-cart>span {
    position: absolute;
    top: 3px;
    left: 7px;
    transform: translate(25%, 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 27px;
    height: 26px;
    background-color: red;
    border-radius: 20px;
    font-size: 14px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    color: #fff;
}
.header .header__actions {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    gap:  20px;
    color: white;
}
.header .header__actions>* {
    display:  flex;
    justify-content:  center;
    align-items:  center;
    /*width:  36px;*/
    position:  relative;
    /*padding-top:  40px;*/
    /*padding-bottom:  40px;*/
    /*height:  36px;*/
    font-family:  Lato,  sans-serif;
}
.header .header__actions>* i {
    font-size: 28px;
    cursor:pointer;
    color:#d4b196;
}
@media screen and (min-width:1200px) {
    .header {
    display: block;
}
}.header--mobile .logo {
    font-size: 20px;
}
@media screen and (max-width:1199px) {
    .header--mobile {
    display: block;
}
}.site-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: 100vh;
    background-color: rgba(0, 0, 0, .85);
    transition: all .4s ease;
    visibility: hidden;
    opacity: 0;
}
.site-mask.active {
    visibility: visible;
    opacity: 1;
}
.site-mask.act {
    visibility: visible;
    opacity: 1;
}
.site-mask.active form{display:none;}
.footer {
    padding: 45px 0;
    background-color: #f9f9f9;
}
.footer .widget--footer {
    margin-bottom: 20px;
}
@media screen and (min-width:1200px) {
    .footer .widget--footer {
    margin-bottom: 40px;
}
.footer .widget--footer:last-child {
    margin-bottom: 0;
}
}.mb-0 {
    margin-bottom: 0;
}
.mr-5 {
    margin-right: 5px;
}
.bg--cover {
    background-position: 50% 50%!important;
    background-size: cover!important;
}
.header ul, .panel--sidebar ul, .product--detail .product__color ul, .product ul, .shop--sidebar .shop__left ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
@-webkit-keyframes fadeInRight {
    0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}@keyframes fadeInRight {
    0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}@-webkit-keyframes fadeInLeft {
    0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}@keyframes fadeInLeft {
    0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}@-webkit-keyframes fadeInUp {
    0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}@keyframes fadeInUp {
    0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}@-webkit-keyframes fadeInDown {
    0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}@keyframes fadeInDown {
    0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}
to {
    opacity: 1;
    transform: translateZ(0);
}
}.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeOutLeft {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}
}@keyframes fadeOutLeft {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}
}@-webkit-keyframes fadeOutRight {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}
}@keyframes fadeOutRight {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}
}@-webkit-keyframes fadeOutDown {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}
}@keyframes fadeOutDown {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}
}@-webkit-keyframes fadeOutUp {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}
}@keyframes fadeOutUp {
    0% {
    opacity: 1;
}
to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}
}@-webkit-keyframes slideInLeft {
    0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@keyframes slideInLeft {
    0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@-webkit-keyframes slideInRight {
    0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@keyframes slideInRight {
    0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@-webkit-keyframes slideInUp {
    0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@keyframes slideInUp {
    0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@-webkit-keyframes slideInDown {
    0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@keyframes slideInDown {
    0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
}
to {
    transform: translateZ(0);
}
}@-webkit-keyframes zoomIn {
    0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
}
50% {
    opacity: 1;
}
}@keyframes zoomIn {
    0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
}
50% {
    opacity: 1;
}
}@-webkit-keyframes zoomOut {
    0% {
    opacity: 1;
}
50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
}
to {
    opacity: 0;
}
}@keyframes zoomOut {
    0% {
    opacity: 1;
}
50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
}
to {
    opacity: 0;
}
}p:empty {
    margin-bottom: 0;
}
.required:after {
    content: " *";
    color: red;
}
.product-attributes ul {
    padding-left: 0;
    list-style: none;
}
.product--detail .product__price.sale del {
    font-size: 18px;
}
.widget--tags .list--tags li.active a {
    color: var(--color-1st);
    border-color: var(--color-1st);
}
.widget__links li.active a {
    color: var(--color-1st);
}
.block--review .block__content {
    padding-top: 0;
}
.block--review .block__header {
    align-items: start;
}
.block--product-reviews>.block__header p i {
    margin-right: 0;
}
.block--product-reviews>.block__header p span {
    margin-left: .5em;
}
.star-yellow {
    color: #edb867;
}
.product {
   width: 100%;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}
.product .product__wrapper {
    transition: all .3s ease-in-out;
    /*box-shadow: 0 0 7px rgba(0, 0, 0, .1);*/
    background-color:white;
}
.product .product__wrapper .product__content {
    padding: 7.5px;
    background-color: white;

}
.product .product__wrapper .r56 {
    padding: 5px 8px 5px 8px;
    background-color: white;
}
.product .product__thumbnail .product__variants {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}
.product .product__thumbnail .product__variants .custom-checkbox span {
    width: 20px;
    height: 20px;
    border-radius: 0;
    border: 1px solid #f2f2f2;
}
.single-variation-wrap .error-message, .single-variation-wrap .success-message {
    margin-top: 10px;
}
body .cookie-consent .cookie-consent-body {
    max-width: 1200px;
    text-align: center;
}
.panel--sidebar .panel__content {
    overflow-y: scroll;
}
.panel--sidebar .panel__content.panel__scroll {
    flex: none;
    display: block;
}
.ps-slider__value {
    margin-top: 10px;
    display: inline-block;
}
.product--detail .product__attribute .text-swatch li, .widget--shop .widget-content .text-swatch li {
    display: inline-block;
    margin-right: 5px;
}
.product--detail .product__attribute .text-swatch li input[type=checkbox], .product--detail .product__attribute .text-swatch li input[type=radio], .widget--shop .widget-content .text-swatch li input[type=checkbox], .widget--shop .widget-content .text-swatch li input[type=radio] {
    display: none;
}
.product--detail .product__attribute .text-swatch li input[type=checkbox]:checked~span,  .widget--shop .widget-content .text-swatch li input[type=checkbox]:checked~span, .widget--shop .widget-content .text-swatch li input[type=radio]:checked~span {
    border: 1px solid var(--color-1st);
}
.product--detail .product__attribute .text-swatch li input[type=checkbox]:checked~span:after, .product--detail .product__attribute .text-swatch li input[type=radio]:checked~span:after, .widget--shop .widget-content .text-swatch li input[type=checkbox]:checked~span:after, .widget--shop .widget-content .text-swatch li input[type=radio]:checked~span:after {
    width: 16px;
    height: 16px;
    content: "";
    font-family: feather!important;
    position: absolute;
    overflow: hidden;
    right: -8px;
    bottom: -5px;
    color: #fff;
    font-size: 8px;
}
.product--detail .product__attribute .text-swatch li input[type=checkbox]:checked~span:before, .widget--shop .widget-content .text-swatch li input[type=checkbox]:checked~span:before, .widget--shop .widget-content .text-swatch li input[type=radio]:checked~span:before {
    border: 16px solid transparent;
    border-bottom: 16px solid var(--color-1st);
    content: "";
    position: absolute;
    right: -16px;
    bottom: -1px;
}
.product--detail .product__attribute .text-swatch li span, .widget--shop .widget-content .text-swatch li span {
    padding:5px 29px;
    border: 1px solid black;
    border-radius:  25px;
    cursor: pointer;
    transition: .2s;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.widget--shop .widget-content .text-swatch li span {
    background: #fff;
}
.slider__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: table;
}
.slider__content .slider__content__wrapper {
    display: table-cell;
    vertical-align: middle;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content {
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    max-width: 50%}
.slider__content .slider__content__wrapper .slider__content__wrapper__content p {
    margin-bottom: 30px;
    color: #fff;
    line-height: 28px;
    max-width: 50%;
    font-size: 16px;
}
.widget-filter-item {
    padding: 20px 0;
    border-top: 1px solid #ccc;
}
.nonlinear-wrapper {
    padding-bottom: 20px;
}
.panel__content .widget--shop {
    margin-bottom: 20px;
}
@media screen and (max-width:1024px) {
    .slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content p {
    margin-bottom: 10px;
    line-height: 24px;
}
.slider__content .slider__content__wrapper .slider__content__wrapper__content .btn--custom, .slider__content .slider__content__wrapper .slider__content__wrapper__content button.btn--custom {
    padding: 10px 20px;
    font-size: 14px;
}
}.fb-customerchat, .fb_dialog {
    z-index: 9999!important;
}
.banner-effect {
    position: relative;
    overflow: hidden;
    display: block;
}
.banner-effect:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .3));
    transform: skewX(-25deg);
}
.banner-effect:hover:before {
    -webkit-animation: shine 1.1s;
    animation: shine 1.1s;
}
@-webkit-keyframes shine {
    to {
    left: 125%}
}@keyframes shine {
    to {
    left: 125%}
}@media screen and (max-width:768px) {
    .slider__content .slider__content__wrapper .slider__content__wrapper__content {
    display: none;
}
}.ps-block--feature {
    display: flex;
    flex-flow: row nowrap;
    max-width: 260px;
}
.ps-block--feature>* {
    width: 100%}
.ps-block--feature>.ps-block__left {
    max-width: 55px;
}
.ps-block--feature>.ps-block__left i {
    color: var(--color-text);
    font-size: 3.5rem;
    font-weight:  600;
}
.ps-block--feature>.ps-block__right p {
    font-size: 1.7rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4em;
    color: var(--color-heading);
}
.ps-block--feature>.ps-block__right small {
    display: block;
    font-size: 1.6rem;
    color: var(--color-text);
}
@media (max-width:991px) {
    .ps-block--feature {
    margin: 0 auto 3rem;
}
}@media (max-width:767px) {
    .ps-block--feature {
    max-width: 100%}
}.ps-block--features {
    padding: 4rem 0;
}
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input {
    -moz-appearance: textfield;
}
.show-admin-bar #alert-container {
    top: 100px;
}
.show-admin-bar .panel--search {
    top: 40px;
}
.show-admin-bar #avatar-modal {
    top: 80px;
}
.form--contact .form__submit .btn--custom.button-loading {
    background-color: var(--color-1st)!important;
}
.rating_wrap .rating {
    font-family: feather!important;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    height: 20px;
    width: 80px;
    display: inline-block;
}
.rating_wrap .rating:before {
    font-size: 14px;
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    float: left;
    color: #d2d2d2;
    letter-spacing: 2px;
}
.rating_wrap .rating_num {
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    color: #696969;
}
.rating_wrap .product_rate {
    overflow: hidden;
    font-family: feather!important;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    color: #edb867;
}
.rating_wrap .product_rate:before {
    font-size: 14px;
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    letter-spacing: 2px;
}
.error-inner {
    min-height: calc(100vh - 385px);
}
.show-admin-bar .error-inner {
    min-height: calc(100vh - 425px);
}
.top-header {
    padding: 10px 0;
    transition: all .5s ease-in-out;
    background-color: pink;
}
.top-header, .top-header a {
    color: #222;
    font-size: 16px;
}
.top-header a:hover {
    color: var(--color-1st);
}
.top-header .choose-currency .active {
    color: var(--color-1st);
    font-weight: 700;
}
.mr-3, .mx-3 {
    margin-right: 1rem!important;
}
.contact-detail li {
    display: inline-block;
    margin-right: 0px;
}
.header_list>li {
    color: #333;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 15px 2px 0;
}
.header_list>li:last-child {
    padding-right: 0;
}
.header_list>li i {
    vertical-align: middle;
}
.slider__content {
    background: rgba(0, 0, 0, .2);
}
.customer-page .profile-sidebar .profile-usermenu li.list-group-item a.active {
}
.tracking-form {
    padding: 30px;
    background-color: #f7f7f7;
    max-width: 500px;
    margin: 15px auto 30px;
}
.tracking-form .btn--custom.btn--outline, .tracking-form .form-control, .tracking-form button.btn--custom.btn--outline {
    background-color: #fff;
}
.tracking-form .btn--custom:active, .tracking-form .btn--custom:hover, .tracking-form button.btn--custom:active, .tracking-form button.btn--custom:hover {
    color: #fff;
    background-color: var(--color-1st);
}
.customer-information-box {
    text-align: right;
}
@media (max-width:767px) {
    .customer-information-box {
    text-align: left;
}
}#remove-item-modal {
    z-index: 99999999;
}
#alert-container {
    top: 60px;
    right: 5px;
    position: fixed;
    z-index: 9999999;
}
#alert-container .alert {
    max-width: 450px!important;
    min-height: 45px!important;
    font-weight: 400;
    position: relative;
    padding: 15px 40px 15px 60px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px 0 rgba(3, 3, 3, .1);
}
#alert-container .alert.alert-success {
    color: #299c77;
    background-color: #bff9d0;
}
#alert-container .alert .message-icon {
    position: absolute;
    left: 5%;
    top: 30%;
    font-size: 20px;
    fill: #299c77;
    stroke: #299c77;
}
#alert-container .alert.alert-dismissible .close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 10px;
    padding: 0;
}
.ps-pagination {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.ps-pagination a {
    cursor: pointer;
}
.ps-checkbox {
    position: relative;
    display: block;
}
.ps-checkbox>input {
    position: absolute;
    visibility: hidden;
    box-sizing: border-box;
}
.ps-checkbox label {
    margin-bottom: 0;
    position: relative;
    padding-left: 30px;
    font-weight: 400;
    cursor: pointer;
}
.ps-checkbox label:before {
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #000;
}
.ps-checkbox label:after, .ps-checkbox label:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    transition: all .4s ease;
}
.ps-checkbox label:after {
    top: 4px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    opacity: 0;
    transform: rotate(0deg);
}
.ps-checkbox input[type=checkbox]:checked~label:before {
    background-color: #222;
    border-color: #222;
}
.ps-checkbox input[type=checkbox]:checked~label:after {
    transform: rotate(45deg);
    opacity: 1;
}
.avatar-view.mt-card-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
.section--auth a {
    color: var(--color-1st);
}
.called{padding: 10px;border: 2px solid #ddd;top: 20px;border-radius: 5px;}.called:hover{background-color: darkgray;color: #fff;} .bad{
    margin-top: -40px; color:white;font-size: 10px;font-family: 'Philosopher', sans-serif; font-weight: 200;
}
.gol{
    margin-top: -0px;text-align: center; color:white;font-family: 'Cinzel', serif;
}
  .card441{
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    transition: all .2s linear;
  }
  
  img{, 
    width: 100%;
    transition: all .2s linear;
  }
  
  .card-content{
    position: absolute;
    bottom: 3rem;
    right: 100%;
    width: 100%;
    text-align: center;
    background-color: rgba(255,255,255,.7);
    transition: all .2s linear;
  }
  
  
  
  .card-category{
    font-size: 22px;
    line-height: 20px;
    letter-spacing: 2px;
    margin: 15px;
    color: #000;
  }
  
 
  
  .card441:hover{
      box-shadow: 0 0px 28px rgba(0,0,0,0.25), 0 4px 10px rgba(0,0,0,0.22)
  }
  
.card-content{
    right: 0; 
  }
  
  .card441:hover img{
    transform: scale(1.1);
  }
      .cards-wrapper {
        position: relative;
        height: 100%;
        list-style: none;
        margin: 0;
        padding: 0 0%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .card-wrapper {
        display: block;
        float: left;
        position: relative;
        margin: 0;
        width: 33%;
        height: 0;
        padding: 0 0 35%;
        perspective: 700px;
      }
      .card-object {
        color: #FFF;
        display: block;
        float: left;
        position: absolute;
        top: 6%;
        left: 6%;
        width: 88%;
        height: 88%;
        transform-style: preserve-3d;
      }
      .card-object.card-1 .front {
        background: #222 url(http://localhost/img/product_images/home/mohammad-faruque-0ZYPu-nLOwU-unsplash.jpg) 90% 35%;
        background-size: 115%;
      }
      .card-object.card-1 .back .img-wrapper {
        background: transparent url(http://localhost/img/product_images/home/mohammad-faruque-0ZYPu-nLOwU-unsplash.jpg) 70% 45%;
        background-size: 160%;
      }
      .card-object.card-1 .back .avatar {
        background: transparent url(http://localhost/img/product_images/home/mohammad-faruque-0ZYPu-nLOwU-unsplash.jpg) 40% 20%;
        background-size: 130% 130%;
      }
      .card-object.card-2 .front {
        background: #222 url(http://localhost/img/product_images/home/mubariz-mehdizadeh-o-wlIFT4zE4-unsplash.jpg) 50% 90% no-repeat;
        background-size: 105%;
      }
      .card-object.card-2 .back .img-wrapper {
        background: transparent url(http://localhost/img/product_images/home/mohammad-faruque-0ZYPu-nLOwU-unsplash.jpg) 70% 50%;
        background-size: 140%;
      }
      .card-object.card-2 .back .avatar {
        background: transparent url(http://localhost/img/product_images/home/mohammad-faruque-0ZYPu-nLOwU-unsplash.jpg) 50% 50% no-repeat;
        background-size: 140% 140%;
      }
      .card-object.card-3 .front {
        background: #222 url(http://localhost/img/product_images/home/ivan-dodig-R21SyyJDFgc-unsplash.jpg) 80% 100% no-repeat;
        background-size: 108%;
      }
      .card-object.card-3 .back .img-wrapper {
        background: transparent url(http://localhost/img/product_images/home/mohammad-faruque-0ZYPu-nLOwU-unsplash.jpg) 90% 40% no-repeat;
        background-size: 115%;
      }
      .card-object.card-3 .back .avatar {
        background: #fff url(http://localhost/img/product_images/home/mohammad-faruque-0ZYPu-nLOwU-unsplash.jpg) 0 50% no-repeat;
        background-size: 120% 120%;
      }
      .card-object.flip-in.card-1,
      .card-object.flip-in.card-3 {
        -webkit-animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
                animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
      }
      .card-object.flip-in.card-2 {
        -webkit-animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
                animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
      }
      .card-object.flip-out.card-1,
      .card-object.flip-out.card-3 {
        animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) reverse both;
      }
      .card-object.flip-out.card-2 {
        animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) reverse both;
      }
      .card-object-hf .back {
        transform: rotateX(180deg);
      }
      .face {
        color: #fff;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex-wrap: wrap;
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
      }
      .face.front {
        z-index: 20;
        overflow: hidden;
        background-repeat: no-repeat;
        background-position: 50% 50%;
      }
      .face.front::before {
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        left: -1px;
        content: "";
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%) no-repeat;
        opacity: 0.7;
        z-index: 20;
        transition: opacity 0.2s ease;
      }
      .face.front::after {
        position: absolute;
        top: 7%;
        right: 7%;
        bottom: 7%;
        left: 7%;
        border: 1px solid rgba(255, 255, 255, 0.35);
        z-index: 100;
        content: "";
      }
      .face.front .title-wrapper {
        position: absolute;
        bottom: 3%;
        left: 25%;
        right: 25%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        z-index: 100;
        transform: translateY(0);
        transition: transform 0.28s ease;
      }
      .face.front .title-wrapper .title {
        position: relative;
        font-family: 'Archivo Black', sans-serif;
        width: 100%;
        text-transform: uppercase;
        font-size: 2vw;
        line-height: 1;
        opacity: 0.8;
        transition: opacity 0.2s ease;
      }
      .face.front .title-wrapper .title::after {
        display: block;
        margin: 7% auto 8% auto;
        width: 100%;
        height: 1px;
        content: "";
        background-color: #fff;
        opacity: 0.5;
        transform: scale(0);
        transition: transform 0.15s;
      }
      .face.front .title-wrapper .subtitle {
        font-size: 0.9vw;
        line-height: 1;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: 0;
        transition: opacity 0.15s;
      }
      .face.front:hover::before {
        opacity: 0.9;
      }
      .face.front:hover .title-wrapper {
        transform: translateY(-50%);
      }
      .face.front:hover .title-wrapper .title {
        opacity: 1;
      }
      .face.front:hover .title-wrapper .title::after {
        transform: scale(1);
        opacity: 0.5;
        transition-delay: 0.15s;
        transition-duration: 0.2s;
      }
      .face.front:hover .title-wrapper .subtitle {
        opacity: 0.7;
        transition-delay: 0.2s;
        transition-duration: 0.2s;
      }
      .face.back {
        color: #222;
        background: #fff;
        z-index: 10;
      }
      .info-container {
        position: absolute;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: flex-start;
        top: 6%;
        right: 6%;
        bottom: 6%;
        left: 6%;
        padding: 0;
      }
      .img-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 38%;
        z-index: 10;
      }
      .img-wrapper::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: transparent;
        opacity: 0.7;
      }
      .avatar {
        position: absolute;
        left: 50%;
        height: 68%;
        width: 25.84%;
        display: block;
        border-radius: 50%;
        margin-top: 25.08%;
        margin-left: -12.92%;
        background-color: #fff;
        border: 3px solid #FFF;
        z-index: 20;
      }
      .info-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: absolute;
        top: 50.92%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 4% 15% 15%;
      }
      .info-title {
        font-size: 1.5vw;
        font-family: 'Archivo Black', sans-serif;
        text-align: left;
        padding: 0;
        margin: 0;
        text-align: center;
        display: block;
        width: 100%;
      }
      .info-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 8% 0 0;
        margin: 8% 0 0;
        border-top: 1px solid #e0e0e0;
      }
      .info-content-item {
        color: #222;
        font-size: 0.75vw;
        line-height: 1;
        text-align: center;
        display: inline-block;
        padding: 0;
        margin: 0;
        text-transform: uppercase;
        color: #aaa;
      }
      .info-content-item span {
        display: block;
        font-weight: bold;
        font-size: 1.1vw;
        margin-top: 7px;
        text-transform: none;
        color: #222;
      }
      .info {
        position: absolute;
        bottom: 30px;
        left: 5%;
        right: 5%;
        font-size: 1em;
        text-align: center;
        display: none;
      }
      .info a {
        color: #8c0f8c;
        text-decoration: none;
      }
      .info a:hover {
        text-decoration: underline;
      }
      /* ----------------------------------------------
       * Generated by Animista on 2017-21-5 2:48:23
       * w: http://animista.net, t: @cssanimista
       * ---------------------------------------------- */
      /**
       * ----------------------------------------
       * animation flip-2-hor-top-fwd
       * ----------------------------------------
       */
      @-webkit-keyframes flip-2-hor-top-fwd {
        0% {
          transform: translateY(0) translateZ(0) rotateX(0);
          transform-origin: 50% 0%;
        }
        100% {
          transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
          transform-origin: 50% 100%;
        }
      }
      @keyframes flip-2-hor-top-fwd {
        0% {
          transform: translateY(0) translateZ(0) rotateX(0);
          transform-origin: 50% 0%;
        }
        100% {
          transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
          transform-origin: 50% 100%;
        }
      }
      /**
       * ----------------------------------------
       * animation flip-2-hor-bottom-fwd
       * ----------------------------------------
       */
      @-webkit-keyframes flip-2-hor-bottom-fwd {
        0% {
          transform: translateY(0) translateZ(0) rotateX(0);
          transform-origin: 50% 100%;
        }
        100% {
          transform: translateY(100%) translateZ(100px) rotateX(180deg);
          transform-origin: 50% 0%;
        }
      }
      @keyframes flip-2-hor-bottom-fwd {
        0% {
          transform: translateY(0) translateZ(0) rotateX(0);
          transform-origin: 50% 100%;
        }
        100% {
          transform: translateY(100%) translateZ(100px) rotateX(180deg);
          transform-origin: 50% 0%;
        }
      }

.profile-sidebar{
    height:auto!important;
    position: sticky;
    top: 110px;
    z-index: 1;
}
img {
  height: 100%;
  max-width: 100%;
}

.site__wrapper {
  max-width: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.site__info {
  clear: both;
  display: block;
  font-variant: small-caps;
  letter-spacing: 2px;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  text-align: center;
}

.grid {
  float: none;
  width: 100%;
  padding-left: 0.2em;
  padding-right: 0.2em;
  padding-bottom: 0.4em;
}
@media screen and (min-width: 40.063em) {
  .grid {
    float: left;
    width: 33.333%;
  }
}

.card__image {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  min-height: 240px;
  overflow: hidden;
  position: relative;
}
.card__image > img {
  display: block;
  margin-bottom: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.card__image:hover > img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.card__title {
  color: white;
  display: inline-block;
  font-family: "Montserrat";
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.card__title:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.card__overlay {
  content: "";
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.card__overlay--indigo {
  background-image: linear-gradient(to bottom, rgba(92, 107, 192, 0.1), rgba(92, 107, 192, 0.8));
  z-index: 2;
}

.card__overlay--blue {
  background-image: linear-gradient(to bottom, rgba(41, 182, 246, 0.1), rgba(41, 182, 246, 0.8));
  z-index: 2;
}

.card__overlay-content {
  position: absolute;
  bottom: 0;
  padding: 1.5em;
  z-index: 3;
}

.card__meta {
  margin: 0;
  margin-right: -1em;
  margin-bottom: 0.75em;
}
.card__meta.card__meta--last {
  margin-bottom: 0;
}
.card__meta li {
  color: #f8f8f8;
  display: inline;
  list-style-type: none;
  margin-bottom: 0;
  padding-right: 1em;
  font-size: 0.85em;
  font-variant: small-caps;
  letter-spacing: 1px;
}
.card__meta li:not(:last-child):after {
  content: "●";
  font-style: normal;
  position: relative;
  color: rgba(255, 255, 255, 0.25);
  right: -0.6em;
}
.card__meta li > a {
  color: #f8f8f8;
}



.category-bg {
  padding: 0px;
  position: relative;
  z-index: 1;}
  
  @media (max-width: 767px){
.category-bg {
  padding: 30px 40px;
}}

.p-0 {
  padding: 0 !important;
}

.container-fluid{
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}


  @media (min-width: 576px){
.col-sm-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66667%;
}}

.a{
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  text-decoration: none;
  color: #0d6efd;
}

.category-bg .image-block:after {
  content: "";
  position: absolute;
  background-color: #d4b196;
  height: 0;
  width: 40px;
  z-index: 1;
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  margin-top: -40px;
}

.video {
  object-fit: contain;
  overflow-clip-margin: content-box;
  overflow: clip;
}

@media (min-width: 576px){
.col-sm-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333%;
}}

.category-bg .contain-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background-color: #ddd;
}

.category-bg .contain-block h6 {
  color: #d4b196;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1;
  margin-bottom: 0;
}
.h6 {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 24px;
  margin-top: 0;
}

@media (max-width: 1367px){
.category-bg .contain-block .category-btn {
  margin-bottom: 20px;
  margin-top: 20px;
}}
.category-bg .contain-block .category-btn {
  letter-spacing: 0.07em;
  margin-bottom: 25px;
  margin-top: 25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-solid {
      padding: 13px 15px!important;
    /*color: #d4b196!important;*/
    letter-spacing: 0.05em!important;
    /*border: 1px solid #2d2a25!important;*/
    /* background-image: linear-gradient(30deg, #d4b196 50%, transparent 50%); */
    /*background-color: #2d2a25!important;*/
    background-size: 850px!important;
    background-repeat: no-repeat!important;
    background-position: 0!important;
    -webkit-transition: background 300ms ease-in-out!important;
     transition: background 300ms ease-in-out, border-color 300ms ease-in-out !important;
    box-shadow: 0px 1.5px 9px black;
    color: BURLYWOOD!important;
    background-color: #0f172a!IMPORTANT;
    border: 1px solid #0f172a!important;
}
.btn-solid:hover {
    background-position: 100%!important;
    border: 1px solid burlywood!important;
    color: #0f172a!important;
    background-color: burlywood!important;
}
.btn {
  line-height: 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn {
  display: inline-block;
  font-weight: 600;
  font-family:Lato,sans-serif;
  line-height: 20px;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 17px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
}

@media (max-width: 1367px){
.category-bg .contain-block.even:after {
  top: 91%;
}}
.category-bg .contain-block.even:after {
  top: 94%;
}
@media (max-width: 1367px){
.category-bg .contain-block:after {
  bottom: 91%;
}}
.category-bg .contain-block:after {
  content: "";
  position: absolute;
  background-color: #d4b196;
  height: 0;
  width: 40px;
  z-index: 1;
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  bottom: 94%;
}

.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}
.blur-up {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms;
}

.category-bg:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #d4b196;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  z-index: -1;
}     
.banner-timer .banner-text {
  padding-top: 45px;
  padding-bottom: 45px;
}
.banner-timer .banner-text h2 {
  font-size: 28px;
  color: #222;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.banner-timer .banner-text h2 span {
  color: grey;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
.cta-area {
  background-image: url(http://localhost/img/product_images/home/ryan-moreno-CAQV_lXm_iw-unsplash.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.pb-80 {
  padding-bottom: 130px;
}
.pt-80 {
  padding-top: 130px;
}
.pt-8px{padding-top: 8px;}
.cta-area::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  z-index: -1;
}
.cta-text h1 {
  color: #fff;
  font-size: 53px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.cta-text span {
  color: #00CDE5;
}
.cta-text p {
  color: #fff;
  margin-bottom: 35px;
}
.cta-area .theme-btn {
  margin-top: 35px;
}
.
.theme-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 10px 22px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #00CDE5;
  box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
  z-index: 1;
}
#section-counter {
  position: relative;
  z-index: 0;
}

.ftco-counter {
  padding: 7em 0;
  margin: 3rem 0 6rem 0;
}
#section-counter .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: .5;
}
.ftco-counter .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
  z-index: 0;
}
.ftco-counter .text strong.number {
  font-weight: 400;
  font-size: 30px;
  color: #c49b63;
}
.block-18 .text span {
  display: block;
}

.ftco-counter .text span {
  font-weight: 400;
  font-size: 14px;
}
.ftco-animate {
  opacity: 0;
  visibility: hidden;
}
.but1{
  position: absolute;
    text-align: center;
    left: 50%;
    min-width: 150px;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 20;
    color: var(--color-1st);
    transform: translateX(-50%);
    margin-bottom: 0px;
    font-size: 17px;
}
.blog-item-meta ul {
  margin: 0 0 14px;
  padding: 0 0 5px;
  border-bottom: 1px solid #e6e8eb;
}
.j9 {
  display: inline-block;
}
.blog-item-meta ul li a {
  display: inline-block;
  position: relative;
  color: #026e94;
  font-weight: 600;
  font-size: 17px;
}
.blog-item-meta ul li i {
  margin-right: 5px;
  color: #d4b196;
}
.rit {
  float: right;
}
.ji5{
  margin-bottom: 16px;
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
    color: #242424;
    line-height: 1.8;
}
.post__title{
  font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #222;
    font-weight: 600;
    line-height: 1.2;
}
.brand-logo {
    display: inline-block;
    padding-top: 35px;
    padding-bottom: 35px;
}
.brand-logo .logo23 span{vertical-align:middle;}
@font-face {
    font-family: 'font-angella-white/Angella-White-Personal-use-font';
    src: url('font-angella-white/Angella-White-Personal-use-font.ttf.woff') format('woff'),
         url('font-angella-white/Angella-White-Personal-use-font.ttf.svg#Angella-White-Personal-use-font') format('svg'),
         url('font-angella-white/Angella-White-Personal-use-font.ttf.eot'),
         url('font-angella-white/Angella-White-Personal-use-font.ttf.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

.logo23 {
    color: lightpink;
    font-size: 47px;
    font-family: 'font-angella-white/Angella-White-Personal-use-font'!important;
}

.mb-l {
    margin-left: 8px;
    border-left: 1px solid red;
    padding-left: 10px;
}

.title-inner1:after {
    position: absolute;
    height: 3px;
    width: 70px;
    background-color: #d4b196;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
@media (max-width: 1367px){
.title-inner1 {
    padding-bottom: 10px;
}}

.as1 {
    text-align: center;
    margin-top: 0%;
}
.btn-solid {
       padding: 13px 29px;
    color: #d4b196;
    letter-spacing: 0.05em;
    border: 1px solid #2d2a25;
    /* background-image: linear-gradient(30deg, #d4b196 50%, transparent 50%); */
    background-color: #2d2a25;
    background-size: 850px;
    background-repeat: no-repeat;
    background-position: 0;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}
.sm0{
        color: red;
    padding-bottom: 10px;
    margin-bottom: 0;
    margin-top: -3px;
}
.light-layout {
    background-color: #fff;
}
.footer-light .light-layout {
    background-color: #0f172a;
}
.line66 {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-top: 50px;
}
.service-block1 svg {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
}
.service-block1 h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: Lato, sans-serif;
}
.service-block12 {
    border-left: 1px solid #ddd;
}
.service-block1 {
    text-align: center;
}

.bg-color {
    background-color: grey;
    color: #fff;
    border: 1px solid grey;
}

.rt2 {
    float: right;
}
.border-section {
    border-top: 0px solid burlywood;
    border-bottom: 1px solid burlywood;
}

.small-section {
    padding-top: 32px;
    padding-bottom: 32px;
}
.subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid #d4b196;
    text-align: left;
}
.footer-light .subscribe h4 {
    margin-bottom: 10px;
}

.subscribe h4 {
    color: #d4b196;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    font-family: Lato,sans-serif;
}
.subscribe p {
    line-height: 1;
    font-size: 16px;
    color: white;
    font-family: Lato,sans-serif;
}
.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.subscribe-form {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.subscribe-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.subscribe-form .form-control {
    padding: 10px;
    width: 350px;
    border-radius: 0;
    border: 1px solid #eee;
}
@media (max-width: 1367px){
.subscribe-form .form-control {
    width: 215px;
    background-color:#fff;
}}
@media (max-width: 1367px){
.footer-theme .sub-title h4 {
    font-size: 16px;
}}

.footer-theme .sub-title h4 {
    color: #d4b196;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing:0.8px;
    font-family:Lato, sans-serif;
}
footer-theme .sub-title li {
    position: relative;
    display: inherit;
    padding-top: 13px;
    text-transform: capitalize;
    font-size: 17px;
    color: #777;
}
.footer-theme .sub-title li a {
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: 400;
    font-family: Lato,sans-serif;
}
.footer-theme .sub-title li a:before {
    position: absolute;
    top: 20px;
    content: "";
    height: 2px;
    width: 0;
    background-color:red;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
.section-b-space {
    padding-bottom: 50px;
}
ul {
    padding-left: 0;
    margin-bottom: 0;
}
section, .section-t-space {
    padding-top: 50px;
}
.mob-view {
    display: none!important;
}
.dis-view {
    display: inline-block;
}
.mb-00 {
    margin-bottom: 10px!important;
}
.footer-theme .sub-title .contact-list li {
    position: relative;
    line-height: 28px;
    list-style:none;
    font-size:17px;
    font-family:Lato,sans-serif;
        display: inline-block;
    padding-right: 20px;
}
.sub-footer {
    background-color: #fef8f9;
    border-top: 1px solid #ddd;
}
.sub-footer p {
    color: lightpink;
    margin-bottom: 0;
    padding: 20px 0;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.03em;
    font-weight: 500;
}
.sub-footer .payment-card-bottom {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.sub-footer .payment-card-bottom li {
    padding-left: 7px;
    padding-right: 7px;
    display: inline-block;
}
.footer-social, .social-white {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dropbtn {
  background-color: transparent;
  color: #222;
  padding: 0px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-transform:uppercase;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  top:50px;
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 260px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
  text-transform:uppercase;
  font-size:16px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1;}
.dropdown:hover .dropdown-content {display: block;}

.sub-arrow {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: 70px;
    right: 15px;
    width: 34px;
    height: 34px;
    overflow: hidden;
    font: bold 16px/34px monospace !important;
    text-align: center;
    text-shadow: none;
    border-radius: 4px;
}
@media (min-width: 1200px){
.sub-arrow::before {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
}}
.po3:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid burlywood;
    content: "";
    top: -7px;
    position: absolute;
    left: 0px;
    z-index: 2;
}
 .image-container {
      position: relative;
      overflow: hidden;
    }

    .hover-image {
      position: absolute;
      top: 0;
      left: -100%; /* Initially position the second image outside the container */
      transition: left 0.5s ease; /* Add a smooth transition effect */
    }

    .image-container:hover .hover-image {
      left: 0; /* Move the second image to the left edge on hover */
    }
    .brand{
                                            border-top:1px solid red;
                                            margin-bottom: 0;
                                            padding-top: 5px;
                                            padding-bottom: 5px;
                                            -webkit-transition: all 0.5s ease;
                                            transition: all 0.5s ease;
                                            text-overflow: ellipsis;
                                            color:burlywood;
                                            background-color:black;
                                            font-size: 17px;
                                            font-family: Lato,sans-serif;
                                            font-weight: bold;
                                            text-transform: uppercase;
                                            text-align:center;
                                            
                                            
                                        }
                                    .brand span {text-decoration: none !important;font-weight:600;    word-wrap: break-word;
    width: 100%;
    display: block;
    margin: auto;}    
                                          @media (min-width:320px) and (max-width:375px){
                                        .brand{
                                            font-size:17px;
                                        }
                                        }
                                        
                                        
                                        @media (min-width:375px) and (max-width:412px){
                                        .brand{
                                            font-size:18px;
                                        }
                                        }
                                        
                                        @media (min-width:413px) and (max-width:449px){
                                        .brand{
                                            font-size:18px;
                                        }
                                        }
    .product-detail{margin-bottom:0px;padding:0px!important;opacity:1;
    /*border-bottom-right-radius:0.25rem;border-bottom-left-radius:0.25rem;*/
    }
.product-box {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    background-color: #fff;
}
@media (max-width: 767px){
.lk9 {
    width: 50%;
}
.service-block12, .subscribe{border:none;}
.small-section {
    padding: 20px 0;
}
.breadcrumb-wrapper{text-align:center;margin-top:50px;}
.section-b-space {
    padding-bottom: 25px;
}
.customer-page .profile-content{padding:0px 0px 20px 10px!important;}
}
/*@media (max-width: 577px){*/
/*.btn-solid, .btn-outline {*/
/*    padding: 7px 8px!important;*/

@media (max-width: 1024px){
.footer-light .subscribe p {
    display: none;
}}
@media (max-width: 1024px){
.footer-light .subscribe {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    margin-bottom: 5px;
}}
@media (max-width: 1024px){
.footer-light .subscribe-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
}}
@media (max-width: 420px){
.subscribe-form .form-group {
    margin-bottom: 10px;
}}
@media (max-width: 420px){
.footer-light .subscribe-form .form-control {
    width: 280px;
}}


@media (max-width: 577px){
.subscribe-form .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}}
@media (max-width: 767px){
.footer-theme .col {
    max-width: 100%;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
}
.gt6{padding:5px 8px!important}
    
}
.cookie-consent .cookie-consent-body .cookie-consent__message{
    font-size:16px;
    letter-spacing:0.1px;
}
@media (max-width: 767px){
.footer-end {
    text-align: center;
}}
@media (max-width: 767px){
.sub-footer .payment-card-bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 80px;
}}
.authentication-right {
    height: calc(100% - 48px);
}

.theme-card {
        border-radius: 6px;
    padding: 30px;
    border: none;
    background-color: rgb(212 177 146 / 20%);
    -webkit-box-shadow: 0 0 2px 2px #f1f1f1;
    box-shadow: 0 0 0.2px 0.5px #d4b196;
    line-height: 1;
}
.authentication-right h6 {
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px!important;
}
.authentication-right p {
    font-size: 17px;
    color: #555;
    line-height: 2;
    margin-bottom: 1rem;
}
.theme-card label {
    text-transform: uppercase;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
.theme-card input {
    border-color: #eaeaea;
    font-size: 16px;
    padding: 15px 15px;
    margin-bottom: 30px;
    height: inherit;
}
.form-control{background-color:#fff;}
@media (max-width: 480px){
.theme-card {
    padding: 25px;
}}

@media (max-width: 1024px){
    .authentication-right {
    height: calc(100% - 48px);
}}
@media (max-width: 1023px){
.right-login {
    margin-top: 30px;
}}
@media (max-width: 420px){
.authentication-right p {
    line-height: 1.5;
}}
.title-h3 {
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #222;
    font-weight: 600;
    margin-top: -5px;
    font-family:Lato,sans-serif;
    font-size: 23px !important;
}
.auto{margin:auto;}
@media (max-width: 480px){
.theme-card {
    padding: 18px;
}}
.pdp-title1{
    color: green;
    font-size: 20px;
    border-bottom: 1px dashed #ddd;
    font-weight: 700;
    line-height: 1;
    padding: 0 20px 12px 0;
    margin-bottom: 0px;
    text-transform:uppercase;
}

.pdp-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: #282c3f;
    padding: 0 0px 6px 0;
    margin-bottom: 0px;
    border-bottom: 1px dashed slategrey;
}
.index-overallRatingContainer {
    width: auto;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 4px;
}
.index-overallRating {
    margin-bottom: 15px;
    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;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 29px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #282c3f;
}
.index-overallRating .index-starIcon {
    margin: 0 -8px 0 -2px;
    -webkit-transform: scale(.6);
    transform: scale(.6);
}

.sprites-productRatingsExcellentIcon {
    background-position: -171px -28px;
    width: 24px;
    height: 24px;
}
.myntraweb-sprite {
    background: url(https://constant.myntassets.com/web/assets/img/MyntraWebSprite_27_01_2021.png);
    background-size: 1404px 105px;
    display: inline-block;
}
.index-overallRating .index-separator {
        margin-left: 8px;
    margin-right: 8px;
    margin-top: -2px;
    color: #d4d5d9;
    width: 1px;
}
.index-overallRating .index-ratingsCount {
    margin-left: 8px;
    font-weight: 400;
    color: #535766;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.product-right .product-title {
    color: #222;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 16px;
    padding-top: 12px;
    background-color:white;
}
.pdp-vatInfo {
    color: #03a685;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin: 5px 10px 0 0;
}
.product-right p {
    margin-bottom: 0;
    line-height: 1.5em;
}

.pdp-selling-price {
    position: relative;
}
.pdp-selling-price {
    font-size: 16px;
    margin: 0 0 10px;
}

@media (min-width: 991px){
.pdp-price{
    color: #282c3f;
    margin-right: 12px;
    font-size: 24px!important;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    margin-top: 10px;
}}
.gyt{
border-bottom: 1px dashed #ddd;
}
.desc1{
        display: block;
    font-size: 16px;
    color: #777;
    margin-bottom: 0;
    line-height: 1.5em;
    letter-spacing: 0.5px;
}
.product-count {
    background-color: #fff0f4;
    padding: 10px 12px;
    margin-bottom: 12px;
}
.product-count ul {
    margin-bottom: -4px;
}
.product-count ul li:first-child {
    margin-right: 14px;
}

.product-count ul li {
    margin-bottom: 4px;
}
.product-count img {
    margin-right: 6px;
}
.part{margin-bottom: 20px;}
.part p {
    font-family: Lato,sans-serif;
    margin-bottom: 0;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 16px;
    color:#222;
}
.inner-title{    
    font-weight: 600;
    font-size: 18px;
    font-family: Lato,sans-serif;
    text-transform: uppercase;
}
.single-product-tables {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
}
.single-product-tables table tr {
    height: 35px;
    color: #6d6d6d;
    font-size: 16px;
    letter-spacing: 0.01em;
}
.single-product-tables table tr td:nth-child(1) {
    font-weight: 600;
    color: #222;
    font-size: 18px;
    font-family: Lato,sans-serif;
    
}
.single-product-tables table tr td:nth-child(2) {
    font-weight: 500;
    color: grey;
    font-size: 18px;
    font-family: Lato,sans-serif;
    
}
.single-product-tables table {
    width: 30%;
}
@media (max-width: 480px){
.single-product-tables {
    display: block;
    margin-top: 0;
}}
@media (max-width: 480px){
.single-product-tables table tr td:first-child {
    width: 140px;
}
.single-product-tables table {
    width: 100%;
}}
.tr33{    border-bottom: 1px solid #d4b196!important;
    border-top: 1px solid #d4b196!important;
    width: 120px;}
.tab-list li{border-right: 1px solid #ddd;padding-right: 20px;}
.product-ratingsContainer {
    z-index: 1;
    position: absolute;
    margin-left: 0px;
    bottom: 150px;
    font-size: 12px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 2px;
    padding: 0 0 0 4px;
    background-color: hsla(0,0%,100%,.8);
    font-family:Lato,sans-serif;
}
.product-ratingsContainer .product-starIcon {
    margin-left: -2px;
    -webkit-transform: scale(.55);
    transform: scale(.55);
}

.sprites-productRatingsExcellentIcon {
    background-position: -171px -28px;
    width: 24px;
    height: 24px;
}
.myntraweb-sprite {
    background: url(https://constant.myntassets.com/web/assets/img/MyntraWebSprite_27_01_2021.png);
    background-size: 1404px 105px;
    display: inline-block;
}
.product-ratingsContainer .product-ratingsCount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 4px;
}
.product-ratingsContainer .product-ratingsCount .product-separator {
    font-size: 11.5px;
    margin: -0.5px 6px 0 -2px;
}
.product-category{
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #222;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px dashed #d4b196;
    padding-bottom: 8px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing:0.5px;
    font-family:Lato,sans-serif;
}
.yrt{float:right;}
.widget__content li a:before {
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 20px;
}
.widget__content li a {
    display: block;
    position: relative;
    padding-left: 18px;
    line-height: 25px;
    font-size:18px;
}
.category{list-style:none;margin-bottom:8px;}
.product-product{font-size:15px;margin-top:10px;}
.welcome-msg {
    margin-bottom: 20px;
}
.welcome-msg h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
}
.counter-box {
    background-color: #fef8f9;
    padding: 30px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 3px solid #ff4c3b;
    border-radius: 8px;
}
.counter-box img {
    width: auto;
    height: 50px;
    margin-right: 20px;
}
.counter-box h3 {
    font-weight: 600;
    color: #ff4c3b;
    margin-bottom: 4px;
    font-size: 20px;
    font-family:Lato,sans-serif;
}
.counter-box h5 {
    margin-bottom: 0;
    text-transform: uppercase;
        font-size: 15px;
    font-weight: 500;
    
}
.customer-page .profile-content{padding:0px 0px 20px 10px}
.left {
    float: left;
    padding-right: 15px;
    padding-left:0px;
}
.box-head h4 {
    font-size: 18px;
    margin: 0px 0 30px;
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}
.right {
    float: right;
    text-align: end;
}
.red {
    color: red!important;
}

@media (max-width: 767px){
.right {
    float: none;
    padding-right: 0px;
}

.welcome-msg{margin-top:25px;}
.counter-box{margin-bottom:25px;} 
.register-page{padding-top:10px;}
.mt-35{margin-top:35px;}}
.mt-37{margin-top:37px;}
.mt-25{margin-top:25px;}
.mt-30{margin-top:30px;}
.table-bordered td, .table-bordered th{border:none;}
.ti{
    font-size: 17px;
    color: #222;
    letter-spacing: 0.5px;
    font-family: Lato, sans-serif;
}

.io9{
    border: none;
    background-color: #fef8f9;
    box-shadow: 0 0 1px 1px pink;
    line-height: 1;
    border-radius: 5px;
    padding: 30px 15px;
    margin-bottom:0px;
}
.customer-page h2.customer-page-title{
    text-align: start;
    font-size: 1.4em;
    font-weight: 600!important;
    text-transform: uppercase;
    padding-top: 35px;
    margin-bottom:0px;
}
.form-group>label{
    text-transform: uppercase;
    color: #333;
    font-size: 17px;
    font-weight: 600;
}
.form-group>input{
    border-color: #eaeaea;
    font-size: 16px;
    padding: 10px;
    height: inherit;
    margin-bottom:20px;
}


.customer-page .customer-list-order {
    margin-top: 35px!important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-bordered td, .table-bordered th{vertical-align: middle;font-size:15px;color:#282828;}
.rounded-pill{padding:10px;border-radius: 1rem!important;}
.bg-danger{color:#fff;}
.table-bordered{
    border: none;
    background-color: #fef8f9;
    box-shadow: 0 0 1px 1px pink;
    line-height: 1;
    border-radius: 5px;
    text-align:center;
}
.table-bordered thead th{padding:20px 10px;font-weight:700;font-size:16px;}
.list-group-item{font-size:15px;}
.gt6 {
    padding: 3px 8px!important;
    margin-left: 20px;
    background-position: 100%;
    border: 1px solid #d4b196;
    color: #2d2a25;
    background-color: #d4b196;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform:capitalize;
}
.badge2{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    color: #fff;
    font-size: 80%;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family:Lato,sans-serif;
}
.btn33{
    padding: 10px;
    font-size: 14px!important;
    border-radius: 5px;
}
.at-1{
    background-color: #0f172a;
    border-bottom: 1px solid burlywood;
    height: 80px;

  
    box-shadow: 0 5px 20px -17px rgba(0,0,0,.34);
}
.po2:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid burlywood;
    content: "";
    top: -7px;
    position: absolute;
    left: 0px;
    z-index: 2;
}
.cold{
        font-size: 16px;
    text-transform: capitalize;
    color: #333;
    font-weight: 700;
    margin-bottom: 0;
}
.mb-12 {
    border-bottom: 1px solid #2d2a25;
    padding-bottom: 15px;
    margin-bottom: 0px;
}
.yt1 {
    border-bottom: 1px solid #2d2a25;
    padding-bottom: 10px!important;
    padding-top: 10px!important;
}
.jk90{
    color: #333;
    font-weight: 600!important;
    font-size: 16px!important;
    text-transform: capitalize;
    padding:0px 0px 0px 17px!important;
}
.sp{
    padding: 20px 20px 20px!important;
    min-width: 175px!important;
    right: 0;
    left: unset;
}
.d1{
    border: none;
    padding: 15px 0px 15px 0px;
    background: white;
    box-shadow: 0 1px 6px 0 #ebebeb;
    position: absolute;
    padding: 15px 20px 20px!important;
    /*min-width: 235px!important;*/
}
.trf{
    border: 0 !important;
    background: rgba(0, 0, 0, 0);
    color: #222;
    border-radius: 0 !important;
    font-size: 15px!important;
    font-weight: 400!important;
    text-transform: capitalize!important;
    line-height: 19px!important;
    text-decoration: none;
    text-transform: uppercase;
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    letter-spacing: 0.07em;
}
.trf:before {
    position: absolute;
    bottom: 0;
    content: "";
    height: 2px;
    width: 0;
    background-color: #d4b196;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
.d2{margin-right:30px!important;}
 .sidebar {
    height: 100vh;
    width: auto;
    position: fixed;
    z-index: 9999;
    top: 0;
    overflow:hidden;
    left: -425px;
    background-color: #f2f2f2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}



.sidebar .top {
  /*padding: 10px 30px;*/
  background-color: BLACK;
   padding: 26px 12px ;
    font-size: 18px;
    color: white;
    display:flex;
   
    font-weight: 700;
    text-transform: uppercase;
    border-bottom:1px solid #d4b196;
    cursor: pointer;
    /*z-index: 9999;*/
}
.sidebar .top button {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
    text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  z-index: 9999;
    text-align: left;
    font-weight:600;
}
/*.sidebar ul {*/
/*  padding: 0 30px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 20px;*/
/*  font-size: 20px;*/
/*}*/
.sidebar ul .title {
  font-weight: bold;
  font-size: 22px;
}
.sidebar ul li {
  list-style: none;
}
.sidebar ul li a {
  color: #000;
  text-decoration: none;
  font-weight:600;
}
.show {
  left: 0;
  -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.cs-desktop-icons {
    padding: 20px;
    font-size: 18px;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #2d2a25;
    /*margin-bottom: 15px;*/
    cursor: pointer;
    background-color: #f2f2f2;
}

@media (max-width: 767px){
.qw-1{margin-right:0px!important;}
.cs-desktop-icons {
    padding: 18px 5px;
}}


.img-ul {
    display: flex!important;
    justify-content: center;
}
.sas6 {
    width: 30%;
}
.ashop {
    border-radius: 10px;
    display: flex!important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: Gotham-Medium,sans-serif;
    font-weight: 600;
    padding: 0px!important;
    width:80px;
} 
.w-70{width:70px!important;}
.action {
    display: block;
    font-size: 10px;
    line-height: normal;
    font-weight: 500;
    margin-top: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    color: #000;
}
.img55 {
    display: block;
    width: 35px;
    margin: auto;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.sm-vertical {
    background-color: #fff;
}
.sm {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.sm, .sm ul, .sm li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    direction: ltr;
    text-align: left;
}


.sidenav .pixelstrap li a {
    padding: 10px 50px 20px 40px;
}
.kr{padding:20px;}
@media (max-width: 1199px){
.pixelstrap li a {
    padding: 20px 12px;
    font-size: 16px;
}
 .kr {
    padding: 20px 12px;
    font-size: 16px;
}   
}
@media (max-width: 1199px){
.pixelstrap>li>a {
    font-weight: 700;
}}
.pixelstrap li a {
    position: relative;
}
@media (max-width: 1367px){
.pixelstrap a {
    font-size: 14px;
}}
.pixelstrap a, .pixelstrap a:active {
   padding: 20px 20px 20px 20px;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    padding-left:17px;
    text-decoration: none;
    text-transform: uppercase;
    /*padding-top: 42px;*/
    /*padding-bottom: 42px;*/
    letter-spacing: 0.07em;
}
.sm a {
    position: relative;
    display: block;
}
.sidebar nav {
    background-color: #fff;
    z-index: 9;
    position: relative;
    height: 100vh;
    top: 0;
    overflow-y: auto;
}
.showbtn i{font-size: 28px;
    color: #d4b196;
    cursor: pointer;
}
    
.pixelstrap a:hover {
    color: chocolate;
}
.pe-2 {
    padding-right: 0.5rem !important;
}
.showbtn .fa-angle-left{font-size: 21px;font-weight:600; 
    color: #d4b196;
    cursor: pointer;
    padding-right:0.75rem;
}
    
    
.show .sidebar-overlay {
    opacity: 0.8;
    visibility: visible;
    
}
.sidebar-overlay{
    visibility: hidden;
    opacity: 0;
    background-color: #212331;
    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transition: all 1s;
    transition: all 1s;

}
.sidebar .zi-1{z-index:999;}


.menu {
    display: inline-block;
    padding: 0;
}
.menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    /*display: flex;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
   display: inline-block;
    padding: 0;
}

.menu-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
 .menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
}
.qw-1{margin-right:25px;}
.dropdown > a {
  display: flex;
  align-items: center;
}
.dropdown > a .icon {
  margin-left: 0px;
}

.dropdown:hover .dropdown-nav {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dropdown-nav {
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.88, -0.72, 0, 1), opacity 0.3s ease-in-out;
  transform: translateY(-4rem);
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 9999;
  background: rgba(225, 255, 225, 0.9);
}
.dropdown-nav a {
  font-weight: 300;
  font-size: 1.2rem;
}
.fq1 {
    cursor: pointer;
    vertical-align: middle;
    font-size: 25px;
    top: 18px;
    border-left: 1px solid #d4b196;
    padding: 22px 15px!important;
    padding-right: 0px !important;
}



.home-slider .home, .center-slider .home {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 90vh;
}

@media (max-width: 360px){
.home-slider .home {
    height: 40vh;
}}
@media (max-width: 480px){
.home-slider .home {
    height: 45vh;
}}
@media (max-width: 577px){
.home-slider .home {
    height: 58vh;
}}
@media (max-width: 767px){
.home-slider .home {
    height: 60vh;
}}
@media (max-width: 991px){
.home-slider .home {
    height: 65vh;
}}
@media (max-width: 1199px){
.home-slider .home {
    height: 70vh;
}}
.pdp-title1 {
    color: green;
    font-size: 20px;
    border-bottom: 1px dashed slategrey;
    font-weight: 700;
    line-height: 1;
    padding: 0 0px 6px 0;
    margin-bottom: 0px;
}



        

@media (max-width: 1199px){.pk-11 li a{color:black;} .has-submenu{color:black!important;} }
.d-flx{justify-content:center;}
@media (max-width:900px){.d-flx img{width:218.75px;height:62px;}}
@media (max-width:767px){.d-flx img{width:210px;height:60px;} .home-slider .slider-contain.product-detail p{line-height:22px;font-size:17px;}.pdp-title1 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
    color: #282c3f;
    padding: 15px 0px 10px 0;
}

 } 
  
    .center-1 {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 12px;
}

.home-slider .slider-contain, .center-slider .slider-contain {
    width: 100%;
    height: 75vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px){
.home-slider .slider-contain {
    width: 85%;
    margin: auto;
}}
@media (max-width: 360px){
.home-slider .slider-contain {
    height: 40vh;
}}
@media (max-width: 480px){
.home-slider .slider-contain {
    height: 45vh;
}}
@media (max-width: 577px){
.home-slider .slider-contain {
    height: 58vh;
}}
@media (max-width: 767px){
.home-slider .slider-contain {
    height: 60vh;
}}
@media (max-width: 991px){
.home-slider .slider-contain {
    height: 65vh;
}}
@media (max-width: 1199px){
.home-slider .slider-contain {
    height: 70vh;
}}

@media (max-width: 767px){
.sdf {
    padding: 0px!important;
}}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    display:block!important;
}
.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}
.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}

.home-slider .slider-contain h1, .center-slider .slider-contain h1 {
    margin-bottom: 0;
    color: chocolate;
}

@media (max-width: 360px){
.home-slider .slider-contain h1 {
    font-size: 22px;
}}
@media (max-width: 420px){
.home-slider .slider-contain h1 {
    font-size: 29px;
    margin-top: 10px;
}}
@media (max-width: 480px){
.home-slider .slider-contain h1 {
    font-size: 28px;
}}
@media (max-width: 577px){
.home-slider .slider-contain h1 {
    font-size: 30px;
}}
@media (max-width: 767px){
.home-slider .slider-contain h1 {
    font-size: 35px;
    margin-top: 5px;
}}
@media (max-width: 991px){
.home-slider .slider-contain h1 {
    font-size: 36px;
}}
@media (max-width: 1199px){
.home-slider .slider-contain h1 {
    font-size: 50px;
}}

.font-cormorant {
    font-family: Cormorant, sans-serif;
}

.home-slider .slider-contain.product-detail p, .center-slider .slider-contain.product-detail p {
   line-height: 30px;
    font-size: 17px;
    color: #d4b196;
    margin: 0 auto;
}

@media (max-width: 767px){
.home-slider .slider-contain.product-detail p {
    line-height: 22px;
    font-size: 17px;
}}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.shop__left{
    height:auto!important;
    z-index:1;
    top:30px;
    position:sticky;
}
/*BLOGS CSS START*/
.blog-item, .living-option-item, .stories-item {
    margin-bottom: 25px;
}
.blog-item {
    background-color: #fff;
    padding-bottom: 15px;
    float: left;
    visibility: visible;
    animation-delay: 0.25s;
    animation-name: fadeInUp;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.img-blog {
    width: 100%;
    height: 230px;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.blog-item-info {
    padding: 15px;
}

.blog-item-info h4 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: #241e5e;
    font-weight: 600;
    line-height: 1.2;
}

.blog-item-info h4 a {
    color: #2D2A25;
}

.blog-item-meta ul {
    margin: 0 0 14px;
    padding: 5px 0 5px;
    border-bottom: 1px solid #d4b196;
    list-style:none;
    border-top: 1px solid #d4b196;
}

.blog-item-meta ul li a {
    display: inline-block;
    position: relative;
    color: #222;
    font-weight: 600;
    font-size: 17px;
}
blog-item-meta ul li i {
    margin-right: 5px;
    color: grey;
}
.rit, .rt2 {
    float: right;
}
.blog-item-info p:not(:last-child) {
    margin-bottom: 16px;
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
    color: #242424;
    line-height: 1.8;
}
.blog-item-meta ul li{display:inline-block;}
.kl0{
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
}
.rt9{
    border-left: 1px solid #d4b196;
    padding: 10px 0px 10px 15px!important;
}
.r4{
    border-left: 1px solid #d4b196;
    padding: 10px 15px!important;
    padding-right: 0px !important;
}
#gtr10 {
    padding-right: 0px;
    color: #3b5998;
}
#gtr12 {
    padding-right: 0px;
    color: #cd486b;
}
#rr{color:red;}
@media (min-width:320px) and (max-width:1025px){
    .menu{display:block;}
    .qw-1{margin-right:0px!important;}
}
@media screen and (min-width: 1200px){
.shop--sidebar .shop__header .panel-trigger {
    display: none;
}}
.er5{
    padding: 30px 0 20px 0;
    font-size: 20px;
    font-family: Lato;
    letter-spacing: 0.07em;
    font-weight: 600;
    text-transform: uppercase;
    text-align:start;
    border-bottom: 1.5px solid #d4b196;
    margin-bottom: 25px;
}
.select--arrow{margin-bottom:20px;}
.img-thumbnail{padding:0px;}
.checkout-quantity{
    font-size: 14px;
    color: #222;
    font-weight:600;
    font-family:Lato,sans-serif;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #d4b196;
}
.product-item{margin-bottom:15px;}
.footer-social li{
    display:inline-block!important;
    padding-right:20px;
}
.form-checkout{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 5px;
    margin-bottom:40px;
    margin-top:40px;
    padding:0px 20px!important;
}
@media (max-width:767px){
    /*.col-12, .col-md-6{padding:0px;}*/
    .yt60{width:21%;padding:0px;}
    .checkout-product-img-wrapper{width:55px;}
    .yt61{width:45%;padding:0px;}
    .checkout-quantity{bottom:100%;right:20%;}
}

@media (max-width: 767px){
.footer-contant li {
    text-align: left;
}
 .footer-theme .sub-title li {
    padding-top: 7px;
    list-style:none;
}}


.mob-view {
    display: none!important;
}
@media (max-width: 767px){
.mob-view {
    display: block!important;
}}
.dis-view {
    display: inline-block!important;
}
@media (max-width: 767px){
.dis-view {
    display: none!important;
}

.footer-title {
    padding-top: 10px;
    text-align: left;
    /*border-bottom: 1px solid #d4b96;*/
     border-top: 1px solid #d4b196;
    position: relative;
}
}

.footer-theme .sub-title h4 {
    color: burlywood;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
}
@media (max-width: 420px){

.product .product__wrapper .product__content{
    padding-left: 5px;
    padding-bottom: 6px;
    padding-right: 5px;
    padding-top: 6px;height: 50px!important;
}
}
@media (max-width: 991px){
.footer-theme .sub-title h4 {
    padding-bottom: 10px;
}}
@media (max-width: 1025px){
.footer-theme .sub-title h4 {
    font-size: 16px;
}}

@media (max-width: 767px){
.footer-title h4 {
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}}

.home-slider .slider-contain h1, .center-slider .slider-contain h1 {
    margin-bottom: 0;
    color: chocolate;
}



@media (max-width: 1199px) {
    .home-slider .slider-contain h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .home-slider .slider-contain h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .home-slider .slider-contain h1 {
        font-size: 35px;
        margin-top: 5px;
    }
}

@media (max-width: 577px) {
    .home-slider .slider-contain h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .home-slider .slider-contain h1 {
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .home-slider .slider-contain h1 {
        font-size: 29px;
        margin-top: 10px;
    }
}
@media (max-width: 360px){
.home-slider .slider-contain h1 {
    font-size: 22px;
}}

@media (max-width: 767px){
.footer-title .according-menu:before {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 2px;
    top: 0px;
    font-weight:500;
}

.footer-title.active .according-menu:before {
    font-family: FontAwesome;
    content: "\f106";
    position: absolute;
    right: 2px;
    top: 0px;
}  }
.invoice-wrapper {
    background-color: white;
    -webkit-box-shadow: #e6e6e6 0px 0px 14px 3px;
    box-shadow: #e6e6e6 0px 0px 14px 3px;
}
.theme-invoice-1 .invoice-header {
    padding: calc(15px + (45 - 15) * ((100vw - 320px) / (1920 - 320)));
    background-color: #f8f8f8;
}
.theme-invoice-1 .invoice-header .header-content {
    margin-top: 0px;
}
.theme-invoice-1 .invoice-header .header-content h2 {
    font-size: 24px;
        color: #222;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}
.logo23 {
    color: lightpink;
    font-size: 40px;
    font-family: cincel;
    font-weight: 600;
}
.navigation__left .logo23:hover{color: lightpink;}
@media(max-width:768){.navigation__left .logo23{font-size: 40px;}}
.theme-invoice-1 .invoice-header h4 {
    font-size: 16px;
    color: #646464;
    margin-bottom: 5px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
}
.theme-invoice-1 .invoice-header .detail-bottom {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #dddddd;
}
.theme-invoice-1 .invoice-header .detail-bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.theme-invoice-1 .invoice-header .detail-bottom ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
}
.theme-invoice-1 .invoice-header .detail-bottom ul li span {
    color: #000;
    text-transform: capitalize;
    font-weight:600;
}
.theme-invoice-1 .invoice-header .detail-bottom ul li h4 {
    margin-bottom: 0;
    margin-left: 4px;
}
.invoice-wrapper .invoice-body {
    padding: calc(15px + (45 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.invoice-wrapper .invoice-body .table {
    font-size: 16px;
}
.invoice-wrapper .invoice-body .table thead th {
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 16px;
    color: black;
    border-color: #d4b196 !important;
}
.invoice-wrapper .invoice-body .table tbody tr:first-child td, .invoice-wrapper .invoice-body .table tbody tr:first-child th {
    padding-top: 22px;
}
.invoice-wrapper .invoice-body .table tbody th {
    font-weight: normal;
    color: #646464;
}
.invoice-wrapper .invoice-body .table tbody td, .invoice-wrapper .invoice-body .table tbody th {
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: capitalize;
}
.invoice-wrapper .invoice-body .table th, .invoice-wrapper .invoice-body .table td {
    border-top: none;
}
.table-borderless>:not(caption)>*>* {
    border-bottom-width: 0;
}
.table>:not(caption)>*>* {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bs-table-accent-bg)), to(var(--bs-table-accent-bg)));
    background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    border-bottom-width: 1px;
}
.invoice-wrapper .invoice-body .table tfoot {
    border-top: 1px solid #ddd;
}
.invoice-wrapper .invoice-body .table tfoot td {
    padding-top: 15px;
}

.invoice-wrapper .invoice-body .table td {
    color: #646464;
}
.invoice-wrapper .invoice-footer {
    padding: calc(15px + (45 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.invoice-wrapper .authorise-sign {
    position: absolute;
    bottom: calc(13px + (40 - 13) * ((100vw - 320px) / (1920 - 320)));
    text-align: center;
}
.invoice-wrapper .authorise-sign h6 {
    margin-bottom: 0;
    font-size: 18px;
    color: black;
    font-weight: bold;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    line-height: 1;
}
.text-md-end{text-align: end;}
.text-md-ends{text-align: end;}
.btn-solid.black-btn {
    background-image: linear-gradient(30deg, #222 50%, transparent 50%);
    border: 2px solid #222;
}
.table thead th {
    border-bottom: 1px solid #d4b196 !important;
}

/*.table tr{border-bottom: 1px solid #ddd;}*/
@media (max-width: 767px){
.theme-invoice-1 .invoice-header .detail-bottom ul {
    display: block;
}
.table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
}
@media (max-width: 767px){
.invoice-wrapper .authorise-sign {
    width: 20%;
}
    .invoice-wrapper .authorise-sign h6 {
    font-size: 12px;
    padding-top: 6px;
    margin-top: 10px;
}
.text-md-ends{text-align: start;}
.nb1{min-width: 150px;}
.nb2{min-width: 150px;}
.nb3{min-width: 170px;}
.nb4{min-width: 150px;}

.table--cart tbody tr td{
    min-width: 140px;
    text-align: center;
}
.table--cart thead tr th{
    text-align:center;
}







}
@media (max-width: 577px){
.invoice-wrapper .authorise-sign {
    width: 30%;
}
    .invoice-wrapper .btn-solid, .invoice-wrapper .btn-outline {
    padding: 6px 13px;
    font-size: 12px;
}
}
@media (max-width: 420px){
.invoice-wrapper .authorise-sign {
    width: 20%;
}
    .invoice-wrapper .btn-solid, .invoice-wrapper .btn-outline {
    padding: 4px 8px;
}
}

.pr5{
    margin-bottom: 0;
    padding-bottom: 20px;
    line-height: 24px;
    letter-spacing: 0.05em;
    padding-top: 4px;
    font-size: 18px;
    color: #222;
    font-style: italic;
    font-weight: 400;
}
.product-para .pr5{padding-bottom:12px;padding-top:2px;}
.product .product__title{
    display:block;
    font-weight:600;
    line-height:1.8em;
    color:#535665;
    margin-bottom:8px;
    line-height: 1.1;
    color: #2d2a25;
    margin-bottom: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 20px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family:Lato,sans-serif;
}
.t7{    
    margin-left: 2px;
    margin-right: 3px;}
.mb-6{margin-bottom:40px!important;}
.ji5{
        font-size: 16px;
    letter-spacing: 0.6px;
    font-family: Lato,sans-serif;
    font-weight: 500;
    color: #222;
}
.customer-page .profile-sidebar .profile-usermenu li.list-group-item{background: #fef8f9;}
.customer-page .profile-sidebar{box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px!important;border-radius: 12px;background: #fef8f9!important;}
.customer-page .profile-sidebar .profile-usermenu li.list-group-item a{
        font-size: 16px;
    font-weight: 600;
    font-family: Lato,sans-serif;
}
.customer-list-order .table th{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Lato,sans-serif;
    padding-bottom:10px;
}
.customer-list-order .table td a{
    font-size: 16px;
    font-weight: 600;
    font-family: Lato,sans-serif;
    text-transform: capitalize;
}
.customer-list-order .table td{
    font-size: 16px;
    font-weight: 600;
    font-family: Lato,sans-serif;
    text-transform: capitalize;
}
.cust3 .table th:nth-child(1), .table td:nth-child(1) {
    min-width: 100px;
}
.cust3 .table th:nth-child(2), .table td:nth-child(2) {
    min-width: 300px;
}
.cust3 .table th:nth-child(3), .table td:nth-child(3) {
    min-width: 100px;
}
.cust3 .table th:nth-child(4), .table td:nth-child(4) {
    min-width: 110px;
}
.cust3 .table th:nth-child(5), .table td:nth-child(5) {
    min-width: 100px;
}
.in{display:inline-block;}
.ml2{margin-left:2px;}
.y7{
    font-size:16px;
    font-weight:600;
    font-family:Lato,sans-serif;
    color:#222;
    text-transform:uppercase;
}
.btn.disabled, .btn:disabled{opacity:1;}

.small, small {
    font-size: 80%;
    font-weight: 600;
    font-family: Lato,sans-serif;
}

.product__content a{
font-size: 16px;
    text-transform: uppercase;
    color: chocolate;
    font-weight: 600;
}
@media (min-width:320px) and (max-width:365px){.btn--custom, button.btn--custom{font-size: 13px;}.product--on-cart .product__content a, .product--on-cart .product__content small{font-size:16px!important;}}
@media (min-width:366px) and (max-width:424px){.btn--custom, button.btn--custom{font-size: 17px;}}
.checkout-table .table th{
    font-size:16px;
    font-weight:600;
    font-family:Lato,sans-serif;
    color:#222;
    text-transform:uppercase;
}
.checkout-table .table th:nth-child(1), .table td:nth-child(1) {
    min-width: 100px;
}
.checkout-table .table th:nth-child(2), .table td:nth-child(2) {
    min-width: 100px;
}
.checkout-table .table th:nth-child(3), .table td:nth-child(3) {
    min-width: 100px;
}
.checkout-table .table th:nth-child(4), .table td:nth-child(4) {
    min-width: 100px;
}
.checkout-table th {text-align:center;padding-bottom:10px;}
.checkout-table td {text-align:center;vertical-align:middle;padding-top:15px;padding-bottom:15px;}
.item-thumb{width:70px;}
.checkout-table .table thead th{border-top:none;}
.er6{
    padding: 30px 0 10px 0;
    font-size: 20px;
    font-family: Lato,sans-serif;
    letter-spacing: 0.07em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: start;
}
.assd{
        font-size: 18px;
    font-weight: 600;
    text-transform: CAPITALIZE;
    color: red;
}
.yt2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0;
    padding-left: 17px!important;
    padding-top: 10px!important;
    border-bottom: 1px solid #2d2a25;
    padding-bottom: 10px!important;
}
.img-flag {
    width: 30px!important;
    height: 30px!important;
    margin-right: 10px!important;
    filter: none!important;
}
.jk91{
    color: #222;
    font-weight: 600!important;
    font-size: 16px!important;
    text-transform: none;
    padding: 0px!important;
    vertical-align: middle;
    text-align: center;
    margin-top: 3px;
}


   .slick-slider .slick-prev, .slick-slider .slick-next {
  z-index: 1;
  font-size: 2.5em;
  height: 40px;
  width: 40px;
  margin-top: -20px;
  color: #B7B7B7;
  position: absolute;
  top: 50%;
  text-align: center;
  color: #000;
  opacity: .3;
  transition: opacity .25s;
  cursor: pointer;
}
.slick-slider .slick-prev:hover, .slick-slider .slick-next:hover {
  opacity: .65;
}
.slick-slider .slick-prev {
  left: 0;
}
.slick-slider .slick-next {
  right: 0;
}

#detail .product-images {
  width: 100%;
  margin: 0 auto;
  border:1px solid #eee;
}
#detail .product-images li, #detail .product-images figure, #detail .product-images a, #detail .product-images img {
  display: block;
  outline: none;
  border: none;
}
#detail .product-images .main-img-slider figure {
  margin: 0 auto;
  padding: 0 2em;
}
#detail .product-images .main-img-slider figure a {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
#detail .product-images .main-img-slider figure a img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#detail .product-images .thumb-nav {
  margin: 0 auto;
  padding:20px 10px;
  max-width: 600px;
}
#detail .product-images .thumb-nav.slick-slider .slick-prev, #detail .product-images .thumb-nav.slick-slider .slick-next {
  font-size: 1.2em;
  height: 20px;
  width: 26px;
  margin-top: -10px;
}
#detail .product-images .thumb-nav.slick-slider .slick-prev {
  margin-left: -30px;
}
#detail .product-images .thumb-nav.slick-slider .slick-next {
  margin-right: -30px;
}
#detail .product-images .thumb-nav li {
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
#detail .product-images .thumb-nav li img {
  display: block;
  width: 100%;
  max-width: 75px;
  margin: 0 auto;
  border: 2px solid transparent;
  -webkit-transition: border-color .25s;
  -ms-transition: border-color .25s;
  -moz-transition: border-color .25s;
  transition: border-color .25s;
}
#detail .product-images .thumb-nav li:hover, #detail .product-images .thumb-nav li:focus {
  border-color: #999;
}
#detail .product-images .thumb-nav li.slick-current img {
  border-color: #d12f81;
}
    .fancybox-container {
      zoom: 1.8;
    }

   
.pdd{padding-left:1rem !important;}
.social-img {
    width: 25px;
    height: 25px;
}
.fq12 {
    width: 30px;
    height: 30px;
}
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}
.social-icons img {
    height: 30px;
    object-fit: cover;
}
.po-ab {
    position: absolute;
    bottom: 108px;
}
.mail {
    color: #d4b196;text-transform:lowercase;
}
.cookie-consent{padding: 2px!important;}
.lo5{
    border-left: 1px solid #d4b196;
    padding: 10px 0px 10px 18px!important;
}
@media (min-width: 1199px){
.mb-1a {
    margin-bottom: 15px!important;
}}
.tab-title {
    font-size: 17px;
    margin-bottom: 30px;
    margin-top: -6px;
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
    text-transform: uppercase;
    list-style:none;
    font-weight:600;
}
.su-8 {
    text-align: right;
    padding-right:20px;
}
.su-7 {
    text-align: left;
    padding-left:20px;
}
.d-101 {
    justify-content: space-between;
    border-bottom: 1px dashed slategrey;
    padding: 5px 0px;
}
.index-overallRating {
    margin: auto 0;
}
.review-star-1 {
    padding-left: 2px;
}
.index-overallRating i {
    cursor: pointer;
}

.review-star-1 i {
    color: #ffa200;
    padding-left: 1px;
}
.index-overallRating a {
    color: #282c3f;
    font-size: 20px;
    vertical-align: middle;
}
.d-101 p {
    font-weight: 700;
    color: red;
    margin: auto 0;
    font-size: 14px;
}
@media screen and (min-width: 1230px){
.d-101 p {
    font-size: 17px!important;
}
.pdp-title54 {
    font-size: 17px!important;
}    
    
    
}
.d-101 p img {
    margin: auto 0;
    vertical-align: top;
    padding-right: 3px;
    padding-left: 3px;
}
.pdp-title54{
    font-weight: 600;
    color: green;
    padding: 0px 0 0 0;
    margin: auto 0;
    font-size:16px;
    text-transform: uppercase;
    line-height: 1; 
}
.container-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0px 0px 0px;
}
.pdp-discount-container {
    margin-bottom: 0px!important;
        /*line-height: 2em;*/
}
.product-right p {
    margin-bottom: 0;
    line-height: 1.5em;
}
.pdp-price{color:#202c3f;}
.pdp-mrp, .pdp-price {
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    font-family: Lato,sans-serif;
}
.pdp-price {
    margin: auto 0;
}
.pdp-discount-container span {
    vertical-align: middle;
    font-weight:600;
    /*color:#202c3f;*/
}
.pdp-discount-container strong {
   font-size:26px;
}
.pdp-discount {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .5px;
    color: chocolate;
    margin-left: 5px;
    vertical-align: middle;
    font-family:Lato,sans-serif;
}
.pdp-name {
    color: dimgrey;
    font-size: 16px;
    opacity: .8;
    font-weight: 600;
    text-transform:uppercase;
    margin-bottom: 0px;
    text-align: end;
    font-family:Lato, sans-serif;
}
.pb-105 {
    padding-bottom: 5px;
}
.pdp-discountTimer {
    font-size: 17px;
    font-weight: 600;
    /* margin-top: 11px; */
    letter-spacing: 1px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    /* background-color: #f9f9f9; */
    display: inline-block;
    vertical-align: top;
    position: relative;
    float: right;
    padding: 1px;
    padding-right: 0px;
}
.pdp-discountTimer .pdp-timerTitle {
    color: #282c3f;
    letter-spacing: -.5px;
    font-family:Lato,sans-serif;
    font-weight:600;
    text-transform:uppercase;
}
.pdp-discountTimer .pdp-discountTime {
    font-weight: 600;
    letter-spacing: -.5px;
    color: Green;
    font-family: helvetica,Assistant;
}
.cour-1 {
    color: #496f5d;
    font-weight: 700;
    font-size: 17px;
    border-top: 1px dashed slategrey;
    vertical-align: middle;
    font-family: Lato,sans-serif;
}
.bb-none {
    border-bottom: none !important;
}
.cour-1 svg {
    margin-right: 3px;
}
.cour-1 span {
    font-weight: 600;
    text-decoration: none;
    /*cursor: pointer;*/
    /*margin-left: 5px;*/
    color: black;
    vertical-align:middle;
}
.cour-1 .m-0{color:darkgreen;text-decoration:underline;}
.border-product {
    padding-bottom: 12px;
    border-top: 1px dashed slategrey;
}

.bb-1 {
    border-bottom: 1px dashed slategrey;
}
.pb-10 {
    padding-bottom: 10px!important;
}
.pt-10 {
    padding-top: 10px!important;
}
.size-box {
    overflow-x: auto;
}
.product-title {
    color: #222;
    text-transform: uppercase;
    font-size: 17px;
    opacity: .8;
    font-weight: 600;
    margin-bottom: 0px;
    font-family: Lato,sans-serif;
}
.product-right p {
    margin-bottom: 0;
    line-height: 1.5em;
}
.pl-556 {
    /*padding-left: 5px;*/
    font-size: 17px;
    color: #222;
    font-family: Lato,sans-serif;
    font-weight: 600;
    margin-bottom: 0px;
}
.jol{
    font-family: Lato,sans-serif;
    font-weight: 600;
}
.container-2 {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 5px 0px 0px 0px;
}
@media screen and (min-width: 767px){
.txt-rs {
    display: flex;
}
}
.bb-1 {
    border-bottom: 1px dashed slategrey;
}
.ola-1 {
    padding-bottom: 10px!important;
    margin-bottom: 0px!important;
}
.container-3 {
    align-items: center;
    padding: 5px 0px 0px 0px;
}


.slick-slide img {
   width: calc(100% - 10px); /* Adjust the width calculation based on the margin */
}
.gt600{
    padding: 15px 0px 15px 0px;
    list-style: none;
    margin-bottom: 0px;
}

.dnm-1 {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
}
.color-variant li.active {
    position: relative;
    border: 2px solid black;
    box-shadow: inset 0 0 0 2px #fff;
}

.color-variant li {
    display: inline-block;
    border-radius: 100%;
    margin-right: 5px;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    vertical-align: middle;
}


.color-variant li {
    height: 34px;
    width: 130px;
    border-radius: 25px;
    cursor: pointer;
}

@media screen and (min-width: 320px) and (max-width: 767px){
.txt-rs {
    text-align: left!important;
}}

.tab-product .nav-material.nav-tabs, .product-full-tab .nav-material.nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
@media (max-width: 1199px){
.tab-product .nav-material.nav-tabs {
    border-bottom: 1px solid #ddd;
    border-right: 0;
}
    .tab-product .nav-material.nav-tabs .nav-item .nav-link.active {
    background-color: unset;
}
}


@media (max-width: 991px){
.tab-product .nav-material.nav-tabs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}}
.tab-product .nav-material.nav-tabs {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    /* -ms-flex-wrap: unset; */
    /* flex-wrap: unset; */
    white-space: nowrap;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
}
.nav-material .nav-item {
    min-width: 150px;
}
.nav-tabs .nav-item {
    min-width: unset;
}

@media (max-width: 577px){
.tab-product .nav-material.nav-tabs .nav-item .nav-link {
    white-space: nowrap;
}
    .tab-product .tab-content.nav-material p {
    line-height: 1.5;
}
}

@media (max-width: 420px){
.tab-product .nav-material.nav-tabs .nav-item .nav-link {
    padding: 10px 20px;
    padding-top: 0;
}}

.tab-product .nav-material.nav-tabs .nav-link.active, .product-full-tab .nav-material.nav-tabs .nav-link.active {
    color: chocolate;
}
.tab-product .nav-material.nav-tabs .nav-item .nav-link, .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
    color: #212121;
    text-align: center;
    padding: 15px 15px 20px 15px;
    text-transform: uppercase;
    border: 0;
    font-weight: 600;
    font-size: 16px;
}

.tab-product .nav-material.nav-tabs .nav-item .material-border, .product-full-tab .nav-material.nav-tabs .nav-item .material-border {
    border-bottom: 2px solid #d4b196;
    opacity: 0;
}
.tab-product .nav-material.nav-tabs .nav-link.active~.material-border, .product-full-tab .nav-material.nav-tabs .nav-link.active~.material-border {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}
.bb-2-theme {
    border-bottom: 2px #d4b196;
}
.text-left {
    text-align: left!important;
}

.tab-pane .o-e {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    /* position: relative; */
}
.tab-product .product-tab-discription .part, .product-full-tab .product-tab-discription .part {
    margin-bottom: 20px;
}
.tab-product .product-tab-discription .part .inner-title, .product-full-tab .product-tab-discription .part .inner-title {
    font-weight: 600!important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    line-height: 24px;
    letter-spacing: 0.05em;
}
.tab-product .tab-content.nav-material p, .product-full-tab .tab-content.nav-material p {
    margin-bottom: 0;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 16px;
}
 /*progree bar css starts*/
       .progress2 {
           width:70%;
        padding: 4px;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.25);
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
        /*margin-bottom: 10px;*/
        height:26px;
    }

    .progress-bar2 {
        height: 18px;
        border-radius: 15px;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
        transition: 0.4s linear;
        transition-property: width, background-color;
    }

    .progress-moved .progress-bar2 {
        background-color: #ffa200;
    }

    .o-i:nth-child(1) .progress-moved .progress-bar2 {
        animation: progressAnimation1 6s forwards;
    }

    .o-i:nth-child(2) .progress-moved .progress-bar2 {
        animation: progressAnimation2 6s forwards;
    }

    .o-i:nth-child(3) .progress-moved .progress-bar2 {
        animation: progressAnimation3 6s forwards;
    }

    .o-i:nth-child(4) .progress-moved .progress-bar2 {
        animation: progressAnimation4 6s forwards; 
    }

    .o-i:nth-child(5) .progress-moved .progress-bar2 {
        animation: progressAnimation5 6s forwards;
    }

    @keyframes progressAnimation1 {
        0% {
            width: 0%;
            background-color: #ffa200;
        }

        100% {
            width: 95%;
            background-color: #ffa200;
        }
    }

    @keyframes progressAnimation2 {
        0% {
            width: 0%;
            background-color: #ffa200;
        }

        100% {
            width: 3%;
            background-color: #ffa200;
        }
    }

    @keyframes progressAnimation3 {
        0% {
            width: 0%;
            background-color: #ffa200;
        }

        100% {
            width: 2%;
            background-color: #ffa200;
        }
    }

    @keyframes progressAnimation4 {
        0% {
            width: 0%;
            background-color: #ffa200;
        }

        100% {
            width: 2%;
            background-color: #ffa200;
        }
    }

    @keyframes progressAnimation5 {
        0% {
            width: 0%;
            background-color: #ffa200;
        }

        100% {
            width: 0%;
            background-color: #ffa200;
        }
    }
    .ptb-5{padding-top:5px;padding-bottom:5px;}
    .o-i span:nth-child(1){padding-right:5px;}
    .o-i .txt-rght{padding-left:5px;}
    .o-i span{color: #222;
    text-transform: capitalize;
    font-size: 17px;
    opacity: .8;
    font-weight: 600;
    margin-bottom: 0px;} 
    /*progress bar css ends*/
    .pt-500{padding-top:5px;}
    /*review start*/
    .review-container{border-top:1px dashed slategrey;}
    
    .review-card__review-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 0 0 10px;
}
.review-card__review-images--inner {
    width: 100px;
    height: 84px;
}
.review-card__review-images--inner-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 2px;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}
.review-card {
    width: 100%;
    /*margin: 10px 0;*/
    padding-bottom:10px;
}
.review-card-inner {
    padding: 5px 0;
}
.tab-pane .o-e{display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    /*position: relative;*/
}
.review-card__review {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    margin: 0;
}
    /*review ends*/
    /*review reply starts*/
    .review-card-reply{
        background-color: #f8f9fa;
    border-left: 3px solid #d4b196;
    padding: 16px 12px 16px 32px;
    border-radius: 2px;
    height: auto;
    display: inline-block;
    max-width: 95%;
    margin-bottom:2px;
    }
    .review-reply-tile{
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    padding: 5px 0;
    }
    .review-reply-text{
        font-size: 14px;
    line-height: 20px;
    margin: 0;
    padding: 5px 0;
    }
    /*review reply ends*/
    .tab-product .tab-content.nav-material{padding-top:0px;}
    .bb-2-theme {border-bottom:2px #d4b196;}
    .nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.nav-item a {
    border-top: 1px solid #d4b196!important;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out;
}
.mt-10{margin-top:10px;}
.bg-light0 {
    background-color: #d7d8d9;
}

.bg-light1 {
    background-color: #ffdc75;
}

.bg-light2 {
    background-color: #f5b3b2;
}

.bg-color1 {
    background-color: #c6c6c6
}

.bg-color2 {
    background-color: #ab5252
}

.bg-color3 {
    background-color: #6d6d6d
}
.bg-3 {
    background-color: #f5b3b2;
}
.nav-tabs .nav-link.active {background-color:transparent;}
.product--detail .product__attribute .text-swatch li span{align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;}
    .space {
    margin-top: 10px;
}
.home-slider .slider-contain.product-detail p, .center-slider .slider-contain.product-detail p {
    line-height: 30px;
    font-size: 20px;
    color: #d4b196;
    margin: 0 auto;
}
 .widget--shop .widget-content .text-swatch li span {
    height: 30px;
    width: 75px;
    border: 1px solid black;
    border-radius: 25px;
    cursor: pointer;
    transition: .2s;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.mb-10{margin-bottom:10px;}
.pd-1 {
    margin: 0px !important;
    display: flex;
    padding: 0px !important;
    border-top: 1px solid #d4b196;
    border-bottom: 1px solid #d4b196;
}
.product-detail {
    padding-left: 5px;
    margin-top: 15px;
}
.product-detail {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 0;
}
@media (max-width: 420px){
.product-detail {
    padding-left: 5px;
    padding-bottom: 8px;
    padding-right: 5px;
    padding-top: 6px;
}}
.pd-2 {
    border-right: 1px solid #d4b196;
}
.product-detail a i,.product-detail a svg {
    font-size: 19px;
    color: #2d2a25;
}
.pd-3 a , .pd-2 a {
    display: block;
    padding-top: 10px;
    margin: 0 auto;
    border: none;
    background-color: #fff;
    padding-top: 6px !important;
    padding-bottom: 2px !important;
}
 .pd-2 a i:hover, .pd-3 a i:hover {
    color: #d4b196;
}
.pd-2 a svg:hover, .pd-3 a svg:hover{fill:#d4b196;}
 .product-detail h6, .product-box .product-info h6, .product-wrap .product-detail h6, .product-wrap .product-info h6 {
    line-height: 1;
    color: #2d2a25;
    margin-bottom: 0;
    padding-top: 0px;
    padding-bottom: 6px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
    .space {
    margin-top: 10px;
}
.home-slider .slider-contain.product-detail p, .center-slider .slider-contain.product-detail p {
    line-height: 30px;
    font-size: 20px;
    color: #d4b196;
    margin: 0 auto;
}
.center-1 {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 12px;
}
.sz-1 {
    padding-top: 25px;
}
.mod{font-size:20px;}
@media (max-width: 769px){.product-info-desktop{display:none;}
.pdp-title1 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
    color: #282c3f;
}
    
}
 @media (min-width: 769px){.product-info-mobile{display:none;}}
@media screen and (min-width: 320px) and (max-width: 340px){
.index-overallRating {
    font-size: 14px;}
.pdp-title {
    font-size: 14px!important;
}    

.pdp-name, .pdp-discountTimer {
    font-size: 14.5px;
}
.pdp-name1{font-size: 14.5px;
    color: #535665;
    opacity: .8;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: end;
}
.product .product__price.sale del{font-size: 15px!important;}
}


@media screen and (min-width: 360px) and (max-width: 425px){
.index-overallRating {
    font-size: 16px;
}
.pdp-title {
    font-size: 16px!important;
}
.pdp-mrp, .pdp-price {
    font-size: 25px;
    vertical-align: middle;
}

.pdp-name, .pdp-discountTimer {
    font-size: 16px;
}
.pdp-name1{font-size: 17px;}
}

@media screen and (min-width: 425px) and (max-width: 767px){
.index-overallRating {
    font-size: 19px;
}
.pdp-title54 {
    font-size: 17px!important;
}
.pdp-price {
    font-size: 25px;
    vertical-align: middle;
}
.pdp-discount {
    font-size: 17px;
    vertical-align: middle;
}
.pdp-name, .pdp-discountTimer {
    font-size: 17px;
}
.pdp-name1{font-size: 17px;
    color: #535665;
    opacity: .8;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: end;}
}
.p-top img{vertical-align:top;}
.p-top{font-size:17px;color:chocolate;}
.item a img{width:100%;}
.pt-35{padding-top:3.5px;}
.ak-1 {
    height: 80px;
}
.main-menu {
   position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9;
}
.container-0{max-width:97%;
width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}
.navigation__left a{height: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: auto;}
   


 .product-box {
    width: 100%;
    display: flex;
    border: 0px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    /*margin-top: 20px;*/
}
 .product-box {
    width: 100%;
    /* -webkit-box-flex: 0; */
    /* -ms-flex: 0 0 25%; */
    /* flex: 0 0 25%; */
    max-width: calc(25% - 30px);
    margin: 0 15px 30px;
    padding: 0;
}
@media (max-width: 1199px) {
    .product-box {
        margin: 0 15px 30px;
    }
}

@media (max-width: 991px) {
    .product-box {
            max-width: calc(33.3333% - 30px);
        margin: 0 15px 30px !important;
    }
}

@media (max-width: 555px) {
    .product-box {
        max-width: calc(50% - 20px);
        margin: 0 10px 20px !important;
    }
}

.product{margin:0px!important;}
.fr12 {
    width: 21px;
    height: 22px;
}
.shop-cart-icons-w{
    width:25px;
    height:25px;
}
.wishlist-icons-w{
    width:25px;
    height:25px;
}
.icon-list33 {
    border-top: 1px solid burlywood;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f172a;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index:99;
    padding-bottom: 8px;
    height: 49px;
}
.icon-list33 li img {
    width: 25px;
    height: 25px;
    filter: invert(1);
    margin: 0px;
}

@media (min-width: 768px) and (max-width: 2560px){
.icon-list33 {
    display: none!important;
}
    .dropdown ul {
    top: 98%;
}
}

@media(max-width:767px){
    .rt9 {
    border-left: none;
    padding: 0!important;
}
.r4 {
    border-left: none;
    padding: 0px!important;
}
.wishlist_count,.panel-trigger .badge{
  position: absolute;
    bottom: 20.5px;
    left: 13px;
    transform: translate(25%, 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    line-height: 14px;
    background-color: red;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
}
.b{
    height: 40px!important;
    margin-bottom: 0px;
    width: 140px;
}
.menu{padding:0px;}
.dropdown ul {
    bottom: 70%;
    margin-bottom:20px;
}
.rt234{right:0px!important;}
.left76{left:0px;}
}
.jy0 ul{left:12px!important;}
.dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-weight:700;
  font-family:Lato,sans-serif;
  text-transform:uppercase;
}

.dropdown-container {
  display: none;
  background-color: #262626;
  padding-left: 8px;
}
.mobile-bar {
  display: none;
  background-color: #262626;
  padding-left: 8px;
}
.fa-plus {
  float: right;
  padding-right: 8px;
  /*transform: rotate(0deg);*/
  transition: transform 0.3s ease; 
  top:51%;
  font-size:10px;
  margin-top:10px;
}

.fa-minus {
  float: right;
  padding-right: 8px;
  /*transform: rotate(0deg);*/
  transition: transform 0.3s ease; 
  top:51%;
  font-size:10px;
  margin-top:10px;
}


.dropdown-container {
  display: none;
  background-color: transparent;
  padding-left: 8px;
      transition: max-height 0.3s ease-in-out; 
}

.mobile-bar {
  display: none;
  background-color: transparent;
  padding-left: 8px;
      transition: max-height 0.3s ease-in-out; 
}

.dropdown-container a {
  padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 14px;
    color: black;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    font-family: Lato,sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}
.mobile-bar a {
  /*padding: 6px 8px 6px 16px;*/
  padding:20px 12px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    font-family: Lato,sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0.07em;
}

.bh-1:hover{color: #d4b196;}

.po2 h6{text-transform:uppercase;}

.searchbar{width: 50%;
     margin-right: 40px;
    margin-left: auto;}
.form--primary-search{width:50%;margin:auto;}
.form--primary-search input::placeholder {font-size:18px;}
.site-mask form{display:none;}
@media (max-width: 500px) {
  .site-mask {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; 
  }

    .site-mask form{display:none; width: 95%;}
    .form--primary-search{display:none;}
    .panel--search .container{justify-content: center; vertical-align:middle;}
    .panel--search .container img {
    width: 140px;
    height: 40px;
}
.panel--search{height: 50px;}
.panel--search .panel__close{ padding-right:11px; position:absolute;right:3px;}

}
@media (min-width: 362px) and (max-width: 373px) {.panel--search .container {padding-left: 1px;}}
.well{
        border-top: 1px solid #dee2e6;
    padding-top: 12px;
    margin:auto;
}
.bold{font-weight:700!important;}
.sub-but{
        background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    letter-spacing: 0.05em;
    background-size: 850px;
    background-repeat: no-repeat;
    background-position: 0;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
}
.q8{
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.r5{font-weight:700!important;}
.pl-0{margin-left:0px!important;}
.ml-5{margin-left:8px;margin-bottom:10px;}
.pl-5{padding-left:12px!important;}
.product-3{
        color: #222;
    text-transform: capitalize;
    font-size: 17px;
    opacity: .8;
    font-weight: 600;
    margin-bottom: 0;
    font-family: Lato,sans-serif;
}
@media screen and (min-width: 360px) and (max-width: 424px){
.pdp-title54 {
    font-size: 16px!important;
}
    .pdp-name1 {
    font-size: 17px;
    color: #535665;
    opacity: .8;
    font-weight: 600;
    margin-bottom: 0px;
    text-align: end;
}
}
.p-top{font-weight:600;}
@media (max-width: 420px){
    .product .product__price{font-size: 18px!important;}
    .product .product__price.sale del{font-size: 15px;}
    .product .product__title{padding-bottom:0px!important;font-weight:600!important;padding-top:0px!important;}
    .product__price  span{font-weight:600;} 
}
@media(max-width:767px){
.mr-7{margin-right:7px;}.product--detail .product__thumbnail{margin-bottom:0px!important;}.bb09{text-align:center;}.grzz{margin-top:50px;}
    .pt-10 {
    padding-top: 5px;
}

.pb-10 {
    padding-bottom: 5px!important;
}
.showbtn i{padding:0px;}

.pl-5{padding-top: 10px!important;
    padding-bottom: 10px!important;
    padding-left:0px!important;}
.show-button12{padding:0px;}
.tab-title{margin-bottom:10px;}
.pr5{padding-bottom:10px;}
.service-block1 svg{height:46px!important;}
.service-block1 h4{font-size:16px;}
.service-block12{margin-top:20px;}
.bot99{margin-bottom:25px;}
#upArrow{bottom: 60px!important;
    right: 10px!important;}
.tim90{display:none!important;}
}
@media (min-width: 768px){
.container, .container-md, .container-sm {
    max-width: 97%;
}}
@media (min-width: 992px){
.container, .container-lg, .container-md, .container-sm {
    max-width: 97%;
}}
@media screen and (min-width: 320px) and (max-width: 330px){
.cour-1 {
    font-size: 14px!important;
}}
.fz-16 {
    font-size: 18px;
}
.solid-222 {
    background-color: #d4b196!important;
    color: #2d2a25!important;
    border: 1px solid #d4b196!important;
}
.solid-222:hover {
    background-color: #2d2a25!important;
    color: #d4b196!important;
    border: 1px solid #2d2a25;
}

.show-button12{padding: 40px 40px 40px 0;}
.wi300{width:320px!important;}
.col-0{background-color:#000!important;padding}
.col-0 h4{
    font-weight: 600!important;
    color: #d4b196!important;
    font-size: 17px;
}
.add-to-cart-button, .product__favorite{cursor:pointer;}
.mll-20{margin-left:10px;}
#upArrow {
   display: none;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: fixed;
    bottom: 50px!important;
    right: 12px;
    z-index: 8;
    display: none;
    color: #0f172a;
    text-align: center;
    background: burlywood;
    border: none;
    font-size: 30px;
    padding: 0px;
    cursor: pointer;
    opacity: 0.75;
    }
.fa-angle-double-up:before {
    content: "";
}
.fa-angle-double-up{margin-bottom:20px;}
@media (max-width: 577px){
#upArrow {
    width: 35px;
    height: 35px;
    padding: 2px;
    font-size: 19px;
    right: 3px
}}
@media(max-width:1200px){
    .t6{display:none!important;}
}
@media(min-width:768px) and (max-width:1200px){
    .navigation--mobile{height:80px;justify-content:normal;}
    .rt77{margin:auto;}
    .show-button13{padding:0px 40px 0px 0px;}
    .breadcrumb-wrapper{margin-top:80px;}
     .p9{padding: 35px 20px 30px 20px!important;
    background-color: #fff!important;}
    .p9 h4{color:#000!important;font-size:18px!important;text-transform:uppercase!important;font-weight:700!important;}
    .collection-filter-block{border-top:none!important;border-top:none!important;}
    .b-g70, .pb-15 {
    border-top: 1px solid #000;
}
.col-0{padding:39px!important;}
.f9{margin-top:15px!important;}
.pdp-name1 {
    color: #535665;
    /* padding: 10px 0px 12px 0; */
    font-size: 17px;
    opacity: .8;
    font-weight: 600;
    margin-bottom: 0px;
    /* float: right; */
    text-align: end;
}
.header .btn-shopping-cart>span{bottom:72%;top: unset;}
.grzz{margin-top:80px;}
}
@media (min-width: 1023px) and (max-width: 1199px){
.sd0 {
    border-right: 1px solid #d4b196;
    padding: 10px 20px 10px 0px!important;
}}
@media (min-width: 768px) and (max-width: 991px){
.mobile-search {
    border-right: 1px solid #d4b196;
    padding: 10px 20px 10px 0px!important;
}
.navigation--mobile{padding:10px 15px;}
.dropdown ul{top: 62px!important;}
.po355:before{right: 0px;left:unset;}
.z4 ul {
    right: 0px!important;
    left: auto!important;
}
}
@media (min-width:768px) and (max-width:992px){
    .dis-1{display:none!important;}
    
}
@media (max-width: 991px) and (min-width: 767px){
.partition-f>div+div+div {
    margin-top: 30px;
}}
@media (min-width:768px) and (max-width: 991px){
.footer-theme .col {
    max-width: 50%;
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
}}
@media (min-width:992px) and (max-width:1200px){
    .product--detail .product__header .product__thumbnail {
    padding-right: 20px;
}
}
.pbt-35 {
    padding-bottom: 35px!important;
    padding-top: 35px!important;
}
.phonepbt {
    padding-bottom: 35px!important;
    padding-top: 35px!important;
}
@media(max-width:426px){.phonepbt{padding-bottom: 5px!important;
    padding-top: 0px!important;}}
@media(min-width:992px) and (max-width:1200px){
    .navigation--mobile{padding:10px 15px;}
    .dropdown ul{top: 66px!important;}
}
.row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
@media(max-width:767px){
    .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

}
.title1 {
    text-align: center;
    padding-top:25px;
}
.title-gradient{color: #2d2a25;}
.title1 .title-inner1 {
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    font-size: 32px;
}
.so-1 {
    padding: 10px 0px;
}
.so-1 li {
    padding: 0px 25px;
    list-style:none;
}
.so-1 li a {
    color: #2d2a25;
    text-transform: uppercase;
    font-size: 17px;
    font-family: lato,sans-serif;
    font-weight: 600;
}
.so-1 .active a {
    color: chocolate;
}
.su-7 {
    text-align: left;
    border-left: 1px solid lightgrey;
}
.filter-container {
    display: flex;
    text-align: center;
}
@media (min-width: 1025px) and (max-width: 2560px){
.filter-container {
    justify-content: center;
}}
#filter-men.active {
    display: flex;
}
.sop-1 {
    border-top: 1px solid #d4b196;
    border-bottom: 1px solid #d4b196;
    padding: 12px 0px;
}
.filter {
    font-size: 14px;
    white-space: nowrap;
    height: 36px;
    /* border: 1px solid #656565; */
    border-radius: 18px;
    padding: 0 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin-right: 8px;
    line-height: 1em;
    box-shadow: 6px 6px 18px #4779c040;
}
.filter:hover {
    color: #d4b196;
    background-color: black;
}

/*Category Page Css Start*/
.dip-1 {
    display: none;
}

.collection-filter-block {
    padding: 0 30px;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9;
}
.collection-mobile-back {
    padding: 15px 0;
    border-bottom: 1px solid black;
    display: none;
}
.collection-mobile-back span {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}
.collection-mobile-back span i {
    margin-right: 5px;
}
.b-0 {
    border-bottom: none;
}
.pb-15 {
    padding-bottom: 20px!important;
    border-bottom: 1px solid black;
}
.collap {
    cursor: pointer;
    text-transform: uppercase;
    font-size: 21px;
    color: chocolate;
    font-weight: 600;
    margin: 22px 0 0 0;
    text-align: center;
}
.collap i {
    padding-right: 5px;
    font-size: 21px;
    color: chocolate;
}
.b-112 {
    border-top: none;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.pt-24 {
    padding-top: 20px;
}

.collection-collapse-block {
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}
.collection-collapse-block .collapse-block-title {
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 17px;
    color: #444;
    font-weight: 600;
    margin: 20px 0 0 0;
}

.collapse-b {
    margin-top: 0px!important;
}
.collection-collapse-block .collapse-block-title:after {
    position: absolute;
    display: block;
    top: 0;
    right: 1px;
    content: "\f0d7";
    font-family: FontAwesome;
    color: #444;
}
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}
.form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox {
    margin-bottom: 8px;
}
.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox:first-child {
    margin-top: 30px;
}
.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    -webkit-transition: background-color 0.15s ease-in-out,background-position 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,background-position 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,background-position 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out,background-position 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
}
input[type="checkbox"] {
    margin-right: 10px;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}
.form-check-input[type="checkbox"] {
    border-radius: 0px;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
    border: 1px solid rgba(0,0,0,1);
}
.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label {
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-left: 10px;
}
.collection-collapse-block .collection-collapse-block-content .color-selector {
    margin-top: 30px;
}
.d-33 .form-check-input {
    margin-bottom: 20px;
}
.d-34 {
    display: flex;
    justify-content: center;
    height: 25px;
    width: 80px;
    border-radius: 18px;
    margin-right: 5px;
    cursor: pointer;
}
.color-selector ul .color-1 {
    background-color: #d7d8d9;
}
.ml-5 {
    margin-left: 10px;
}
.d-34 .text-center {
    font-size: 12px;
    margin: auto;
}
.color-selector ul .color-2 {
    background-color: #ffdc75;
}
.color-selector ul .color-3 {
    background-color: #f5b3b2;
}
.color-selector ul .color-4 {
    background-color: #f5b3b2;
}
.collapse-b { margin-top: 0px !important; }
    .collection-collapse-block-content { display: none; }


/*Responsive */


@media(max-width:767px){
    .shop--sidebar .shop__header{margin-bottom:15px;text-align:center;}
    .line66{padding-top:25px!important;}
}
@media (max-width: 1199px){
.title1 .title-inner1 {
    padding-bottom: 15px;
}}
@media (max-width: 360px){
.title1 .title-inner1 {
    font-size: 25px;
}}
@media (max-width: 420px){
.title1 .title-inner1 {
    font-size: 22px;
}}
@media (max-width: 577px){
.title1 .title-inner1 {
    font-size: 24px;
}}
@media (max-width: 1024px){
.filter-container {
    overflow-x: auto;
    width: 95%;
    margin: auto;
    border-top: 1px solid #d4b196;
    border-bottom: 1px solid #d4b196;
}}
@media (max-width: 1024px){
.sop-1 {
    border: none;
}}
@media(min-width:768px) and (max-width:1200px){
    .shop--sidebar .shop__header{text-align:center;margin-bottom:15px;}
}
.btn-filters{
    width: auto;
    border-radius: 0;
    font-size: 18px;
    background-color: chocolate;
    padding: 5px 16px!important;
    color: #fff;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
}
@media (max-width: 577px){
.btn-filters {
    font-size: 14px;
}}
@media(min-width:320px) and (max-width:1200px){
    .b-g70{width:320px!important;
        -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 1px 0 5px #ddd;
    box-shadow: 1px 0 5px #ddd;
    }
    .collection-filter-block{background-color:#fff!important;padding:0px 20px!important;}
}
.title1 .title-inner1 {
    padding-bottom: 15px;
}


/*Category Page Css End*/


.current a {
    color: chocolate;
}
.p90{
    max-width: calc(25% - 20px);
    margin: 0px 9px 30px!important;
    padding: 0;
}

@media(max-width:767px){
    .p90{
    max-width: calc(50% - 20px);
    margin: 0px 10px 30px!important;
    padding: 0;
    }
    .product .product__title{font-size:17px;}
    .sidebar .top{padding: 10px 12px;}
    .b-g70, .pb-15{border-top: 1px solid #000;}
    .p9{padding: 35px 20px 30px 20px!important;
    background-color: #fff!important;}
    .p9 h4{color:#000!important;font-size:18px!important;text-transform:uppercase!important;font-weight:700!important;}
    .collection-filter-block{border-top:none!important;border-top:none!important;}
}
@media(min-width:768px) and (max-width:991px){
    .p90{
    max-width: calc(33% - 18px);
    margin: 0 10px 20px 10px!important;
    padding: 0;
    }
}
@media(min-width:992px) and (max-width:1200px){
    .p90{
    max-width: calc(25% - 20px);
    margin: 0 10px 20px 10px!important;
    padding: 0;
    }
}
@media (max-width: 480px){
.home-slider .home {
    height: 45vh;
}}

@media (max-width: 575px){
.home-slider .slider-contain {
    width: 98%;
    margin: auto;
    height:auto;
    margin-top:8px;
}}
@media (max-width: 767px){
.home-slider .slider-contain.product-detail p {
    line-height: 22px;
    font-size: 17px;
}
.col-0{padding:25px!important;}
/*.pd-3 a, .pd-2 a{padding-top: 5px!important;*/
/*    padding-bottom: 1px!important;}*/
}
@media (max-width: 1201px){.f9{
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-left: 40px;
    text-transform: uppercase;
     /*margin-top: 3px; */
    /*left: 0;*/
    color: #fff;
}}
@media(min-width:376px) and (max-width:500px){
    .product .product__title{padding-bottom:0px!important;font-weight:600!important;padding-top:0px!important;}
    .product .product__wrapper .r56{padding:4px 8px 4px 8px!important;}
}
.bracelets.active {
  background-color: black;
  color: #d4b196;
}
.ring.active{
   background-color: black;
  color: #d4b196; 
}
.chains.active{
   background-color: black;
  color: #d4b196; 
}
.earrings.active{
  background-color: black;
  color: #d4b196;   
}
.pendant.active{
  background-color: black;
  color: #d4b196;   
}
.watches.active{
  background-color: black;
  color: #d4b196;   
}
.stud.active{
  background-color: black;
  color: #d4b196;   
}
.anklets.active{
  background-color: black;
  color: #d4b196;   
}
.custom.active{
  background-color: black;
  color: #d4b196;   
}
.bundle.active{
  background-color: black;
  color: #d4b196;   
}
.gold.active{
  background-color: black;
  color: #d4b196;   
}
.necklace.active{
  background-color: black;
  color: #d4b196;   
}

.bh-2 {border-bottom:1px solid #2d2a25;}
@media (max-width: 426px){
.sidebar .top {
    height: 50px;
}
}
.xuv{color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.07em;
    font-size:16px;
}
.xvu li{color:grey;font-size:16px;}
.xvu li span{color:chocolate;font-size:16px;}
.bg-white{background-color:white!important;}
.bg-ddd{background-color:#ddd!important;}
.bg-f2{background-color:#f2f2f2!important;}
.tt-none{text-transform:none!important;}
#sub-menu{overflow-y:auto; height: 74vh;}
.pixelstrap li a:hover{padding:none;}
.cur-auto{  cursor: auto!important; }
.menu div:hover,.menu li:hover{color:#d4b196;}
.bh-2 .active{color:#d4b196;}
.b-1{border:1px solid #d4b196;}
.br-1{border-right:1px solid #d4b196;}
.lock-scroll {
  overflow-y: hidden!important;
}

.act form{display:block!important;}
@media (min-width:500px){
   .act .form-control{ position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
       width:95%;
   }
}

.po4:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #d4b196;
    content: "";
    bottom: -7px;
    position: absolute;
    right: 0px;
    z-index: 2;
      transform: rotate(180deg);
}

.po5:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #d4b196;
    content: "";
    bottom: -7px;
    position: absolute;
    left: 0px;
    z-index: 2;
      transform: rotate(180deg);
}
.pd-2 a svg{width: 19px!important;
    display: block;
    height: 19px!important;
    margin: auto;}
.pd-2 a svg path{height: 19px!important;width: 19px!important;}
.pd-2 a:hover svg path{
    fill: #d4b196;
}
.pt-0{padding-top:0px!important;}
.b1b{border-bottom:1px solid #d4b196;}
.bb-blck{border-bottom:1px solid black;}
/*tab section css starts*/
  .content {
  display: none;
  opacity: 0;
  -webkit-animation: display-none-transition 1s ease;
  animation: display-none-transition 1s ease;
}
.content-section .active {
  display: block;
  opacity: 1;
}
.d-box .active{color:chocolate;}
.d-box li{font-weight:500;}
.d-box .su-7{padding-left:10px;}
.d-box .su-8{padding-right:10px;}
/*tab section ends*/
.panel__content .menu--mobile li{padding: 10px 0px!important;
    font-size: 18px;
    /*color: #222;*/
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}
.panel__content .d-box{
    padding-bottom:10px;
    justify-content:center;
}
@media (max-width: 767px){
.panel__content .menu--mobile li{
    padding: 18px 5px;
}}
/*.panel__content .menu--mobile{box-shadow: -5px 5px 7px -3px #d4b196 inset;}*/
/*.panel__content .menu--mobile li{box-shadow: 5px -5px 7px -3px #d4b196 inset;}*/

@keyframes scaleAndFadeIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.product-box {
    animation: scaleAndFadeIn 1s ease-in-out;
}
@media(min-width:420px) and (max-width:767px){
    .product .product__title{font-size: 19px!important;
    margin-bottom: 6px!important;
    margin-top: 5px!important; }
}


.maleArrival, .femaleArrival, .bestMale, .bestFemale, .bracMale, .bracFemale, .chainMale, .chainFemale, .earMale, .earFemale, .penMale, .penFemale, .ringMale,
.ringFemale, .watMale, .watFemale, .dealMale, .dealFemale{cursor:pointer;font-weight:600;}
 .product-boxs {
    /*box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 2px 2px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.15), 0 16px 16px rgba(0, 0, 0, 0.15);*/
    border-radius: 0.5rem;
    background-color: transparent;
}
.product-boxs, .product-wrap {
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    vertical-align: middle;
    cursor:pointers;
}
.product-boxs .img-wrapper, .product-wrap .img-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.img-wrapper {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.product-boxs .img-wrapper .front, .product-wrap .img-wrapper .front {
    opacity: 1;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.ratio_asos .bg-size:before {
    padding-top: 127.7777778%;
    content: "";
    display: block;
}
.product-boxs .img-wrapper .back,
.product-wrap .img-wrapper .back {
    opacity: 0;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translateX(-100px);
    width: 100%;
}

.product-boxs:hover .img-wrapper .back,
.product-wrap:hover .img-wrapper .back {
    opacity: 1;
    transform: translateX(0); /* Adjust the transform property as needed */
}
.blur-up {
    filter: blur(0px)!important; /* Adjust or remove this line */
    transition: filter 0.3s!important; /* Adjust or remove this line */
}

.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}
.ry6{display:flex;}
.countDown span{
    font-weight: 600;
    letter-spacing: -.5px;
    color: Green;
    font-family: helvetica,Assistant;
}
.review22{
    text-align: center; 
    font-size: 18px;
    color: red;
    text-transform: uppercase;
    font-family: Lato,sans-serif;
    width: 100%;
    display: block;
    margin-top: 6.5%;
    font-weight:600;
}
.pb-3px{padding-bottom:3px!important;}
.pb-05{padding-bottom:5px!important;}
.pt-05{padding-top:5px!important;}
@media (max-width:430px){
    .pdp-price {font-size: 22px;vertical-align: middle;}
    .pdp-discount {font-size: 14px;vertical-align: middle;}
    .pdp-name {font-size: 14px;}
}
.d-tab{display:none;}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .d-tab{display:block;}.d-mobile{display:none;}
    .product-info-mobile{margin-bottom:5px;}
    
}
.j-end{justify-content:flex-end;}
.pbt-8px{padding-bottom:8px!important;padding-top:8px!important;}
.mt-8px{margin-top:8px!important}
.mb-8px{margin-bottom:8px!important}
.color-swatch li{border: 1px solid black;
    height: 32px!important;
    width: 85px!important;
    border-radius:25px;cursor:pointer;
}
.color-swatch .active{border: 1px solid black;background-color:black;color:white;cursor:pointer}
@media(max-widht:520px){.color-swatch li{margin-bottom:5px;}}
.bt-bm{border-top:1px solid #2d2a25;}
.dropdown-nav li a:hover{color:chocolate;}
.cart-box span i{    font-size:32px;float:left;color:chocolate;}
.cart-box span  {padding-left:8px;font-weight: 400;cursor: pointer;}
.cart-box h4{font-size:x-large;margin:0 auto;}
.cart-box{
    display: flex;
  align-items: center;
  justify-content: center;
  background-color:black;
  height:80px;
  border-bottom:1px solid #d4b196;
}
@media(max-width:768px){.cart-box{height:50px!important;}}
@media (min-width: 990px) and (max-width: 1188px) {.contact-list li .mail,.contact-list li span{font-size:16px;}}
@media only screen and (min-width: 768px) and (max-width: 991px) {.right-300{right:300px;}}
.fancybox-button--close svg path{stroke:#fff;stroke-width:5px!important;}
.fancybox-button--zoom svg path {stroke: #fff!important;stroke-width:2px!important;}
.footer-theme .sub-title li a:hover{color:burlywood;}
.slider-nav .slick-active,.slider-nav .slick-cloned,.slider-nav .slick-slide{opacity:0.5;}
.slider-nav .slick-center{opacity:1;}
.footer-theme .sub-title li {
    position: relative;
    display: inherit;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 14px;
    color: white;
    text-transform:uppercase;
}

.sub-footer {
    background-color: black;
    border-top: 1px solid #d4b196;
    
}
.pl-18{padding-left:18px !important;}
@media(max-width: 365px) {.sub-footer p{font-size:14px;}}
.ml-5px{margin-left:5px !important;}
@media (max-width: 767px) {.res-pay {display: none !important;}}
.res-pay {display: flex;}
@media (max-width: 991px) and (min-width: 767px){.footer-theme .saas{margin-top:0px!important;}}
@media screen and (min-width: 551px) and (max-width: 991px) {.product-box:nth-child(4)
{display: none;}}
.mb-5px{margin-bottom:10px!important;}
.pl-2px{padding-left:0px!important;}
.simple-pagination ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: right;
}
 
    @media (max-width: 767px){
.simple-pagination ul {
    text-align: center;
}}
.simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}
.simple-pagination .prev.current, .simple-pagination .next.current {
    background: #d4b196;
}
.simple-pagination .current {
    color: #FFF;
    background-color: #d4b196;
    border-color: #d4b196;
}


.simple-pagination li a, .simple-pagination li span {
    color: #000;
    padding: 12px 15px;
    text-decoration: none;
    border: 1px solid #ddd;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px #EEE;
    border-radius: 5px;
    font-size: 12px;
}
@media (max-width: 767px){
.simple-pagination li a, .simple-pagination li span {
    padding: 5px 10px;
    font-size: 15px;
}}
.simple-pagination ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	text-align: center;
}

.simple-pagination li {
	display: inline-block;
	margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #EEE;
	background-color: #FFF;
	box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
	color: #FFF;
	background-color: #FF7182;
	border-color: #FF7182;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #e04e60;
}
        .customPagination, .paginacaoCursor {
            margin: 5px;
    padding: 5px 8px;
    color: black;
    background: transparent;
    cursor: pointer;
    border: 1px solid chocolate;
    vertical-align: middle;
        }

#pagination-content .activePagination{color:white;}
        .paginationTable {
            list-style-type: none;
            padding: 0;
        }

        /*.tableItem {*/
        /*    margin-bottom: 20px;*/
        /*    border: 1px solid #ddd;*/
        /*    padding: 10px;*/d4b1
        /*    text-align: center;*/
        /*}*/

        #pagination-container {
            text-align: center;
            /*margin-bottom: 10px;*/
        }

        #product-info {
            text-align: center;
            margin: auto;
            font-size:20px;
        }
        .fsmedia{font-size:36px!important;}
        .d4b1{color:#d4b196!important;}
         .d2a{color:#2d2a25!important;}
         .terms-content:first-child {
    margin-top: -3px;
}

.terms-content:last-child {
    margin-bottom: 1rem;
}
.terms-content h2 {
    font-size: 24px;
    position: relative;
    font-weight: 600;
    color: chocolate;
    text-transform: math-auto;
}
.terms-content h2 {
    margin-bottom: 10px;
}
.terms-content h3 {
    margin-bottom: 23px;
    position: relative;
    font-weight: 600;
    color: chocolate;
    font-size: 28px;
    text-transform: math-auto;
}
.ms-4 {
    margin-left: 1.5rem!important;
}
/*.terms-content .terms-list {*/
/*    margin-top: 37px;*/
/*}*/
/*.blog-item-info p, .terms-list li:not(:last-child) {*/
/*    margin-bottom: 16px;*/
/*}*/
.terms-content p{
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: #242424;
    line-height: 1.6;
}
.terms-list li{
     font-family: Roboto,sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: #242424;
    line-height: 1.6;
}
.terms-content h4{font-size:20px!important;}
.t-c1{ color:blue;}
.mb-1rem{margin-bottom:1rem!important;}
.mb-2rem{margin-bottom:2rem!important;}
.mb-30px{margin-bottom:30px!important;}
.mt-30px{margin-top:30px!important;}
.p-media{padding-bottom:30px!important;padding-top:30px!important;}
@media (max-width:768px){
    .p-media{padding-bottom:20px!important;padding-top:20px!important;}
    .terms-content h2 { font-size: 21px;}
     .terms-content p {    font-size: 17px;}
    .terms-content h4{font-size:19px!important;}
    .fsmedia{font-size:26px!important;} 
    
}
.container-52{width:98%;max-width:98%;}
@media (min-width: 991px) and (max-width: 1100px) {
.container{
    max-width: 98%!important;
}}
.hd-height{height:80px;}
@media(max-width:767px){.hd-height{height:50px;}}
.item-selected{font-size: 16px;letter-spacing: 1px;color:green;font-weight: 700;}
.item-selected .badge{font-size: 16px;letter-spacing: 1px;color:green;font-weight: 700;}
.cart-summary{display: block;text-align: center;text-transform:uppercase;}
.cart-box span i:hover{color:red;}
.cart__summary p strong{font-weight:600;color:black;}
.product--on-cart .product__thumbnail a img {width: 56px!important;height: 56px!important;}
.bt-1grey{border-top:1px solid grey;}
.cart__actions .btn{font-size:12px;}
.bb-1grey{border-bottom:1px solid grey;}
.bb-1darkgrey{border-bottom:1px solid darkgrey;}
.left-30{left:30;}.right-0{right:0;}
.ft99:after, .ft99:before {
    transform: none!important;
    content: "\f104"!important;
    position: absolute!important;
    right: 40px!important;
    transform-origin: 50% 50%!important;
    transition: all .4s ease!important;
    font-family: FontAwesome!important;
    font-size: 19px!important;
    top: 0!important;
    left: -20%!important;
    width: 0px!important;
    height: 0!important;
    background-color: transparent!important;
}
.mediapx{padding-left:5px;}
@media (max-width: 767px){
.mediapx {
    padding-top: 0px!important;
    /* padding-bottom: 10px!important; */
    /*padding-left: 0px!important;*/
}}
.ml-5px{margin-left:5px!important;}
.mr-5px{margin-right:5px!important;}
.pb-8px{padding-bottom:8px!important;}
.pr-5px{padding-right:5px!important;}
.pr-7px{padding-right:7px!important;}
.pl-5px{padding-left:5px!important;}
.pr-20px{padding-right:20px!important;}
.pl-20px{padding-left:20px!important;}
.pr-0px{padding-right:0px!important;}
.pl-0px{padding-left:0px!important;}
.bullet-90{Width:100%;border-radius:25px;height:48px;}
.bg-chocolate{background-color:chocolate!important;}/* Define the keyframes for the shining effect */

 @keyframes ring {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes shiny-btn1 {
            0% {
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        .btn-animation {
            position: relative;
            overflow: hidden;
        }

        .btn-animation  {
            animation: ring 4s 0.7s ease-in-out infinite!important;
            font-size: 18px;
        }

        .btn-animation:before {
            content: "";
            position: absolute;
            display: inline-block;
            top: -180px;
            left: 0;
            width: 30px;
            height: 100%;
            background-color: #fff;
            animation: shiny-btn1 5s ease-in-out infinite!important;
        }
.bb-hash{border-bottom:1px dashed slategrey; display:block;padding-top:8px;padding-bottom:8px;font-size:16px;font-weight:600;font-family: Lato, sans-serif;text-transform:uppercase;color: #222;}
.cart--mini .cart__summary p,.cart--mini .cart__actions p{margin-bottom:0.5rem;}
.pb-5px{padding-bottom:5px!important;}.pt-5px{padding-top:5px!important;}
.h-100px{height:100px;}

  .zero-item{font-size:18px;}.qty-value{font-size:15px;font-weight:600;font-family:lato,Sanseriff;color:black;}
  .crop-avatar .modal {
    z-index: 11111;
}
    .flex-gap{display:flex;gap:20px;}
    .p-1210{padding:12px 10px!important;}
    /*qty selector starts*/

.product__content .qty-box .input-group .form-control {
    text-align: center;
    width: 75px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    height: 30px!important;
    padding:0px;
}
.product__content .qty-box .input-group span button {background: black!important;border: 2px solid black;color:#d4b196;height:30px!important;line-height:15px;}
.product__content .qty-box input{height:40px!important;border:1px solid black;border-left:none!important;line-height:15px;font-size:19px;}
.qty-box .input-group .form-control {
    text-align: center;
    width: 80px;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
}
.input-group-prepend, .input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.qty-box .input-group span button {
    background: black!important;border: 2px solid black;color:#d4b196;height:40px!important;line-height:15px;}
    
.qty-box input{height:40px!important;border:1px solid black;border-left:none!important;line-height:15px;font-size:19px;}
    /*qty selector ends*/
    @media (max-width:426px){
.footer-theme .sub-title h4 {
    font-size: 16px;
}
.footer-theme .sub-title h4{margin-bottom:0px;font-weight:600;}
.footer-theme .sub-title li{font-size: 16px;border-top:1px dashed #d4b196;}        
.footer-contant ul{border-top:1px solid #d4b196;}   
.media-goldenb{border-bottom:1px solid #d4b196;}  
   
    }
    
.bt-none{border-top:none!important;}    
.img-100 {
    width: 100%;
}
.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
/*accordion starts*/
.accordion_head {
       color: #222;
    border-bottom: 1px dashed slategrey;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
    opacity: .8;
    font-family: Lato,sans-serif;
    text-transform: uppercase;
    cursor:pointer;
}

.accordion_body {
    /*background: lightgray;*/
    border-bottom:1px dashed slategrey ;
}
.ml-auto{margin-left:auto;}
.accordion_body p {
    padding:5px 0px;
    margin: 0px;
    font-size:17px;
    color:black;
}
.accordion_body ul {
    padding:5px 20px;
    padding-top:0px;
    margin: 0px;
    font-size:17px;
    background-color:white;
    color:black;
}
.accordion_body1 p {
    padding:5px 0px;
    margin: 0px;
    font-size:17px;
    color:black;
}
.accordion_body1 ul {
    padding:5px 20px;
    padding-top:0px;
    margin: 0px;
    font-size:17px;
    background-color:white;
    color:black;
}
.plusminus {
    float:right;
}
.plusminus i {font-weight:600;}
/*accordion ends*/
.pbt-15px{padding:15px 0px!important;}
.form-group input[type="file"]{padding:3px 5px;}
.form-group  input::file-selector-button {
 background-position-x: 0%;
  background-size: 300%;
   padding: 1rem 1.25rem;
}
.slider-for div img {width:100%!important;}
.slick-next:before, .slick-prev:before {font-size: 40px!important;    opacity: .7!important;}
.slick-slider .slick-prev, .slick-slider .slick-next{margin-top:0px!important;}
.slick-slider{margin-bottom:20px!important;}.mt-5px{margin-top:5px!important;}
/*.btn-disabled:disabled {*/
/*    background-color: #808080!important;*/
/*    color: #ccc!important;*/
/*    cursor: not-allowed;*/
/*    border: 1px solid #808080!important;*/
/*}*/
.product-details{
margin-bottom: 15px;
    padding: 0px;
    background-color: black;
    opacity: 1;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    margin-top: 0px!important;
}


@media (max-width: 420px){
.product-details {
    margin-top: 5px;
}}

.slick-slide .product-details {
    width: calc(100% - 10px);    }
    
    .home-collection .slick-slider {
    margin-bottom: 0px!important;
}
.mobileslider .slick-prev:before,.mobileslider .slick-next:before{color: darkgrey!important;opacity:1!important;}
.mobileslider .slick-prev,.mobileslider .slick-next{color: black!important;opacity:1!important;    margin-top: -15px!important;}
.color-swatch li {list-style:none;}

.mobileslider.active{display:flex!important;}
.fw-600{font-weight:600!important;}
.dbm .active{color:chocolate;}
.dbm li{font-weight:600;cursor:pointer}
@media (min-width: 1200px) {
 .w-100px {
    width: 100%!important ;
  }
}

.slick-slide .product-details {
    width: calc(100% - 10px);    }
.mb-40{margin-bottom:40px!important}
.lk9:nth-child(1) .product-details .brand {
  color: gold;
}

.lk9:nth-child(2) .product-details .brand {
  color: #d4b196;
}

.lk9:nth-child(3) .product-details .brand {
  color: White;
}

.lk9:nth-child(4) .product-details .brand {
  color: goldenrod;
}
.tabhead{font-weight:600;color:black;font-size:17px;font-family: lato,Sans-serif;text-transform:uppercase;}
.tabhead.active{color:chocolate!important;}
.tabhead:hover{color:#d4b196;border:1px solid transparent!important;}
.crt{border-right:1px solid #d4b196!important;}
.tabcon{margin-bottom:20px;}
@media (max-width: 767px){
.tabcon {
    margin-bottom: 10px;
}}
.bl-gold{border:1px solid transparent!important;}
.br-gold{border:1px solid transparent!important;border-right:1px solid #d4b196!important;}
.br-gold:hover{border-right:1px solid #d4b196!important;}

.er8{float: right;
    top: 29px;
    margin-right:10px;}
/* Style for the slide with data-slick-index="0" */
.slidersss .slick-slide[data-slick-index="0"] .product-details .brand {
  color: gold!important;
}

/* Style for the slide with data-slick-index="1" */
.slidersss .slick-slide[data-slick-index="1"] .product-details .brand {
  color: #d4b196!important;
}

/* Style for the slide with data-slick-index="2" */
.slidersss .slick-slide[data-slick-index="2"] .product-details .brand {
  color: White!important;
}

/* Style for the slide with data-slick-index="3" */
.slidersss .slick-slide[data-slick-index="3"] .product-details .brand {
  color: Goldenrod!important;
}
.shop--sidebar .panel--sidebar{position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
     overflow: hidden;
    overflow-y: auto;
    width: 400px;
    background-color: #fff;
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    z-index: 999999;
    transform: translate3d(-400px, 0, 0);}
    
.shop--sidebar .panel--sidebar.active{
    transform:none;}
    .shop--sidebar .panel__header.p9 {
    padding: 39px!important;border-bottom:1px solid #d4b196;
    background-color: black!important;
}
       @media (max-width: 767px){
    .shop--sidebar .panel__header.p9 {
    padding: 24px!important;border-bottom:1px solid #d4b196;
    background-color: black!important;
}}
    @media (max-width: 1199px){
   .collection-filter-block.b-0 .pb-15{border-top:none}
    }
.shop--sidebar .panel--sidebar .panel__close{left:35px;font-size:20px;color:White;}
.shop--sidebar .panel__header .ft6:after,.shop--sidebar .panel__header .ft6:before{left: -5%!important;font-size: 20px!important;color:White;}
.shop--sidebar .panel--sidebar .sticky-top .collap{margin-top:0px;padding-top:22px;}
.l09{text-align:center;border-bottom:1px dashed slategray;padding-bottom:15px;padding-top:15px;}
@media(max-width:767px){.form-group__content{text-align: center;margin-top: 10px;}.color-swatch22 li{margin-bottom:10px;}
    .popimg{height:280px!important;}
    .popup{width:280px!important;top:50%!important;}
    
    
}

.color-swatch22 li {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
    }

    .color-swatch22 li.active {
    position: relative;
    border: 2px solid black;
    box-shadow: inset 0 0 0 2px #fff;
    font-size:16px;
    font-weight:600;
    }

    .color-swatch22 input[type="radio"] {
        display: none; /* Hide the radio buttons */
    }
.color-swatch33 li {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
    }

    .color-swatch33 li.active {
        background-color: black; /* Set background color when active */
        color: white; /* Set text color when active */
        font-size: 16px; /* Set font size when active */
        font-weight: 700; /* Set font weight when active */
        text-transform: capitalize;
    }

    .color-swatch33 input[type="radio"] {
        display: none; /* Hide the radio buttons */
    }
.color-swatch44 li {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
    display:inline-block;
    }

    .color-swatch44 li.active {
        background-color: black; /* Set background color when active */
        color: white; /* Set text color when active */
        font-size: 16px; /* Set font size when active */
        font-weight: 700; /* Set font weight when active */
        text-transform: capitalize;
    }

    .color-swatch44 input[type="radio"] {
        display: none; /* Hide the radio buttons */
    }
.color-swatch55 li {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    }

    .color-swatch55 li.active {
        background-color: black; /* Set background color when active */
        color: white; /* Set text color when active */
        font-size: 16px; /* Set font size when active */
        font-weight: 700; /* Set font weight when active */
    }

    .color-swatch55 input[type="radio"] {
        display: none; /* Hide the radio buttons */
    }

/*home-banner starts*/
.home-slider {
  position: relative;
  width: 100%;
}

.home-slider .items {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
}

.home-slider .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.home-slider .item.current {
  opacity: 1;
}
.home-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slider .buttons {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-slider .button {
  width: 32px;
  height: 32px;
  border: none;
  outline: none;
  padding: 0;
  background: transparent center no-repeat;
  cursor: pointer;
  opacity: 0.4;
  margin:auto 0;
}
.home-slider .button.prev {
  background-image: url(https://codeisle.info/blog/wp-content/uploads/2018/12/ico_next_b32.png);
}
.home-slider .button.next {
  background-image: url(https://codeisle.info/blog/wp-content/uploads/2018/12/ico_next_b32-1.png);
}
.home-slider .button:hover {
  opacity: 0.8;
}

 .home-slider {
      position: relative;
    }

    .banner {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff; 
    }

    .banner p {
      margin: 0;
    }
    .s_1 {
      background-color: #ffcc00; /* Yellow background */
      padding: 20px;
      color: #333; /* Dark text color */
      /* Add more styles as needed */
    }
/*home-banner ends*/
.pt-2px{padding-top: 2px!important;}
.center-value div {
    align-items: center;
    display: flex;
    height: 100%;
}

/*.material {display: inline-block; vertical-align: middle;font-size:20px;}*/
.inline-list li {
  margin-right: 10px;
  list-style: none;
  height:auto!important;
  width:auto!important;border:none;font-weight:500;font-size: 18px;
    line-height: 0px;
}

.inline-list {
  padding: 0;
  margin: 0;
}
.inline-list li.active {
     background-color: white; 
     color: black; 
     font-size: 18px; 
    /* font-weight: 700; */
    border:none;
     text-transform: capitalize; 
}
.visual-swatches-wrapper.align-items-center{vertical-align:middle;}
.overflow{    width: auto;
    display: inline-flex;
    overflow-y: scroll;}
    .ml-12px{margin-left:12px;}
    /*@media(max-width:323px){.inline-list p {font-size:17px!important;}}*/
.fa-shopping-cart{
    -webkit-animation: ring 4s 0.7s ease-in-out infinite;
    animation: ring 4s 0.7s ease-in-out infinite;
    font-size: 21px;
}    

.fz-16 {
    font-size: 21px;
}    
.color-swatchs li{
    border: 1px solid black;
    height: 32px!important;
    width: 60px!important;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}    
.color-swatche li {
    height: 32px!important;
    width: 100px!important;
    border-radius: 25px;
    cursor: pointer;
    margin-right: 10px;
    display: inline-flex;
    vertical-align: top;
    background-color:#d7d8d9;
}
.cf{
    margin: 0px;
    padding: 0px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #222;
    text-transform: capitalize;
}


.popup {
    display: none;
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 5px;
    z-index: 9999;
    width: 500px;
}

.popup-content {
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 15px;
    cursor: pointer;
    background: 0 0;
    border: none;
    font-size: 35px;
    color: #fff;
    font-weight: 600;
}

.close-btns {
    position: absolute;
    top: -10px;
    right: 5px;
    cursor: pointer;
    background: 0 0;
    border: none;
    font-size: 35px;
    color: #000;
    font-weight: 600;
}

.close-btn:hover {
    color: #fff;
}

.cart-icon {
    cursor: pointer;
}
.popimg{
   width: 520px;
    height: 500px;     
}
.top-headers {
    height: 30px;
}
.top-headers {
    background-color: burlywood;
}
.top-headers .header-contact li {
    color: #222;
    list-style:none;
    font-size: 16px;
    display:inline-block;font-weight:600;
}
.top-headers .header-contact ul{display:block;}
.top-headers .header-contact{padding:3px 0px;}
.pill{
	background-color: transparent;
	color: black;
	border: 2px solid burlywood;
	font-size: 1.2em;text-transform:uppercase;
	padding: 10px 0px;
	border-radius:9999px;
	text-decoration: none;box-shadow:0px 1.5px 9px burlywood;
}
.pill a{display:flex;justify-content:center;color: black;font-weight:600;}
.pill a:hover{color: black;}
.pill-container .slick-slide{margin:0px 10px;}
.pill-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
.pill-container.slick-initialized {
    visibility: visible;
    opacity: 1;    
}
.mt-6rem{margin-top:6rem;}
.mb-3rem{margin-bottom:3rem;}
.hero-btn{color:lightpink;background-color:#0f172a;border-radius:10rem!important;padding:17.5px 28px;font-size:18px;font-weight:500;}
.hero-btn:hover{color:#0f172a;background-color:burlywood;border: 1px solid burlywood;}
.btn:focus-visible, .hero-btn:first-child:active{background-color:burlywood;border: 1px solid burlywood;}
.pill-container .slick-track{padding:10px 0px;border:1px solid black;}
.hero-content p span{color:red;}.hero-content h1 svg{vertical-align:text-top;}
.hero-content p{font-size:20px;margin-bottom:2rem!important;}
.lk9 .img-wrapper img{width:100%!important;}
.product-slider .slick-slide{margin:0px 10px;}
.mobile-none{display:block;}.desktop-none{display:none;}
@media (max-width: 991px){.order1{order:1;}.order2{order:2;}.mobile-none{display:none;}.desktop-none{display:block;}}
@media (max-width: 430px){.logo23 {font-size: 30px;}}
.product-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
.product-slider.slick-initialized {
    visibility: visible;
    opacity: 1;    
}
 .footer-theme .sub-title li {
    position: relative;
    display: inherit;
    padding-top: 13px;
    font-size: 14px;
    color: white;
}

.sub-footer {
    background-color: #0f172a;
    border-top: 1px solid burlywood;
    
}
.subscribe-btn{color:#0f172a!important;background-color:burlywood!important;border:1px solid burlywood;}
.subscribe-btn:hover{color:#0f172a!important;background-color:lightpink!important;border:1px solid lightpink;}
 .collection-banner .img-part img{height: 100%;width: 100%;}  
 .h-100{height:100%!important;}
 .col-banner {padding-bottom:10px;}.pt-30px{padding-top:30px!important;}
 /* Default styles for larger screens */
.collect-banner .row {
    display: flex;
}

.section--homepage .col-md-8,
.section--homepage .col-md-4 {
    flex: 0 0 auto;
}
.mediapbt-30px{padding-top:30px!important;padding-bottom:30px!important;}
.mediab-30px{margin-bottom: 30px;}
/* Media query for mobile */
@media (max-width: 430px) {
    .collect-banner .row  {
        flex-direction: column;
    }
    .mediapbt-30px{padding-top:0px!important;padding-bottom:0px!important;}
    .collect-banner .col-8,
    .collect-banner .col-4 {
        width: 100%;
        margin-bottom: 15px; 
    }
    .mediab-30px{margin-bottom: 0px;}
    .collect-banner .col-8 img,
    .collect-banner .col-4 img{width: 100%;}
}
 .collect-banner .col-md-8 a,
    .collect-banner .col-md-4 a{width: 100%;height:100%;display:block;}
/* Media query for mobile devices */

.subs-color{background-color:burlywood!important;color:#0f172a!important;border:1px solid burlywood!important;}
.subs-color:hover{background-color:lightpink!important;color:#0f172a!important;border:1px solid lightpink!important;}
.category-title{font-weight: 700;
    color: lightpink;
    font-size: 17px;
    font-family: lato,Sans-serif;
    text-transform: uppercase;}
   /* Webkit browsers (Chrome, Safari) */
@media only screen and (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
    ::-webkit-scrollbar-thumb {
        background: burlywood;
        border-radius: 0;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
        border-radius: 0;
    }
}

/* For Microsoft Edge */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    *::-ms-scrollbar {
        width: 6px;
    }
    *::-ms-scrollbar-thumb {
        background: grey;
        border-radius: 0;
    }
    *::-ms-scrollbar-track {
        background: #e6e6e6;
        border-radius: 0;
    }
}

/* Hide scrollbar for Firefox */
@media screen and (min-width: 1024px) {
    body {
        scrollbar-width: thin;
    }

    body::-webkit-scrollbar {
        width: 6px;
    }
    body::-webkit-scrollbar-thumb {
        background: grey;
        border-radius: 0;
    }
    body::-webkit-scrollbar-track {
        background: #e6e6e6;
        border-radius: 0;
    }
}
@media(max-width:767px){.top-headers{display:none;}}
/*mega-menu starts*/
ul.main-nav {
    list-style-type: none;
   display: block;
    padding: 0px;
    
    max-width: 1275px;
    margin: 0 auto;
}

ul.main-nav > li {
    display: inline-block;
    padding: auto;
}
ul.main-nav > li > a {
   
    display: block;
    position: relative;
    padding: 30px 10px;
    font-size: 17px;
    font-family: Lato;
    letter-spacing: 0.07em;
    font-weight: 400;
    line-height: 23px;
    color: white;
    text-transform: uppercase;
    transform-style: preserve-3d;
}
ul.main-nav > li:hover {
    background-color: transparent;
}
ul.main-nav > li:hover > a {
    color: burlywood;
    font-weight: 400;
}
ul.main-nav > li ul.sub-menu-lists {
    margin: auto 0;
    padding: 1px 0;
    list-style-type: none;
    display: block;
}
ul.main-nav > li ul.sub-menu-lists > li {
    padding: auto;
  width: 100%;
    margin-top: 2px;
}
ul.main-nav > li ul.sub-menu-lists > li > a {
    font-size: 1em;
    font-weight: 500;
  
}

/* Menu Icons for Devices*/

.ic.menu {
    top: 14px;
  
    z-index: 20;
}
.ic.menu .line {
    height: 4px;
    width: 100%;
    display: block;
    /*header Underline */
    
    margin-bottom: 6px;
}
.ic.menu .line-last-child {
    margin-bottom: 0px;
}
.sub-menu-head {
    margin: 10px 0;
    border-bottom: 1px solid #4F96BA;
    width: 100%;
}
.banners-area {
    margin-top: 20px;
    padding-top: 15px;
}
@media only screen and (max-width: 768px) {
  
  
    .sub-menu-head {
        color:#fff;
    }
    .ic.menu {
        display: block;
    }
    header.dark .ic.menu .line {
        background-color: #fff;
    }
    header.mega .ic.menu .line {
        background-color: #000;
    }
    .ic.menu .line {
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
    }
    .ic.menu:focus .line {
        background-color: #fff !important;
    }
    .ic.menu:focus .line:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .ic.menu:focus .line:nth-child(2) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-top: -10px;
    }
    .ic.menu:focus .line:nth-child(3) {
        transform: translateY(15px);
        opacity: 0;
    }
    .ic.menu:focus {
        outline: none;
    }
    .ic.menu:focus ~ .ic.close {
        opacity: 1;
        z-index: 21;
        outline: none;
    }
    /*
  
  .ic.menu:focus ~ .ic.close { opacity: 1.0; z-index : 21;  }
  .ic.close:focus { opacity: 0; }
  */
    
    .ic.menu:focus {
        opacity: 1;
    }
    nav {
        background-color: transparent;
    }
    /* Main Menu for Handheld Devices  */
    
    ul.main-nav {
        z-index: 2;
        padding: 50px 0;
        position: fixed;
        right: 0px;
        top: 0px;
        width: 0px;
        background-color: rgba(0, 0, 0, 1);
        height: 100%;
        overflow: auto;
        /*CSS animation applied : Slide from Right*/
        
        -webkit-transition-property: background, width;
        -moz-transition-property: background, width;
        -o-transition-property: background, width;
        transition-property: background, width;
        -webkit-transition-duration: 0.6s;
        -moz-transition-duration: 0.6s;
        -o-transition-duration: 0.6s;
        transition-duration: 0.6s;
    }
    .ic.menu:focus ~ .main-nav {
        width: 85%;
        background-color: #fff;
    }
    ul.main-nav > * {
        -webkit-transition-property: opacity;
        -moz-transition-property: opacity;
        -o-transition-property: opacity;
        transition-property: opacity;
        -webkit-transition-duration: 0.4s;
        -moz-transition-duration: 0.4s;
        -o-transition-duration: 0.4s;
        transition-duration: 0.4s;
        opacity: 0;
    }
    .ic.menu:focus ~ .main-nav > * {
        opacity: 1;
    }
    ul.main-nav > li > a:after {
        display: none;
    }
    ul.main-nav > li:first-child {
        border-radius: 0px;
    }
    ul.main-nav > li {
        display: block;
        border-bottom: 1px solid #444;
    }
    ul.main-nav > li > a {
        font-weight: 600;
    }
    ul.main-nav > li ul.sub-menu-lists > li a {
        color: #4F96BA;;
        font-size: 14px;
    }
    .sub-menu-head {
        font-size: 16px;
    }
    ul.main-nav > li:hover {
        background-color: transparent;
    }
    ul.main-nav > li:hover > a {
        color: #blue;
        text-decoration: none;
        font-weight: 600;
    }
    .ic.menu:focus ~ ul.main-nav > li > div.sub-menu-block {
        border-left: 0px solid #ccc;
        border-right: 0px solid #ccc;
        border-bottom: 0px solid #ccc;
        position: relative;
        visibility: visible;
        opacity: 1.0;
    }
    .sub-menu-block {
        padding: 0 30px;
    }
    .banners-area {
        padding-bottom: 0px;
    }
    .banners-area div {
        margin-bottom: 15px;
    }
    .banners-area {
        border-top: 1px solid #444;
    }
}
@media only screen and (min-width: 769px) {
    .ic.menu {
        display: none;
    }
    /* Main Menu for Desktop Devices  */
    
    ul.main-nav {
        display: block;
        position: relative;
    }
    .sub-menu-block {
        padding: 15px;  
     
    }
    /* Sub Menu */
    
    ul.main-nav > li > div.sub-menu-block {
      
      visibility: hidden;
      top:79px;
        background-color: #fff;
        position: fixed;
        margin-top: 0px;
        min-width: 48.8%;
      max-width:100%;
        color: #333;
      left:0px; /*--controls sub block starting location --*/
      box-shadow:  1px 1px rgba(0,0,0,0.5);
        box-sizing: border-box;
        z-index: 3;
        font-size: 16px;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        opacity: 0;
      
        /*CSS animation applied for sub menu : Slide from Top */
        
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        -webkit-transform: rotateX(90deg);
        -moz-transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        transform: rotateX(90deg);
        -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
        transform-origin: top center;
    }
   #five-block {width: 100%;}
    ul.main-nav > li:hover > div.sub-menu-block {
        background-color: #f9f9f9;
        
        visibility: visible;
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
    ul.main-nav > li > div.sub-menu-block > * {
        -webkit-transition-property: opacity;
        -moz-transition-property: opacity;
        -o-transition-property: opacity;
        transition-property: opacity;
        -webkit-transition-duration: 0.4s;
        -moz-transition-duration: 0.4s;
        -o-transition-duration: 0.4s;
        transition-duration: 0.4s;
        opacity: 0;
      
    }
    ul.main-nav > li:hover > div.sub-menu-block > * {
        opacity: 1; 
    }
    .sub-menu-head {
        font-size: 20px;
      
    }
    /* List Separator: Outer Border */
    
    header.dark ul.main-nav > li > a {
        border-right: 1px solid #bbb;
    }
    header.mega ul.main-nav > li > a {
        border-right: 1px solid #666;
    }
    /* List Separator: Inner Border */
    
    ul.main-nav > li > a:after {
        content: '';
        width: 1px;
        height: 60px;
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 2;
    }
    header.dark ul.main-nav > li > a:after {
        background-color: #777;
    }
    header.mega ul.main-nav > li > a:after {
        background-color: #999;
    }
    /* Drop Down/Up Arrow for Mega Menu */
    
    ul.main-nav > li > a.mega-menu > span {
        display: block;
        vertical-align: middle;
    }
    ul.main-nav > li > a.mega-menu > span:after {
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #fff;
        content: '';
        background-color: transparent;
        display: inline-block;
        margin-left: 5px;
        vertical-align: middle;
    }
    ul.main-nav > li:hover > a.mega-menu span:after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 0px solid transparent;
        border-bottom: 5px solid #666;
    }
    .banners-area {
        border-top: 1px solid #ccc;
    }
}
/**************Additions****************/


/* 5 Columns */

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;   
  
}
.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
       
        float: left;
    }
}

/* Hover dropdown */
.dropdown ul.dropdown-menu {
    margin-top: 0;
}

/*To avoid unwanted close*/
.hover_drop_down:hover ul.dropdown-menu {
   margin-top: 2px;
    display: inline-block;
    position: absolute;
    top: auto;
    left: auto;
    z-index: 1;
}
.dropdown-menu>li>a {
   display: block;
  margin: 10px;
  padding-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    color: #599ab9;
    
}
.sub-menu-head{color:000;}
/* Style the top-level menu */
.sub-menu-lists .hover_drop_down {
    position: relative;
    display: inline-block;
}

.sub-menu-lists .hover_drop_down a {
    text-decoration: none;
    color: #333; /* Adjust the color as needed */
    padding: 10px;
    display: block;
}

/* Style the caret */
.sub-menu-lists .hover_drop_down .caret {
    margin-left: 5px;
}

/* Style the dropdown menu */
.sub-menu-lists .hover_drop_down ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 62%;
    left: 50px;
    z-index: 1;
    background-color: #fff; /* Adjust the background color as needed */
    border: 1px solid #ccc; /* Adjust the border color as needed */
}

/* Style the nested dropdown items */
.sub-menu-lists .hover_drop_down ul.dropdown-menu li {
    display: block;
}

/* Show the dropdown menu on hover */
.sub-menu-lists .hover_drop_down:hover ul.dropdown-menu {
    display: block;
}

/* Style nested dropdowns */
.sub-menu-lists .hover_drop_down ul.dropdown-menu li ul.dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
}

.sub-menu-lists .hover_drop_down ul.dropdown-menu li:hover > ul.dropdown-menu {
    display: block;
}

/*mega-menu ends*/
.category-title.men{color:#0f172a;}
.fadein img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out!important;
}

.fadein img.lazyload {
    opacity: 1;
}
.mediamb-3{margin-bottom:3px;}
.mtj-6rem{    margin-top: 6rem;justify-content:center;}
.last .active{border-bottom: 0px solid burlywood;}.last{border-bottom: 1px solid burlywood;}
@media(max-width:768px){.mtj-6rem{    margin-top: 2rem;justify-content:center;}.mediamb-3{margin-bottom:2px;}.sz-1 {padding-top: 35px;}.section--homepage {padding-top: 35px;}.section--homepage .section__header{padding-bottom:15px;}}