/* @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900|Open+Sans:300,400,600,700'); */

:root {
    --font-qanelas: "proxima";
}
#jqcheck {
    background: #fff9d7;
    text-align: center;
    color: #333;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    position: fixed;
    z-index: 9991;
    width: 100%;
    font-family: "Poppins", sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
}

/* text selection color */
::-moz-selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

/* browser scroller style */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: #ecedf1;
    -webkit-border-radius: 0px;
    border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0px;
    background: var(--primary-color);
}

/* ::-webkit-inner-spin-button,
::-webkit-outer-spin-button{
  appearance: none;
} */

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select {
        -webkit-appearance: none !important;
        line-height: 28px !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--default-color);
    font-size: var(--base-font-size);
    position: relative;
}

/* font family */
.ff-primary {
    font-family: "Poppins", sans-serif;
}

.ff-secondary {
    font-family: "Poppins", sans-serif;
}

/* font colors */
.fc-primary {
    color: var(--primary-color);
}

.fc-secondary {
    color: var(--secondary-color);
}

.fc-dark {
    color: var(--theme-dark);
}

.fc-lite {
    color: var(--theme-lite);
}

.text-black p {
    color: #000 !important;
}

/* buttons */
.primary-btn,
.secondary-btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    position: relative;
    display: table;
    border-radius: 3px;
}

.primary-btn:after,
.secondary-btn:after {
    content: "\e957";
    font-family: "icomoon" !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: var(--primary-color-dark);
    color: white;
}

.secondary-btn {
    background: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background: var(--secondary-color-dark);
    color: white;
}

.banner-btn {
    text-transform: capitalize;
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff !important;
    background-color: transparent;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff !important;
}

.banner_img.about-us-banner img {
    max-width: 65%;
    width: 100%;
}

.banner_img img {
    max-width: 100%;
    width: 100%;
}

.secpad-100 {
    padding: 100px 0;
}

.sm-btn {
    font-size: 14px;
}

.md-btn {
    font-size: 16px;
}

.lg-btn {
    font-size: 18px;
}

.xl-btn {
    font-size: 20px;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
    margin: 0;
    padding: 0;
}

h1,
.h1,
h2,
.h2 {
    font-family: "Poppins", sans-serif;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Poppins", sans-serif;
    padding-bottom: 10px;
    color: #333333;
}

h2,
.h2 {
    font-size: 6.7vmin;
}

h3,
.h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

p {
    /*font-size: var(--base-font-size);*/
}

p {
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 20px;
    margin: 0px;
    color: #687087;
}

/*** theme sections padding ***/
.sec-padding-100 {
    padding: 100px 0;
}

.sec-padding-90 {
    padding: 90px 0;
}

.sec-padding-80 {
    padding: 80px 0;
}

.sec-padding-70 {
    padding: 70px 0;
}

.sec-padding-60 {
    padding: 60px 0;
}

.sec-padding-xlarge {
    padding: 50px 0;
}

.sec-padding-large {
    padding: 40px 0;
}

.sec-padding-medium {
    padding: 30px 0;
}

.sec-padding-small {
    padding: 25px 0;
}

.sec-padding-xsmall {
    padding: 10px 0;
}

/*** theme sections margin ***/
.sec-margin-100 {
    margin: 100px 0;
}

.sec-margin-90 {
    margin: 90px 0;
}

.sec-margin-80 {
    margin: 80px 0;
}

.sec-margin-70 {
    margin: 70px 0;
}

.sec-margin-60 {
    margin: 60px 0;
}

.sec-margin-xlarge {
    margin: 50px 0;
}

.sec-margin-large {
    margin: 40px 0;
}

.sec-margin-medium {
    margin: 30px 0;
}

.sec-margin-small {
    margin: 25px 0;
}

.sec-margin-xsmall {
    margin: 10px 0;
}

/*** no padding, no marging ***/
.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.ml-0 {
    margin-left: 0px;
}

.mr-0 {
    margin-right: 0px;
}

select {
    color: #000000 !important;
}

option {
    color: #000000 !important;
}

.tt-uppercase {
    text-transform: uppercase;
}

.tt-capitalize {
    text-transform: capitalize;
}

.badge {
    padding: 0.25rem 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.badge-success {
    background-color: #85db85;
}

.badge-danger {
    background-color: #fa6b84;
}

p strong {
    color: black;
}

p span {
    color: black;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    border: 0px;
    outline: none;
}

/*img { max-width: 100%;  }*/
ul,
li {
    list-style-type: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

h2,
.h2 {
    color: #171717;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 15px 0;
    position: relative;
    letter-spacing: -1px;
}

h2 span,
.h2 span {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

.list-simple {
    list-style: none;
    margin: 0 0 15px 0;
    width: 100%;
    display: inline-block;
}

.list-simple li {
    color: var(--default-color);
    padding: 0 0 10px 16px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.list-simple li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 13px;
    color: var(--secondary-color);
    content: "\e93a";
    font-family: "icomoon" !important;
}

/*** morefull block link ***/
.moreFull {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}

/*** transition ***/
.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*** scale with transition ***/
.scale-with-transition {
    -webkit-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

/* header
------------------------------------*/
header {
    padding: 15px 0 13px;
    border-bottom: 1px solid #777;
}

header .navwrp ul {
    margin: 0;
}

header .navwrp ul li {
    display: inline-block;
    margin: 0 10px;
}

header .navwrp ul li a {
    color: #333;
    text-transform: uppercase;
}

header .logowrp {
    display: block;
    text-align: center;
}

header .logowrp img {
    width: 135px;
}

.header-main {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.btmheader {
    border-bottom: 1px solid #777;
}

#select input#searchItems {
    width: 100%;
    margin: 0;
    color: #222222;
    border: 0;
    padding: 10px 80px 10px 110px;
    position: relative;
    background: url(../images/search-icon.png) no-repeat 2% center;
}

.btmheader #select #list a:hover {
    background: #eee;
}

.btmheader #select #list {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #000;
}

.btmheader #select #list a {
    width: 100%;
    text-transform: uppercase;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btmheader #select #list a .search_item_img {
    width: 120px;
    height: 120px;
}

.btmheader #select #list a .search_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-bannerwrp {
    position: relative;
}

.btn-three {
    color: #fff;
    font-weight: 600;
    padding: 10px 30px;
    text-transform: uppercase;
}

.header-cart-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

[type="search"] {
    outline: none;
}

.home-bannerwrp .btnwrp {
    text-align: center;
    display: block;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

/* .banner_box img{
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: top center;
    height: 500px;
} */
.banner_box img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    height: calc(100vh - 90px);
}

footer {
    background: #efefef;
}

footer .navwrp {
    border: 1px solid #70707033;
    border-bottom: 0;
    padding: 30px;
    min-height: 215px;
    height: 100%;
}

footer .navwrp h4 {
    color: #222222;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 22px;
}

footer .navwrp p {
    color: #777;
    font-size: 18px;
}

footer .navwrp ul li {
    margin: 0 0 5px;
}

footer .navwrp ul li a {
    color: #222222;
    font-size: 15px;
    font-weight: 300;
    text-transform: capitalize;
}

footer .navwrp h6 {
    font-size: 17px;
    padding: 0 0 20px;
}

footer .navwrp .detailwrp a {
    color: #222222;
    font-size: 15px;
    font-weight: 300;

    margin: 0 0 7px;
    display: inline-block;
    font-weight: 400;
}

footer .btmftr {
    display: block;
    text-align: center;
    border-top: 1px solid #70707063;
    padding: 20px 0 0;
}

.main-heading {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.servicesbannewrp {
    padding: 20px 0 0;
}

.servicesbannewrp .txtwrp {
    display: block;
    text-align: center;
}

.servicesbannewrp .btmimg {
    background-image: url(../images/fdfjkdn.png);
    height: 60vh;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 50px 0 0;
}

/* .productwrp{padding: 70px 0 0;} */
/* .productwrp .imgwrp{display: block; text-align: center; border: 1px solid #000000; padding: 0; height: 100%; } */
/* .productwrp .imgwrp img{height: 370px;margin: 0 0 20px;max-width: 220px;width: 100% !important;} */
.productwrp .imgwrp {
    text-align: center;
    border: 1px solid #000000;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    height: 430px;
    align-items: center;
    justify-content: center;
}

.cart-btn {
    max-width: 160px !important;
    padding: 10px 20px !important;
}

.catogries-img {
    height: 260px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productwrp .imgwrp img {
    margin: 0 0 0px;
    max-width: 220px;
    height: auto;
    max-height: 240px;
}

.text_box {
    width: 80%;
    margin: 0 auto;
}

.productwrp .imgwrp h4 {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #000 !important;
}

.productwrp .imgwrp h3 {
    font-weight: 400;
    font-size: 13px;
    color: #000 !important;
}

.p-title {
    font-size: 14px;
    padding-top: 5px;
}

.cart_title {
    font-size: 16px;
    font-weight: 600;
    padding: 0;
}

.price-tag {
    font-size: 16px;
    font-weight: 500;
}

/* .productwrp .imgwrp h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 4px;
} */
.productwrp.jewelrywrp .imgwrp img {
    height: 190px;
}

.product-detailwrp {
    overflow: hidden;
}

.product-detailwrp .product-img {
    border-bottom: 1px solid #333333;
    padding: 20px 0;
    display: block;
    text-align: center;
    height: 370px;
}

.product-detailwrp .product-img img,
.product-detailwrp .product-img video {
    max-width: 600px;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.textColor h5 {
    font-size: 20px;
}

.textColor p {
    color: #333;
}

.product-detailwrp .detailwrp {
    display: block;
    text-align: center;
    border-bottom: 0;
    border-left: 1px solid #333333;
    padding: 40px 0;
    display: block;
    min-height: 100vh;
}

.product-detailwrp .detailwrp h4 {
    color: #333333;
    font-size: 16px;
}

.product-detailwrp .detailwrp p {
    color: #000000;
    font-weight: 400;
    display: inline-block;
    padding: 0 0 0px !important;
    width: 100% !important;
}

.product-detailwrp .detailwrp form {
    display: block;
}

.product-detailwrp .detailwrp form .lablewrp {
    display: inline;
    position: relative;
}

.product-detailwrp .detailwrp form .lablewrp select {
    width: 64%;
    height: 50px;
    margin: 0px 0 20px;
    padding: 0 0 0 10px;
    border: 1px solid #bcbbbb;
    outline: none;
    border-radius: 3px;
    background: transparent;
}

.product-detailwrp .detailwrp form .lablewrp i {
    position: absolute;
    right: 13px;
    top: 0;
    font-size: 22px;
}

.product-detailwrp .detailwrp form .lablewrp input {
    display: block;
    width: 64%;
    height: 50px;
    color: #000;
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 3px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #988d8d;
    cursor: pointer;
    margin: 0 auto;
}

.product-detailwrp .detailwrp .pro-detailwrp {
    width: 64%;
    margin: 40px auto 0;
    text-align: left;
    color: #000;
}

.product-detailwrp .detailwrp ul {
    text-align: left;
    margin: 0 0 60px;
}

.product-detailwrp .detailwrp ul li {
    display: block;
    color: #000;
    padding: 0 0 10px 20px;
    position: relative;
}

.product-detailwrp .detailwrp ul li:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #000;
    left: 0;
    border-radius: 50%;
    top: 7px;
}

.product-detailwrp .detailwrp .accordion {
    display: block;
    text-align: left;
}

.product-detailwrp .detailwrp .accordion a {
    font-size: 18px;
    font-weight: 300;
    text-transform: inherit;
    color: #000;
    padding: 0px 15px 5px;
    margin-bottom: 0px;
    position: relative;
    width: 100%;
    line-height: 60px;
    display: inline-block;
    transition: all 0.15s linear 0s;
    text-decoration: none;
    border-bottom: 1px solid rgb(219 219 219 / 7%);
    border-top: 1px solid;
}

.product-detailwrp .detailwrp .accordion .quest-content {
    /* padding: 15px 20px; */
    display: none;
    margin-bottom: 0px;
    /* float: left; */
    /* width: 100%; */
}

a.quest-title:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: "FontAwesome";
    font-size: 26px;
}

.contactwrp {
    padding: 0 0 70px;
}

.arrow {
    color: #fff !important;
}

.contactwrp .mainwrp {
    border: 1px solid #70707085;
    padding: 60px;
}

.contactwrp .mainwrp .formwrp form .lablewrp input {
    background: #f8f7f7;
    width: 100%;
    height: 40px;
    border: 1px solid #777;
    outline: none;
    margin: 0 0 17px;
    padding: 0 0 0 15px;
}

.contactwrp .mainwrp .formwrp form .lablewrp input.btnmain {
    padding: 0;
    background: #fff;
    letter-spacing: 3px;
}

.contactwrp .mainwrp .formwrp form .lablewrp textarea {
    background: #f8f7f7;
    width: 100%;
    height: 130px;
    border: 1px solid #777;
    outline: none;
    margin: 0 0 17px;
    padding: 10px 0 0 15px;
    resize: none;
}

.contactwrp .mainwrp .locationwrp {
    border-left: 1px solid #70707085;
    padding: 0 0 0 40px;
}

.contactwrp .mainwrp .locationwrp ul li {
    display: block;
    margin: 0 0 40px;
}

.contactwrp .mainwrp .locationwrp ul li a {
    border-bottom: 1px solid #000;
    padding: 0 0 20px;
}

.contactwrp .mainwrp .locationwrp ul li i {
    font-size: 40px;
    color: #777;
    vertical-align: super;
    width: 65px;
}

.contactwrp .mainwrp .locationwrp ul li h4 {
    display: inline-block;
    font-size: 22px;
}

.contactwrp .mainwrp .locationwrp ul li h4 span {
    display: block;
    margin: 5px 0 0px;
    font-size: 12px;
}

.aboutbanerwrp img {
    width: 100%;
}

.aboutbanerwrp .txtwrp {
    display: block;
    padding: 90px 0 60px;
}

.aboutbanerwrp .txtwrp p {
    font-size: 16px;
}

/* css add after feed back start */
.custom_angle_down {
    font-size: 40px !important;
    margin-top: 10px;
    color: #fff !important;
    line-height: 40px !important;
    animation: 5.4s ease-in-out infinite;
    -webkit-animation: 5.4s ease-in-out infinite;
}

@keyframes upDownAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.shopping-icon {
    font-size: 18px !important;
}

.custom_angle_down {
    animation: upDownAnimation 1.5s infinite;
}

.myContainer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.myColTwo {
    position: relative;
}

.detailwrp {
    position: sticky !important;
    top: 0;
}

.product-detailwrp {
    overflow: inherit;
}

@media (min-width: 767px) {
    .myContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Css add after feed back End */

/* Cart Page Start */

table.cart-table {
    border-spacing: 0 0px;
    border-collapse: separate;
    white-space: nowrap;
}

table.cart-table thead th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

table.cart-table thead th {
    font-size: 18px;
    font-weight: 400;
    background-color: #fff;
    color: #000000;
    border: none;
    text-align: left;
    padding: 12px 30px;
}

table.cart-table thead th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

table.cart-table tr td {
    vertical-align: middle;
    border-top: none;
    border-bottom: 1px solid #f7f7f7;
    padding: 20px 30px;
    font-size: 15px;
    color: #000;
}

table.cart-table .product-thumbnail img {
    max-width: 80px;
}

.cart-table .btn-delete {
    color: #000;
    font-size: 13px;
    padding: 3px 6px;
}

.btn-delete .btn.focus,
.btn:focus {
    box-shadow: none;
}

.w-150 {
    max-width: 162px !important;
    width: 100% !important;
}

.d-icon {
    font-size: 25px;
}

.product_img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    box-shadow: 0 3px 46px 0 rgb(0 0 0 / 2%);
}

.product_img img {
    max-width: 86px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-name {
    margin-top: 30px;
}

.product-name h4 {
    font-size: 20px;
}

.product-name h6 {
    font-size: 15px;
    color: #999999;
}

.cart-summary {
    background: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cart-summary .summary-head {
    background: #fff;
    height: 55px;
    padding: 15px 20px 15px 20px;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.cart-summary .summary-head h4 {
    font-size: 25px;
    color: #050505;
    font-weight: 400;
    margin-bottom: 0px;
}

.summary-body-wrap {
    margin-top: -8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.cart-summary .summary-body {
    font-size: 20px;
    color: #333333;
}

.cart-summary .btn-primary {
    padding: 15px 56px;
}

table.cart-table .review-rating i.fa-star {
    font-size: 15px;
}

.form-heading {
    font-size: 35px;
    color: #000;
}

.coupon-code li {
    position: relative;
}

.text-grey {
    color: #000000;
}

.label-text {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
}

.code {
    color: #dbd8d8;
    background: #000;
    border-radius: 5px;
    padding: 5px 20px 5px 15px;
    font-size: 11px;
    display: inline-block;
}

.code-remove {
    position: absolute;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    padding: 0 5px;
    line-height: 2;
    vertical-align: middle;
    z-index: 1;
    background: #000;
    border-radius: 50px;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    top: 2px;
    justify-content: center;
    right: -7px;
    border: 2px solid #fff;
}

.checkout-page .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    border: none;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 8px;
    box-shadow: 0 1px 36px rgb(0 0 0 / 5%);
}

/* -- quantity box -- */
.quantity {
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    box-shadow: 0px 3px 6px rgba(138, 138, 138, 0.16);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 10px;
}

.quantity .value-button {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
}

.quantity .value-button i {
    color: #ffffff;
}

.quantity .value-button.minus {
    background-color: #e0e0e0;
}

.quantity .value-button.plus {
    background-color: #616161;
}

.quantity .input-qty {
    height: 45px;
    width: 50px;
    border: none;
    background-color: transparent;
    outline: none;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
}

.value-button {
    display: flex;
    border: 1px solid #f1efef;
    margin: 0px;
    width: 35px;
    height: 45px;
    text-align: center;
    vertical-align: middle;
    padding: 7px 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.text_area_form {
    width: 100%;
    outline: none;
    border: 2px dashed #ececec;
    resize: none;
}

.text_area_form {
    padding-top: 14px;
    padding-left: 14px;
    font-size: 1rem;
}

.product-name h4 a {
    color: #000000;
    font-size: 16px;
}

.product-slider-wrap .add-to-wishlist {
    position: absolute;
    right: 30px;
    z-index: 10;
    background-color: #e19f42;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 22px;
    border-radius: 50px;
    top: 15px;
}

.cart-summary .btn-secondary {
    display: inline-block;
    transition: 0.4s;
    color: #fff;
    background-color: #000000;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    max-width: 267px;
    width: 100%;
    border: 1px solid #000000;
    border-radius: 10px;
}

.cart-summary .border-btn {
    background-color: transparent;
    color: #000000;
}

.cart-summary .summary-body p {
    font-size: 18px;
}

.total-price {
    color: #000;
    font-size: 18px;
    font-weight: 400;
}

/* modal  start*/
.model-ok button.close {
    text-align: end;
    padding: 10px 10px;
}

.model-ok .modal-dialog .modal-content {
    border: 1px dashed #677e86;
    padding: 1rem;
}

.model-ok .modal-header {
    padding: 0;
    justify-content: center;
    border: 0;
}

.model-ok .modal-header img {
    width: 76px;
    height: 76px;
}

.model-ok .modal-footer {
    justify-content: unset;
    border: 0;
    padding: 0 0 20px 0;
    justify-content: center;
}

.model-ok .modal-body {
    padding: 10px 0 0 0;
}

/* modal  end*/
.about-us-banner {
    padding: 0 !important;
    background: black !important;
    text-align: center;
}

/* Style for the arrows */
.arrow {
    display: inline-block;
    font-size: 20px;
    color: #000;
}

.left-arrow {
    margin-right: 10px;
    font-size: 20px !important;
}

.right-arrow {
    font-size: 20px !important;
    margin-left: 10px;
}

.cart-quintity {
    position: relative;
    top: -8px;
    right: 10px;
}

.left-arrow-animate {
    animation: 5.4s ease-in-out infinite;
    -webkit-animation: 5.4s ease-in-out infinite;
}

@keyframes leftRightAnimation {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.left-arrow-animate {
    animation: leftRightAnimation 1.5s infinite;
}

.right-arrow-animate {
    animation: 5.4s ease-in-out infinite;
    -webkit-animation: 5.4s ease-in-out infinite;
}

@keyframes rightLeftAnimation {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.right-arrow-animate {
    animation: rightLeftAnimation 1.5s infinite;
}

.mobile-nav .login-cart-nav {
    position: absolute;
    bottom: 0;
    display: flex;
    margin-bottom: 0px;
    width: 100%;
}

.mobile-nav .login-cart-nav li {
    display: flex;
    flex: 1;
}

.mobile-nav .login-cart-nav li:not(:last-child) {
    border-right: 1px solid #8e8e8e;
}

.mobile-nav .login-cart-nav li > a {
    background-color: #c5c5c5;
    flex: 1;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-nav .login-cart-nav li .cart-quintity {
    position: relative;
    top: -7px;
    right: 8px;
}

@media (max-width: 1200px) {
    header .navwrp ul li {
        display: inline-block;
        margin: 0 8px;
    }
}

@media (max-width: 991px) {
    .product-name h4 a {
        font-size: 14px;
    }

    .summary-head {
        margin-top: 15px;
    }

    .cart-quintity {
        right: 10px;
        color: #000;
    }

    .cartt-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0px;
    }

    header .logowrp img {
        width: 125px;
    }
}

@media (max-width: 767px) {
    .about-us-banner {
        padding: 0 !important;
        /* background: black !important; */
    }

    .banner_img.about-us-banner img {
        max-width: 80%;
    }

    footer .navwrp {
        min-height: 140px;
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .product-detailwrp .detailwrp .pro-detailwrp {
        width: 90%;
        margin: 24px auto 0px 33px;
    }

    .product-detailwrp .detailwrp form .lablewrp select {
        width: 85%;
    }

    .product-detailwrp .detailwrp form .lablewrp input {
        width: 85%;
    }

    table.cart-table thead th {
        font-size: 16px;
    }

    .cart-summary .summary-body p {
        font-size: 16px;
    }

    .product-detailwrp .product-img {
        border: 0px;
        border-top: 1px solid #333333;
    }

    .product-detailwrp .detailwrp {
        border: 0px;
        border-top: 1px solid #333333;
        border-left: 0px;
    }

    .productwrp .imgwrp h4,
    .productwrp .imgwrp h3 {
        font-weight: 400;
    }

    .aboutbanerwrp .txtwrp h1 {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .aboutbanerwrp .txtwrp p {
        padding: 0 0 6px !important;
        font-size: 15px;
    }

    header .logowrp img {
        width: 110px;
    }

    .mobile-nav {
        padding-top: 51px;
    }

    .product-detailwrp .product-img img,
    .product-detailwrp .product-img video {
        max-width: 300px;
    }

    .contactwrp .mainwrp .locationwrp ul li h4 {
        font-size: 16px;
    }

    .contactwrp .mainwrp .locationwrp {
        border-left: 0px solid #70707085;
        border-bottom: 1px solid #70707085;
        padding: 0 0 0 0px;
    }

    .catogries-img {
        height: 250px;
        padding: 60px;
    }

    .aboutbanerwrp .txtwrp {
        padding: 30px 0 60px;
    }

    .productwrp .imgwrp img {
        max-width: 160px;
    }

    .main-heading {
        font-size: 16px;
    }

    .btn-three {
        padding: 0px 0px;
        font-size: 13px;
    }

    .form-heading {
        font-size: 22px;
    }

    .label-text {
        font-size: 16px;
    }

    .cart-summary .btn-secondary {
        padding: 11px 30px;
        max-width: 200px;
    }

    #select input#searchItems {
        padding: 10px 20px 10px 39px;
    }

    .left-arrow {
        font-size: 14px !important;
    }

    .right-arrow {
        font-size: 14px !important;
    }

    .banner_box img {
        height: 100% !important;
    }

    .home-banner-outer {
        height: calc(100vh - 92px);
        background: #c5c5c5;
    }

    .home-bannerwrp {
        display: flex;
        height: 33.33%;
    }

    .home-bannerwrp.banner-3 {
        object-position: right center;
    }
}

@media (max-width: 480px) {
    .catogries-img {
        padding: 30px;
    }

    .productwrp .imgwrp h4 {
        font-size: 12px;
        font-weight: 400;
    }
}

.prcedd-checkout {
    background-color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 1.71875rem !important;
    color: #fff !important;
}

.products-wraper h2 {
    font-size: 18px;
    font-weight: 400;
    background-color: #fff;
    color: #000000;
    border: none;
    text-align: left;
    /* padding: 12px 30px; */
}

a.cart-header--back {
    color: #000 !important;
    /* font-family: Balmain Sans; */
    font-size: 0.59375rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: normal;
    /* text-align: right; */
}

.products-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.item-attributes {
    flex-wrap: wrap;
    width: 100%;
}

.item-attributes--wrapper {
    max-width: 75.8125rem;
}

a.btn.btn-delete {
    color: #000;
    font-size: 13px;
    padding: 3px 6px;
    text-decoration: underline !important;
}

.line-item-actions {
    margin-top: 1.125rem;
    min-width: 100%;
}

.modal-header {
    display: flex;
    justify-content: end;
    /* background: transparent; */
    /* border: none; */
}

.btn-close {
    border: none;
    font-size: 28px;
    background: transparent;
}

.tab-view {
    width: 41rem;
    margin: auto;
}

.edit {
    border: none;
    text-decoration: underline;
    cursor: pointer;
    margin-right: 13px;
}

.product-edit {
    margin-right: 1.4375rem;
}

.product_img img {
    margin-right: 31px;
}

li.delete.remove-line-item {
    margin-right: 1.4375rem;
}

.quantity .input-qty {
    height: 40px;
    width: 40px;
}

.quantity {
    padding: 0;
}

.cart-summary {
    margin-left: 31px;
}

/* #form1{

  display:none;
} */
.card-header-custom {
    color: #000;
    /* font-family: Balmain Sans; */
    font-size: 1.25rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.75px;
    line-height: 1.1;
    margin-bottom: 1.875rem;
}

input.email-inp {
    width: 30.375rem !important;
    border: none !important;
    border-bottom: 0.0625rem solid #ccc !important;
    border-radius: 0 !important;
    display: block !important;
    font-size: 0.875rem !important;
    height: 2.9375rem !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-top: 0.875rem !important;
}

.name-row {
    width: 82%;
}

.cart-summary .summary-body {
    font-size: 20px;
    color: #333333;
    border-radius: 1.25rem;
    width: 100%;
}

.shiping-field {
    margin-bottom: 60px !important;
}

.cont-btn {
    background-color: #000;
    border-radius: 1.71875rem;
    color: #fff;
    float: right;
    /* font-family: Balmain Sans; */
    font-size: 0.59375rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.05;
    min-height: 3.4375rem;
    min-width: 15.9375rem;
    padding: 1.375rem 5.625rem;
    text-align: center;
    text-decoration: none;
}

.cont-btn:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

#form1 {
    opacity: 0.5;
    pointer-events: none;
    /* Disable mouse events on the form */
}

/* Make the form fully visible and enable it when not hidden */
#form1:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

/* Cart Page End */

/* NEW CODE */
.checkout-accordian button.accordion-button {
    display: block;
    width: 80%;
    text-align: left;
    color: #000;
    font-size: 1.5rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.75px;
    line-height: 1.1;
    background-color: white;
    border: 0;
    text-transform: uppercase;
    display: flex;
    /* justify-content: space-between; */
}

.checkout-accordian button.accordion-button:focus {
    outline: 0;
}

button.accordion-button.collapsed {
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    padding: 21px 9px;
}

.form-heading {
    font-size: 21px;
    color: #000;
    margin-top: 32px;
}

.f-name {
    border-bottom: 1px solid #ccc !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

input[type="checkbox"] {
    accent-color: #000;
}

.checkout-accordian .accordion-item {
    margin-bottom: 40px;
}

h2#headingTwo.showOpacity {
    opacity: 0.5;
}

button.accordion-button i {
    margin-left: auto;
}

.showwrap::before {
    content: "2";
    width: 0%;
    -ms-flex-negative: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    border: 0.0625rem solid #000;
    border-radius: 50%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-shrink: 0;
    font-size: 1.5625rem;
    height: 1.375rem;
    justify-content: center;
    line-height: 1.5625rem;
    width: 1.375rem;
    font-size: 0.8125rem;
    line-height: 1;
    margin-right: 0.625rem;
}

.back-link {
    border-bottom: 0.0625rem solid #000;
    margin-bottom: 2.5rem;
    padding-bottom: 0.625rem;
}

a.js-go-back.btn-back {
    background: 0 0;
    border: 0;
    color: #000;
    /* font-family: Balmain Sans; */
    /* font-size: .59375rem; */
    font-stretch: normal;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.0625rem;
    line-height: normal;
    padding: 0;
    text-decoration: none;
}

.one::before {
    content: "1";
    width: 0%;
    -ms-flex-negative: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    border: 0.0625rem solid #000;
    border-radius: 50%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-shrink: 0;
    font-size: 1.5625rem;
    height: 1.375rem;
    justify-content: center;
    line-height: 1.5625rem;
    width: 1.375rem;
    font-size: 0.8125rem;
    line-height: 1;
    margin-right: 0.625rem;
}

.padd-desk {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* .weap:checked~label:before {
  speak: none;
  content: "\e928";
  display: inline-block;
  font-family: balmain;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-transform: none;
  vertical-align: middle;
} */
.field {
    position: relative;
    display: block;
    width: 100%;
    cursor: text;
    /* border-bottom: 1px solid #727272; */
}

.field__hint {
    position: absolute;
    top: 3px;
    left: 0;
    line-height: 1;
    color: dimgray;
    font-size: 12px;
    opacity: 1;
    text-transform: uppercase;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
}

.field input:hover + .field__hint,
.field textarea:hover + .field__hint {
    color: #000000;
}

.field input:focus,
.field textarea:focus {
    outline: none;
}

.field--filled .field__hint {
    font-size: 12px;
    color: #000000;
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
}
.field__hint {
    font-family: var(--font-qanelas) !important;
    font-size: 12px;
}

label,.discuss-project__field,.notice,.primary,
input {
    font-family: var(--font-qanelas) !important;
    /* color: rgb(219, 27, 27) !important; */
}
.notice{
  color: black !important;
  font-weight: 800 !important;
}
#s-text{
  color: red !important;
}
.f-name {
    font-family: var(--font-qanelas) !important;
    font-size: 0.875rem !important;
}
.name-row {
    margin: 0 0 20px;
}
select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
    height: auto;
}
.ship-select label {
}
.title {
    font-family: var(--font-qanelas) !important;
}
.cont-shopp-btn {
    background-color: #000 !important;
    border-radius: 1.71875rem !important;
    color: #fff !important;
}
h2#headingthree.showOpacity {
    opacity: 0.5;
}
.three::before {
    content: "3" !important;
}
@media (max-width: 1900px) {
    .padd-desk {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}
@media (max-width: 1800px) {
    .padd-desk {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}

@media (max-width: 1700px) {
    .padd-desk {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}
@media (max-width: 1600px) {
    .padd-desk {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
}
@media (max-width: 1440px) {
    .padd-desk {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
    .cart-summary {
        margin-left: 0px;
    }
    .quantity {
        margin-right: 23px;
    }
}
@media (max-width: 1366px) {
    .padd-desk {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
    .cart-summary {
        margin-left: 0px;
    }
    .quantity {
        margin-right: 23px;
    }
}
@media (max-width: 1280px) {
    .padd-desk {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    .cart-summary .summary-body {
        padding: 19px 12px !important;
    }
    .cart-summary {
        margin-left: 0px;
    }
    .quantity {
        margin-right: 23px;
    }
}
@media (max-width: 1199px) {
    .padd-desk {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    .checkout-accordian button.accordion-button {
        width: 90%;
        font-size: 1.2rem;
        align-items: center;
        display: flex;
        /* justify-content: space-between; */
    }
    .form-group.w-100 {
        padding: 10px 22px;
    }
    .cart-summary {
        margin-left: 0px;
    }
    .cart-summary .summary-body {
        padding: 23px 11px !important;
    }
    .tab-view {
        width: 100%;
    }
    .cart-page {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .product_img {
        width: 80px;
        height: 80px;
    }
    .product-edit {
        margin-right: 0.4375rem;
    }
    li.delete.remove-line-item {
        margin-right: 0.4375rem;
    }
    .cont-shopp-btn {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    .quantity-wrap {
        margin-right: 0.4375rem;
    }
}
.bill-address {
    width: 90% !important;
    margin-top: -37px;
}
@media (max-width: 991px) {
    input.email-inp {
        width: 18.375rem !important;
    }
}
@media (max-width: 767px) {
    .padd-desk {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }
    .checkout-accordian button.accordion-button {
        width: 100%;
        font-size: 1rem;
        align-items: center;
        /* justify-content: space-between; */
    }
    input.email-inp {
        width: 100% !important;
    }
    .cart-summary {
        margin-left: 0;
    }
    .cart-summary .summary-body {
        padding: 31px 0 !important;
    }
    .name-row {
        width: 100%;
    }
    .form-group.w-100 {
        padding: 10px 20px;
    }
    .bill-address {
        width: 100% !important;
        margin-top: -37px;
    }
    .form-group.w-100 {
        padding: 10px 13px;
    }
    .form-heading {
        font-size: 17px;
        margin-top: 32px;
        margin-bottom: 41px !important;
    }
    .tab-view {
        width: 20rem;
    }
    .cart-btn {
        max-width: 114px !important;
        padding: 6px 14px !important;
        margin-top: 14px;
        margin-bottom: 15px;
        font-size: 11px !important;
    }
    .product_img {
        width: 100px !important;
        height: 100px !important;
    }
}
button.edit {
    outline: none;
    background: transparent;
}
button#cross-btn {
    cursor: pointer;
}
.checkout-page .form-control {
    background: transparent;
    box-shadow: inherit;
}
@media (max-width: 767px) {
    /*.form-group.w-100 {*/
    /*    padding: 10px 0px;*/
    /*}*/
    /*.checkout-page .form-control {*/
    /*    padding: 0.9375rem 0 0 !important;*/
    /*    overflow-x: hidden !important;*/
    /*}*/
    /*.accordion-item {*/
    /*    width: 100%;*/
    /*}*/
    /* input {*/
    /*      -webkit-user-select: initial;*/
    /*      -khtml-user-select: initial;*/
    /*      -moz-user-select: initial;*/
    /*      -ms-user-select: initial;*/
    /*      user-select: initial;*/
    /*     }*/
    /*     input[type="email"] {*/
    /*    writing-mode: horizontal-tb !important;*/
    /*    padding-block: 1px;*/
    /*    padding-inline: 2px;*/
    /*}*/
    /*body{*/
    /*    overflow-x: hidden;*/
    /*    width: 100%;*/
    /*    -webkit-box-sizing: border-box;*/
    /*       -moz-box-sizing: border-box;*/
    /*            box-sizing: border-box;*/
    /*}*/
    /*.name-row {*/
    /*    width: 82% !important;*/
    /*}*/
    /*.accordion-body {*/
    /*    width: 100%;*/
    /*    overflow-x: hidden;*/
    /*}*/
}

/* NEW CODE */

