@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    font-size: 17px;
    font-family: "Montserrat", sans-serif;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(."./fonts/fontawesome-webfont.eot);
"
    src: url(."./fonts/fontawesome-webfont.eot"?#iefix) format("embedded-opentype"), url(."./fonts/fontawesome-webfont.woff) format("woff"), url(."./fonts/fontawesome-webfont.ttf) format("truetype"), url(."./fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'battlesbridge';
    src: url(."./font/battlesbridge-demo.regular.ttf);
"
}

@font-face {
    font-family: 'Calture-Rowasn';
    src: url(."./font/Calture-Rowasn-Serif-BF654ef65abf02a.otf);
"
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}


/*---------------------------------------------------- Button Section Start ------------------------------------------------------------- */

.theme_btn {
    font-weight: 700;
    padding: 18px 30px;
    border: unset;
    border-radius: 12px;
    color: #ffffff;
    z-index: 1;
    background: #00bfff;
    position: relative;
    font-size: 20px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    font-family: "Montserrat", ui-sans-serif;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 8px;
    background-color: #302e2d;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #fff;
}

.theme_btn:hover::before {
    width: 100%;
}


/* BUTTON 2  */


.btn-1 {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin: 30px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    background-color: #00bfff;
    border: 0;
    transition: .3s all;
}

.btn-1:hover i {
    transform: rotate(360deg);
    margin: 0;
}

.btn-1 i {
    transform: rotate(-37deg);
    font-size: 28px;
    font-weight: 300;
    margin: -10px 0 0;
    transition: .7s all;
    font-family: 'FontAwesome';
}

.btn-1:hover {
    box-shadow: inset 0px -80px 0 0 #fff;
    color: #000;
}

/*---------------------------------------------------- Button Section End ------------------------------------------------------------- */


.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'battlesbridge';
    font-size: 104px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'battlesbridge';
    font-size: 57px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
}

h3 {
    font-family: 'battlesbridge';
    font-size: 32px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: 'battlesbridge';
    font-size: 26px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'battlesbridge';
    font-size: 22px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'battlesbridge';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('."./images/arrow.png') no-repeat right;
"
    padding: 0 40px 0 30px;
    background-position: right 0.7rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 20px 0;
}

.menuSec img {
    margin: 0;
    width: 100%;
}

.shop-bag-header {
    position: relative;
}

.shop-bag-header span {
    position: absolute;
    top: -6px;
    left: -9px;
    background: #00bfff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    border: 1px solid #fff;
}

.menu-icon a i.fa-regular.fa-user:hover {
    background: #00bfffbf;
    color: #fff;
    border: unset;
}

.curen-lan-main label {
    color: #d6d5d5;
}

.curen-lan-main {
    display: flex;
    align-items: center;
    justify-content: end;
}

.lang {
    border-right: 1px solid #fff;
    padding-right: 20px;
}

.curency-in-top {
    padding-left: 20px;
}

.curen-lan-main select option {
    color: #000;
    padding: 10px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    width: max-content;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #181717;
    padding: 10px 23px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #00bfff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 15px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.container-fluid {
    padding: 0 4%;
}

.topSec {
    background: #302e2d;
    padding: 12px 0;
}

.topSec ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.curen-lan-main ul li {
    color: #fff;
}

.curen-lan-main ul {
    justify-content: end;
    position: relative;
}

.curen-lan-main ul:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 67.5%;
    background: #fff;
    width: 1px;
    height: 30px;
}

.top-main-line p {
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.topSec ul li a i {
    color: #fff;
    font-size: 18px;
}

.meun-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.menu-icon a i.fa-regular.fa-user {
    border: 1px solid #adb5bd;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    transition: 0.5s all;
}

.menu-icon {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-icon a i.fa-solid.fa-bag-shopping {
    font-size: 34px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.curen-lan-main select {
    border: none;
    background: none;
    color: #d6d5d5;
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 22px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


section.main_slider .carousel-inner {
    overflow: unset;
    margin-bottom: 100px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
    background: red;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

section.main_slider .carousel-indicators {
    bottom: -50px;
}

section.main_slider .carousel-indicators [data-bs-target] {
    background: gray;
    width: 35px;
    height: 0px;
}


/*---------------------------------------------------- Pagination Section Start ----------------------------------------------------------- */

.pagination {
    justify-content: center;
    gap: 30px;
}

.page-item .page-link {
    padding: 25px 32px;
    background: #302e2d;
    color: #fff;
    font-size: 35px;
    border-radius: unset !important;
}

.page-item.disabled .page-link {
    background: #00bfff;
    color: #fff;
}

.pagination-site {
    margin-top: 50px;
}

.page-link:focus {
    box-shadow: unset;
}

/*---------------------------------------------------- Pagination Section End ----------------------------------------------------------- */


/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

section.banner-sec {
    background: url(."./images/banner.jpg);
"
    width: 100%;
    height: 92vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    align-content: center;
    margin-bottom: 100px;
}

.banner-text h1 span {
    font-size: 54px;
}

.banner-text h1 {
    margin-bottom: 44px;
}

.banner-text p {
    color: #fff;
    width: 90%;
    margin-bottom: 25px;
    font-size: 17px;
}

.banner-text h6 {
    font-size: 32px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 400;
}

.banner-image img {
    width: 100%;
    height: 840px;
    object-fit: cover;
    border-bottom-left-radius: 280px;
    border-bottom-right-radius: 280px;
    object-position: top;
}

.banner-image {
    border: 10px solid #fff;
    position: absolute;
    top: 0;
    right: 6%;
    border-top: unset;
    border-bottom-left-radius: 290px;
    border-bottom-right-radius: 290px;
}

section.banner-iner-sec {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    margin-bottom: 100px;
    align-content: center;
}

.banner-iner-main h2 span {
    display: block;
}

.banner-iner-main h2 {
    color: #fff;
    font-size: 77px;
    line-height: 2;
    margin-bottom: 50px;
}

.banner-iner-main h1 {
    font-size: 77px;
    line-height: 130px;
    text-transform: capitalize;
}

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */



/*---------------------------------------------------- Products Section Start ------------------------------------------------------------- */

.product-head {
    margin-bottom: 60px;
}

.product-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: 0.5s all;
}

.product-main {
    width: 95%;
    margin: 0 auto;
    border: 1px solid #c8c8c8;
}

.product-text {
    padding: 22px 16px;
    border-top: 1px solid #000;
}

.product-text h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 13px;
}

.product-text p {
    font-size: 18px;
}

.product-price {
    border-top: 1px solid #c8c8c8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7px 0 0;
}

.product-price:hover a {
    background: #00bfff;
}

.product-price:hover span {
    color: #00bfff;
}

.product-price a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #302e2d;
    font-size: 22px;
    color: #fff;
    transition: 0.5s;
}

.product-price span {
    font-family: 'Montserrat';
    font-size: 31px;
    color: #000;
    transition: 0.5s all;
}

section.product-sec .row.prt {
    margin-bottom: 50px;
}

section.product-sec {
    margin-bottom: 100px;
}

.product-main:hover .product-image img {
    transform: scale(1.3);
}

.product-image {
    overflow: hidden;
}


/*---------------------------------------------------- Products Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Live Brodcast Section Start ------------------------------------------------------------- */

section.live-brod-sec {
/*    background: url(."./images/live-backgnd.jpg);
"
*/    width: 100%;
    padding: 70px 0 75px;
    margin-bottom: 100px;
}

.live-brod-head h2 {
    color: #fff;
    margin-bottom: 90px;
    text-align: center;
}

.live-brod-text h4 {
    font-size: 17px;
    line-height: 2;
    color: #fff;
    margin-bottom: 13px;
}

.live-brod-text p {
    color: #fff;
    margin-bottom: 13px;
    position: relative;
    margin-bottom: 26px;
}

.play-btn {
    display: flex;
    width: 50px;
    height: 50px;
    background: #00bfff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    color: #fff;
}

.live-brod-main:hover .live-brod-image img {
    filter: contrast(0.5);
}

.ply-show a {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 11px;
}

.ply-show h6 {
    color: #fff;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
    font-weight: 700;
}

.live-brod-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    border: 2px solid #00bfff;
    transition: 0.5s all;
}

.live-brod-text {
    padding: 8px 0 0;
}

.live-brod-text p:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    background: #00bfff;
    width: 120px;
    height: 4px;
    border-radius: 10px;
}

.live-brod-main.lv {
    padding-top: 30px;
}

/* INNER PAGE CSS  */

section.live-brod-sec.rt {
    background: transparent;
    padding: unset;
    margin-bottom: 100px;
}

section.live-brod-sec.rt .live-brod-text p {
    color: #000;
    font-size: 20px;
}

section.live-brod-sec.rt .live-brod-text h4 {
    color: #000;
    font-size: 21px;
}

section.live-brod-sec.rt .ply-show h6 {
    color: #000;
    font-size: 21px;
}

section.live-brod-sec.rt .live-brod-main {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
}



section.live-brod-sec.rt .row {
    margin-bottom: 70px;
}

section.live-brod-sec.rt .live-brod-image img {
    height: 400px;
    margin-bottom: 13px;
    box-shadow: 0 0 8px 1px #00000070;
}


/*---------------------------------------------------- Live Brodcast Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Jewl Collec Section Start ------------------------------------------------------------- */

.jewl-col-main h2 {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 2.5;
    margin-bottom: 15px;
}

.jewl-col-main {
    text-align: center;
    padding-top: 50px;
}

.jewl-col-main p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 25px;
}

.jewl-col-main img {
    width: 80%;
    margin: 0 auto;
    border-top-left-radius: 200px;
    border-top-right-radius: 210px;
    height: 490px;
    object-position: top;
    object-fit: cover;
    margin-top: 30px;
}

section.jewlery-collec-sec {
    margin-bottom: 100px;
}

img.custom-prd {
    width: auto !important;
    height: auto !important;
    border: unset;
    margin-top: 20px !important;
}

.review-star h6 {
    font-size: 18px;
    font-family: 'Poppins';
    color: #000;
}

.review-star ul {
    display: flex;
    align-items: center;
    gap: 1px;
}

.review-star {
    display: flex;
    justify-content: space-between;
}

.review-main {
    width: 250px;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 0px 5px 2px 2px #e4e4e4;
    padding: 14px 20px 10px;
    border-radius: 50px;
}

.jewel-coll-main img {
    width: 87%;
    border-radius: 220px;
    height: 700px;
    object-fit: cover;
}

.review-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-rate h5 {
    font-size: 40px;
    color: #000;
    font-family: 'Poppins';
}

.review-rate img {
    width: 130px;
    height: auto;
    object-fit: scale-down;
}

.jewel-coll-main {
    text-align: center;
}

ul li i {
    color: #ffc107;
    font-size: 20px;
}

.Jewel-Colc-main {
    text-align: center;
}

.Jewel-Colc-main img {
    width: 75%;
    margin: 0 auto;
    height: 500px;
    object-fit: cover;
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
    margin-bottom: 20px;
}

.Jewel-Colc-main p {
    font-size: 17px;
    line-height: 30px;
}

.svg_box {
    position: absolute;
    bottom: -194px;
    left: 36.4%;
    width: 28%;
}

.svg_box svg {
    width: 100%;
    fill: currentColor;
    height: auto;
    max-width: 16vmin;
    transform-origin: center;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    line-height: 12px;
    background-color: #00bfff;
    border-radius: 100%;
    font-family: 'Poppins';
    animation: 12s abc linear infinite;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    z-index: -1;
}

@keyframes abc {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes abcd {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.quote-bottom-video-main img.play-icon {
    position: absolute;
    top: 20%;
    right: 18%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 104px;
    width: 105px;
    background-color: #386f6a;
    border-radius: 100px;
    object-fit: scale-down;
}

.svg_box.r {
    top: 30px;
    z-index: -1;
    left: 130px;
    width: 45%;
}

.svg_box.r svg {
    max-width: 40vmin;
    background-color: #1a1a1a;
    padding: 8px;
    animation: 12s abcd linear infinite;
    font-size: 16.2px;
}

.custom-product-round {
    position: relative;
}

.custom-product-round h1 {
    font-family: 'Poppins';
    color: #000;
    position: absolute;
    top: -30px;
    left: 55px;
    z-index: 1;
    font-weight: 400;
}


/*---------------------------------------------------- Jewl Collec Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Client Review Section Start ------------------------------------------------------------- */

section.client-review-sec {
/*    background: url(."./images/live-backgnd.jpg);
"
*/    width: 100%;
    padding: 70px 0 160px;
    margin-bottom: 100px;
}



.client-review-slider button.slick-prev:before {
    content: '\f060';
    color: #fff;
    font-size: 26px;
    font-family: 'FontAwesome';
    opacity: 1 !important;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 11px;
}

.client-review-slider button.slick-prev {
    left: -2.4%;
}

.client-review-slider button.slick-next:before {
    content: '\f061';
    color: #fff;
    font-size: 26px;
    font-family: 'FontAwesome';
    opacity: 1 !important;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 11px;
}

.client-review-slider button.slick-next {
    right: -10px;
}


.client-review h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.client-rev-user {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.client-user-txt h5 {
    color: #000;
    font-size: 25px;
    margin-bottom: 13px;
}

.client-user-txt span {
    font-size: 22px;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

.client-rev-user img {
    width: auto;
    object-fit: scale-down;
}

section.client-review-sec .slick-slide {
    opacity: 1;
}


.testi-main {
    padding: 40px 30px 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.testi-main:before {
    content: '';
    position: absolute;
    background: #00bfff;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    top: -28px;
    right: -32px;
    border-radius: 90px;
    transition: .5s all;
    z-index: -1;
}

.testi-main:hover:before {
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    border-radius: 0;
}

.testi-main:hover * {
    color: #fff;
}

.testi-main:after {
    content: '';
    position: absolute;
    background-image: url(."./images/comma.png);
"
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    top: 20px;
    right: 10px;
}

.client-review-slider ul.slick-dots {
    bottom: -95px;
    background: #fff;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    left: 10%;
    height: 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client-review-slider ul.slick-dots li.slick-active {
    width: 120px;
    height: 14px;
    opacity: 1;
    border-radius: 11px;
    background: #fff;
    margin: 0;
}

.client-review-slider ul.slick-dots li button {
    display: none;
}

/*---------------------------------------------------- Client Review Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Latest News Section Start ------------------------------------------------------------- */

.latest-news-head h2 {
    text-align: center;
    margin-bottom: 80px;
}

.latest-img {
    position: relative;
    margin-bottom: 30px;
}

.latest-img img {
    border-radius: 28px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

section.latest-sec .row.rt {
    margin-bottom: 60px;
}

.latest-news-date {
    position: absolute;
    bottom: -17px;
    left: 35%;
    background: #00bfff;
    padding: 7px 30px;
    border-radius: 9px;
}

.latest-txt h4 {
    font-size: 20px;
    line-height: 40px;
    color: #000;
    margin-bottom: 12px;
}

.latest-txt p {
    line-height: 28px;
    margin-bottom: 17px;
}

.latest-txt a {
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 700;
}

section.latest-sec {
    margin-bottom: 100px;
}

.latest-news-date span {
    font-size: 18px;
    color: #fff;
}

.testi-main p {
    font-style: italic;
    font-size: 22px;
    line-height: 31px;
}

/*---------------------------------------------------- Latest News Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

footer.footer-sec {
    position: relative;
    padding: 70px 0 25px;
    background-color: #161515;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.home-footer footer {
    border-top-right-radius: 60px;
    margin-top: -55px;
    z-index: 1;
}

ul.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
    margin-bottom: 15px;
}

ul.footer-social-list li i {
    font-size: 22px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00bfff;
    color: #fff;
    border-radius: 7px;
}

ul.footer-social-list li i:hover {
    background: #fff;
    transition: .3s ease-in-out;
    color: #000;
}

.footer-text h2,
.footer-text span {
    font-size: 20px !important;
    line-height: 40px;
    margin-bottom: 32px;
    color: #fff;
    padding-top: 30px;
}

ul.footer-link li a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

ul.footer-link-list li i {
    font-size: 27px;
    color: #ffffffd9;
}

ul.footer-link-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-right: 15px;
    margin-bottom: 30px;
}

ul.footer-link-list li p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    margin: 0;
    font-family: 'Montserrat';
}

.footer-form {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    position: relative;
}

.footer-form input {
    width: 100%;
    height: 60px;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 0;
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
    font-family: 'Montserrat';
    font-size: 18px;
    padding-left: 50px;
}

.footer-form i {
    position: absolute;
    top: 19px;
    left: 18px;
    font-size: 22px;
    color: #000000;
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
}

.footr-btn button {
    width: 100%;
    justify-content: center;
    margin: 0;
    font-weight: 700;
}

.footer-text p {
    margin: 20px 0px 0 0;
    text-align: center;
    font-size: 19px;
    color: #fff;
    line-height: 30px;
}

.footer-text {
    position: relative;
    height: 100%;
}

.footer-text img {
    width: 100%;
    margin: 0 auto;
    object-fit: scale-down;
}

.fotr-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.bottom-nav {
    padding: 25px 0;
    background: #000000;
    text-transform: capitalize;
}

section.bottom-nav p {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    margin: 0;
    font-weight: 300;
}

ul.footer-link li {
    border-bottom: 1px solid transparent;
    transition: 1s ease-in-out;
    margin-bottom: 11px;
}

ul.footer-link li:hover {
    padding-left: 10px;
    border-color: #fff;
    transition: 1s ease-in-out;
    color: #999999;
}

ul.footer-link-list li {
    border-bottom: 1px solid transparent;
    padding-bottom: 10px;
    transition: 1s ease-in-out;
}

ul.footer-link-list li:hover {
    padding-left: 10px;
    border-color: #999999;
    transition: 1s ease-in-out;
    color: #0c8381;
}

.no-border:before {
    display: none;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */


/*---------------------------------------------------- About Us Section Start ------------------------------------------------------------- */

section.about-us-sec {
    margin-bottom: 100px;
}

.about-text h2 {
    margin-bottom: 40px;
}

.about-text h5 {
    font-size: 25px;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 32px;
    font-size: 18px;
    color: #000;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.counter-section {
    text-align: center;
    margin-bottom: 80px;
}

.counter-section .number {
    font-family: 'Calture-Rowasn';
    font-size: 82px;
    line-height: 70px;
    font-weight: 500;
    color: #00bfff;
}

.counter-section .label {
    font-size: 27px;
    font-family: 'Montserrat';
    color: #333333;
}

section.about-us-sec .row {
    align-items: center;
}

.counter-section.rt {
    margin-bottom: unset;
}

/*---------------------------------------------------- About Us Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Accounts Section Start --------------------------------------------------------------*/

.login-txt form input {
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    padding: 10px 40px 10px 20px;
    color: #000;
    font-weight: 400;
    border: 1px solid #0000002b;
    border-radius: 5px;
}

.login-txt form input::placeholder {
    color: #000000c7;
    font-size: 17px;
}

.login-txt form input:focus {
    box-shadow: none;
    border: 1px solid #0000002b;
}

.login-txt h2 {
    margin: 0 0 30px 0;
    text-transform: capitalize;
    font-size: 22px;
}

.password-box {
    position: relative;
    margin-bottom: 20px;
}

.password-box-input input {
    padding: 10px 40px 10px 20px;
}

.password-icon {
    position: absolute;
    top: 27%;
    right: 3%;
}

.password-icon span {
    color: #000;
    cursor: pointer;
}

.login-txt {
    padding: 45px 25px 35px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #0000001a;
}

.login-txt ul {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

li.head {
    font-size: 19px;
    font-weight: 600;
}

.login-txt ul li {
    display: flex;
    gap: 7px;
    font-weight: 400;
    font-size: 17px;
}


.login-txt form button {
    width: 100%;
    color: #fff;
    padding: 16px 0px;
    outline: none;
    border: none;
    margin-bottom: 20px;
    font-size: 24px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.2s;
    background: #00bfff;
    font-family: 'Poppins';
}

.login-txt form button:hover {
    background-image: unset;
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.2s;
    color: #fff;
}

li.head-ex {
    text-decoration: underline;
    color: red;
}

.login-txt ul li label {
    cursor: pointer;
    font-size: 17px;
}

.login-txt-ex form input:focus {
    background-color: #fff;
    color: #000;
}

.login-txt-ex ul {
    justify-content: space-between;
}

section.login.sec {
    padding: 0 0 100px 0;
}

.login-txt.login-txt-ex li.head a {
    font-size: 17px;
    color: #0000009c !important;
}

.login-txt ul li a {
    color: red;
}

/*---------------------------------------------------- Accounts Section End --------------------------------------------------------------*/


/*---------------------------------------------------- Blog Detail Section Start --------------------------------------------------------------*/

section.blog-detail-sec {
    margin-bottom: 100px;
}

.blog-detail-img img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 30px;
}

.date-blog-detl {
    background: #00bfff;
    padding: 12px 40px;
    border-radius: 9px;
    width: max-content;
    margin-bottom: 21px;
}

.blog-detail-txt h4 {
    font-size: 32px;
    line-height: 65px;
    margin-bottom: 13px;
}

.blog-detail-txt p {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 20px;
}

.blog-detail-txt {
    padding-left: 20px;
}

.blog-detail-txt-end p {
    margin-bottom: 21px;
    font-size: 18px;
    line-height: 34px;
}

.date-blog-detl span {
    font-size: 24px;
    color: #fff;
}

/*---------------------------------------------------- Blog Detail Section End --------------------------------------------------------------*/


/*---------------------------------------------------- Product Detail Section Start --------------------------------------------------------------*/

.productdetailsec {
    padding: 0px 0 80px;
    position: relative;
}

.productdetailtext h3 {
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 23px;
    line-height: 1.6;
}

.productdetailtext span {
    font-size: 46px;
    color: #00bfff;
    line-height: 1;
    font-family: 'Montserrat';
}

.productdetailtext ul {
    padding: 0;
    margin: 10px 0 0;
    align-items: center;
}

.productdetailtext ul li {
    list-style: none;
    display: inline-block;
    color: black;
    font-weight: 500;
    font-family: 'Poppins';
}

ul.product-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

ul.product-social li i {
    width: 63px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #00bfff;
    color: #fff;
    font-size: 32px;
}

ul.product-social li i:hover {
    color: #fff;
    border: 0;
    transition: 0.5s ease-in-out;
}

.productdetailtext ul li a i {
    color: #ffb600;
    font-size: 30px;
    margin-right: 5px;
    margin-bottom: 30px;
    margin-top: 5px;
}

.productdetailtext ul li:last-child a i {
    color: #ffa200;
}

.productdetailtext ul li:nth-child(4) a i {
    color: #ffa200;
}

.productdetailtext p {
    color: #333;
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
    font-size: 15px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-plus {
    font-size: 15px;
    margin: 0;
    top: -15px;
    right: 3px;
}

.productdetailtext .input-group input.form-control.input-number {
    width: 100%;
    margin: 0 auto;
    display: table;
    height: 50px;
    text-align: center;
}

.productdetailtext .input-group button.btn.btn-default.btn-number {
    border-radius: 50px;
    width: 30px;
    height: 30px;
    margin: 0 15px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
    font-size: 15px;
    margin: 0;
    top: -13px;
    right: 5px;
}

.productdetailtext .input-group {
    width: 50%;
    margin: 0 0 34px;
}

.iconlist ul li {
    list-style: none;
}

.productdetailtext .input-group span.input-group-btn {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

.productdetailsmallportion {
    position: relative;
    top: 0;
    z-index: 99;
    width: 230px;
    height: 206px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: unset;
    margin-bottom: 20px;
}

.productdetailsec .productdetailportion {
    align-items: center;
    position: relative;
}

.productdetailnav .slick-slide {
    opacity: 1;
    z-index: 9999;
    position: relative;
    margin: 0;
}

.product-detail span {
    margin: 0;
}

.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 75%;
}

.prd-detail-pera p {
    border-top: 1px solid #00000021;
    padding-top: 20px;
    font-size: 19px;
    width: 94%;
    margin-bottom: 21px;
}

section.productdetailsec.inner-page-bg .row {
    align-items: center;
}


.product-detail input.in-num {
    border: 1px solid #DADADA;
    background-color: transparent;
    width: 40%;
    margin: 0 5px;
}

ul.product-quintity li input {
    width: 70px;
    height: 50px;
    padding-left: 17px;
    border: 2px solid #C8A58A;
    border-radius: 12px;
    font-size: 22px;
}

ul.product-quintity li div#field2 {
    position: relative;
}

ul.product-quintity li div#field2 button#add2 {
    position: absolute;
    top: 0;
    right: 0;
    border: 2px solid #c8a589;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    height: 26px;
    border-top-right-radius: 12px;
}

ul.product-quintity li div#field2 button#sub2 {
    width: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid #c8a589;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 26px;
    border-bottom-right-radius: 12px;
}

.product-detail span {
    width: 30px !important;
    border: 1px solid #E3E3E3;
    border-radius: 50px;
    height: 30px !important;
    margin: 5px;
}

.product-detail .skin-2 .num-in span:before,
.product-detail .skin-2 .num-in span:after {
    background-color: #000;
}

.product-detail span:hover:before,
.product-detail span:hover:after {
    background-color: rgb(255, 255, 255) !important;
}

.product-details-btn.btn10 {
    background-color: #CFA55A !important;
    color: black;
    border-color: #CFA55A;
    font-size: 19px;
}

.quanity.product-detail {
    margin-left: 0;
}

.product-detail span:hover {
    background-color: #000;
}

ul.product-detail-heading {
    display: grid;
    align-items: center;
    justify-content: space-between;
}

.product-details-btn {
    height: 60px;
    border: 0;
    width: 180px;
    margin-left: 10px;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #cfa55a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;
}

a.cat-sub-btn {
    background: #335650;
    color: #fff;
    padding: 15px 40px;
    font-weight: 500;
}

a.cat-sub-btn:hover {
    background: #000;
}

.iconlist {
    margin: 25px 0 18px;
}

.description li.nav-item {
    margin-right: 12px;
}

.productdetailtext h4:before {
    content: '';
    background: #1d1d1d;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    border-radius: 30px;
}

.productdetailtext h4:after {
    content: '';
    background: #00bfff;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 70%;
    height: 10px;
    border-radius: 30px;
}

.description li.nav-item button {
    width: 100%;
    height: 50px;
    border-radius: 0;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 300;
    color: #3e3c3b;
    font-family: 'battlesbridge';
    text-align: center;
}

.description li.nav-item .nav-link.active {
    border: 0;
    font-weight: 500;
    font-size: 22px;
    font-family: 'battlesbridge';
    border-bottom: 2px solid;
    text-transform: uppercase;
    display: inline-block;
    width: auto;
    color: #00bfff;
}

.description .nav-tabs {
    border-bottom: 0;
    gap: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.description {
    padding: 30px 0 80px;
}

.description .tab-content p {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

.productdetailfor .slick-slide img {
    width: 100%;
    height: 660px;
    object-fit: cover;
}

.productdetailsmallportion img {
    width: auto;
    padding: 10px 10px;
    position: relative;
    z-index: 999999999999999;
}

/* skin 2 */

.skin-2 .num-in {
    background: #F0F0F0;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
    height: 40px;
    width: 110px;
    float: left;
    border-radius: 12px;
    cursor: pointer;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 37px;
    border: none;
    text-align: center;
    background-color: #f0f0f0;
    font-family: 'Roboto';
}

.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 75%;
    display: flex;
    align-items: center;
}

.product-detail input.in-num {
    border: 1px solid #DADADA;
    background-color: transparent;
    width: 40%;
    margin: 0 5px;
    padding: 30px 0;
}

.productdetailsmallportion img {
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.productdetailsec .btn10 {
    color: white;
}

.productdetailsmallportion img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: unset;
}

section.related-product {
    padding-bottom: 100px;
}

.related-head {
    text-align: center;
    margin-bottom: 60px;
}

.related-head p {
    font-family: 'OpenSans';
    font-size: 18px;
    width: 53%;
    margin: 0 auto;
    line-height: 25px;
}

a.btn.shp-btn {
    font-family: 'cereR';
    font-size: 20px;
    color: #fff;
    background: #000;
    border-radius: 0;
    padding: 14px 45px;
}

.mn-prd-sll {
    display: flex;
    flex-direction: row-reverse;
    /* gap: 20px; */
    justify-content: space-between;
}

.productdetailfor {
    width: 73%;
}

.productdetailnav {
    width: 100%;
    height: 100%;
    margin-top: 0;
    width: 230px;
    /* margin-right: 30px; */
}

.productdetailfor .slick-slide {
    margin: 0;
}

.productdetailtext h5 {
    font-size: 29px;
    font-family: 'Montserrat';
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.productdetailtext h4 {
    font-size: 24px;
    font-family: 'Montserrat';
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 25px;
}

.prd-btn a {
    padding: 16px 70px;
    width: 100%;
}

section.related-prod {
    position: relative;
    padding: 50px;
}

.product-head {
    margin-bottom: 50px;
}

ul.product-quintity li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.quanity.product-detail input::-webkit-outer-spin-button,
.quanity.product-detail input::-webkit-inner-spin-button {
    -webkit-appearance: auto !important;
    margin: 0px !important;
    opacity: 1 !important;
}


/* product tabs css */

.rate {
    height: 46px;
    /* padding: 0 10px; */
    float: left;
    display: block;
    clear: both;
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 37px;
    color: #ccc;
    margin: 0 3px;
}

.product-head.t {
    margin-bottom: 80px;
    text-align: center;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    font-size: 26px;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.description .prd-commets .testimonial-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.description .prd-commets .testimonial-heading span {
    font-size: 1.5rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.description .prd-commets .testimonial-box-container {
    display: block;
}

.description .prd-commets .testimonial-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}

.description .testi-box {
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin: 20px 0;
}

.description .prd-commets .prd-commets .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.description .prd-commets .profile-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
    margin-right: 20px;
}

.description .prd-commets .profile {
    display: flex;
    align-items: center;
}

.description .prd-commets .name-user {
    display: flex;
    flex-direction: column;
}

.description .prd-commets .name-user strong {
    color: #3d3d3d;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.description .prd-commets .name-user span {
    color: #979797;
    font-size: 1rem;
}

.description .prd-commets .reviews {
    color: #f9d71c;
}

.description .prd-commets .box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.description .prd-commets .client-comment p {
    font-size: 1.1rem;
    color: #4b4b4b;
    text-align: left;
}

.description .prd-commets .testimonial-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.description .tab-content input[type="text"] {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
    padding-left: 30px;
    border-radius: 40px;
}

.prdtc-rvw ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.description .tab-content form .row {
    align-items: center;
}

.prdtc-rvw i {
    font-size: 27px;
    margin-right: 10px;
}

.description .tab-content textarea {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
    padding-left: 30px;
    border-radius: 40px;
}

.description .tab-content form {
    margin-bottom: 70px;
}

.prdtc-rvw i:hover {
    color: #FFC107;
}

.latest-product.letest-product-page:before {
    display: none;
}

.input-dtl {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    gap: 40px;
}

.text label {
    font-family: 'Prepetua';
    font-size: 16px;
    font-weight: 400;
    padding-right: 6px;
    color: #000;
    text-align: center;
}

.text input {
    border: 1px solid #c7a689;
    border-radius: 20px;
    padding: 3px 5px;
    width: 100%;
}

.text {
    display: grid;
}

.input-dtl h6 {
    font-size: 19px;
}

.rev-btn h6 {
    margin-bottom: 15px;
}

.upload label {
    font-family: 'Prepetua';
    font-size: 20px;
    font-weight: 600;
}

/*---------------------------------------------------- Product Detail Section End --------------------------------------------------------------*/


/*---------------------------------------------------- Checkout Section Start --------------------------------------------------------------*/

section.checkout label {
    font-weight: 400;
    font-family: 'Poppins';
    color: #000;
    font-size: 18px;
}

section.checkout input {
    border: 1px solid #00000042;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 20px;
    color: #000;
    border-radius: 6px;
    font-weight: 500;
}

section.checkout h6 {
    font-weight: 300;
    color: #fff;
    padding: 18px 40px;
    font-size: 27px;
    text-transform: capitalize;
    margin-bottom: 40px;
    background: #222222;
    border-radius: 10px;
}

section.checkout {
    margin-bottom: 100px;
}

ul.pri {
/*    display: flex;
*/    align-items: right;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
}

section.checkout .place-order {
    border: 1px solid #e5e5e5;
    padding: 10px 0px 55px;
    background: #00bfff;
    border-radius: 40px;
}

.place-order h5 {
    font-size: 22px;
    text-transform: capitalize;
    border-bottom: 1px solid #e5e5e5;
    padding: 35px 30px 30px;
    margin-bottom: 10px;
    text-align: left;
    color: #fff;
    font-weight: 400;
}

.pym-methd {
    padding: 0px 30px;
    text-align: center;
}

ul.pri li p {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

ul.pay-paymnt {
    display: flex;
    align-items: center;
    padding: 4px 30px;
    gap: 20px;
    margin-bottom: 0;
    color: #fff;
}

ul.pay-paymnt li input[type="checkbox"] {
    width: inherit !important;
    height: inherit !important;
    margin: 0;
    background: #e5e5e5;
    border: 0 !important;
}

.pym-methd button.btn-theme {
    margin-top: 40px;
}

button.theme_btn:hover {
    color: #fff;
}

ul.pay-paymnt li img {
    padding-left: 10px;
}

section.checkout input::placeholder {
    color: #737373;
}

.checkout span {
    color: #ff0707;
}

section.checkout .place-order button.btn-1 {
    border: 1px solid #fff;
    border-radius: 11px;
    padding: 16px 50px;
    font-size: 22px;
    margin: 25px 0 0;
}

.pri li {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    font-family: 'Montserrat';
}

/*---------------------------------------------------- Checkout Section End --------------------------------------------------------------*/


/*---------------------------------------------------- Contact Inner Section Start ----------------------------------------------------------- */


.contact_detail_box i {
    font-size: 52px;
    color: #fff;
    margin-bottom: 10px;
    height: 60px;
}

.contact_detail_box h2 {
    font-size: 22px;
    line-height: 24px;
    color: #000;
    font-weight: 700;
    margin: 30px 0 10px 0;
}

.contact_detail_box p {
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    margin: 0;
    font-weight: 400;
    margin-bottom: 0;
    display: block;
    font-family: "Montserrat", sans-serif;
    width: 70%;
    margin: 0 auto;
}

.contact_detail_box {
    padding: 30px 20px 40px;
    transition: 0.5s;
    height: 250px;
    background: #00bfff;
    border-radius: 25px;
    align-content: center;
}

.contact_detail_box:hover img {
    filter: brightness(0) invert(1);
}

.contact_detail_box:hover {
    background: #161515;
    transform: translate(0px, -2px);
    border: 1px solid #8b6d51;
}

.contact_form {
    padding-bottom: 7%;
}

.contact_page {
    padding-bottom: 100px;
}

.contact_form input {
    height: 58px;
    width: 100%;
    border: 1px solid #afb4b5;
    margin-bottom: 25px;
    border-radius: 6px;
    padding: 0 15px;
    background: #f4f2f1;
    padding-left: 30px;
    text-transform: capitalize;
    font-family: 'Montserrat';
    font-size: 19px;
    color: #000;
}

iframe {
    height: 380px;
    border-radius: 40px;
}


input[type="number"] {
    -moz-appearance: textfield;
}

.contact_form textarea {
    height: 200px;
    margin-bottom: 30px;
    width: 100%;
    border: 1px solid #afb4b5;
    border-radius: 10px;
    padding: 15px 15px;
    resize: none;
    font-size: 18px;
    padding-left: 30px;
    font-family: 'Montserrat';
    color: #000;
}


section.contact_form button.theme_btn.extra.i {
    width: 25%;
    margin: 0 auto;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-size: 28px;
}

.section_head {
    margin-bottom: 40px;
}

.contact_form .row.i-frame {
    padding-top: 70px;
}


.section_head p {
    width: 70%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 17px;
    color: #636363;
    font-family: "Roboto";
}

.section_head h3 {
    color: #000;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 85px;
    text-transform: none;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.br_gradient {
    padding: 2px;
    border-radius: 12px;
}

.contact_detail_box p span {
    display: block;
}

.contact_page h4 {
    color: #ffff;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: none;
}

.btn_wrap {
    text-align: center;
}

.contact_detail_box a {
    display: block;
    font-size: 18px !important;
}

/*---------------------------------------------------- Contact Inner Section End ----------------------------------------------------------- */


/*----------------------------------------------------- My Cart Section Start ------------------------------------------------------------- */

.inner-banner-img {
    background-image: url(."./images/inner-banner-img.jpg);
"
    width: 110%;
    height: 770px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-banner-img h2 {
    font-size: 54px;
    color: #fff;
    text-transform: uppercase;
}

section.add-to-cart {
    padding: 0 0 7%;
}

.add-to-cart h4 {
    font-size: 24px;
    font-weight: 400;
    color: #7f7f7f;
    text-align: center;
    font-family: 'Montserrat';
    white-space: pre;
}

.add-to-cart .table>tbody>tr>td,
.add-to-cart .table>tbody>tr>th,
.add-to-cart .table>tfoot>tr>td,
.add-to-cart .table>tfoot>tr>th,
.add-to-cart .table>thead>tr>td,
.add-to-cart .table>thead>tr>th {
    vertical-align: middle;
}

.total-section {
    border: none;
    padding: 27px 30px;
    border: 1px solid #8080808f;
    background: #f5f5f5;
}

.total-section ul {
    list-style: none;
    margin-bottom: 0;
}

.total-section li {
    font-size: 23px;
    padding-bottom: 28px;
    color: #4c4c4c;
    font-family: 'Montserrat';
    font-weight: 400;
}

li.color-change {
    color: #000;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    font-family: 'battlesbridge';
}

.total-section li.color-change span {
    font-size: 40px;
    color: #000;
    font-family: 'Montserrat';
    font-weight: 400;
}

.total-section li span {
    float: right;
}

.ship-estimate {
    padding: 12px 30px;
    border: 1px solid #8080808f;
    margin-top: 15px;
    background: #f5f5f5;
}

.ship-estimate li {
    font-size: 19px;
    color: #000;
    margin-bottom: 12px;
    font-weight: 400;
    font-family: 'battlesbridge';
}

.ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: 'Cormorant';
    list-style: none;
}

.ship-estimate .grey-style {
    color: #4c4c4c;
    font-size: 22px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.proceed .checkout-btn {
    padding: 15px;
    width: 100%;
    font-size: 22px;
    margin-top: 4px;
    border-radius: 40px;
    text-align: center;
    color: #ffffff;
    background: #93b7d1;
    /* text-transform: uppercase; */
    font-family: 'Playfair Display';
}

.or-amazon {
    margin-top: 50px;
    position: relative;
    border: 2px solid #dadada;
    /* top: 25px; */
    padding: 30px 50px;
    border-radius: 5px;
}

.or-amazon p {
    font-size: 20px;
    position: absolute;
    background: #fff;
    top: -18px;
    left: 85px;
    padding: 3px 20px;
    color: #333333;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}

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

.proceed .back-btn {
    width: 330px;
    font-size: 22px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.product-img {

    width: 100%;

    border-radius: 0;

    text-align: center;

    display: flex;

    align-items: center;

    justify-content: center;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: currentColor;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #222222;
    padding: 21px 0px;
    font-family: 'battlesbridge';
    text-transform: capitalize;
}

.table-space h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 25px;
    color: #000;
    text-transform: uppercase;
}

.space .row {
    align-items: center;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #c2c2c2;
    border-style: solid;
    border-width: 0;
    border: unset;
    padding-bottom: 10px;
}

th.qty {
    text-align: center;
}

a.remove {
    font-size: 24px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    color: #000;
    background: #fff;
    border: 1px solid #00000069;
    border-radius: 5px;
}


.table-space h6 {
    font-weight: 400;
    font-size: 19px;
    line-height: 18px;
    color: #333333;
    margin: 5px 0;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.table-space span {
    font-weight: 400;
    font-family: 'Montserrat';
    font-size: 20px;
    color: #7f7f7f;
    text-transform: uppercase;
}

table.table.cart_table thead tr th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    padding-left: 50px;
}


table.table.cart_table thead tr th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 10px 13px;
    white-space: pre;
}

.number-item {
    text-align: center;
}

.product-img img {
    height: 140px;
    object-fit: cover;
    width: 100%;
    border-radius: 14px;
}

section.add-to-cart .proceed a.theme_btn {
    width: max-content;
    height: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 24px;
    justify-content: center;
    font-weight: 500;
    padding: 10px 70px;
}

.last-cart {
    display: flex;
    align-items: center;
    gap: 40px;
}

.number-item a {
    color: #7f7f7f;
    font-family: 'Montserrat';
    font-size: 24px;
}

.cart-name {
    width: 210px;
    padding-left: 10px;
}

.cart_table tbody tr td .num-in {
    background: transparent;
    box-shadow: none;
    width: 70%;
    height: 52px;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.num-in input {
    float: left;
    width: 45%;
    height: 37px;
    border: none;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 24px;
    font-weight: 500;
    margin: 0 5px;
    color: #7f7f7f;
}

.cart-page-tble tbody tr td .num-in span.minus {
    border-right: 1px solid #e1e1e1;
}

.cart-page-tble tbody tr td .num-in span.plus {
    border-left: 1px solid #e1e1e1;
}


.skin-2 span:before,
.skin-2 span:after {
    content: '';
    position: absolute;
    background-color: #000;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 span.plus:after {
    transform: rotate(90deg);
}

.add-to-cart tbody tr td .num-in span {
    width: 50px !important;
    height: 50px !important;
    margin: 5px 0;
    position: relative;
}

.add-to-cart tbody tr td .num-in span:before,
.add-to-cart tbody tr td .num-in span:after {
    background-color: #4d4c4cf2;
}

.add-to-cart tbody tr td .num-in span:hover:before,
.add-to-cart tbody tr td .num-in span:hover:after {
    background-color: rgb(255, 255, 255) !important;
}

.add-to-cart tbody tr td .num-in span:hover {
    background: #00bfff;
}

/*----------------------------------------------------- My Cart Section End ------------------------------------------------------------- */



.modal-dialog {
    max-width: 650px !important;
}

.modal-home-form input {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    border: 1px solid #0000002e;
    margin-bottom: 18px;
    border-radius: 5px;
}

button.btn.btn-secondary {
    background: #181716;
    border: unset;
    padding: 18px 40px;
    border-radius: 12px;
}





section.productdetail {
    padding: 100px 0px;
}

section.productdetail .dd-button {
    margin-bottom: 20px;
    border: 0;
    text-transform: uppercase;
    padding: 16px 10px 16px 25px;
    cursor: pointer;
    font-size: 26px;
    background: #161515;
}

section.productdetail .dd-button h3 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 25px;
    margin: 0;
}

ul.ul1prodetail h3 span {
    float: inline-end;
}

ul.ul1prodetail h3 span a i {
    color: #000;
}

.ul1prodetail li {
    font-family: "Poppins";
    font-size: 16px;
    color: #000;
}

/* Dropdown */

.dropdown {
    width: 100%;
    margin-bottom: 40px;
}

.dd-menu li:last-child {
    border-bottom: 0px !important;
}

.dd-input {
    display: none;
}

section.productdetail .row.conts {
    align-items: center;
    margin-top: 11px;
    margin-bottom: 50px;
}

.dd-menu {
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    list-style-type: none;
}

.dd-input+.dd-menu {
    display: none;
}

.dd-input:checked+.dd-menu {
    width: 100%;
    margin: 0px auto;
    display: inline-block;
    position: unset;
    margin-top: 20px;
}

.dd-menu li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 7px;
    transition: 0.9s;
    cursor: pointer;
    font-family: 'Montserrat';
    font-size: 18px;
}

.dd-menu li:hover {
    background-color: #f6f6f6;
}

.dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
}

select#categories {
    padding: 17px 20px;
    border: none;
}

select#categories option {
    padding: 17px 20px;
}

ul.ul2prodetail h3 {
    margin-bottom: 20px;
    border: 0;
    text-transform: uppercase;
    padding: 16px 10px 20px 30px;
    cursor: pointer;
    font-size: 21px;
    color: #fff;
    background: #161515;
}

ul.ul2prodetail li a input {
    display: none;
}

ul.ul2prodetail li a {
    color: #222222;
    font-size: 18px;
}

ul.ul2prodetail li span {
    font-family: "poppins";
    color: #222222;
    font-size: 18px;
}

ul.ul2prodetail li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 10px;
    transition: 0.9s;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-size: 18px;
}

.prod-sec-prod-pg {
    margin-top: 30px;
}

section.productdetail .pd-box {
    margin-bottom: 50px;
}

.heading-prd {
    position: relative;
}

.heading-prd h5 {
    font-size: 22px;
    line-height: 35px;
    margin: 0;
    text-transform: uppercase;
}

.sort p {
    font-family: 'Montserrat';
    color: #666666;
    font-size: 21px;
    line-height: 26px;
    margin: 0;
    font-weight: 400;
    text-align: right;
}

ul.view-pd {
    display: flex;
    justify-content: flex-end;
    margin: 0px;
    gap: 20px;
    align-items: center;
}

ul.view-pd li span {
    font-size: 20px;
    line-height: 26px;
    color: #666666;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

section.productdetail .row.prt {
    margin-bottom: 30px;
}

.banner-text h3 {
    color: white !important;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.banner-text h4 {
    color: white !important;
    margin: 0 0 10px 0;
    font-weight: 600;
}

/*Product page End*/
marquee {
    background: #00bfff;
    padding: 10px 0;
    margin-bottom: -10px;
    color: #fff;
    font-size: 18px;
}

.client-rev-user img {
    width: 89px;
    object-fit: scale-down;
    height: 89px;
    border: 1px solid white;
    border-radius: 50px;
    object-fit: cover;
}
.Jewel-Colc-main h2 {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 2.5;
    margin-bottom: 15px;
}
img.img-fluid {
    width: 100%;
}
a.update.theme_btn {
    padding: 9px 14px;
    border-radius: 6px;
}
.number-item a {
    font-size: 16px;
}
html {
    overflow-x: hidden;
}
.no-featured-broadcast.text-center.py-5.main-reg-txt p {
    font-size: 23px;
    color: #000;
    font-weight: 500;
}

.no-featured-broadcast.text-center.py-5.main-reg-txt p a {
    font-weight: 600;
    text-decoration: underline;
}
.popup-overlay {position: fixed;inset: 0;background: rgba(48, 46, 45, 0.85);/* #302e2d transparent */display: flex;
    align-items: center;justify-content: center;z-index: 9999;}
    
.popup-box {background: #fff;border-radius: 14px;width: 100%;max-width: 620px;padding: 25px 20px;text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);position: relative;font-family: "Poppins", sans-serif;animation: fadeInUp 0.5s ease;}
p.modalcontent {
    margin-bottom: 10px;
}
@keyframes fadeInUp {from {transform: translateY(40px);opacity: 0;}to {transform: translateY(0);opacity: 1;}}

.popup-box h2 {font-size: 20px;color: #302e2d;margin-bottom: 15px;font-weight: 600;}

.popup-box label {display: block;text-align: left;margin-bottom: 10px;font-size: 14px;color: #302e2d;font-weight: 500;}

.popup-box input {width: 100%;padding: 10px;margin-top: 5px;border: 1px solid #ccc;border-radius: 8px;font-size: 14px;
    transition: border 0.2s ease;}

.popup-box input:focus {outline: none;border-color: #00bfff;box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);}

.popup-box button {margin-top: 18px;padding: 10px 20px;background: #00bfff;color: #fff;border: none;
    border-radius: 8px;font-size: 15px;font-weight: 600;cursor: pointer;transition: background 0.2s; width: 94%;
    margin: 10px auto 0;}

.popup-box button:hover {background: #009fd1;}

.close-btn {position: absolute;top: 10px;right: 15px;font-size: 20px;color: #302e2d;background: none;
    border: none;cursor: pointer;font-weight: bold;}

.close-btn:hover {color: #00bfff;}

.popup-overlay.hidden {display: none;}
button.close-btn {margin: 0 0 0 0;padding: 0;width: 35px;height: 35px;border-radius: 500px;font-size: 25px;position: absolute;
    top: -10px;right: -10px;}

.modalpopup{
    display : flex;
    justify-content: center;
    align-items: center;
    border: none;
}
button#submitModal {
    width: 96%;
    margin: 15px auto 0;
}

/* ===== MODAL COMPLETE FIX ===== */

/* Modal backdrop */
#exampleModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    z-index: 1055 !important;
    background: rgba(0,0,0,0.5) !important;
}

/* Dialog box - center karo */
/*#exampleModal .modal-dialog {*/
/*    position: relative !important;*/
/*    max-width: 480px !important;*/
/*    width: 90% !important;*/
/*    margin: 30px auto !important;*/
/*    top: auto !important;*/
/*    transform: none !important;*/
/*}*/

/* Modal content */
#exampleModal .modal-content.modalpopup {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
    overflow: visible !important;
    max-height: none !important;
}

/* Popup inner box */
.popup-box {
    padding: 30px 12px !important;
}

/* Heading upar se cut na ho */
.popup-box h2 {
    margin-top: 0 !important;
}

/* Body scroll completely band */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    padding-right: 0 !important;
}