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

:root {
    --white: #fff;
    --black: #000;
    --primary: #D09910;
    --secondary: #424143;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: 'Jost', sans-serif;
}


/* @media (min-width: 1700px) {
	.container {
		max-width: 1380px;
	}
} */


/* How to add New font */

@font-face {
    font-family: "notoserif";
    src: url("../fonts/NotoSerifJP-SemiBold.otf");
}

section {
    position: relative;
    padding: 6rem 0;
}

h1,
h2,
h3,
h4 {
    font-family: "notoserif";
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

header {
    padding: 16px 0;
    z-index: 1;
    position: relative;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* loader */


/* btn css */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.9em 2.06em;
    line-height: normal;
}

.themeBtn:hover {
    background-color: var(--secondary);
    color: #fff;
}


/* btn css */


/* navigation css */

.navbar-nav {
    align-items: center;
    gap: 4rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    padding: 0;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: -63px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--secondary);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

li.nav-item a i:hover {
    color: var(--primary);
}

li.nav-item .themeBtn {
    background: var(--secondary);
}

li.nav-item a i {
    color: #000;
    font-size: 16px;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 900px;
    overflow: hidden;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    /* position: absolute; */
    left: 0;
    top: 0;
    /* z-index: 1; */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 5rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 1rem;
    font-size: 1.375rem;
}

figure.mainimg img {
    padding-top: 9rem;
}


/* slider css */


/* / sraachbar start / */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 3.4375rem;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 1.6875rem;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 1.25rem;
}


/* / sraachbar end / */

.socialLinks {
    position: absolute;
    top: 36%;
    right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.socialLinks li a {
    color: var(--white);
    background: #336BCC;
    height: 50px;
    width: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.socialLinks li:nth-child(2) a {
    background: #A422EE;
}

.socialLinks li:nth-child(3) a {
    background: #FF0015;
}

.socialLinks li:nth-child(4) a {
    background: #171717;
}

.socialLinks li:nth-child(5) a {
    background: #980808;
}


/* emboridy css start */

.emboridySec h3 {
    text-align: center;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: 'notoserif';
}

.emboridySec h2 {
    font-size: 1.875rem;
    margin-top: 10px;
    font-weight: 500;
    font-family: 'Jost';
}


/* emboridy css end */


/* designsec css start */

.new {
    position: relative;
}

.new h2 {
    font-size: 3.75rem;
    color: var(--secondary);
    font-family: 'notoserif';
}

.new h2 span {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Jost';
    display: block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 2rem;
}

.new a.themeBtn {
    position: absolute;
    top: 0;
    right: 0;
}


/* designsec css end */

.favoriteBox figure {
    position: relative;
}

.favoriteBox figure .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(66 65 67 / 42%);
    width: 90%;
    height: 90%;
    border: 1px solid #FFFFFF;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

.favoriteBox figure .overlay a {
    font-size: 2rem;
    color: var(--white);
}

.favoriteBox:hover figure .overlay {
    opacity: 1;
}

section.designSection {
    background: #F3F3F3;
    padding-top: 3rem;
}

.desingcntnt h4 {
    color: #00ADEF;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Jost';
    margin-top: -9px;
}

.desingcntnt p {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-top: 10px;
}

.designwrap {
    display: block;
    margin-bottom: 2rem;
}

.designwrap figure {
    overflow: hidden;
}

.designwrap figure img {
    transition: 0.5s ease;
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: #ddd;
}

.designwrap:hover figure img {
    transform: scale(1.2);
}

.cnnt h3 {
    font-size: 3.75rem;
    text-transform: uppercase;
    color: var(--secondary);
}

.cnnt p {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 500;
}

form.joinfrm input {
    width: 75%;
    height: 91px;
    background: #EBEBEB;
    border: unset;
    border-radius: unset;
    padding-left: 2rem;
    font-size: 1.375rem;
}

form.joinfrm button {
    background: #00ADEF;
    border: unset;
    font-size: 1.875rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 22px 3em;
    display: inline-block;
}

.joinfrm {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #D4D4D4;
    padding: 12px;
    margin-top: 1.5rem;
}

.cnnt {
    text-align: center;
    border-top: 1px solid #BFBFBF;
    padding-top: 10px;
}

form.joinfrm input::placeholder {
    color: #8D8D8D;
}

.imgb img {
    position: absolute;
}

img.img-fluid.btt1 {
    right: 19rem;
    bottom: 14.5rem;
}

img.img-fluid.machine1 {
    bottom: 20rem;
    left: -5rem;
    overflow: hidden;
}

form.joinfrm button:hover {
    background: var(--primary);
}


/* footer css start */

footer h3 {
    font-size: 1.75rem;
    text-transform: uppercase;
    color: var(--secondary);
}

.quickList ul li a {
    color: #828282;
    font-size: 1.125rem;
    font-weight: 500;
}

footer .socialLinks {
    flex-direction: row;
}

.quickList ul {
    margin-top: 1.6rem;
}

.row.copyRight ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.row.copyRight ul li a {
    border: 1px solid #BBBBBB;
    border-radius: 7px;
    padding: 15px 15px;
}

.row.copyRight p {
    font-size: 1.125rem;
    color: #474747;
    margin: 0;
}

.row.copyRight {
    border-top: 1px solid #7A7A7A;
    margin-top: 4rem;
    padding: 2rem 0 1.5rem 0;
}

.quickList ul li a:hover {
    color: var(--primary);
}


/* footer css end */

li.nav-item .themeBtn:hover {
    background: var(--primary);
}


/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.innerBan {
    position: relative;
}

figure.subimg {
    padding-top: 2rem;
}

.aboutinner {
    padding-bottom: 2rem;
}

.aboutinner h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 600;
}

.aboutinner h6 {
    font-size: 1.5625rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.aboutinner p {
    font-size: 1.125rem;
    color: #757575;
}

form.loginform .form-group input {
    height: 67px;
    border: 1px solid #B4B4B4;
    background: #F6F6F6;
    border-radius: unset;
}

form.loginform p a {
    color: #00ADEF;
    font-size: 1.125rem;
}

form.loginform h2 {
    color: #121213;
    font-size: 1.875rem;
    font-weight: 400;
    font-family: 'Jost';
}

form.loginform .themeBtn {
    padding: 0px 3rem;
    font-size: 16px;
    font-family: 'Jost';
}

form.loginform .form-group label {
    font-size: 1.125rem;
}

form.loginform p {
    color: #121213;
}

form.loginform {
    box-shadow: 0 3px 23px rgb(0 0 0 / 16%);
    padding: 4.5rem 2rem;
}

.contactinersec h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 600;
}

.modal .contactinersec h2 {
    font-size: 1.875rem;
}

.modal .contactinersec p {
    font-size: 1.0625rem;
}

.contactinersec h6 {
    font-size: 1.5625rem;
    font-weight: 400;
    color: #424143;
    font-family: 'Jost';
    margin-bottom: 2rem;
}

form.contactForm .btn {
    padding: 1rem 5rem;
}

.contactForm input,
.contactForm select {
    background: #F1F1F1;
    width: 100%;
    height: 50px;
    border: 1px solid #B5B5B5;
    border-radius: 5px;
    font-size: 1.1875rem;
    padding: 0 2rem;
    margin: 0 0 2rem;
}

.modal input,
.modal select {
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.uploadBox {
    background: #F8F8F8;
    width: 100%;
    height: 179px;
    border: 1px solid #B5B5B5;
    border-radius: 5px;
    font-size: 1.1875rem;
    padding: 2rem 2rem;
    margin: 0 0 2rem;
    resize: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal .modal-body {
    max-height: 750px;
    overflow-y: scroll;
}

.contactForm textarea {
    background: #F8F8F8;
    width: 100%;
    height: 179px;
    border: 1px solid #B5B5B5;
    border-radius: 5px;
    font-size: 1.1875rem;
    padding: 2rem 2rem;
    margin: 0 0 0rem;
    resize: none;
}

form.contactForm .form-group label {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'notoserif';
}

.socialsection h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

section.socialsection .socialLinks {
    flex-direction: inherit;
    /* justify-content: space-between; */
    position: unset;
    margin: 0 auto;
    justify-content: center;
}

section.socialsection .socialLinks li a {
    width: 193px;
    height: 184px;
    border-radius: 5px;
    font-size: 4rem;
    border: 1px solid #D1D1D1;
}

section.socialsection .socialLinks li:nth-child(5) a {
    background: #1BDFEE;
}

section.socialsection .socialLinks li:nth-child(6) a {
    background: #AB2222;
}

section.socialsection .socialLinks li:nth-child(7) a {
    background: #0DAAD2;
}

.socialsection {
    padding: 0 0 1rem 0;
}


/* faqSec Sec Css Start */

#accordion .card {
    border: none;
    /* border-bottom: 1px solid #DFDFE0; */
    background: transparent;
    border-radius: unset;
    padding: 0.4rem 0;
}

div#collapseOne {
    /* padding-bottom: 2rem; */
}

#accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden;
    border-bottom-left-radius: 0;
    font-size: 1.125rem;
    color: #000000;
    font-weight: 600;
    font-family: "notoserif";
    text-transform: capitalize;
}

#accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    width: var(--width);
    height: var(--height);
    margin-left: auto;
    border-radius: 50%;
    background: 000;
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
}

#accordion .card .btn-link i::before {
    content: "\f106";
}

#accordion .card .btn-link.collapsed i::before {
    content: "\f107";
}

#accordion .card .btn-link.collapsed i {
    color: #949494;
    height: 2rem;
    width: 2rem;
    font-size: 1rem;
}

#accordion .card+.card {
    margin-top: 0;
    /* padding: 1.2rem 0; */
}

#accordion .card .card-body {
    /* padding: 0rem 4rem 0.5rem 0rem; */
    padding: 15px 10px 0;
}

#accordion .card .card-body p {
    color: #5E5E5E;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
    line-height: 33px;
}

a.browse {
    font-size: 1.25rem;
    color: #000000;
    background: #F8F8F8;
    border-radius: 5px;
    border: 1px solid #9F9F9F;
    font-weight: 600;
    width: 253px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "notoserif";
}

.special {
    margin: 3rem 0 1rem;
    /* border-bottom: 1px solid #BFBFBF;
    padding-bottom: 20px; */
}

.special li a {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 600;
    font-family: "notoserif";
}

.special li+li {
    margin: 15px 0 0;
}

#accordion .card .card-body ul li a {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
}

#accordion .card .card-body ul li+li {
    margin: 5px 0 0;
}

section.productinner h6 {
    font-size: 1.5625rem;
    font-family: 'Jost';
    font-weight: 400;
    color: #424143;
    margin-bottom: 2rem;
}

section.productinner h3 {
    font-size: 3.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

h2.sectionHeading {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}


/* faqSec Sec Css End */


/*PRoduct Details*/

.Proreview h2 {
    text-align: left;
    margin: 1rem 0;
    font-size: 3rem;
}

.Proreview ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: #F7C00C;
    margin-bottom: 1rem;
}

.Proreview ul li span {
    color: #000;
    font-weight: 600;
    padding-right: 1rem;
}

.Proreview p {
    font-size: 1.75rem;
    color: #000;
}

.Proreview h5 {
    font-size: 2.1875rem;
}

.star {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.star li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

ul.star li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.star li span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    top: 7px;
    left: 8rem;
    height: 25px;
    width: 70%;
    border-radius: 10px 0 0 10px;
}

.star2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.star2 li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

.star2 li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.star2 li span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-color);
    top: 7px;
    left: 8rem;
    height: 25px;
    width: 10%;
    border-radius: 10px 0 0 10px;
}

.star3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.star3 li span::before {
    content: "";
    position: absolute;
    background: #F2F2F2;
    width: 80%;
    height: 25px;
    top: 7px;
    left: 8rem;
    border-radius: 10px;
}

ul.star3 li {
    margin: 0;
    color: #000;
    font-size: 1.875rem;
}

.startProduct ul {
    margin: 1.4rem 0;
}

.reviewSec {
    /* background: #fff; */
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #D2D2D2;
}

.Proreview {
    padding-bottom: 1rem;
}

.reviewImg {
    display: flex;
    align-items: center;
    margin: 4rem 0;
}

.content-wraper h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
}

.content-wraper {
    margin-left: 2rem;
}

.content-wraper h4 {
    margin: 0.9rem 0;
    font-size: 1rem;
    color: #726f6f;
    font-weight: 600;
}

.content-wraper span {
    margin-left: 10px;
    font-size: 0.95rem;
    color: #00ADEF;
    font-weight: 600;
}

.content-wraper p {
    font-size: 1rem;
}

.Proreview .row+.row {
    margin: 5rem 0;
}

.reviewSec textarea {
    width: 100%;
    height: 160px;
    padding: 1rem;
    background: #F8F8F8;
    border-color: #EBEBEB;
}

.wishlistPro {
    background: #f8f6f6;
    padding-top: 0;
}

.productSlider-for,
.productSlider-nav {
    overflow: hidden;
}

.productNav {
    background: #F3F3F3;
    padding: 1.5rem;
    /* border-radius: 15px; */
    border: 1px solid #D2D2D2;
}

.productNav figure {
    /* background: #FBFBFB; */
    /* border-radius: 10px; */
    /* padding: 1rem; */
    margin: 0.7rem 0;
    /* border: 1px solid #F3F3F3; */
}

ul.stckst li {
    font-size: 1.25rem;
    color: #00ADEF;
    font-weight: 600;
}

.productNav figure:hover {
    /* border: 1px solid var(--theme-color); */
}

.rating-box {
    display: flex;
    align-items: center;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 2.2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: gold;
}

.rating-box span {
    font-size: 1.3rem;
    color: #C8892C;
    font-weight: 500;
    padding-left: 0.5rem;
}

.prodtl-txt p {
    font-size: 1.125rem;
    color: #7e7e7e;
}

.quantitySec h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quantitySec .number {
    padding: 0.7rem;
    font-size: 1rem;
}

.quantitySec .number .minus {
    padding: 0.5rem;
}

.quantitySec .number .plus {
    padding: 0.5rem;
}

.quantitySec .number input {
    width: 100px
}

.number {
    background: #F7F6FB;
    padding: 1rem 0;
    border: 1px solid #CCCCCC;
    border-radius: 7px;
    width: 100%;
    color: #282828;
}

.number input {
    background: #F7F6FB;
    border: none;
    height: 2rem;
    width: 50px;
    text-align: center;
}

.number .minus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.number .plus {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.productNav figure img {
    width: 100%;
}

.btnn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.colorBox option {
    background: var(--color);
}


/*===========================================CheckOut 3 css statr=====================================*/

.check-out-form.check-out-3 .tabs-row {
    box-shadow: 7px 6px 15px 0px #d2d2d2;
    text-align: left;
}

.tabs-row {
    padding: 40px 30px;
    margin-top: 50px;
}

.check-out-form.check-out-3 .tabs-row .form-control {
    box-shadow: none;
}

.fields-row .form-control {
    height: 54px;
    padding-left: 14px;
}

.check-out-form.check-out-3 input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
}

.check-out-form.check-out-3 input[type="checkbox"]:checked+label:before {
    width: 20px;
}

.check-out-form.check-out-3 input[type="checkbox"]+label {
    padding-left: 55px;
}

.check-out-form.check-out-3 .checkbox {
    margin-top: 15px;
}

.mt-25 {
    margin-top: 25px !important;
}

.check-out-form.check-out-3 .checkbox h5 {
    font-size: 1.125rem;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: black
}

.check-out-form.check-out-3 .checkbox label {
    color: black;
    text-transform: lowercase;
}

.check-out-form label {
    text-transform: uppercase;
}

.shipping-billing-col ul li p a {
    color: #8f8f8f;
    text-transform: capitalize;
}

.numberone {
    margin: 0;
    display: flex;
}

.numberone .minus {
    /* float: left; */
}

.check-out-section .numberone .minus,
.plus {
    width: 40px;
    height: 40px;
    background: #ebebeb;
    border-radius: 0;
    padding: 0px 0px;
    /* border: 1px solid #e1e1e1; */
    display: flex;
    vertical-align: middle;
    text-align: center;
    color: #7a7a7a;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.detl-txt span {}

.numberone span {
    cursor: pointer;
}

.numberone input {
    height: 45px;
    border-radius: 0;
    border: 0;
    /* display: inline-block; */
    width: 45px;
    text-align: center;
    color: #808080;
    outline: none;
    /* float: left; */
}

.card-row .price {
    font-size: 1.125rem;
    color: #00ADEF;
}

.d-btn {
    border-radius: 5px;
    background-color: #00ADEF;
    font-size: 1.25rem;
    color: #ffffff;
    display: inline-block;
    padding: 16px 88px;
    text-transform: uppercase;
    transition: 0.7s;
}

.chkot-pag .primary-heading {
    margin-bottom: 20px;
}

.chkot-pag .check-out-form form {
    padding: 30px 0px;
}


.check-out-form .primary-heading {
    margin-bottom: 40px;
    font-size: 3.125rem;
    font-weight: bold;
    color: #323232;
    text-align: center;
}

.check-out-section input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    /* font: 14px/20px 'Open Sans', Arial, sans-serif; */
    color: #ddd;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.check-out-section input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #00ADEF;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

.check-out-form.check-out-3 input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
}

.check-out-form.check-out-3 input[type="checkbox"]:checked+label:before {
    width: 20px;
}

.check-out-form.check-out-3 input[type="checkbox"]+label {
    padding-left: 55px;
}

.check-out-section input[type="checkbox"] {
    display: none;
}

.check-out-section input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-out-section {
    padding: 4rem 0;
}

.takeContent {
    display: table;
    margin: 0 0 20px;
    font-size: 1.2rem;
    font-style: italic;
}
body.page-template-default.page.page-id-10.theme-segura-by-michelle.woocommerce-account.woocommerce-page.woocommerce-js.no-sidebar.wpb-js-composer.js-comp-ver-6\.7\.0.vc_responsive .woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
    position: absolute;
    right: 0.7em;
    top: 0;
    cursor: pointer;
}
/*===========================================CheckOut 3 css End=====================================*/


#menu-item-473:hover .dropdown-menu {
    display: block;
    padding: 10px;
}

#menu-item-473:hover .dropdown-menu .nav-link:hover::after {
    display: none;
}