@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&display=swap');

.scaling {
    -webkit-animation: scale 3s infinite linear;
    animation: scale 15s infinite linear;
}

.movebounce {
    -webkit-animation: movebounce-up 6s infinite linear;
    animation: movebounce-up 6s infinite linear;
}

.moving {
    -webkit-animation: moveIn-to 20s infinite linear;
    animation: moveIn-to 20s infinite linear;
}

.rotated {
    -webkit-animation: rotated360 25s infinite linear;
    animation: rotated360 25s infinite linear;
}

.rotated30 {
    -webkit-animation: rotated30 5s infinite linear;
    animation: rotated30 5s infinite;
}

@-webkit-keyframes movebounce-up {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@keyframes movebounce-up {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@-webkit-keyframes moveIn-to {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(50px, 0);
        transform: translate(50px, 0)
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@keyframes moveIn-to {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    50% {
        -webkit-transform: translate(50px, 0);
        transform: translate(50px, 0)
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@-webkit-keyframes rotated360 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg)
    }

    100% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg)
    }
}

@keyframes rotated360 {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg)
    }

    100% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg)
    }
}

@-webkit-keyframes rotated30 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes rotated30 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

/*1. Animate css, 2. Smartmenus css, 3. Slick css, 4. Reset css, 5. Core css, 6. custom css*/

/* =================animate css starts here================= */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/* =================animate css ends here================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
}

a {
    text-decoration: none;
}

a,
button {
    font-family: "Inter", sans-serif;
}

img {
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}



.btn{
    font-family: "Inter", sans-serif;
}

.top_header {
    gap: 3rem;
}

.top_header_wrp {
    background: #fff;
    padding: 12px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.top_header {
    align-items: center;
    justify-content: space-between;
}

/*header .top_hdr_items {*/
/*    width: 150px;*/
/*}*/

header .diamonds p {
    color: #1E1E1E !important;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 300;
}

.top_hdr_items p,
.menu-items {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.t_srchbx input {
    border-radius: 5px;
    background: #FFF;
    height: 42px;
    width: 255px;
    font-size: 14px;
    padding: 0 30px 0px 10px;
    border: 0;
}

.srchform {
    position: relative;
    border: 1px solid gray;
    border-radius: .2rem;
}

.srchform img {
    position: absolute;
    right: 10px;
    top: 11px;
}

input:focus {
    box-shadow: none;
    border: 0;
    outline: none;
}

.searchForm .searchDropDown select {
    color: #9F9F9F !important;
}

.searchForm .searchDropDown select:focus {
    box-shadow: 0 0 2px rgba(0, 0, 0, 1);
}

.searchForm .searchDropDown .default_select_box {
    box-shadow: 0 0 2px rgba(0, 0, 0, 1);
}

.top_hdr_items p {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 208.333% */
    margin-bottom: 0;
    text-transform: uppercase;
}

.top_hdr_items {
    text-align: center;
    padding: 0 12px;
}

.top_hdr_items a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px
}


/*menu css */



/* navbar */

.navbar {
    /*background: #ffffff;*/
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-item {
    display: flex;
}

/* nav menu button */

.menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    content: "";
    position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    width: 20px;
    height: 0.1rem;
    background: #fff;
    transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
    transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
    transform: translateY(0.5rem);
}


.navbar ul li {
    list-style: none;
    transition: 0.3s ease;
}

.navbar ul li .arrow {
    transition: all 0.3s ease-out;
}

.navbar ul li a {
    text-decoration: none;
    color: #112f48;
}

/* dropdown menu */

.navbar .dropdown {
    position: relative;
}

.expand-btn:after {
    content: " \25BE";
    opacity: 1;
    margin-left: 5px;
}

.navbar .dropdown-menu,
.menu-right {
    position: absolute;
    background: #e9ecef;
    width: 190px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 65px;
    border-top: 1px solid white;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu-right {
    top: 0;
    left: 100%;
}

.navbar .dropdown-menu,
.menu-left {
    left: unset;
    right: 0;
}

.navbar .menu-left {
    left: -100%;
}

.navbar .menu-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1.5rem;
    font-size: 14px;
}

.navbar .menu-item:hover {
    color: #B9833B;
}

.menu-item.first-item {
    padding: 7px 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    text-transform: uppercase;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: block;
}

.navbar .dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
    left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
    position: absolute;
    background: #fff;
    left: 0;
    width: 100%;
    top: 65px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
    display: flex;
    width: 90%;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 1rem;
}

.blog .content {
    grid-template-columns: repeat(4, 1fr);
}

.content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 3rem;
}

.content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

.content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.content .col img {
    width: auto;
    transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
    transform: scale(1.1);
}

.content .col .menu-title {
    color: #ff5722;
    font-size: 1.2rem;
    line-height: 3rem;
    font-weight: bold;
}

.content .col p {
    line-height: 1.2rem;
    margin-top: 5px;
    color: #112f48;
}


.content .col .read-more {
    font-size: 16px;
    display: flex;
    padding-top: 1rem;
    color: #03a9f4;
    transition: color 0.3s ease;
    justify-content: flex-end;
    padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
    padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.content .col .read-more:hover {
    color: #ff5722;
}

/* container */


/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
    transform: translateX(0.5rem);
    background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #000;
}

.menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #000;
}

/* Responsive style */


@media screen and (min-width: 1440px) {
    .help_section .right_box {
        top: -9rem !important;
    }

    .help_section {
        margin-top: 9rem !important;
    }
}

@media screen and (max-width: 1024px) {
    .navbar {
        padding: 10px 20px;
    }

    .overflow {
        overflow: hidden;
    }

    .overlay {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .overlay--active {
        opacity: 1;
        visibility: visible;
    }

    .menu-btn {
        display: flex;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .navbar .menu-items {
        position: fixed;
        height: 100%;
        max-height: initial;
        overflow-y: auto;
        width: 80%;
        top: 65px;
        left: 0;
        background: #fcfcfc;
        display: block;
        transform: translateX(-100vh);
        transition: 0.3s ease-out;
        padding-bottom: 100px;
    }

    .menu-items.open {
        transform: translateY(0);
    }

    .menu-items li:first-child {
        margin-top: 0px;
    }

    .menu-items li a {
        padding: 10px 1rem;
        display: block;
        font-size: 18px;
    }

    .menu-items .dropdown-right .right-arrow {
        transform: rotate(90deg);
    }

    .menu-item.first-item {
        padding: 0.5rem 1rem;
    }

    /* DROPDOWN, MEGA MENUS */
    .menu-items .dropdown-menu,
    .menu-items .menu-right,
    .menu-items .mega-menu {
        position: static;
        opacity: 1;
        top: 4rem;
        visibility: visible;
        margin-left: -18px;
        width: auto;
        max-height: 0;
        transform: scaleX(0);
        transform-origin: left;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .menu-items .dropdown-menu,
    .menu-items .menu-right {
        padding-left: 1rem;
        width: 102%;
        margin-left: -10px;
    }

    .menu-items .mega-menu .col {
        padding-left: 1rem;
    }

    .expand-btn.open+.sample {
        max-height: 100%;
        transform: scaleZ(1);
    }

    .expand-btn.open+.blog.sample {
        max-height: 100%;
        transform: scaleZ(1);
        max-width: fit-content;
    }

    .navbar .sample {
        border-top: none;
    }

    .sample li {
        margin: 0;
    }

    .sample li:last-child {
        border-bottom: none;
    }

    .sample li a {
        font-size: 1rem;
    }

    .mega-menu .content {
        grid-template-columns: auto;
        padding: 1rem 1rem 0 1rem;
    }

    .mega-menu .content .col {
        width: 100%;
        padding-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .col .mega-links li,
    .col .mega-links li a {
        padding: 0 0.5rem;
    }

    .content .col .mega-links {
        border-left: 0;
        padding-left: 0.5rem;
    }

    .col .mega-links li {
        margin: 0;
    }

    .help_section {
        margin-top: 0rem !important;

    }
}


.mega-links a.menu-item {
    justify-content: flex-start;
}

ul.mega-links.stylelisting {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mega-links a.menu-item {
    padding: 0 !important;
    align-items: center;
}

ul.mega-links.stylelisting li {
    flex: 0 0 48%;
}


.menu-title p {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.menu-title p:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #3F2561;
}

ul.menu-items li,
ul.menu-items li a {
    transition: all 0.5s;
}

ul.menu-items li:hover>a {
    color: #B9833B;
}

ul.menu-items li>a.first-item {
    border-bottom: 3px solid transparent;
}

ul.menu-items li:hover>a.first-item {
    border-bottom: 3px solid #B9833B;
}

ul.mega-links li {
    padding: 7px 0;
}

.gemlistng a.menu-item img {
    margin-right: 5px;
}

.stylelisting a.menu-item img {
    margin-right: 6px;
}

.stylelisting li {
    padding: 10px 0 !important;
}

.mob_visible {
    display: none;
}

.bnrimg img {
    width: 100%;
}

.sect-padd {
    padding-top: 15px;
    padding-bottom: 15px;
}

.sitehdng_row {
    text-align: center;
    font-family: "Inter", sans-serif;
}

h2.sitehdng {
    color: #31135E;
    text-align: center;
    font-size: 40.303px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.505px;
}

.sitehdng_row p {
    color: #222;
    text-align: center;
    font-size: 18.136px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sitehdng_row {
    text-align: center;
}

/* Search form */
.bnrimg {
    position: relative;
}

.searchForm {
    position: absolute;
    top: 2rem;
    left: 3rem;
    width: 25%;
    border-radius: 1.5rem;
    background-color: #fff;
    padding: 1.5rem;
    box-shadow: 2px 2px 2px 2px lightgray;
}

.searchForm h1 {
    text-align: center;
   font-size: 22px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    margin: .2rem 0 1.5rem 0;
}

.searchForm .Gemstone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}


.Gemstone input:checked {
    accent-color: #ff3705;
}

.searchDropDown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.searchDropDown select {
    width: 100%;
    padding: .5rem;
    border-radius: .5rem;
    /* border-bottom: 1px solid lightgray; */
    box-shadow: 0 0 1px #D9D9D9;
    border: none;
}

.searchDropDown {
    position: relative;
}

.searchDropDown select:focus {
    box-shadow: 0px 3px 2px 1px darkgray;
    outline: none;
}

.searchForm .search_btn {
    width: 100%;
    background-color: #ff3705;
    color: #fff;
    border-radius: .4rem;
    font-size: 1.2rem;
}

.searchForm .advance_search_box {
    display: flex;
    justify-content: end;
}

.searchForm .advance_search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.advance_search_box .advance_search span {
    color: #000;
}

.searchForm .advance_search img {
    width: 10%;
}



/* Our Gemstone Categories section */

.gemstone h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.gemstone h5 {
    font-family: "Inter", sans-serif;
    text-align: center;
}

.gemstone .gemstone_Categories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: #FCFCFC;
    border-radius: .4rem;
    padding: 1rem;
}

.gemstone_Categories h3 {
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
    font-family: "Inter", sans-serif;
}

.gemstone_Categories p {
    color: gray;
}

/* Our Gemstone Categories section */

/* Our Bestselling Gemstone Jewelry */

.gemstone .gemstone_rings {
    justify-content: center;
    align-items: center;

}

.gemstone_rings button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    color: gray;
    padding: .2rem .8rem;
    transition: all 0.3s ease-in-out;
    border: 0;
    background-color: transparent;
}

.gemstone_rings .gemstone_active {
    border-bottom: 2px solid #ff5722;
    color: #ff5722;
}

.bestselling_bemstone .gemstone_content {
    display: none;
    transition: all 0.3s ease-in-out;
}

.gemstone_content_active {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.bestselling_bemstone .gemstone_product h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.gemstone_green_ring {
    padding-bottom: 1rem;
}

.bestselling_bemstone .gemstone_product h2 span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .2rem;
}

.gemstone_Categories .product_amount {
    margin-bottom: 3px !important;
}

/* .gemstone_Categories p:nth-child(2) img{
    
} */

.gemstone_Categories .product_buy_btn {
    width: 100%;
    background-color: #ff5722;
    color: #fff;
}

/* Our Bestselling Gemstone Jewelry */

/* help section */
.help_section {
    margin-top: 10rem;
    background-color: #F5F5F5;
    padding: 0;

}

.help_section .left_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 2rem 0;
}

.help_section .left_box h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: Playfair;
    color: #1E1E1E;
}

.help_section .left_box p {
    color: #525252;
    font-weight: regular;
    font-family: Lato;
    font-size: 1.1rem;
}

.help_section .left_box .btn_box {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.1rem;
    margin-top: 1rem;
}

.help_section .left_box .btn_box .btn_1 {
    background-color: #2A9D1B;
    padding-inline: 1.2rem;
    border: none;
}

.help_section .left_box .btn_box .btn_2 {
    background-color: #EDC30B;
    color: #1E1E1E;
    padding-inline: 1.2rem;
    border: none;
}

.help_section .left_box .btn_box .btn_3 {
    background-color: #E74821;
    padding-inline: 1.2rem;
    border: none;
}

.help_section .right_box {
    display: flex;
    justify-content: end;
    align-items: flex-start;
    position: absolute;
    top: -15rem;
    right: 2.3rem;
}

.help_section {
    margin-top: 15rem;
}


/* help section */

/* Semi-Precious Collection */
.precious_collection {
    padding-top: 2rem;
}

.precious_collection .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.precious_collection .heading_part h2 {
    color: #1E1E1E;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Inter", sans-serif;
}

.precious_collection .heading_part p {
    color: #1E1E1E;
    font-family: "Inter", sans-serif;
}

.precious_collection .semi_precious {
    display: flex !important;

    justify-content: center;
    align-items: center;
    padding-block: 3rem;
    gap: 1rem;
}

.precious_collection .semi_precious .collection_1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: #FCFCFC;
}

.semi_precious .collection_1 .text_part {
    text-align: center;
}

.semi_precious .collection_1 .text_part h3 {
    color: #2F2F2F;
    font-size: 1.2rem;
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

.semi_precious .collection_1 .text_part span {
    font-size: .9rem;
    color: #525252;
    font-family: "Inter", sans-serif;
}

/* Semi-Precious Collection */


/* gemstone_recommendation_section */
.gemstone_recommendation_section {
    background-color: #F4F4F4;
    padding-block: 2.5rem;
}

.gemstone_recommendation_section .left_box img {
    width: 70%;
   
    border-radius: 1rem 1rem 5px 5px;
    box-shadow: 0 0 4px #b9acac;
}

.gemstone_recommendation_section .right_box h2 {
    color: #1E1E1E;
    font-family: "Playfair", serif;
    font-weight: bold;
}

.gemstone_recommendation_section .right_box span {
    color: #FF3705;
}

.gemstone_recommendation_section .right_box p {
    color: #494949;

}

.gemstone_recommendation_section .right_box .form_section {
    padding-top: .8rem;
}

.recommendation_box {
    display: flex;
    flex-wrap: wrap;
}

/* .gemstone_recommendation_section .right_box{
        width: 80%;
        margin: 0 auto;
    } */

.gemstone_recommendation_section .right_box .form_section .name_box,
.gemstone_recommendation_section .right_box .form_section .gender_box,
.gemstone_recommendation_section .right_box .form_section .country,
.gemstone_recommendation_section .right_box .form_section .city,
.gemstone_recommendation_section .right_box .form_section .dob_date,
.gemstone_recommendation_section .right_box .form_section .dob_time {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}



.right_box .form_section .name_box label,
.right_box .form_section .gender_box label,
.right_box .form_section .country label,
.right_box .form_section .city label,
.right_box .form_section .dob_date label,
.right_box .form_section .dob_time label {
    color: #404040;
}

.right_box .form_section .name_box input,
.right_box .form_section .gender_box select,
.right_box .form_section .country select,
.right_box .form_section .city select,
.right_box .form_section .dob_date input,
.right_box .form_section .dob_time input {
    width: 100%;
    border: none;
    outline: none;
    padding-inline: .8rem .5rem;
    padding-block: .3rem;
    border-radius: .3rem;
    box-shadow: 0 0 5px #D9D9D9;
    color: #9F9F9F;
}

.right_box .form_section .dob_date input {
    padding-inline: .5rem 1rem;
}

.right_box .form_section .dob_time input {
    padding-inline: .5rem 1rem;
}

.right_box .form_section button {
    width: 100%;
    padding-block: .5rem;
    background-color: #FF3705;
    color: #F5F5F5;
}

/* gemstone_recommendation_section */

/* Personalized Gemstone Recommendations */

.personalized_gemstone {
    display: flex !important;
    flex-wrap: wrap;
}

/* Personalized Gemstone Recommendations */

/* Gemstone  Certified  Section*/

.certificates_section {
    padding-block: 2rem 2.6rem;
    background-color: #F3F3F3;
}

.certificates_section .text_area {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.certificates_section .text_area h2 {
    font-family: playfair;
    font-weight: bold;
    color: #1E1E1E;
    font-size: 2.7rem;
}

.certificates_section .text_area span {
    color: #FF3705;
}
.certificates_section .text_area h5{
    font-family: playfair;
}

.certificates_box {
    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificates_box .left_box {
    display: flex;
    align-items: center;
    justify-content: end;
}

.certificates_box .right_box .right_img_box1,
.certificates_box .right_box .right_img_box2 {
    display: flex;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    margin-top: 1rem;
}

.certificates_section button {
    padding-block: .4rem;
    padding-inline: 1.5rem;
    color: #F5F5F5;
    background-color: #FF3705;
}

.certificates_section .certificates_box_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gemstone  Certified  Section*/

/* Promise Purity section */

.promise_purity_section {
    padding-top: 2rem;
}

.promise_purity_section .heading_part {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promise_purity_section .heading_part h2 {
    color: #1E1E1E;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Inter", sans-serif;
}

.promise_purity_section .heading_part p {
    color: #1E1E1E;
    font-family: "Inter", sans-serif;
}

.promise_purity_section .promise_purity {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding-block: 3rem;
    gap: 1rem;
}

.promise_purity_section .promise_purity .purity_card1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-block: 3rem;
    background-color: #F9F9F9;
    border-radius: 1.2rem;
    box-shadow: 0 0 2px 2px #F9F9F9;
}

.promise_purity .purity_card1 .text_part {
    text-align: center;
}

.promise_purity .purity_card1 .text_part h3 {
    color: #2C2C2C;
    font-size: 1.2rem;
    font-family: "Inter", sans-serif;
    font-weight: lighter;
}

.promise_purity .purity_card1 .text_part span {
    font-size: .9rem;
    color: #525252;
    font-family: "Inter", sans-serif;
}

/* Promise Purity section */

/* Real clients story */
.real_clients_story {
    background-color: #F9F9F9;
    padding-block: 2rem;
}

.real_clients_story .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.real_clients_story .heading_part h2 {
    font-size: 2rem;
    font-family: "inter";
    font-weight: 700;
}

.real_clients_story .heading_part p {
    color: #1E1E1E;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: "inter";
}

.clients_section .heading_part span {
    color: #FF5722;
}

/* Real clients story */

/* listing_items */

.prev_left_btn,
.next_right_btn,
.dot_btn {
    background-color: #FF5722 !important;

}

.carousel_img {
    width: 100%;
    overflow: hidden;
}

.carousel_img img {
    width: 40%;
    object-fit: cover;
}

.listing_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
}

/* listing_items */

h2.sitehdng {
    color: #31135E;
    text-align: center;
    font-size: 40.303px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.505px;
}

.sitehdng_row p {
    color: #222;
    text-align: center;
    font-size: 18.136px;
    font-style: normal;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: normal;
}

.bgarrvl img:hover,
.smarrvlbx img:hover {
    transition: all 0.5s;
    transform: scale(1.1);
}

.bgarrvl img {
    transition: all 0.5s;
}

.smarrvlbx {
    overflow: hidden;
    flex: 0 0 33.33%;
}

.sm_arvl_wrp {
    flex-wrap: wrap;
}

.smarrvlbx img {
    width: 100%;
    transition: all 0.5s;
    height: 100%;
    max-height: 215px;
    object-fit: cover;
}

a.na_btn {
    border-radius: 55.705px 55.705px 55.705px 11.141px;
    background: #31135E;
    color: #fff;
    padding: 8px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
}

.bgarrvl {
    overflow: hidden;
    position: relative;
}


.bgarrvl img {
    width: 100%;
}

.spotbx img:hover {
    transform: scale(1.1);
}

.spotbx {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.spotxt_link {
    position: absolute;
    bottom: 0;
    padding: 0 12px;
    width: 100%;
    align-items: center;
}

.spotext {
    color: #fff;
}

.spotbx img {
    width: 100%;
    transition: all 0.5s;
}

a.sptlink {
    color: #fff;
}

.spotext h5 {
    color: #FFF;
    font-family: Alethia Next;
    font-size: 19.125px;
    font-style: normal;
    font-weight: 350;
    line-height: 30.6px;
    /* 160% */
    margin: 0;
    letter-spacing: 0.574px;
}

.spotext p {
    color: #FFF;
    text-align: center;
    font-size: 11.096px;
    font-style: normal;
    margin-bottom: 8px;
    font-weight: 300;
    line-height: 17.754px;
    /* 160% */
    letter-spacing: 0.333px;
}


.site_fullad img {
    width: 100%;
}

.spotxt h5 {
    color: #222;
    text-align: center;
    font-family: Nunito Sans;
    font-size: 22px;
    margin-top: 8px;
}

.sllr_img:hover img {
    /* transform: scale(1.1); */
}

.sllr_img img {
    width: 100%;
    transition: all 0.5s;

}

.sellertxt h6 {
    color: #2F2F2F;
    font-family: Nunito Sans;
    font-size: 15.866px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.533px;
    /* 135.714% */
}

.sellertxt {
    padding: 10px 0;
    font-family: "Inter", sans-serif;
}

h5.prc {
    color: gray !important;
    font-size: 18.133px;
    line-height: 21.533px;
    /* 118.75% */
}

ul.s_tags {
    display: flex;
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

ul.s_tags li {
    color: gray;
    font-size: 13.6px;
    font-weight: 400;
    line-height: 18.133px;
    /* 133.333% */
    text-transform: capitalize;
    padding-right: 8px;
    margin-right: 10px;
    border-right: 2px solid;
}

ul.s_tags li:last-child {
    border: none;
}

a.sitebtn {
    width: 100%;
    border-radius: 0.2rem !important;
    padding-block: .2rem;
    display: block;
  
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 15.866px;
    font-style: normal;
    transition: all 0.5s;
    font-weight: 700;
    line-height: 31.733px;
    /* 200% */
    letter-spacing: 0.792px;
}

.listingbox {
    margin-bottom: 20px;
}

.evrdbox img {
    width: 100%;
}

.evrdbox {
    margin-bottom: 15px;
}

.callbacksect {
    background-image: url('images/callback.png');
    background-position: center bottom;
    padding: 50px 0;
    height: 300px;
}

.cllbk_txt {
    text-align: center;
}

.cllbk_txt p {
    color: #000;
    text-align: center;
    font-size: 19.636px;
    font-weight: 400;
    line-height: 27px;
    /* 137.5% */
}

a.cb_btn {
    border-radius: 30px;
    background: #FF5722;
    padding: 10px 20px;
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-family: Nunito Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.btns_clm {
    margin-top: 16px;
    display: inline-block;
}

.vw_all {
    max-width: 250px;
    margin: 20px auto 0 auto;
}

.pcbox.btmlift {
    margin-top: -50px;
}

.mb50 {
    margin-bottom: 60px;
}

.rcmdbx {
    /* border-radius: 0px 0px 8.129px 8.129px;
    border: 1px solid #31135E;
    background: #FFF;
    transition: all 0.5s; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(252, 252, 252);
    gap: 1.5rem;
    border-radius: 0.2rem !important;
    padding: 1rem;
}

/* .rcmdbx:hover {
    border: 1px solid #FF3705;
    box-shadow: 0px 4px 9px 4px rgba(185, 131, 59, 0.30);
} */

/*  */
.rcmdbx .sellertxt {
    /* padding: 14px; */
    /* border-top: 1px solid #31135E; */
}

.sellertxt h2 {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.sellertxt .product_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.bgpink_grad {
    background: linear-gradient(0deg, #FFF 0%, #FDF1F2 100%);
}

.cardbx {
    background: #FFF;
    box-shadow: 0px 1px 8px 0px rgba(161, 161, 161, 0.50);
    text-align: center;
    padding: 50px 0px 42px 0px;
}

.cardbx p {
    color: #222;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    /* 130% */
}

.cardbx img {
    margin-bottom: 15px;
}


.visitstore img {
    width: 100%;
}

.strtxt {
    text-align: center;
    font-family: "Inter", sans-serif;
}

.strtxt h4 {
    color: #000;
    text-align: center;
    font-size: 38.072px;
    font-weight: 700;
    line-height: 49.494px;
    font-family: "Inter", sans-serif;
    /* 130% */
}

.strtxt p {
    color: #000;
    text-align: center;
    font-size: 16.592px;
    font-family: "Inter", sans-serif;
    /* font-weight: 600; */
    /* line-height: 32.157px; */
    /* 193.804% */
}

.strtxt a.cb_btn {
    max-width: 250px;
    width: 100%;
    border-radius: .25rem;
}

.social_hdng img {
    width: 25px;
}

footer {
    background: #F4F4F4;
    padding: 30px 0;
}

.flogo {

    margin-bottom: 30px;
    margin-right: 2.5rem;
}

.flogo img {
    width: 100%;
}

.fsymbol {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.5rem;
}

.fmenu h5 {
    color: #1E1E1E;
    font-size: 20.624px;
    font-weight: 700;
    line-height: 30.936px;
    /* 150% */
}

.fmenu ul li a {
    color: #1E1E1E;
}

.fmenu a,
.fmenu p,
.fmenu span {
    color: #3F2561;
    font-size: 18.046px;
    font-weight: 400;
    line-height: 30.092px;
    /* 200% */
}

.fmenu {
    margin-bottom: 20px;
}

.fmenu ul {
    line-height: 2.5rem;
}

ul.sclmedia {
    display: flex;
}

ul.sclmedia li {
    padding: 0 5px;
}

.fmenu small {
    color: #31135E;
    font-size: 13px;
    font-weight: 600;
    line-height: 19px;
    /* 146.154% */
}

.cpywt p {
    color: #B9833B;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 15.71px;
    /* 142.818% */
}

.cpywt ul {
    display: flex;
}

.cpywt ul li {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #231535;
    line-height: 11px;
}


.dvlp {
    color: #31135E;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    line-height: 11px;
    /* 100% */
    text-transform: uppercase;
}

.cpywt ul li:last-child {
    border: 0;
}

.cpywt ul li a {
    color: #231535;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
    /* 110% */
    text-transform: uppercase;
}

.innerbnr img {
    width: 100%;
}

.breadcrumb ul {
    display: flex;
}

.breadcrumb ul li {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid;
    line-height: 18px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.breadcrumb ul li:last-child {
    border: 0;
}

.breadcrumb li.current {
    color: #FF5722;
}

.prd_name h3 {
    color: #222;
    font-size: 35px;
    font-weight: 400;
    display: inline-block;
    line-height: normal;
}

span.prdt_numbr {
    color: #222;
    font-size: 20.864px;
    font-weight: 400;
    line-height: normal;
    padding-left: 12px;
    margin-left: 10px;
    border-left: 1px solid #222;
    position: relative;
    top: -4px;
}

.filterbox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filterbox .accordion-collapse {
    position: absolute;
    top: 50px;
    width: 250px;
    background: #fff;
    z-index: 99;

}

.accordion-item {
    position: relative;
    min-width: 145px;
    margin-right: 10px;
}

.accordion-item .accordion-header {
    font-family: "Inter", sans-serif;
}

.filterbox .accordion-collapse .accordion-body {
    padding: 15px;
    font-family: "Inter", sans-serif;
}

.filterbox .accordion-collapse .accordion-body .form-item {
    margin-bottom: 7px;
}

#sub-filter .accordion-collapse {
    position: relative;
    top: 0;
    width: auto;
    background: #fff;
    z-index: 99;
}

.filter_sortby {
    background: #FF5722;
    padding: 15px 0;
    display: none;
}


.col-sm-10.filterbox {
    justify-content: flex-start;
}

.filterbox .accordion-item button {
    background: #fff;
    border: 0;
    height: 35px;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    padding: 0 5px;
    line-height: normal;
}

.accordion-button::after {
    width: 0.75rem;
    height: 0.75rem;
    background-size: 0.75rem;
}

select.sortbyfilt {
    background: #fff;
    border: 0;
    height: 35px;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    padding: 0 5px;
    width: 100%;
    line-height: normal;
    border-radius: calc(.25rem - 1px);
}



.filtrappld p {
    color: #000;
    font-family: Nunito Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding-right: 10px;
}

.filtrappld {
    margin-top: 20px;
    align-items: center;
}

ul.filtrby {
    display: flex;
}

ul.filtrby li {
    margin-right: 10px;
    border-radius: 11px;
    background: #B9833B;
    color: #fff;
    padding: 2px 8px;
    min-width: 100px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

span.cutfilt {
    position: absolute;
    right: 8px;
    top: 2px;
    cursor: pointer;
}

.bgbtn {
   
    border-color: #31135E !important;
    transition: all .3s ease-in-out;
}

/* .listingbox:hover .bgbtn {
    box-shadow: 0 0 5px gray;
    background-color: #FFFFFF !important;
    color: #FF5722 !important;
} */

span.cutprice {
    color: #A09090;
    font-family: Nunito Sans;
    font-size: 11.745px;
    font-style: normal;
    font-weight: 600;
    line-height: 13.947px;
    /* 118.75% */
    text-decoration: line-through;
}

.wishlist {
    position: absolute;
    top: 5px;
    right: 8px;
}

.wishlist i {
    cursor: pointer;
}

.sllr_img {
    position: relative;
    overflow: hidden;
}

.list_ad img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.seemore a {
    display: inline-block;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    background-color: #FF5722 !important;
    /* 200% */
}

.seemore {
    text-align: center;
}

.product_list_description {
    border-radius: 10px;
    border: 1px solid #FF5722;
    background: #FFF;
    padding: 20px 30px;
}

.product_list_description h5 {
    color: #FF5722;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: bold;
    line-height: 30px;
    /* 136.364% */
    text-decoration-line: underline;
}

.product_list_description p {
    font-size: 13px;
    font-style: normal;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 22px;
    /* 169.231% */
    color: #222;
}

h3.sitehdng {
    color: #FF5722;
    font-family: "inter";
    font-size: 30px;
    font-style: normal;
    font-weight: bold;
    line-height: 28px;
    /* 120% */
    letter-spacing: 1px;
    text-align: left;
}


#faqs button.accordion-button {
    color: #FF5722;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    /* 187.5% */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

#faqs button.accordion-button:focus {
    box-shadow: none;
}

#faqs .accordion-item {
    border-radius: 8px;
    border-bottom: 1px solid #B9833B;
}

.poplr_items ul li {
    color: #FF5722;
    padding-right: 10px;
    margin-right: 10px;
    font-size: 13px;
    border-right: 1px solid;
    margin-bottom: 8px;
    line-height: 12px;
}

.poplr_items ul li:last-child {
    border-right: none;
}

.slider-for-prod.pro_dtlimg {
    position: relative;
}






.product-detail-img .pro_dtlimg img {
    min-height: 380px;
    max-height: 380px;
    object-fit: contain;
    left: 0;
}

.smlthumbs {
    margin-top: 20px;
}

.smlthumbs img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}

a.elevatezoom-gallery.active img {
    border: 2px solid #333 !important;
}


.elevatezoom-gallery img {
    min-height: 60px;
    max-height: 60px;
    object-fit: contain;
}


#gallery_01 img {
    width: 96px;
}




.thumbwrpr {
    display: flex;
    flex-direction: column;
}

.w30 {
    width: 30%;
    text-align: center;
}

.thumbwrpr a.elevatezoom-gallery {
    margin-bottom: 10px;
}

.w70 {
    width: 70%;
    text-align: center;
}



.top_rvw_write .rvw_count {
    color: #222;
    font-family: Nunito Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 11px;
    /* 68.571% */
    border-radius: 6px;
    border: 1px solid #3F2561;
    padding: 2px 5px;
}

a.rvw_count i {
    color: #B9833B;
    font-size: 10px;
    position: relative;
    top: -3px;
}

a.top_rvw {
    color: #FF5722;
    font-family: Nunito Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 10px;
}

.toprvw_share {
    margin-bottom: 12px;
}

.shar_wish i {
    padding: 0 5px;
    font-size: 18px;
}

h2.prdtname {
    color: #222;
    font-size: 35px;
    font-weight: 600;
    border-bottom: 1px solid #FF5722;
    /* 68.571% */
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.abt_prd p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

h3.prdbgprice {
    color: #222;
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
    padding: 0 10px;
    margin: 0;
}

span.chrgoff {
    border-radius: 11.5px;
    background: #FF5722;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    padding: 4px 10px;
}

.pricerow p {
    margin: 0;
}

.pricerow {
    margin-bottom: 5px;
}

.prcblw_txt p {
    color: #222;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin-right: 6px;
}

select.form-select {
    border-radius: 7.64px;
    border: 1px solid #E2E2E2;
}

.prcblw_txt a {
    color: #FF5722;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.abt_prd label {
    color: #000;
    font-family: Nunito Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.cstmselect.qnty {
    margin-left: 15px;
}

.weight_qnty {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #FF5722;
}

div#custom_variant button {
    background: transparent;
    padding: 0 5px 10px;
    border: 0;
    box-shadow: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

#custom_variant .accordion-item {
    border: 0;
}



#custom_variant .accordion-body {
    padding: 0 0;
}

.cstmradio {
    border-radius: 5px;
    background: #F5EEFF;
    padding: 0 10px;
}

#custom_variant .cstmselect {
    margin-right: 10px;
}

.daimond_variant {
    margin-top: 10px;
}

.daimond_variant .cstmradio {
    display: inline-flex !important;
}

.daimond_variant .daimond {
    margin-right: 10px;
}

.daimond span {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    padding-left: 4px;
}

.daimond img {
    width: 10px;
}

#custom_variant {
    margin-bottom: 15px;
    border-bottom: 1px solid #FF5722;
    padding-bottom: 15px;

}

.locateme label {
    color: #B9833B;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.locateme .form-control {
    border: 0;
    padding: 0;
}

.locateme input {
    border-radius: 7.636px;
    border: 1.091px solid #E2E2E2;
    background: #F5EEFF;
    padding: 5px 12px;
    color: #2D2D2D;
    font-size: 13.091px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.locateme {
    margin-bottom: 15px;
}

.locateme i {
    position: relative;
    left: -18px;
    font-size: 12px;
}

.prodt_btns a {
    flex: 0 0 48%;
}

.prodt_btns {
    justify-content: space-around;
}

a.adcart {
    border-radius: 11px;
    border: 1px solid #FF5722 !important;
    color: #FF5722 !important;
}

a.bggrnbtn.buynow {
    border-radius: .25rem;
    background: #FF5722;
    /* border-color: #1AA179; */
}

.form-control label{
    color: #FF5722;
}
.form-control input{
    background-color: #fff;
}
.prdctdtlboxes {
    padding: 15px 0;
}

.pd_box {
    border-radius: 5.371px;
    border: 1.074px solid #E2E2E2;
    background: #FFF;
    flex: 0 0 48%;
    padding: 15px 10px;
}

.pdb_imgtxt {
    align-items: flex-start;
}

.pdbtxt p {
    color: #000;
    font-size: 17.188px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.pdbtxt {
    margin-left: 10px;
}

.pdbtxt span {
    color: #000;
    font-size: 12.891px;
    font-weight: 400;
    line-height: normal;
}

.pdb_imgtxt img {
    width: 32px;
}

.pdb_btn a {
    border-radius: 11px;
    border: 1px solid #FF5722;
    color: #FF5722;
    font-size: 17px;
    font-weight: 600;
    line-height: normal;
    display: block;
    text-align: center;
    padding: 5px 5px;
}

.pdb_btn {
    margin-top: 15px;
}

.strvisit+.pdb_btn a {
    color: #FF5722;
    border-color: #FF5722;
}

.cstmradio .form-check {
    margin-right: 10px;
}

.cstmradio .form-check .form-check-input {
    margin-left: -20px;
}

table {
    width: 100%;
}

.prcbrk_table th {
    background: #FF5722;
    color: #fff;
    padding: 7px;
}

.prcbrk_table td {
    padding: 7px;
    color: #3F2561;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.prcbrk_table tr {
    border: 0;
}

tr.borderbtm {
    border-bottom: 1px solid #E2E2E2;
}

tr.bordertop {
    border-top: 1px solid #D7BDF9;
}

h4.subhdng {
    color: #000;
    font-family: "inter";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.rwvcnt {
    display: flex;
    align-items: center;
}

.rwvcnt h3 {
    margin: 0 6px;
    color: #000;
    font-size: 40.086px;
    font-weight: 400;
    line-height: normal;
}

.rwvcnt i {
    color: #FF5722;
    font-size: 28px;
}

.rvwbtn_box span {
    font-size: 14.467px;
    font-weight: 400;
    line-height: normal;
}

.rvwbtn_box {
    width: 30%;
    padding-right: 20px;
}

.rvw_ftrimg {
    width: 18%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.rvwbtn_box a.cb_btn {
    border-radius: 9px;
    padding: 7px;
    width: 100%;
    margin-top: 6px;
}


.top_reviews {
    margin-top: 20px;
    border-top: 1px solid #D7BDF9;
}

.rvw_topbx {
    padding: 15px 0;
    border-bottom: 1px solid #E2E2E2;
}

.trvw {
    border-radius: 3px;
    background: #FF5722;
    padding: 3px 7px;
    color: #fff;
    margin-right: 5px;
}

.rwv_maincmnt {
    align-items: center;
    margin-bottom: 10px;
}

.rwv_maincmnt p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.trvw i {
    color: #fff;
    font-size: 11px;
    position: relative;
    top: -2px;
}

.tprvw_txt p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
}

.rwvby_ceftf span,
.rwvby_ceftf p {
    color: #000;
    font-family: Nunito Sans;
    font-size: 10.198px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.rwvby_ceftf {
    margin-top: 10px;
}

.rwvby_ceftf span {
    margin-right: 10px;
}

.allreviews {
    background: #F5F3F8;
    margin-top: 10px;
    padding: 10px;
    align-items: center;
}

.allreviews a {
    color: #0070D2;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.allreviews span i {
    font-size: 12px;
}








.siml_products h6.name {
    font-size: 10px;
}

.siml_products .sellertxt {
    padding: 8px;
}
.sellertxt p{
    color: gray;
}
.siml_products h5.prc {
    font-size: 12.239px;
}

.siml_products span.cutprice {
    font-size: 9px;
}

.siml_products ul.s_tags li {
    font-size: 9px;
    line-height: 10px;
}

.siml_products ul.s_tags {
    margin-bottom: 15px;
}

.siml_products a.sitebtn.bgbtn {
    font-size: 10.709px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.418px;
    /* 200% */
}

.rat_revw {
    margin-bottom: 20px;
}

.sellertxt h3 {
    font-weight: bold;
    font-family: "inter";
}

/*.mainmenu {*/
/*    margin-top: 88px;*/
/*}*/

.prdt_img_left {
    position: sticky;
    top: 120px;
}

.jwlbxPromise {
    background: #fff;
    margin-top: 30px;
    padding: 20px;
}
.jwlbxPromise h5{
    font-family: "inter";
    color: #FF5722 !important;
}
.jwlbxPromise span{
    font-family: "inter";
    color: #FF5722 !important;
}

.ftricntxt span {
    color: #31135E;
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    /* 200% */
}

.ftricntxt {
    margin-right: 12px;
}

.jwlbxPromise h5 {
    color: #31135E;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    /* 175% */
}

.ftrs {
    margin-bottom: 15px;
}

.crtf_img img {
    padding: 0 8px;
    max-width: 95px;
}



.dateselect span {
    color: #3F2561;
    font-size: 14.118px;
    font-weight: 600;
    line-height: normal;
}

.dateselect p {
    color: #3F2561;
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
}

label.btn {
    border-radius: 13.235px;
    border: 1px solid #3F2561;
    background: #F7F3FA;
}


.timeselect label {
    color: #3F2561;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: normal;
}

.timeselect {
    justify-content: space-around;
}
.mrgntop {
    height: 89px;
}
@media(min-width:800px){
    .navbar.sticky.cstmnavbar {
        display: flex;
    }
    .tophdrright {
        display: flex;
        gap: 5px;
    }

}


@media(min-width:1024px) {

    .mainmenu .navbar .menu-items {
        display: flex;
        align-items: center;
        /*width: 100%;*/
        justify-content: center;
        
    }

    .w-35 {
        flex: 0 0 35%;
    }

    .w-18 {
        flex: 0 0 18%;
    }

    .w-12 {
        flex: 0 0 12%;
    }

}

@media(max-width:1024px) {
    .mainmenu {
        display: none;
    }

    .top_header {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top_header .b_logo img {
        /* width: 45%; */
    }

    .mainmenu.t_srchbx {
        display: none;
    }

    .bnrimg {
        margin-top: 8rem;
        height: 450px;
        /* margin-bottom: 5rem; */
    }

    .bnrimg .hero_img {
        /* height: 80vh; */
    }

    .homebanrr_section .searchForm {
        position: absolute;
        top: 1rem;
        left: 19rem;
        width: 41%;
    }

    .help_section .right_box {
        justify-content: center;
        position: relative;
        top: 0;
        left: 0;
    }

    /* .precious_collection .semi_precious {

        flex-wrap: wrap;
    } */

    .certificates_box {
        flex-wrap: wrap;
    }

    .certificates_box .right_box {
        margin-bottom: 1.7rem;
    }

}

@media (max-width: 990px) {
    .precious_collection .semi_precious {
        flex-wrap: wrap;
    }
}



#exampleModal1 .modal-body {
    padding-top: 0;
}

#exampleModal1 label.btn {
    padding: 3px 8px;
}

#exampleModal1 label.btn p {
    font-size: 18px !important;
}

#exampleModal1 label.btn span {
    font-size: 13px;
}

.dateselect {
    justify-content: space-between;
}

.cart-pic img {
    width: 150px;
}

.cart-pic {
    flex: 0 0 22%;
    margin-right: 15px;
}

.cart-prdt {
    flex: 0 0 78%;
}

.pincode {
    position: relative;
}

.pincode i {
    position: absolute;
    left: 26px;
    top: 14px;
}

.pincode input {
    padding-left: 25px;
}

.cart-text h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    margin: 0;
}

span.weight {
    color: #989898;
    font-size: 18px;
    font-weight: 400;
    line-height: 35.882px;
    /* 171.429% */
}

.cart-text h5 {
    color: #222;
    font-size: 23px;
    font-weight: 600;
    margin: 0;
    line-height: normal;
}

span.qty {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 35.882px;
    /* 199.346% */
}

.cartremoveBox img {
    width: 18px;
}

.welcome_box .submit {
    border-radius: 6px;
    background: #3F2561;
    color: #fff;
    padding: 10px;
    flex: 0 0 30%;
    text-align: center;
}

.summery_box {
    padding-top: 10px;
}

.button_box a.cb_btn {
    border-radius: 5px;
}





.Delivery-info {
    display: flex;
    align-items: center;
}

.Delivery-info p {
    color: #31135E;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.pincode input {
    margin: 0px 10px 0px 20px;
    border-radius: 5px;
    border: 1px solid #3F2561;
    display: inline-block;
    padding: 8px;
    padding-left: 25px;
}

.Delivery-info .submit {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 35.882px;
    border-radius: 5px;
    background: #31135E;
    padding: 3px 38px 3px 38px;
    text-decoration: none;
}

.submit:hover {
    background-color: white;
    color: purple;
    border: 1px solid purple;
}

.submit a {
    text-decoration: none;
    color: #FFF;
}

.cartrow {
    padding: 55px 0px 25px 0px;
    display: flex;
}

.custom_checkbox label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.custom_checkbox input {
    background-color: purple;
    width: 15px;
    height: 15px;
    margin-right: 6px;
    display: inline-block;
}

.custom_checkbox {
    display: flex;
    align-items: center;
}

.welcome_box span {
    font-size: 10px;
}

.login {
    border-radius: 16px;
    border: 1px solid #E2E2E2;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login a {
    color: #B9833B;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.login p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.cartMainBox {
    display: flex;
    justify-content: space-between;
}

.apply_box {
    background-color: #F8F2FF;
    padding: 15px;
    width: 100%;
    border-radius: 3px;
}

.coupon_subBox {
    border-radius: 8px;
    border: 1px solid #D7BDF9;
    padding: 19px 13px;
}

.welcome_box {
    border-radius: 8px;
    border: 1px solid #D7BDF9;
    padding: 12px 10px;
    display: flex;
    align-items: center;
}

.welcome_content h4 {
    color: #222;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    line-height: 15px;
}

.welcome_content p {
    padding-top: 2px;
    color: #222;
    font-size: 10px;
    font-weight: 300;
    line-height: normal;
}

.welcome_box a {
    margin-left: 8px !important;
}

.welcome_content {
    background-color: #fff;
    padding: 6px 6px 0;
    flex: 0 0 68%;
    border-radius: 7px;
}

.summery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
}

.summery h5 {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.summery h6 {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.apply_box h3 {
    color: #31135E;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}

.ruppess {
    color: #ED2224 !important;
}

.sub_Border {
    border: 1px solid #D7BDF9;
    display: block;
    margin: 0 0 15px 0px;
}

.button_box a:first-child {
    padding: 10px 44px 10px 44px !important;
}

.secondryButton {
    background-color: #fff;
    color: #31135E;
    padding: 10px 44px 10px 44px !important;
    border-radius: 5px;
    border: 1px solid #31135E;
}

.secondryButton:hover {
    background-color: #31135E;
    color: #fff;
}

.register_box {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.cart {
    padding: 55px 0px;
}

.ApplyCouponMainBox {
    display: flex;
    margin-top: 32px !important;
}

.removeBox {
    margin-top: 35px !important;
}


.remove span {
    color: #000;
    font-size: 14.764px;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
}



.registered-users form {
    margin-top: 20px;
    max-width: 450px;
}

input.form-control {
    border-radius: 7.62px;
    border: 1.089px solid #E2E2E2;
    background: #F5EEFF;
    height: 44px;
    max-width: 340px;
}

span.login-mobile-user {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.customCheckbox label {
    color: #000;
    font-size: 15.241px;
    font-weight: 400;
}

form p {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    line-height: normal;
}

form p a {
    color: #B9833B;
    padding: 0 5px;
}

button.btn.ckoutbtn {
    border-radius: 7.62px;
    padding: 10px;
    background: #31135E;
    color: #fff;
    width: 100%;
    max-width: 340px;
    text-align: center;
}

.inputs input {
    width: 40px;
    height: 40px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

.addrssradio .form-check {
    border-radius: 21px;
    border: 1px solid #E2E2E2;
    max-width: 235px;
    margin-right: 15px;
    padding: 12px 0 12px 35px;
}

.addrssradio label.form-check-label span {
    color: #989898;
    text-align: justify;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}


.addrssradio strong {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.addrssradio {
    padding-left: 35px;
}

.addrs_colm h4 {
    color: #000;
    font-size: 25px;
    font-weight: 700;
    line-height: normal;
}

.addrs_colm h4 img {
    width: 30px;
    position: relative;
    top: -2px;
}

.btnbox a {
    display: inline-block;
    flex: 0 0 48%;
    margin-right: 15px;
}

.btnbox {
    max-width: 600px;
    margin-top: 15px;
}

.delver_wrpr.addrs_colm {
    margin-bottom: 60px;
    position: relative;
}

a.addrs_btn {
    border-radius: 6px;
    background: #3F2561;
    color: #fff;
    padding: 8px 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
}

.add_adrrs {
    position: absolute;
    right: 20px;
    top: 30px;
}

.delver_wrpr form {
    padding-left: 40px;
    max-width: 620px;
}

button.btn.newaddres {
    border-radius: 6px;
    border: 1px solid #3F2561;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
}

select.form-select {
    height: 44px;
}

.fullwidth {
    width: 100% !important;
}



.posrel {
    position: relative;
    width: fit-content;
}

.posrel img {
    width: 100%;
}

.posabs {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 73px;
    display: flex;
    align-items: center;
}

.banner-text {
    color: #dcc04e;
    font-size: 51.881px;
    font-weight: 400;
    line-height: normal;
}

.banner-text2 {
    color: #dcc04e;
    font-size: 51.881px;
    font-weight: 350;
    line-height: normal;
}

.texthead {
    color: #3f2561;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
}

.texticon {
    color: #3f2561;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
}

.text-sub {
    color: #222;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}

.mx-500 {
    max-width: 960px;
    text-align: center;
}

.stylepad {
    background: #3f2561;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.stylepad img {
    width: 60px;
}

.onlymobvisible {
    display: none !important;
}

.filtrbody {
    display: none;
    position: absolute;
    background: #fff;
    z-index: 999;
    left: 0;
    max-width: 250px;
    padding: 0;
    width: 250px;
    top: 36px;
}

.filtrbody .accordion-body {
    padding: 10px 10px;
}

.filtrshow+.filtrbody {
    display: block !important;
}

.filterbox .accordion-button {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.accordion-button:focus {
    box-shadow: none;
}



.filter-btn {
    display: none;
    background-color: #E3CEFF;
    color: #31135E;
    font-size: 15.57px;
    font-weight: 600;
    line-height: 31.139px;
    padding: 9px 22px;
    border-radius: 4px;
    transition: all .3s ease-in;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    letter-spacing: .5px;
}


.accordion-button:not(.collapsed) {
    box-shadow: none;
}








@media only screen and (max-width: 769px) {
    .posabs {
        max-width: 350px;
    }

    .banner-text {
        font-size: 25px;
    }

    .banner-text2 {
        font-size: 25px;
    }

    .bnrimg {
        height: 450px;
        margin-bottom: 5rem;
        margin-top: 70px;
    }

    .bnrimg .hero_img {
        height: 80vh;
    }

    .homebanrr_section .searchForm {
        top: 3rem;
        left: 14rem;
    }

    .text-sub {
        font-size: 20px;
    }

    .certificates_section {
        padding-block: 3rem;
    }

    .certificates_section .text_area {
        width: 100%;
    }

    .certificates_box .left_box {
        padding-top: 2rem;
        justify-content: center !important;
    }

    .certificates_section button {
        margin-top: 2rem;
    }

    .promise_purity_section .promise_purity {
        flex-wrap: wrap;
    }



}

@media only screen and (max-width: 425px) {
    .b_logo {
        width: 100%;
    }

    .homebanrr_section .searchForm {
        top: 1rem;
        left: 1rem;
        width: 90%;
    }

    .promise_purity_section .promise_purity .purity_card1 {
        padding-inline: 2rem;
    }

    .promise_purity_section .promise_purity .purity_card3,
    .promise_purity_section .promise_purity .purity_card4 {
        padding-inline: 2.6rem;
    }

    .help_section .left_box {
        padding: 2rem .6rem;
    }

    .help_section .left_box .btn_box {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

    }

    .clients_cards {
        flex-wrap: wrap;
    }

    footer .fsymbol {
        margin-bottom: 2.2rem;
    }

    .footer_boxs {
        margin-bottom: 1rem;
    }

    .recommendation_box {
        flex-wrap: wrap;
    }

    .recommendation_box .dob {
        flex-wrap: wrap;
    }

    .recommendation_box .dob_date,
    .recommendation_box .dob_time {
        width: 100% !important;
    }

    .right_img_box1 {
        flex-wrap: wrap;
        gap: 2rem !important;
        margin-bottom: 1.5rem;
    }

    .certificates_box_btn .btn {
        margin-top: 0;
    }

    .promise_purity_section .promise_purity {
        gap: 2rem;
    }

}

@media(max-width:320px) {
    .bestselling_top_heading {
        font-size: 2rem !important;
    }

    .gemstone .gemstone_rings {
        flex-wrap: wrap;
    }
}

@media(min-width:768px) {
    .navbar {
        display: block;
    }
    
}

@media(max-width:768px) {

    .navbar {
        display: block;
        margin-bottom: 0 !important;
    }
    
    .b_logo {
        margin-left:0px !important;
        margin-top: 0rem;
    }
    .recommendation_box .left_box {
        margin-bottom: 2.2rem;
    }
    .mrgntop {
        height: auto;
    }
    .mainmenu {
        display: block;
        top: 0px !important;
    }

    .navbar .menu-btn__lines,
    .navbar .menu-btn__lines::before,
    .navbar .menu-btn__lines::after {
        background-color: #FF5722;
    }
}

@media(min-width:576px) {
    /*  .modal-dialog {
      max-width:550px !important;
  }*/
}


@media(max-width:767px) {

    .wrt_rvw_imgs {
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }

    .rvw_ftrimg {
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }

    .crtf_img img {
        max-width: 75px;
    }

    .rvwbtn_box {
        width: 100%;
        position: relative;
        margin-bottom: 15px;
        padding: 0;
    }

    .rvwbtn_box a.cb_btn {
        position: absolute;
        right: 15px;
        width: auto;
        top: 10px;
    }

    .rvw_ftrimg img {
        max-width: 70px;
        margin-right: 10px;
    }





    .filterbox .accordion-item {
        min-width: auto !important;
        width: 100%;
        border: 0;
        padding: 14px 0px 10px 0;
        border-bottom: 1px solid #e2e2e2;
    }

    .filterbox .filtrbody {
        position: relative;
        top: 0;
    }

    .filter-btn.show {
        display: inline-flex;
    }

    .filter-area-close {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 18px;
        top: 15px;
        background-color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .filter-area-close img {
        width: 12px;
        vertical-align: baseline;
        filter: brightness(0) invert(1);
    }

    .filter-area {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 320px;
        left: 0;
        z-index: 999999999;
        background-color: #fff;
        padding: 20px;
        height: 100vh;
        transform: translateX(-100%);
        transition: all .3s ease-in;
        box-shadow: 5px 0px 20px rgb(0 0 0 / 5%);
    }

    .filter-area {
        width: 100%;
        height: calc(100vh - 60px);
        bottom: 0;
        top: auto;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .filter-area.show {
        transform: translateY(0px);
    }

    .filter-body {
        height: auto;
        padding: 14px 20px;
    }

    .filter-btn {
        font-size: 16px;
        padding: 8px 20px;
    }

    .hdr_catgories_mobile img {
        width: auto !important;
    }

    .hdr_catgories_mobile .top_hdr_items {
        border-radius: 6px;
        background: #F5EEFF;
        margin: 0 8px;
        width: 150px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hdr_catgories_mobile {
        padding: 20px 5px;
    }

    .hdr_catgories_mobile .top_hdr_items p {
        color: #31135E;
        font-size: 12px;
        font-weight: 400;
        line-height: 25px;
        /* 208.333% */
        text-transform: uppercase;
    }

    .onlymobvisible {
        display: flex !important;
    }

    .mainmenu {
        position: fixed;
        z-index: 9999999;
        top: 3px;
    }

    .hdr_catgories_mobile {
        margin-top: 130px;
    }

    .navbar.sticky {
        padding: 0;
        height: auto;
    }

    h2.sitehdng {
        font-size: 25px;
    }

    .mob_visible {
        display: block;
    }

    ul.mega-links {
        margin-bottom: 15px;
    }

    .callbacksect {
        padding: 20px 15px 0px 15px;
    }

    .d-flex.top_header {
        flex-wrap: wrap;
        padding-top: 8px;
    }

    .hdr_ctg_wrp {
        display: none;
    }

    .b_logo {
        flex: 0 0 40%;
        order: 1;
        margin-left: 0px;

    }

    .hdr_catgories {
        flex: 0 0 46%;
        order: 2;
        justify-content: flex-end;
    }

    .t_srchbx {
        order: 3;
             display: none;
        flex: 0 0 100%;
    }

    .t_srchbx input {
        width: 100%;
        font-size: 12px;
    }

    .top_header_wrp {
        padding: 8px;
    }

    .align-items-center {
        gap: 2rem;
    }

    .top_hdr_items {
        padding: 0 5px;
    }

    .top_hdr_items p {
        font-size: 10px;
        line-height: normal;
    }

    .top_hdr_items img {
        width: 16px;
    }

    .srchform {
        padding: 15px 8px;
    }

    .srchform img {
        top: 28px;
        right: 18px;
        width: 16px;
    }

    ul.mega-links.stylelisting li {
        flex: 0 0 100%;
        margin-top: 0;
        padding: 3px 0;
    }

    ul.menu-items {
        top: 0 !important;
    }

    .mobmenubg {
        background: #EEBD7C;
        padding-top: 38px;
        padding-bottom: 12px;
    }


    .mob_ad p {
        margin: 0;
        color: #222;
        text-align: center;
        font-size: 16px;
        padding: 0 8px;
        font-weight: 500;
    }

    .mob_ad a {
        border-radius: 19px;
        border: 1px solid #000;
        color: #222;
        font-size: 11px;
        height: 27px;
        margin-top: 5px;
        line-height: normal;
        margin-left: 9px;
        padding: 5px 10px;
        display: inline-block;
    }

    .mobmenubg a.menu-item {
        text-align: center;
        font-style: normal;
        padding: 4px 8px !important;
        font-weight: 600;
        line-height: 18px;
        /* 128.571% */
        text-transform: uppercase;
    }

    .filterbox {
        flex-wrap: wrap;
    }

    /*select.sortbyfilt {
    position: fixed;
    bottom: 25px;
    right: 28px;
    width: 100px;
    background: #E3CEFF;
    z-index: 9999;
}*/

    .ftricntxt {
        margin-right: 0;
    }

    .jwlbxPromise {
        display: none;
        padding: 10px;
    }

    .cstmradio .form-check {
        margin-right: 5px;
    }

    h2.prdtname {
        font-size: 25px;
    }

    span.chrgoff {
        position: absolute;
        top: 0;
    }

    .pricerow {
        position: relative;
        padding-top: 30px;
    }

    .prodt_btns a {
        flex: 0 0 98%;
        margin-top: 15px;
    }

    .prodt_btns.d-flex {
        flex-wrap: wrap;
    }

    .pd_box {
        margin-bottom: 15px;
        flex: 0 0 98%;
    }

    .prdctdtlboxes {
        flex-wrap: wrap;
    }

    .prcbrk_table th {
        font-size: 11px;
        padding: 4px;
    }

    .prcbrk_table td {
        padding: 4px;
        font-size: 11px;
    }


}


.b_logo img {
    max-width: 250px;
}





 /* Add padding-left when video is displayed */
        #main-media-display.video-type .item {
            padding-left: 30px;
        }
        
        /* Add padding to video type thumbnails in thumbwrpr */
        .thumbwrpr a[data-type="video"] {
         
            display: inline-block;
        }
        .video-thumb {
        width: 98px;
        height: 60px;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .video-thumb i {
        color: #fff;
        font-size: 40px;
    }
    
    .product-video {
        width: 100%;
        aspect-ratio: 16 / 9;
        border: none;
    }
/* Thumbnail wrapper */
.thumbwrpr {
    display: flex;
    flex-direction: column;
    gap: 10px; /* space between thumbnails */
}

/* Each thumbnail */
.thumbwrpr a {
    display: block;
    width: 100px;
}

/* Image thumbnail */
.thumbwrpr img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    display: block;
}

/* Video thumbnail */
.video-thumb {
    width: 100%;
    height: 60px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play icon */
.video-thumb i {
    font-size: 36px;
    color: #fff;
}

/* Active border */
.media-thumb.active {
    border: 2px solid #3F2561;
}

.py-5 {
    padding-top: -8rem!important;
    padding-bottom: 1rem !important;
}


.timercontainer {
    display: none;
}



ol.nav-primary li.level0.nav-1:nth-last-child(2) a.level0:after {
    content : "" !important;
}
ol.nav-primary li.level0.nav-1:last-child a.level0 {
    position: relative;
}
ol.nav-primary li.level0.nav-1:last-child a.level0:after {
    content: "New";
    text-transform: capitalize;
    display: block;
    position: absolute;
    right: -15px;
    top: -11px;
    padding: 2px 4px;
    color: #f16b55;
    font-family: Gotham-Medium;
    font-size: 13px;
}
nav#nav ol.nav-primary > li:nth-child(3) > ul.level0 > li:nth-child(1) ul.level1.block:nth-child(2) > li:nth-child(5) a:after {
    content: "New";
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    padding: 2px 4px;
    color: #f16b55;
    font-family: Gotham-Medium;
    font-size: 13px;
}

nav#nav ol.nav-primary > li:nth-child(3) > ul.level0 > li:nth-child(1) ul.level1.block:nth-child(2) > li:nth-child(5) a {
    position: relative;
}

@media only screen and (max-width: 770px) {

.checkout-cart-index .checkout-types {
padding: 0 30px;
}

ol.nav-primary li.level0.nav-1:last-child a.level0:after {
    content: "New";
    display: block;
    position: absolute;
    right: 167px;
    top: -3px;
    padding: 2px 4px;
    color: #f16b55;
    font-family: Gotham-Medium;
    font-size: 11px;
    left: auto;
}
ol.nav-primary > li:nth-child(3) > ul.level0 > li:nth-child(1) ul.level1.block:nth-child(2) > li:nth-child(5) a:after{
    position: relative;
}
ol.nav-primary > li:nth-child(3) > ul.level0 > li:nth-child(1) ul.level1.block:nth-child(2) > li:nth-child(5) a:after{
content: "New";
    display: block;
    position: absolute;
    left: 115px;
    top: 0;
    padding: 2px 4px;
    color: #f16b55;
    font-family: Gotham-Medium;
    font-size: 13px;
}
.category_grid_data li.categorygridmobile3 {
min-height: 115px;
}

.trial-video.d {
margin-top: 0;
}

}

span.sold--out--product {
    display: none !important;
}

button.ytp-fullscreen-button.ytp-button {
     display: none !important;
}

body.ccavenuepay-ccavenuepay-redirect .whatsapp_icon {
    display: none;
}

body.catalogsearch-result-index.cms- .main-container.col2-left-layout {
    margin-top: 30px;
}

@media(max-width:768px){.product-image.added-slider.videoautoplay .item { height: 220px; object-fit: cover; }}

@media only screen and (max-width: 770px) {


.productpage_promot .promotion_spot_light img {
    margin: auto !important;
}
.catalog-category-view .promotion_spot_light img {
    margin: auto;
}
.category-gemstones .wholewrapper header#header h1 {
margin-bottom: 0;
}
.gem-block-wrap {
text-align: center;
}
.narrow-by-list .slick-next {
bottom: -8px;
}
.narrow-by-list .slick-prev {
bottom: -8px;
}
ul.level1.block:nth-child(2) > li:nth-child(5) a:after {
    left: 50px !important;
}
ul.level1.block:nth-child(2) > li:nth-child(4) a:after {
    left: 120px !important;
}



}

.engagement-ring-img img {
    width: 100% !important;
    height: auto !important;
}
.orderkeywords.datagold {
    border: 2px solid red;
    font-size: 19px;
    padding: 10px;
    margin-bottom: 14px;
}
p.dispatchnote {
    display: none;
}

@media only screen and (max-width: 290px) {

.increasedTimer .Timer span:not(:last-child) .day:after {
  right: -6px;
}
.increasedTimer .Timer span.day {
    margin-right: 6px;
}

}

.promotion_spot_light img {
    margin: auto;
}

body.checkout-cart-index .cart .df-inner {
    display: none !important;
}

@media screen and (min-width: 768px) {

.product-options .option.Designs_flex dl.Select.for.Ring ul.options-list li:last-child {
     display: block; 
}

}


.checkout-cart-configure .main-container.col1-layout > div#enquiry-form {
    display: none;
}
body.category-turquoise .whatsapp_icon.whattsapp__hide_fromdesktop a.linkwhtasap {
    display: none !important;
}

li#opc-review {display: none;}div#payment-buttons-container {display: none;}

body.catalog-category-view.category-vault .breadcrumbs{
display:none !important;
} 

body.catalog-category-view.category-vault .online-collection-head {
  display: none !important;
}
body.catalog-category-view.category-vault .banner-caption-text{
  max-width: 100%;
}


body.catalog-category-view.category-vault .promotion_spot_light{
display: none;
}
.discountedSaved p img {
    max-width: 20px;
    height: auto !important;
}
.discountedSaved .price{
      font-size: 13px;
}
.discountedSaved p img {
  max-width: 17px;
  height: auto !important;
margin-right:3px;
}

.discountedSaved p {
  display: flex;
  align-items: center;
  font-size: 13px;
    justify-content: center;
}

.discountedSaved p span {
  padding: 0px 2px;
}

.user-profile img {
    width: 30px;          
    height: 30px;
    border-radius: 50%;   
    object-fit: cover;  
    display: block;
}














