.utility-bar {
    background: #000;
    text-align: center;
    padding: 5px;
}
.utility-bar a,
.utility-bar a:hover{
    color: #fff;
}

.header-center {
    padding: 10px 0;
    background-color: var(--primary-color);
}

.header {
    /* display: block;
    width: 100%;
    position: relative;
    z-index: 99; */
    display: block;
    width: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
}

.header.fixed-header {
    top: 0;
    /* position: fixed;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; */
}

.header .container{
    max-width: 1600px;
}

.header-bottom {
    background: #fff;
}

.header-item.item-left {
    display: flex;
    align-items: center;
    float: left;
    vertical-align: middle;
}

.location {
    width: 180px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ededed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 25px;
    cursor: pointer;
}

.location img {
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.location p {
    font-size: 13px;
    font-weight: 600;
}
.location span {
    font-size: 12px;
    color: rgb(18 18 18 / 75%);
}
.location span strong{
    color: #000;
}

.search_container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 10px;
    max-width: 820px;
    width: 100%;
}

.header-center-wapper {
    display: flex;
    align-items: center;
}

.header .item-right {
    display: flex;
    justify-content: flex-end;
}

.header .menu>ul>li {
    display: inline-block;
    margin-right: 45px;
}

.header .menu>ul>li>a {
    display: inline-block;
    position: relative;
    font-size: 17px;
    font-weight: normal;
    color: rgb(18 18 18 / 75%);
    text-transform: capitalize;
    transition: color 0.3s ease;
    padding: 25px 0;
}
.header .menu>ul>li:hover>a{
    color: var(--black-color);
}

.header .menu>ul>li>a>i {
    font-size: 10px;
}

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: var(--white-color);
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 0;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    width: 100%;
    padding: 15px 15px;
    font-size: 14px;
    line-height: normal;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .menu>ul>li .single-column-menu {
    min-width: 180px;
    max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 8px 0;
    display: inline-block;
    color: #555555;
    transition: 0.3s ease;
    font-size: 13px;

}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover {
    padding-left: 3px;
}

.header .menu>ul>li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    min-width: 1100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    height: 300px;
    overflow: scroll;
}

.sub-menu.mega-menu.mega-menu-column-4 .list-item:nth-child(odd) {
    background: #f9f9f9;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 25%;
    padding: 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 14px !important;
    color: #000;
    font-family: var(--body-fonts);
    border-bottom: 1px dashed #e5e5e5;
    font-weight: 500;
    padding: 10px 0;
    margin-bottom: 5px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover{
	color: var(--black-color);
}



/* banner section */
.banner-section {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 100%;
    display: block;
}

.mobile-menu-head,
.mobile-menu-trigger,
.innper-back {
    display: none;
}

.search_container form {
    width: 100%;
    display: flex;
    border-radius: 10px;
    border: 1px solid #ededed;
    background: var(--white-color);
}

select.default-select {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
}
.search_box {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.img-gner::placeholder {
  transition: opacity 0.4s, transform 0.4s;
  opacity: 1;
  font-size: 18px;
      color: rgb(18 18 18 / 75%);
}

.img-gner.slide-up::placeholder {
  opacity: 0;
  transform: translateY(-100%);
}

.img-gner.slide-down::placeholder {
  opacity: 0;
  transform: translateY(100%);
}


/* autocomplete searh */
.autocomplete-area {
    position: absolute;
    background: #fff;
    z-index: 9;
    width: 100%;
    top: 48px;
    min-width: 600px;
    left: 0%;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 5px 20px #8f959a99;
    border-radius: 10px;
    padding: 15px;
    top: calc(100% + 10px);
    width: 0;
    opacity: 0;
    visibility: hidden;
}
.search_container.active .autocomplete-area,
.search_container.show-mobile-click .autocomplete-area {
    opacity: 1;
    width: 100%;
    visibility: visible;
}
.autocomplete-heading h3 {
    padding: 0 0 0 25px;
    font-size: 18px;
    font-weight: bold;
}

.autocomplete-treding-search .autocomplete-heading h3 {
    background-size: 18px 18px;
    background-image: url("data:image/svg+xml,%3Csvg  xmlns='http://www.w3.org/2000/svg' height='500' viewBox='0 0 48 48' width='500' data-v-26850a1a=''%3E%3Cpath data-v-81e3da4c='' d='M32 12l4.59 4.59-9.76 9.75-8-8-14.83 14.83 2.83 2.83 12-12 8 8 12.58-12.59 4.59 4.59v-12z' data-v-26850a1a=''%3E%3C/path%3E%3Cpath data-v-81e3da4c='' d='M0 0h48v48h-48z' fill='none' data-v-26850a1a=''%3E%3C/path%3E%3C/svg%3E");
    background-position: left;
    background-repeat: no-repeat;
}
.autocomplete-recommended-search .autocomplete-heading h3{
    background-size: 18px 16px;
    background-image: url("data:image/svg+xml,%3Csvg data-v-29fde210='' width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath data-v-29fde210='' d='M7.467 0c1.102.018 5.555 2.549 6.386 8.558.905-.889 1.409-3.664 1.147-4.843 3.952 2.969 6 6.781 6 11.034 0 5.094-3.43 9.251-8.963 9.251-5.728 0-9.037-3.753-9.037-8.276 0-6.26 5.052-7.62 4.467-15.724zm3.262 19.743c-.749.848-.368 1.945.763 2.045 1.035.093 1.759-.812 2.032-1.792.273-.978.09-2.02-.369-2.893-.998 1.515-1.52 1.64-2.426 2.64zm4.42 1.608c2.49-1.146 3.852-3.683 3.852-6.58 0-2.358-.94-4.977-2.5-7.04-.743 2.867-2.924 3.978-4.501 4.269.05-3.219-.318-6.153-2.602-8.438-.296 4.732-4.321 7.63-4.398 12.114-.029 1.511.514 3.203 1.73 4.415.491.489 1.054.871 1.664 1.16-.121-.608-.062-1.254.195-1.848.911-2.106 3.333-2.321 4.202-5.754.952.749 3.275 3.503 2.778 6.358-.082.469-.224.923-.42 1.344z'%3E%3C/path%3E%3C/svg%3E");
    background-position: left;
    background-repeat: no-repeat;
}

.treding-search-box ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.treding-search-box ul li a {
    padding: 5px 10px;
    border: 1px solid #d3d3d3;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.treding-search-box ul li a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    border-color: var(--primary-color);
}
.treding-search-box ul li a svg {
    transform: rotate(-180deg);
    width: 18px;
    height: 18px;
}

.autocomplete-listing-area {
    overflow-x: auto;
    position: relative;
    padding: 5px;
}
.autocomplete-listing-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
}
.autocomplete-listing-item .product-item {
    flex: 38%;
    max-width: 38%;
    flex-shrink: 0;
}

.autocomplete-listing-item .listing-content h4 {
    font-size: 14px;
}
.autocomplete-listing-item .main-price {
    font-size: 14px;
}

.type-search-wapper ul li a {
    display: inline-block;
    width: 100%;
    margin: 5px 0;
    font-size: 13px;
    font-weight: 600;
}
.type-search-wapper ul li:nth-child(1) a {
    margin-top: 0;
}
.type-search-wapper ul li a:hover {
    color: #000;
}



.search_box input {
    border: 0;
    background: inherit;
    width: 100%;
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 75px 0 15px;
    color: var(--black-color);
}

.search_box button {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    line-height: 48px;
    width: 60px;
    padding: 0;
    text-align: center;
    right: 0;
    font-weight: 400;
    font-size: 20px;
    border-radius: 0 30px 30px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: transparent;
}

.header-btns a {
    padding: 0 24px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #000;
    color: #000;
    height: 55px;
    display: flex;
    align-items: center;
}

.header-btns a:hover,
.header-btns a.active {
    background-color: var(--black-color);
    border-color: transparent;
    color:var(--white-color);
}

.header_account_list>a {
    display: flex;
    align-items: center;
    flex-direction: column;
}


.header_viewed a,
.header_store a {
    font-size: 14px;
}

.header_account_list a  svg {
    width: 28px;
    height: 28px;
}

span.header-account-name{
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.9;
}

.header_account_list>a:hover {
    color: black;
}

.header_account_list.register ul li {
    display: inline-block;
}

.header_account_list.register ul li a:hover {
    color: black;
}

.header_account_list.register ul li span {
    margin: 0 2px;
}

.header_account_list span.item_count {
    margin-left: 5px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    display: inline-block;
    position: absolute;
    top: -5px;
    right: -5px;
}

.header_notification span.item_count {
    width: 10px;
    height: 10px;
    top: 0;
    right: 6px;
}

.header_account_area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}


.ul-columns2 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.menu-button a {
    border: 1px solid #ededed;
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    border-radius: 5px;
}

.menu-button a:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    border-color: transparent;
}

.ribbon-new {
    background: var(--primary-color);
    height: 15px;
    width: auto;
    margin: -4px 0 0 5px;
    position: relative;
    color: var(--black-color);
    padding: 0 5px 0 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    line-height: 17px;
    line-height: 15px;
}

.ribbon-new:after,
.ribbon-new:before {
    content: "";
    height: 0;
    width: 0;
    top: 0;
    right: -6px;
    position: absolute;
    border-left: 0 solid transparent;
    border-right: 12px solid transparent;
}

.ribbon-new::before {
    border-top: 15px solid var(--primary-color);
    z-index: 1;
}

.ribbon-new:after {
    border-bottom: 15px solid var(--primary-color);
}

.view-all-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.third-col-banner {
    background: #fff;
    border-top: 1px solid #f9f9f9;
    width: 100%;
}

.thirdbg-image {
    height: 110px;
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px;
    background-size: 120px;
    transition: 0.3s;
}

.thirdbg-image:hover {
    background-size: 130px;
}

.rign-bg-image {
    background: url(https://kinclimg3.bluestone.com/f_webp/static/resources/themes/bluestone/images/new/menu-solitaire-ring.v1.png) no-repeat;
    background-position: right;
    transition: 0.3s;
}

.earrings-bg-image {
    background: url(https://kinclimg3.bluestone.com/f_webp/static/resources/themes/bluestone/images/new/menu-solitaire-ring.v1.png) no-repeat;
    background-position: right;
    transition: 0.3s;
}

.pendants-bg-image {
    background: url(https://kinclimg3.bluestone.com/f_webp/static/resources/themes/bluestone/images/new/menu-solitaire-ring.v1.png) no-repeat;
    background-position: right;
    transition: 0.3s;
}

.mobile-search,
.show-mobile,
.mobile-login{
	display: none !important;
}


.mobile-login {
    background-color: var(--primary-color);
    padding: 15px;
    z-index: 999;
}
.mobile-login-item {
    display: flex;
	align-items: center;
	gap: 15px;
}
.mobile-login-icon {
    height: 55px;
    width: 55px;
    background-color: var(--white-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-login-icon p{
	font-size: 24px;
	font-weight: 600;
}
.mobile-login-content p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
}
.mobile-login-content h6 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body-fonts);
}

.follow-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.follow-btns li a{
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 7px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    width: 100%;
    text-align: center;
    height: 35px;
    align-items: center;
    justify-content: center;
}

/*responsive*/
@media(max-width: 1199px) {

    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .header-bottom {
        box-shadow: none;
    }

    .v-center {
        justify-content: space-between;
    }

    .innper-back {
        display: block;
    }

    .innper-back h4{
        font-family: var(--body-fonts);
    }

    .header_account_area {
        position: absolute;
        right: 0;
        top: -55px;
        z-index: 1;
        gap: 15px;
    }
    .header-account-name {
        display: none;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header-item-inner-left .mobile-menu-trigger {
        display: none;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #333333;
        width: 24px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }

    .header .mobile-menu-trigger span:before {
        top: -8px;
    }

    .header .mobile-menu-trigger span:after {
        top: 8px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block !important;
        margin-right: 0 !important;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px !important;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        /* height: 50px; */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* justify-content: space-between; */
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
        position: relative;
        left: 10px;
    }

    .header .menu .mobile-menu-close {
        height: 50px;
        width: 50px;
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        font-size: 25px;
        position: absolute;
        top: 0;
        right: 0;
    }

    .header .menu .menu-main {
        height: calc(100% - 85px);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
        padding: 10px;
    }

    .menu-button a {
        margin-top: 0 !important;
        margin-bottom: 20px;
    }

    .sub-menu.mega-menu.mega-menu-column-4 .list-item:nth-child(odd) {
        background: transparent;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
        padding-top: 145px;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        margin-top: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu>ul>li .sub-menu>ul>li>a,
    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        display: block;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
        margin-bottom: 15px;
                padding: 0 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

	.show-mobile,
	.mobile-login{
		display: block !important;
	}
    .home_header .header_account_list.mini_cart_wrapper {
        display: none;
    }

    .autocomplete-area {
        /* left: 0;
        min-width: auto;
        box-shadow: none;
        border-radius: 0;
        margin-left: 0;
        position: fixed;
        top: 68px;
        border-top: 1px solid #d3d3d3;
        height: calc(100% - 68px);
        overflow: auto; */

        left: 0;
        min-width: auto;
        box-shadow: none;
        border-radius: 0;
        margin-left: 0;
        position: fixed;
        top: 67px;
        border-top: 1px solid #d3d3d3;
        height: 100%;
        overflow: auto;
    }


    .home-header .search_container {
        display: inline-flex;
        padding: 0 !important;
        flex-direction: column;
        gap: 5px;
    }
    .home-header .search_container .location {
        display: block;
    }
    .home-header .search_container .autocomplete-area {
        top: 139px;
        height: calc(100% - 195px);
    }
    .header.home-header.fixed-header .autocomplete-area {
        top: 139px;
        height: calc(100% - 164px);
    }
}
@media(max-width: 767px){
	.container, .container-sm {
        max-width: 100%;
    }
	.header .header-top {
		display: none;
	}
	.mobile-search{
		display: block !important;
	}
    .autocomplete-area {
        min-width: auto;
    }
    .autocomplete-listing-item .product-item {
        flex: 78%;
        max-width: 100%;
    }
}


.search-mobile-back {
    display: none;
}
.search_container.show-mobile-click .search-mobile-back {
    display: block;
}

.search_container.show-mobile-click {
    position: fixed;
    z-index: 9;
    width: 100%;
    display: flex;
    top: 0;
    left: 0;
    background: #fff;
    padding: 11px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.search_container.show-mobile-click .location {
    display: none;
}

.search-mobile-back a {
    font-size: 32px;
    height: 45px;
    width: 45px;
    /* border: 1px solid #d3d3d3; */
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
