* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

html body {
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

.nav {
    width: 100%;
    /* background: #4a98f7;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2); */
}

.nav,
.nav .nav-link {
    display: flex;
    align-items: start;
    margin: 0;
}

.nav .nav-link {
    column-gap: 20px;
    list-style: none;
}

.nav {
    justify-content: space-between;
}

.openSearch .nav-link a {
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s linear;

}

.search-icon {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

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

/* header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
} */

.topnav {
    background: #fff;
    padding: 5px 0;
    font-weight: 600;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid #ccc;
    z-index: 1;
    position: relative;
}

.topnav.hide {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.searchbox {
    width: 50%;
}

.emailbox {
    width: 50%;
    text-align: end;
}

.logosect1 {
    width: 20%;
}

.menubox {
    width: 60%;
}

.head-icon {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile {
    width: 50%;
}

.profile p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.adtocard,
.mobile-cart {
    width: 15%;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.adtocard i,
.mobile-cart i {
    font-size: 25px;
    color: #0560af
}

.adtocard .cart-count {
    position: absolute;
    top: 0;
    right: 3px;
    background: red;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-content: center;
    left: auto;
    bottom: auto;
}

.mobile-cart {
    display: none;
}

/* Dropdown styles */
.profile-dropdown {
    position: absolute;
    top: 99px;
    right: 115px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 120px;
    text-align: left;
    z-index: 100;
    border: 1px solid #26a5e8;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Add this class to show the dropdown */
.profile-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.profile-dropdown a {
    display: block;
    padding: 5px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.profile-dropdown a:last-child {
    border-bottom: none;
}

.profile-dropdown a:hover {
    background-color: #f0f0f0;
}

.profile-dropdown2 {
    display: none;
    border: 1px solid #0363aa;
    width: 100px;
    margin-left: 45px;
    padding: 4px 10px;
    border-radius: 4px;
}

.profile-dropdown2 a {
    display: block;
    color: #fff;
    font-size: 15px;
    text-align: start;
}

/* 
.profile-dropdown2 a:hover {
    color: blue;
} */


.dmail {
    font-size: 15px;
    color: #045fae;
    font-weight: 400;
}

.dmail i {
    font-size: 20px;
    color: #0560af;
    margin-right: 10px;
}


.searchInput {
    background: #fff;
    width: 100%;
    position: relative;
    border-radius: 5px;
}

.searchInput input {
    height: 38px;
    width: 100%;
    outline: none;
    border: 1px solid #095fa7;
    padding: 0 60px 0 10px;
    font-size: 14px;
    border-radius: 3px;
}

.searchInput .icon {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: #0560af;
    color: #fff;
    border: none;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 2px;
}

.menu-wrap {
    justify-content: flex-end;
}

.searchInput .resultBox {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.searchInput.active .resultBox {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
    position: absolute;
    background: white;
    border: 1px solid #f0f0f0;
    width: 100%;
    top: 110%;
    left: 0;
    z-index: 1110;
    border-radius: 0 0 5px 5px;
    text-align: start;
    font-size: 14px;
    font-weight: 400;
}

.resultBox li {
    padding: 8px 12px;
    cursor: pointer;
    display: none;
    border-bottom: 1px solid #0560af;
}

.searchInput.active .resultBox li {
    display: block;
}

.resultBox li:hover {
    background: #2269bb;

}

.resultBox li:hover a {
    color: #fff;
}


.btn-2 {
    width: 40px;
    height: 40px;
    background: #2269bb;
    border-radius: 3px;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    z-index: 1000;
    animation: pulse-border 2s infinite;
    border: 3px solid #27a5e8;
    z-index: 1;
}

.btn-2 i {
    font-size: 25px;
    color: #fff;
}

.btn-2:hover {
    cursor: pointer;
    color: #fff;
}



.navbarbox {
    padding: 5px 0;
    background: #fff;
    box-shadow: 0 0 2px 0 #ccc;
}

.navbarbox>.row {
    justify-content: space-between;
    padding: 0 12px;
}

.dlogo {
    width: 200px;
    height: auto;
    object-fit: contain;
}

/* Main Navbar */
.navwebste {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.navwebste li {
    margin-right: 10px;
}

.navwebste li a {
    position: relative;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 9px;
    text-transform: capitalize;
    display: inline-block;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.navwebste li a:hover {
    color: #04a5fa;
}

.navwebste li a:hover::after {
    width: 100%;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 999;
    font-size: 32px;
    text-align: center;
    color: #004880;
}

.menu-toggle,
.close-menu,
.profile-mobile {
    display: none;
}

.profile-mobile span {
    display: flex;
    align-items: center;
    color: #fff;
}

.profile-mobile p {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding-left: 15px;
    padding-top: 5px;
    margin: 0;
    text-align: left;
    cursor: pointer;
}

.frezer-export {
    margin-left: -3px;
    margin-right: -3px;
}

/********* banner start *********/
.banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/********* banner end *********/
.main-title h1,
.main-title h2,
.main-title h3,
.main-title h4,
.main-title h5,
.main-title h6 {
    color: #025196;
    font-size: 27px;
    text-align: center;
    margin-top: 60px;
    display: inline-block;
    position: relative;
    font-weight: 600;
}

.main-title {
    text-align: center;
}

.main-title h1::after,
.main-title h2::after,
.main-title h3::after,
.main-title h4::after,
.main-title h5::after,
.main-title h6::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #27a5e8;
    margin: 5px auto 0;
    width: 100%;
}



.hm-title p {
    margin-top: 15px;
    font-size: 13.5px;
    text-align: justify;
    letter-spacing: 0.5px;
}



/**************** Home First section Start ********************/
.main-title p {
    font-size: 13.5px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.main-box {
    width: 16.66%;
    padding: 3px;
}

.img-box h2,
.img-box h3,
.img-box h4,
.img-box h5,
.img-box h6 {
    font-size: 15px;
    height: 37px;
    font-weight: 500;
    margin-bottom: 3px;
    margin-top: 3px;
    color: #000;
    align-items: center;
    justify-content: center;
    display: flex;
    word-break: break-all;
}

.img-box {
    text-align: center;
    padding: 15px 5px 5px;
    background: linear-gradient(184deg, #e2eff2 0%, rgb(255, 255, 255) 100%);
    border: 1px solid #b9e2f8;
    border-radius: 2px;
}

.img-box img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: #fff;
}

.pamt-cn {
    margin-top: 60px;
}

.pym-box {
    width: 33.33%;
    padding: 5px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

.shpp {
    position: relative;
    text-align: center;
    padding: 10px 10px 10px 14px;
    border-radius: 5px;
    background: #f5f6f7;
    display: flex;
    flex: 1;
    height: inherit;
    flex-direction: column;
}

.shpp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    border-radius: 5px 0 0 5px;
    background: linear-gradient(to bottom, #055da7, #ffc905);
}

.payment-box {
    align-items: center;
}

.icon-box i {
    font-size: 50px;
    color: #0170c5;
}

.shpp h2,
.shpp h3,
.shpp h4 {
    font-size: 18px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: start;
}

.shpp p {
    font-size: 13.5px;
    color: #6b6b6b;
    font-weight: 300;
    text-align: start;
}

/**************** Home 1st section End ********************/
/**************** Home 2rd section start ********************/
.thr-box {
    width: 25%;
    padding: 3px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

.thr-img-con {
    text-align: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: flex;
    height: inherit;
    flex-direction: column;
    flex: 1;
}

.thr-img img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.thr-title h2 {
    color: #000;
}

.frz-btn {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.frz-btn .getQuote {
    color: #055da7;
    border: 1px solid #095fa7;
    border-radius: 2px;
    padding: 2px 8px;
    background: transparent;
    font-size: 14px;
    display: none;
}

.frz-btn .getQuote i,
.frz-btn .cata-btn a i {
    margin-right: 4px;
    font-size: 15px;
}

.frz-btn .cata-btn a {
    color: #95031f;
    border: 1px solid #95031f;
    border-radius: 2px;
    font-size: 14px;
    padding: 2px 8px;
    font-weight: 500;
}

.frz-btn button:hover,
.frz-btn .cata-btn a:hover,
.hv-btn button:hover {
    background-color: transparent;
}

.addtocard-details {
    background: #27a5e8;
    font-size: 15px;
    border-radius: 3px;
    padding: 6px 10px;
    color: #fff;
}

.addtocard-details a {
    color: #fff;
}

.quantity {
    display: inline-flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
}

.quantity .minus,
.quantity .plus {
    color: #2d2d2d;
    font-size: 14px;
    transition: background-color .2s;
    box-shadow: none;
    border: 0;
    pointer-events: all;
    cursor: pointer;
    font-family: 'poppins';
    background-color: transparent;
}

.quantity .minus:hover,
.quantity .plus:hover {
    background-color: transparent;
}

.quantity .input-box {
    width: 40px;
    padding: 4px 10px;
    font-size: 16px;
    text-align: center;
    height: auto;
    border: 1px solid #e5e5e5;
    border-top: 0;
    border-bottom: 0;
    -moz-appearance: textfield;
    font-family: 'poppins';
}

.frz-btn .add-to-cart .addtoCartDesp {
    border: 1px solid #0060b6;
    border-radius: 2px;
    font-size: 17px;
    color: #0060b6;
    margin-right: 10px;
    padding: 0px 5px;
    background: transparent;
}

.add-to-cart span {
    color: #0060b6;
    font-weight: 600;
}



/**************** Home 2rd section end ********************/

/**************** Home 3rd section Start ********************/
.labo-box {
    width: 25%;
    padding: 3px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

.freezerlab {
    position: relative;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    height: inherit;
    flex-direction: column;
    flex: 1;
    padding-bottom: 18px;
    border: 1px solid #b9e2f8;
}

.hv-btn {
    position: absolute;
    top: 40px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.freezerlab:hover .hv-btn {
    opacity: 1;
    transform: translateX(0);
}

.hv-btn a,
.hv-btn button {
    background: transparent;
    border: none;
    padding: 2px 5px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.hv-btn a {
    color: #95031f;
    border: 1px solid #95031f;
}

.hv-btn button {
    color: #055da7;
    border: 1px solid #095fa7;
}

.hv-btn button i,
.hv-btn a i {
    font-size: 16px;
}

.labo-img-con {
    padding: 10px;
    border-radius: 3px;
    display: flex;
    height: inherit;
    flex-direction: column;
    flex: 1;
    padding-bottom: 15px;
    border: 1px solid #b9e2f8;
}

.labo-img {
    text-align: start;
    overflow: hidden;
}

.labo-img img {
	width: 180px;
	height: 180px;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.labo-img img:hover {
    transform: scale(1.1);
}

.labo-title h2,
.labo-title h3,
.labo-title h4,
.labo-title h5,
.labo-title h6 {
    color: #035795;
    font-family: "Poppins", serif;
    font-size: 16px;
    font-weight: 600;
    text-align: start;
}

.feature-ul {
    max-height: 88px;
    scrollbar-width: thin;
    scrollbar-color: #ccc;
}

.feature-ul {
    max-height: 90px;
    scrollbar-width: thin;
    scrollbar-color: #daecf6 #ccc;
    overflow-y: auto;
}

.feature-ul li {
    color: #000;
    font-size: 13px;
    line-height: 25px;
    text-align: left;
    font-weight: 300;
    border-bottom: 1px solid #e2eff8;
}

.feature-ul li span {
    font-weight: 500;
    color: #000;
    font-size: 13px;
}

.star i {
    cursor: pointer;
    font-size: small;
    color: #fccb06;
    font-size: 11px;
}

/**************** Home 3rd section End ********************/
/********************* Category start*********************/
.cagry-box {
    width: 16.66%;
    padding: 3px;
}

.cagry-img {
    text-align: center;
    padding: 5px;
    box-shadow: 0 0 10px #dfe0f3;
    border: 2px solid #ceddf3;
}

.cagry-img h2,
.cagry-img h3,
.cagry-img h4,
.cagry-img h5,
.cagry-img h6 {
    font-size: 15px;
    height: 37px;
    font-weight: 700;
    margin-top: 3px;
    margin-bottom: 3px;
    color: #2c2c2c;
    align-items: center;
    justify-content: center;
    display: flex;
}

.cagry-img img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.cagry-box span {
    font-size: 12px;
    color: #6d6d6d;
}

/********************* Category End*********************/

/********************* Sub-Category start********************/
.secta {
    width: 100%;
    margin-bottom: 12px;
}

.secta a {
    border: 1px solid #095fa7;
    padding: 4px 10px;
    color: #111;
    font-weight: 500;
    display: inline-block;
    letter-spacing: 0.6px;
    border-radius: 4px;
}

.secta h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.bi-caret-up-fill::before {
    content: "\f235";
    padding: 8px;
}

/********************* Sub-Category ends********************/

/******************** Section start ************************/
.sec-box1 {
    width: 25%;
}

.sec-box2 {
    width: 75%;
}

.sect-con {
    width: 33.33%;
    padding: 5px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

.filter-check-wrap {
    padding: 5px 10px;
}

.filter-ss {
    margin-top: 5px;
    border-radius: 5px;
}

.filter-ss h2 {
    padding: 7px 10px;
    font-size: 15px;
    background: #d7e7f5;
    color: #002855;
    border-radius: 2px;
}

.filter-list {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 2px;
}

.sub-sec-tog .flt-ttl {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    background: #f5f4f1;
    padding: 6px 10px;
    color: #022143;
    letter-spacing: 0.7px;
}

.fil-chck {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 5px;
}

input[type="checkbox"] {
    width: 35px;
    /* height: 5px; */
    appearance: none;
    -webkit-appearance: none;
    background: #cfcfcf;
    outline: none;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    border: 1px solid #095fa7;
    padding: 7px;
}

input:checked[type="checkbox"] {
    background: #095fa7;
}

input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 9px;
    /* border-radius: 50%; */
    top: 7px;
    left: 2px;
    transform: translateY(-50%) scale(1.1);
    background: #fff;
    transition: 0.5s;
}

input:checked[type="checkbox"]::before {
    left: 20px;
}

.fil-chck span {
    font-size: 13px;
    text-align: start;
    margin-left: 10px;
}


/******************** Section end ************************/

/****************** Product Deatils start *****************/
.product {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.product-images {
    flex: 1;
    min-width: 300px;
}

.main-image-box {
    position: sticky;
    top: 10px;
    left: 0;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pro-title h1 {
    font-size: 25px;
    font-weight: 600;
    text-align: start;
    color: #055da7;
}

.pro-title p {
    font-size: 14px;
    text-align: justify;
}

.carousel {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.carousel img {
    flex: 0 0 auto;
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #eeeded;
    border: none;
    padding: 0 8px;
    cursor: pointer;
    z-index: 2;
    font-size: 18px;
    color: #1e446f;
    border-radius: 50%;
}

.carousel-btn.prev {
    left: -15px;
}

.carousel-btn.next {
    right: -15px;
}

.product-details {
    flex: 2;
    min-width: 300px;
    padding: 0 20px;
}

.product-dl-btn {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.product-dl-btn button {
    background-color: #004880;
    color: white;
    border: none;
    font-size: 15px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 6px 10px;
}

.product-dl-btn button:hover {
    background-color: #0060b6;
}

.product-dl-btn .add-to-cart {
    background-color: #95031f;
    color: #fff;
    border: 1px solid #95031f;
    font-size: 15px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

.product-dl-btn .add-to-cart:hover {
    background-color: #95031f;
    color: #fff;
}

.spec-table,
.prtable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.spec-table h2,
.spec-table h3,
.spec-table h4,
.spec-table h5,
.spec-table h6 {
    font-size: 20px;
    margin-top: 20px;
    color: #0762b0;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 0 2px #27a5e8;
    width: 100%;
    padding: 7px 10px;
    margin-top: 35px;
}

.spec-table td {
    border: 1px solid #d1daf0;
    padding: 6px;
    font-size: 14px;
}

.spec-table tr:nth-child(even) td {
    background-color: #efeff1;
}

.features-section ul {
    padding: 10px 15px;
    margin: 0;
    position: relative;

}

.spec-table ul li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #0d8fed;
    margin-right: 10px;
    vertical-align: middle;
}

.features-section ul li {
    margin-bottom: 6px;
    color: #333;
    font-size: 12.5px;

}

.spec-table p,
.spec-table li {
    font-size: 14px;
}

.prtable {
    width: 100%;
}

.prtable .thd {
    font-weight: 500;
    letter-spacing: 0.5px;
}


/****************** Product Deatils start *****************/

/******************** catalog start *********************/
.cata-box-wrap {
    width: 33.33%;
    padding: 3px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

.cata-box {
    padding: 10px;
    border: 1px solid #cbdafc;
    display: flex;
    flex-direction: column;
    height: inherit;
    flex: 1;
    border-radius: 4px;
}

.cata-title h2,
.cata-title h3,
.cata-title h4,
.cata-title h5,
.cata-title h6 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 3px;
    margin-bottom: 3px;
    color: #003fa7;
    align-items: center;
    justify-content: start;
    display: flex;
}

.cata-des-wrap {
    border-top: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.cata-img-wrap img {
    width: 100%;
    height: 130px;
    object-fit: contain;
}

.cata-popup-wrap .modal-dialog {
    max-width: 680px;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.cata-sub-list {
    height: 100px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #4795ec #f0f0f0;
}

.sub-cata-btn {
    background: transparent;
    border: none;
    font-size: 14px;
    text-align: start;
}

.sub-cata-btn:hover::before {
    color: #003fa7;
}

.popu-wrap .modal-header {
    justify-content: center;
    padding: 10px;
}

.cata-popup-wrap .modal-body {
    padding: 7px 10px;
}

.cata-pop-wrap {
    height: 150px;
    overflow-y: auto;
    scrollbar-width: none;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
    background: #095fa7;
}

.cata-pop-wrap ul {
    display: flex;
    flex-wrap: wrap;
}

.cata-pop-wrap ul li {
    width: 50%;
}

.pop-cata-btn {
    color: #015bb3;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    margin: 0px;
    background: transparent;
    display: block;
    text-align: left;
    border: 1px solid #015bb3;
    border-radius: 3px;
    transition: 0.5s all;
    padding: 6px 10px 6px 29px;
    margin: 15px 7px 0;
    background-color: transparent;
    position: relative;
    letter-spacing: 0.3px;
}

.pop-cata-btn::before {
    font-family: bootstrap-icons;
    font-size: 16px;
    transition: 0.5s all;
    position: absolute;
    top: 6px;
    left: 7px;
    right: auto;
    bottom: auto;
    content: "\f63e";
}

.grid-link__title h2,
.grid-link__title h3,
.grid-link__title h4,
.grid-link__title h5,
.grid-link__title h6 {
    font-size: 15px;
}

.popu-wrap .modal-title {
    font-weight: 700;
    line-height: 100%;
    display: block;
    position: relative;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-size: 23px;
    text-align: center;
    letter-spacing: 0.3px;
    color: #fff;
}

.popu-wrap .btn-close {
    background: #ed223d;
    opacity: 1;
    border: 1px solid #ed223d;
    border-radius: 50%;
    position: absolute;
    left: auto;
    right: -13px;
    bottom: auto;
    top: -9px;
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.pop-cata-btn:hover {
    background: #015bb3;
    color: #fff;
}

.popu-wrap .btn-close:hover {
    background: #fff;
    color: Red;
}

/******************** catalog end *********************/

/******************** About us start *********************/
.aboutcnt-wr .abtit {
    font-size: 17px;
    color: #0e52a8;
    font-weight: 500;
    display: block;
}

.aboutcnt-wr p {
    font-size: 13.5px;
    text-align: justify;
    letter-spacing: 0.5px;
}

/******************** About us start*********************/

/**************************** Contact us Start **************************/
.contact-form {
    box-shadow: 0 0 10px #ccc;
    padding: 20px 40px;
    border-radius: 4px;
}

.map {
    width: 100%;
    height: 250px;
    border: 2px solid #004080;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.contact-form h2 {
    text-align: start;
    padding: 10px 0;
    font-size: 17px;
    color: #0560af;
}

.info-box {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.info-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.info-item p {
    color: #555;
    line-height: 1.5;
}

.contact-form form {

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

input,
textarea {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    outline: none;
}

textarea {
    resize: none;
    height: 100px;
}

.captcha {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.captcha-box {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cont-btn, .cont-btn:hover {
	width: 10%;
	padding: 5px 10px !important;
	background-color: #24a8ee;
	color: #fff;
	border: none;
	padding: 0;
	border-radius: 2px;
	cursor: pointer;
	font-size: 15px;
}

.get-tuch {
    width: 33.33%;
    padding: 25px 15px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

.contaddress, .contawebsite, .contaemail {
	border: 1px solid #e6e6e6;
	padding: 20px 10px 35px;
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(134, 120, 120, 0.05);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.get-tuch span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #003fa7;
    padding-left: 0;
    position: relative;
}

.get-tuch .contaddress span::before {
    position: static;
    font-size: 30px;
    margin-bottom: 6px;
    color: #0560af;
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
}


.get-tuch .contaemail span::before {
    position: static;
    font-size: 30px;
    margin-bottom: 6px;
    color: #0560af;
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
}

.get-tuch .contawebsite span::before {
    position: static;
    font-size: 30px;
    margin-bottom: 6px;
    color: #0560af;
    content: "\f0ac";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
}

.get-tuch p,
.get-tuch a {
    margin: 0;
    font-size: 14px;
    color: #333;
    word-wrap: break-word;
    text-align: center;
}

/**************************** Contact us Ends **************************/
/*******************************Compare page CSS Start*******************************/
.compare-page {
    padding-top: 20px;
}

.compare-page .table th {
    color: #0558b6;
    font-size: 15px;
    line-height: 160%;
    margin: 0 0;
    padding: 5px 10px;
    font-weight: 400;
    font-weight: 500;
}

.compare-page .table>tbody>tr>td,
.compare-page .table>tbody>tr>td a {
    color: #333333;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    font-weight: 500;
    padding: 5px 10px !important;
}

.compare-page .table>tbody>tr>td a {
    padding: 0 !important;
}

.compare-cart-btn.addToCartBtn {
    background: #f49149;
    background-color: #f49149;
    border-radius: 20px;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    line-height: 100%;
    padding: 8px 15px 8px 15px;
    font-size: 13px;
    border: 1px solid #33333361;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.3px;
}

.compare-cart-btn.addToCartBtn:hover {
    background: transparent;
    color: #333;
    border-color: #333;
}

.cart-compare>div {
    text-align: center;
}

.compare-page .trash_icon {
    position: absolute;
    top: 10px;
    left: auto;
    right: 10px;
    bottom: auto;
}

.compare-page .trash_icon .remove-compare1 {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    color: red;
    width: 20px;
    height: 20px;
}

.compare-page .trash_icon .remove-compare1::before {
    font-size: 15px;
    transition: 0.5s all;
    line-height: 100%;
    font-family: bootstrap-icons;
    font-weight: 400;
    content: "\f78b";
}

.table,
td,
th {
    border: 1px solid #5f6788;
    margin-top: 5px;
}

.compare-page .table>tbody>tr>td a .featured-image {
    height: 120px;
}

.gtqtbrn {
	border: 1px solid #25a8ed;
	padding: 3px 10px;
	background: #25a8ed;
	color: #fff;
}

/*******************************Compare page CSS End*******************************/
/**************************** single-catalogs start **************************/
.body1_part1,
.body2,
.body3 {
    box-shadow: 0 0 10px #faedc0;
    margin-bottom: 10px;
    border: 1px solid #c8ddf5;
}

.cat_mtop {
    margin-top: 50px;
}

.catalog_body {
    max-width: 700px;
    height: auto;
    margin: auto auto 50px;
    background-color: #fff;
}

.download_box {
    padding-left: 50px;
    width: 350px;
    height: 0;
    border-radius: .2rem;
    margin: 10px 0 30px;
}

.download_btn,
.download_btn:hover {
    background-color: #0963b0;
    border: none;
    color: #fff;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 17px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px !important;
}

.catalog_head,
.check_icon,
.download_1,
.fa-chevron-circle-right {
    color: #2f8e94
}

.download_1 {
    font-size: 17px;
    padding-top: 25px
}

.text-name h1 {
    margin-bottom: 0
}

.body1_part1 {
    height: 840px;
    position: relative
}

.catalog_cover {
    background-image: url(../images/catalog-bg.png);
    background-size: cover;
    max-width: 100%;
    height: 840px;
    margin: auto
}

.catalog_logo {
    width: 30%;
    float: right;
    margin: 30px 30px 0 0
}

.catalog_img {
    width: 45%;
    margin-top: 50px;
    vertical-align: middle
}

.catalog_head {
    font-size: 32px;
    text-shadow: 1px 0 #5f6788;
    font-weight: 700;
    margin: 60px 30px 0 20px;
    line-height: 49px
}

.catalog_contact {
    color: #272727;
    text-shadow: 1px 0 #5f6788;
    margin-top: 15px;
    margin-left: 15px;
    font-weight: 100;
    text-align: left
}

.body2,
.body3 {
    height: auto
}

.body_center {
    margin: 0 25px
}

.catalog_subhead {
    color: #1a63be;
    font-size: 21px;
    font-weight: 700;
    padding: 40px 0 0 10px;
}

.catalog_text {
    margin: 0 10px;
    line-height: 1.6rem;
    font-size: 13.5px;
    text-align: justify;
}

.table,
td,
th {
    border: 1px solid #5f6788;
    margin-top: 5px
}

.mobile_bottom {
    padding-bottom: 15px
}

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

.catalog_footerlog {
    width: 25%;
    margin-top: 230px
}

.table>tbody>tr>td {
    font-size: 13.5px;
    line-height: 22px;
    padding: 5px !important;
    text-align: start;
    font-weight: 300;
}

.single-catalog .text-center h1 {
    font-family: "Noto Sans", sans-serif;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    display: block;
    letter-spacing: 0.3px;
    color: #025196;
    margin-bottom: 10px;
}

.single-catalog .download_btn,
.download_btn:hover {
    padding: 7px 22px;
    font-size: 15px;
    margin-top: 10px;
    margin: 10px 0 30px !important;
}

.single-catalog .catalog_footerlog {
    width: 30%;
    margin-top: 50px;
    margin-bottom: 10px;
}

.single-catalog .mobile_bottom {
    padding-bottom: 30px !important;
}

.single-catalog .catalog_head {
    font-size: 24px;
    line-height: 130%;
}

.single-catalog>.row {
    display: flex;
}

.catalog_head,
.check_icon,
.download_1,
.fa-chevron-circle-right {
    color: #1a63be;
    font-weight: 600;
    text-shadow: none;
}

html .container.single-catalog a {
    display: unset;
    text-shadow: none;
}

.mobile_bottom a,
.catalog_contact a {
    color: black;

}

li.catalog_text {
    position: relative;
    padding-left: 0;
}

/**************************** single-catalogs end ****************************/

/*******************************Terms page CSS Start*******************************/
.terms-head {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    color: #005aa5;
    padding-top: 10px;
}

.content-con p {
    font-size: 14px;
}

.content-con p.hil {
    padding-left: 15px;
    position: relative;
}

.content-con p.hil::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #23a6ea;
    position: absolute;
    left: 0;
    border-radius: 2px;
    top: 7px;
}

.content-con p.hil span {
    font-weight: 600;
}

/*******************************Terms page CSS End*******************************/

/*******************************Sitemap page CSS Start*******************************/
.indian {
    color: #2f8e94;
    font-size: 30px;
    font-weight: 700
}

.heating {
    color: #2e2d2d;
    font-size: 30px;
    font-weight: 700
}

.sitemap ul > li > a.l0bg {
	background: #045fae;
}

.l1bg {
	background-color: #25a7eb !important;
}

.sitemap ul>li>a.l2bg {
    background-color: #0155b5 !important;
    color: #fff;
}

.sitemap ul {
    list-style: none;
    padding-left: 20px;
    margin: 0
}

.sitemap ul>li {
    border-left: solid #efefef 2px;
    padding-left: 25px;
    font-size: 14px;
}

.sitemap ul>li>a {
    display: inline-block;
    max-width: 500px;
    padding: 5px 10px;
    background: #047285;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    text-overflow: ellipsis;
    margin: 5px 0;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
    position: relative;
    font-weight: 500;
    font-size: 14px;
}

.sitemap ul>li>a:hover {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5)
}

.sitemap ul>li:before {
    content: "" !important
}

.sitemap ul>li>a::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 25px;
    background: #efefef;
}

/*******************************Sitemap page CSS End*******************************/

/************************** Footer Start ************************/
.newletter form {
    position: relative;
}

.newletter span {
    font-size: 18px;
}

.newletter input {
    width: 100%;
    padding: 10px;
    background: #fff;
    border-radius: 2px;
    font-size: 14px;
    outline: none;
    border: 1px solid #0560af;
    margin-top: 10px;
}

.newletter input[type="submit"] {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: #27a5e8;
    color: #fff;
    text-transform: capitalize;
    cursor: pointer;
    padding: 10.5px 14px;
    border-radius: 0;
    border: none;
}

/* Footer Container */
.footer-con {
    margin-top: 100px;
    background: #f4f4f4;
    position: relative;
    padding: 60px 0 40px;
    border-top: 5px solid #27a5e8;
}

/* Individual Footer Section */
.sin-footer {
    width: 25%;
    float: left;
}

.sin-footer img {
    width: 210px;
    height: auto;
    object-fit: contain;
}

.sin-footer p {
    padding-top: 10px;
    font-size: 14px;
    color: #222;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-list a,
.cond a,
.add a {
    color: #111;
    font-size: 14px;
    text-decoration: none;
}

.footer-list a:hover {
    color: #095fa7;
    transition: 0.5s;
}

/* Headings */
.sin-footer .hd {
	font-size: 20px;
	font-weight: 600;
	color: #095fa7;
}

.hd ::before {
    content: "";
    position: absolute;
    width: 45px;
    height: 2px;
    background-color: #ffd00d;
    bottom: 0;
}

/* Contact Info */
.sin-footer .add {
	font-weight: 400;
	display: flex;
	margin-bottom: 10px;
	font-size: 14px;
	align-items: center;
}
.add span {
    color: #fff;
    font-size: 20px;
    border: 1px solid #27a5e8;
    padding: 2px 8px;
    background: #27a5e8;
    border-radius: 3px;
    margin-right: 10px;
}

/* Bottom Footer */
.booter-bottom {
    background: #111;
    padding: 10px 0;
    color: #fff;
    font-size: 13px;
}

.booter-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

/* Utility Classes */
.fr {
    margin-top: 20px;
}

/************************** Footer Start ************************/
.back-to-top {
    position: fixed;
    right: 3px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    border: 2px solid #27a5e8;
    border-radius: 4px;
    background: #27a5e8;
    color: #fff;
    cursor: pointer;
    text-align: center;
    animation: pulse-border 2s infinite;
    transition: transform 0.3s;
}

.back-to-top:hover {
    transform: scale(1.1);
}

@keyframes pulse-border {
    0% {
        border-color: #0862b0;
    }

    50% {
        border-color: #27a5e8;
    }

    100% {
        border-color: #0862b0;
    }
}

/************* back to top  start**************/
.breadcrumb-item a {
    color: #6d6b6b;
}

.breadcrumb-item.active {
    color: #095fa7;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: none !important;
}

.breadcrumb {
    padding: 7px 10px;
    font-size: 13px;
    border-bottom: 1px solid #f1f1f1;
}


.compare .cpp {
    padding: 0;
    background: transparent;
    border: none;
    overflow: hidden;
}

.compare label.action {
    position: relative;
    pointer-events: all;
    cursor: pointer;
    height: 25px;
    width: 25px;
    display: block;
    background: #2269bb;
    border-radius: 50%;
}

.compare label.action input.check-hidden {
    height: 25px;
    width: 25px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: all;
}

.compare label i::before {
    content: "\2b";
    font-family: bootstrap-icons;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    color: #fff;
    line-height: 100%;
    position: absolute;
    right: 5px;
    left: auto;
    bottom: auto;
    top: -4px;
}

.compare label input.check-hidden:checked+i::before {
    content: "\f272";
    font-size: 20px;
    top: 3px;
    right: 3px;
}

.cmpthbtn .compare-section .compare_btn {
	line-height: 30px;
	padding: 0 5px;
	color: #fff;
	z-index: 9;
	border: 1px solid #1e5192;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 3px;
	font-size: 14px;
	position: static;
	background: #25a9ee;
	box-shadow: none;
	letter-spacing: 0.3px;
}

.cmpthbtn {
    position: fixed;
    top: 152px;
    left: auto;
    right: 15px;
    bottom: auto;
    z-index: 999;
}

.modal-footer {
    border-top: none;
    padding: 0 11px 10px;
}

.catalog-header p {
    color: #fff !important;
    font-size: 19px !important;
    font-size: 600 !important;
}

.catalog-header {
    background: #0560af;
    padding: 5px 10px;
}

.get-qiote-btn {
    position: relative;
    background: red;
    color: #fff !important;
    border-radius: 50%;
}

#exampleModalLabel {
    color: #002855;
}

.modal-footer button {
    padding: 3px 15px;
    background: #004080;
    color: #fff;
    border-radius: 2px;
    font-size: 13px;
    border: none;
}

.modal-footer button:hover {
    background: #004880;
    color: #fff;
}

.form-control {
    font-size: 14px;
    border-left: 2px solid #27a5e8;
    border-radius: 3px;
    border-right: 2px solid #27a5e8;
    margin-bottom: 5px;
}

/* search */

.search-title h2,
.search-title h3,
.search-title h4,
.search-title h5,
.search-title h6 {
    color: #0e7b9f;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0px;
    /* background: #f6f3fb; */
    padding: 10px 11px;
    /* border-bottom: 2px solid #6838c15e; */
    text-decoration: none;

}

.specification-list {
    padding-left: 13px;
}

.search-inner {
    border: 1px solid #5b677854;
    padding-bottom: 15px;
}

.sarch-image img {
    margin-top: 18px;
    width: 134px;
    margin-bottom: 7px;
}

.sarch-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.search-box {
    width: 20%;
    padding: 0px 6px;
    margin-bottom: 13px;
}

.search-inner a {
    text-decoration: none;
}

.specification-list3 {
    padding-left: 13px;
    scrollbar-width: thin;
    scrollbar-color: #7d89ab #fff;
    height: 61px;
    margin-bottom: 0px;
    list-style: none;
    padding-bottom: 5px;
    overflow-y: auto;
}

.search-title1 {
    color: #0e7b9f;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0px;
    /* background: #f6f3fb; */
    padding: 10px 10px;
    /* border-bottom: 2px solid #6838c15e; */
    text-decoration: none;

}

.specification-label {
    font-weight: 600;
    color: black;
    font-size: 12.5px;
}

.airborne-specifications .specification-item {
    font-size: 12.5px !important;
}

.faq-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-list {
    width: 50%;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
}

.faq-question {
    font-size: 16px;
    font-weight: 500;
    color: #095fa7;
}


.lab-title h1,
.lab-title h2,
.lab-title h3,
.lab-title h4,
.lab-title h5,
.lab-title h6 {
    font-size: 28px;
    text-align: start;
    margin: 55px 0 3px;
    color: #e77c32;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
}

.ecomm-title h1,
.ecomm-title h2,
.ecomm-title h3,
.ecomm-title h4,
.ecomm-title h5,
.ecomm-title h6 {
    font-size: 28px;
    text-align: center;
    margin: 50px 0 10px;
    color: #e77c32;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
}

.wrapper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.wrapper {
    width: 420px;
    color: #025196;
    border: 1px solid #025196;
    border-radius: 10px;
    padding: 30px 40px;
    text-align: center;
}

.wrapper h1 {
    font-size: 27px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 35px;
}

.wrapper .input-box {
    width: 100%;
    height: 40px;
    margin: 8px 0;
    position: relative;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 1px solid #9bc0fb;
    border-radius: 4px;
    font-size: 14px;
    color: #0543a8;
    padding: 0 33px 0 20px;
}

.input-box input::placeholder {
    color: #333;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.wrapper .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: 15px 0;
}

.remember-forgot label input {
    accent-color: #0543a8;
    margin-right: 6px;
}

.remember-forgot a {
    color: #555;

}

.remember-forgot a:hover {
    color: #0543a8;
}

.wrapper .login-btn {
    width: 50%;
    height: 40px;
    background: #25a6ea;
    border: none;
    outline: none;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    margin-top: 10px;
}

.wrapper .register-link {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

.wrapper .register-link p a {
    color: #0543a8;
    text-decoration: none;
    font-weight: 700;
}

.wrapper .register-link p a:hover {
    color: #333;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-box {
    width: 40px;
    height: 50px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.otp-box:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/****************************** Tracking Page CSS Start*******************************/

.title-wrap h1,
.title-wrap h2,
.title-wrap h3,
.title-wrap h4,
.title-wrap h5,
.title-wrap h6 {
    font-size: 30px;
    font-weight: 600;
    color: #e77c32;
    margin: 0;
}

.title-wrap {
    display: block;
    padding-bottom: 20px;
}

.track-order-box {
	border: 1px solid #27a6e9;
	padding: 0 0 30px;
	border-radius: 5px;
}

.track-order-box .tracking-id {
	padding: 15px;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	background: transparent;
	color: #025196;
	border-bottom: 1px solid #27a6e9;
}

.track-order-box .tracking-id span {
    color: #27a6e9;
}

.tracking-det {
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.tracking-det div {
    font-size: 15px;
    color: #959595;
}

.tracking-det div span {
    color: #333;
    font-size: 16px;
}

.track-order-box {
    max-width: 1100px;
    margin: 0 auto 40px;
}

/* Tracking Section CSS Start*/
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.10rem;
}

.card-header:first-child {
    border-radius: calc(0.37rem - 1px) calc(0.37rem - 1px) 0 0;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.track {
    position: relative;
    background-color: #ddd;
    height: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
    margin-top: 35px;
}

.track-icon {
    position: relative;
    height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
    margin-top: 35px;
}

.track .step,
.track-icon .step {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 25%;
    margin-top: -18px;
    text-align: center;
    position: relative;
}

.track .step.active::before {
	background: #27a6e9;
}

.track .step::before {
    height: 5px;
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 18px;
}

.track .step.active .icon {
    background: #27a6e9;
    color: #fff;
}

.track .icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: relative;
    border-radius: 100%;
    background: #ddd;
}

.track-icon .icon i {
	font-size: 30px;
	color: #0560af;
}

.track .step.active .text {
    font-weight: 400;
    color: #959595;
    font-size: 14px;
}

.track .text {
    display: block;
    margin-top: 7px;
    font-size: 14px;
}

.itemside {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.itemside .aside {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.img-sm {
    width: 80px;
    height: 80px;
    padding: 7px
}

ul.row,
ul.row-sm {
    list-style: none;
    padding: 0;
}

.itemside .info {
    padding-left: 15px;
    padding-right: 7px;
}

.itemside .title {
    display: block;
    margin-bottom: 5px;
    color: #212529;
}

p {
    margin-top: 0;
}

.order-card .track-div {
    display: none;
}

.order-card .track-div.tracking-show {
    display: block;
    padding: 0 30px;
}

.Tracking-section .track-order .track:first-child {
    margin-top: 50px;
}

.order-table {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-card,
.order-title {
    border-bottom: 1px solid #dee2e6;
}

.order-card.tracking-show {
    background: #e8e8e85e;
}

.order-card.tracking-show>.order-table {
    background: #fff;
}

/* Tracking Section CSS End*/

/****************************** Tracking Page CSS End*******************************/
/****************************** My Account Page CSS Start *******************************/
.acount-boder {
    border: 1px solid #ccc;
    padding: 20px 15px;
    border-radius: 4px;
}

.prfi-img {
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 50%;
    background: #e4e6e7;
    overflow: hidden;
    margin: 0 auto;
}

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

.accntu-page .ac-username {
    color: #333;
    font-size: 16px;
    padding: 10px 0 3px 0;
    font-weight: 700;
    margin: 0;
    display: block;
    text-align: start;
    letter-spacing: 0.4px;
}

.accntu-page .ac-Mail {
    color: #858788;
    font-size: 13px;
    padding: 0;
    font-weight: 400;
    margin: 0;
    display: block;
    text-align: start;
}

/* .accntu-page .butn-tab {
	border: 1px solid #0543a8;
	padding: 30px 15px 10px;
	border-radius: 4px;

} */
.accntu-page {
    padding: 50px 0;
}

.img-profile-ud {
    padding-bottom: 15px;
}

.accntu-page .myaccount-man-btn {
	border: 1px solid #27a6e9;
	margin-bottom: 10px;
	color: #333;
	font-size: 15px;
	padding: 7px 8px 7px 10px;
	position: relative;
	text-align: left;
	text-decoration: none;
	border-radius: 5px;
	width: 100%;
}

.accntu-page .myaccount-man-btn.active {
	background: #27a6e9;
	color: #fff;
}

.accntu-page .tab-content {
    border: 1px solid #27a6e9;
    border-radius: 4px;
}

.accntu-page .myacnt-heading {
    padding: 10px;
    border-bottom: 1px solid #27a6e9;
    padding-left: 20px;
}

.myacnt-heading h1, .myacnt-heading h2, .myacnt-heading h3, .myacnt-heading h4, .myacnt-heading h5, .myacnt-heading h6, .myacnt-heading p {
	color: #025196;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	font-family: "Mulish", sans-serif;
}

.accntu-page .cad-body {
    padding: 30px 15px 30px;
}

.accntu-page .cad-body p {
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 120%;
    padding: 0;
    font-weight: 400;
    margin: 0;
}

.accntu-page .cad-body form {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}

.accntu-page .cad-body .form-group {
    width: 30%;
    padding: 0 10px 20px;
    position: relative;
}

.accntu-page .cad-body p a {
    color: #0543a8;
    font-weight: 600;
}

.accntu-page .cad-body .form-group input.form-control {
    padding: 0 10px;
    height: 35px;
    font-size: 14px;
}

.accntu-page .cad-body .form-group input.form-control {
    padding: 0 10px;
    height: 35px;
    font-size: 14px;
    box-shadow: none;
    line-height: 120%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.accntu-page .cad-body .Submit {
    width: 100%;
}

.accntu-page .cad-body .Submit .btn {
	background: #27a6e9;
	color: #fff;
	border-radius: 4px;
	line-height: 35px;
	padding: 0 15px;
	font-size: 16px;
	font-weight: 500;
	margin: 0 10px;
	border: 1px solid #27a6e9;
	transition: 0.5s all;
}

.accntu-page .cad-body .Submit .btn:hover {
	background: transparent;
	color: #27a6e9;
}

.accntu-page .ordr-card .trck-btn a:hover,
.accntu-page .cad-body .Edit-btn:hover {
    background-color: transparent;
    color: #27a6e9;
}

.accntu-page .cad-body address {
    margin: 0;
    padding-bottom: 9px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

.accntu-page .cad-body .Edit-btn {
    padding: 0 15px;
    border: 1px solid #27a6e9;
    background: #27a6e9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: 0.5s all;
    line-height: 27px;
    margin-top: 11px;
}

.myacnt-subheading h2,
.myacnt-subheading h3,
.myacnt-subheading h4,
.myacnt-subheading h5,
.myacnt-subheading h6,
.myacnt-subheading p {
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 120%;
    padding: 10px 15px 30px;
    font-weight: 500;
    margin: 0;
    display: block;
    text-align: left;
    letter-spacing: 0.4px;
}

.accntu-page .addres-bx-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.accntu-page .addres-bx-wrap .addres-wrap {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 4px;
}

.accntu-page .Addres-frm {
    padding: 0 15px 25px;
}

.accntu-page .Addres-frm form {
    display: flex;
    flex-wrap: wrap;
}

.accntu-page .Addres-frm form p {
    padding: 5px 10px;
    width: 50%;
}

.accntu-page .Addres-frm form p label {
    display: block;
}

.accntu-page .Addres-frm form p {
    margin: 0 auto;
    width: 50%;
    padding: 0 10px 20px;
    position: relative;
}

.accntu-page .Addres-frm form p input {
    background: #fff;
    color: #212529;
    font-weight: 400;
    width: 100%;
    display: block;
    padding: 0 10px;
    height: 35px;
    font-size: 14px;
    box-shadow: none;
    line-height: 120%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.accntu-page .Addres-frm form p label,
.Edit-address .Addresss-form label {
    display: block;
    text-transform: capitalize;
    position: absolute;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    top: -5px;
    left: 18px;
    color: #0e9ac8;
    background: #fff;
    line-height: 100%;
    padding: 0 5px;
}

.accntu-page .Addres-frm form p.phone input,
.accntu-page .Addres-frm form p.Pincode input,
.Edit-address .Addresss-form p.phone input,
.Edit-address .Addresss-form p.Pincode input {
    -moz-appearance: textfield;
}

.accntu-page .Addres-frm form .submit {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.accntu-page .Addres-frm form p .addres-btn,
.Edit-address .Addresss-form p.submit input {
    padding: 0 15px;
    border: 1px solid #27a6e9;
    background: #27a6e9;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s all;
    line-height: 35px;
    margin-top: 11px;
}

.accntu-page .Addres-frm form p .addres-btn {
    margin: 0;
}

.accntu-page .Addres-frm form p .addres-btn:hover,
.Edit-address .Addresss-form p.submit input:hover {
    background-color: transparent;
    color: #27a6e9;
}

.Edit-address .Addresss-form p {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

body .Edit-address .Addresss-form label {
    left: 11px;
}

.Edit-address .Addresss-form input {
    height: 38px;
    width: 100%;
    background: transparent;
    border: 1px solid #CCCCCC;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    color: #0000005e;
    margin: 0;
}

.Edit-address .modal-dialog {
    max-width: 650px;
}

.Edit-address .Addresss-form p.submit {
    margin: 0;
}

.Edit-address .modal-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #0e9ac8;
    letter-spacing: 0.3px;
}

.password-des {
    padding-top: 20px;
}

.accntu-page .cad-body p.note-txt {
    font-size: 20px;
    line-height: 120%;
    padding: 10px 15px;
    font-weight: 500;
    margin: 0;
    display: block;
    text-align: left;
    letter-spacing: 0.4px;
}

.password-des .deta-pwd {
    margin: 0;
    padding: 0;
}

.password-des .deta-pwd li {
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 120%;
    padding: 0 0 0 28px;
    font-weight: 400;
    margin: 0 0 6px 0;
    position: relative;
}

.password-des .deta-pwd li::marker {
    font-size: 0;
}

.password-des .deta-pwd li::before {
	position: absolute;
	top: 5px;
	right: auto;
	bottom: auto;
	width: 10px;
	height: 50%;
	background: #0560af;
	content: "";
	left: 16px;
}

/****************************** My Account Page CSS End*******************************/
/************************** Cart Page CSS Start**************************/
.cartpage {
    padding: 50px 0;
}

.single-pr-tit h1,
.single-pr-tit h2,
.single-pr-tit h3,
.single-pr-tit h4,
.single-pr-tit h5,
.single-pr-tit h6 {
    color: #046bb5;
    font-size: 16px;
    line-height: 130%;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    text-align: left;
    letter-spacing: 0;
    padding: 0;
}

.cart-page-ro {
    padding-top: 10px;
}

.cart-title-wrap {
    align-items: center;
    background: #0363aa;
    padding: 13px 10px;
    margin-bottom: 15px;
}

.cart-para-tit {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    position: relative;
    text-align: left;
    line-height: 120%;
    font-weight: 500;
}

.pr-ct-im img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    background: #f3f3f3;
    border-radius: 10px;
}

.Pr-cart-wr {
	padding: 20px 0;
	position: relative;
	align-items: center;
	border: 1px solid #ccc;
	margin-bottom: 8px;
}

.single-pr-tit {
    margin-bottom: 10px;
    text-decoration: none;
    display: inline-block;
}

.ct-pr-des {
    margin: 0;
    padding: 0;
    max-height: 80px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #0363aa #dfdfdfb2;
    margin-right: 10px;
}

.single-pr-tit h1,
.single-pr-tit h2,
.single-pr-tit h3,
.single-pr-tit h4,
.single-pr-tit h5,
.single-pr-tit h6 {
    color: #022052;
    font-size: 16px;
    line-height: 130%;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    text-align: left;
    letter-spacing: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
}

.ct-pr-des li {
    color: #6c6c6c;
    font-size: 13px;
    text-align: left;
    font-weight: 400;
    padding: 0 0 7px 0;
}

.ct-pr-des li span {
    color: #333;
    font-weight: 500;
}

.Pr-cart-wr::before {
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    height: 1px;
    /* background: #ccc9; */
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.pr-ct-pri span {
    display: block;
    text-align: start;
    font-size: 17px;
    font-family: 'poppins';
    font-weight: 600;
    color: #353535;
    line-height: 120%;
    padding-bottom: 5px;
}

.pr-ct-pri span.rp {
    color: #9a9a9a;
    font-size: 14px;
    line-height: 100%;
    text-decoration: line-through;
    font-weight: 400;
}

.rem {
    position: absolute;
    left: auto;
    right: 0px;
    width: auto;
    z-index: 9;
    background: red;
    padding: 0 5px;
    border-radius: 0 0 0 3px;
    top: 0;
}

.cart-remove {
    color: #fff;
    border: 0;
    background: transparent;
}


.ct-quantity button {
    background-color: transparent;
    color: #2d2d2d;
    /* font-size: 20px; */
    transition: background-color .2s;
    box-shadow: none;
    pointer-events: all;
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 0 8px;
    border-radius: 4px;
}

.ct-quantity .input-box {
    width: 40px;
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    height: auto;
    border: none;
    border-top: 0;
    border-bottom: 0;
    -moz-appearance: textfield;
    font-family: 'poppins';
}

.Pr-cart-wr:last-child::before {
    display: none;
}

.ct-price-box {
    border: 1px solid #cccc;
    border-radius: 5px;
}

.ct-price-box h2,
.ct-price-box h3,
.ct-price-box h4,
.ct-price-box h5,
.ct-price-box h6,
.ct-price-box h1 {
    color: #fff;
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
    margin: 0;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 10px;
    border-bottom: 1px solid #0363aa;
    background: #0363aa;
    text-transform: capitalize;
    margin-bottom: 40px;
    font-family: "Noto Sans", sans-serif;
}

.ct-price-item {
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
}

.ct-price-item p,
.ct-price-item span {
    text-align: left;
    font-size: 16px;
    line-height: 120%;
    text-transform: capitalize;
    margin: 0;
    color: #333;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.ct-price-item.ct-sub-total p,
.ct-price-item.ct-sub-total span {
    font-weight: 700;
    margin-top: 20px;
}

.ct-Buy, .ct-Buy:hover {
	background: #25a6ea;
	color: #fff;
	border-radius: 4px;
	line-height: 35px;
	padding: 0px 40px;
	font-size: 16px;
	font-weight: 500;
	margin: 30px 25px;
	transition: 0.5s all;
	display: block;
	text-decoration: none;
	border: none;
}

.ct-btn-wrap {
    margin: 20px 0 30px;
    text-align: center;
}

/************************** Cart Page CSS End**************************/
/************************** Checkout Page CSS Start**************************/
.checkoutpage {
    padding: 50px 0;
}

.chct-page-ro {
    max-width: 1100px;
    margin: 30px auto 0;
}

.chct-cnt-wra {
	border: 1px solid #25a6ea;
	padding: 30px 25px;
	border-radius: 4px;
}

.chct-det-pr-wr {
    padding-top: 20px;
}

.chct-addres-wrap address,
.chct-country,
.chct-numb {
    color: #333;
    line-height: 120%;
    font-weight: 400;
    display: block;
    text-align: left;
    letter-spacing: 0;
    padding: 0 0 5px 0;
    margin: 0;
    font-size: 15px;
}

.chct-country,
.chct-numb {
    font-size: 15px;
}

.adre-name {
    color: #21466e;
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    margin: 0;
    display: block;
    text-align: left;
    letter-spacing: 0;
    padding: 0 0 15px 0;
}

.chct-addres-wrap {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.chct-Edit-btn {
	padding: 0 15px;
	border: 1px solid #25a6ea;
	background-color: #25a6ea;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 500;
	transition: 0.5s all;
	line-height: 27px;
	margin-top: 11px;
}
.chct-Edit-btn:hover {
    background-color: transparent;
    color: #25a6ea;
}

.chct-subheading h3,
.chct-subheading h2,
.chct-subheading h4,
.chct-subheading h5,
.chct-subheading h6,
.chct-subheading h1,
.chct-subheading .adduod-tit {
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 120%;
    padding: 0 15px 30px;
    font-weight: 500;
    margin: 0;
    display: block;
    text-align: left;
    letter-spacing: 0.4px;
}

.chct-Addres-frm form {
    display: flex;
    flex-wrap: wrap;
}

.chct-Addres-frm p {
    margin: 0 auto;
    width: 50%;
    padding: 0 10px 20px;
    position: relative;
}

.chct-Addres-frm p label {
    display: block;
    text-transform: capitalize;
    font-size: 14px;
    color: #046bb5;
    padding: 0 5px;
    margin-bottom: 5px;
}

.chct-Addres-frm p input {
    background: #fff;
    color: #212529;
    font-weight: 400;
    width: 100%;
    display: block;
    padding: 0 10px;
    height: 35px;
    font-size: 14px;
    box-shadow: none;
    line-height: 120%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pin,
.phone {
    -moz-appearance: textfield;
}

.chct-addres-btn {
	background: #25a6ea;
	color: #fff;
	border-radius: 4px;
	line-height: 35px;
	padding: 0px 40px;
	font-size: 16px;
	font-weight: 500;
	margin: 0 10px;
	border: 1px solid #25a6ea;
	transition: 0.5s all;
	display: inline-block;
	text-decoration: none;
}

.chct-addres-btn:hover {
    background-color: transparent;
    color: #25a6ea;
}

.chct-Addres-frm p.submit {
    width: 100%;
    text-align: center;
}

.chct-price-box h2,
.chct-price-box h3,
.chct-price-box h4,
.chct-price-box h5,
.chct-price-box h6,
.chct-price-box h3,
.chct-price-box p.chcekot-tit {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: block;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 0px;
    text-transform: capitalize;
    color: #353543;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.chct-price-item {
    display: flex;
    justify-content: space-between;
}

.chct-price-item.chect-dis-pr p,
.chct-price-item.chect-dis-pr span {
    color: #038d63;
    margin-top: 15px;
}

.chct-total-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ccc;
}

.chct-price-box {
    margin-left: 20px;
}

.chct-price-item p,
.chct-price-item span,
.chct-total-order p,
.chct-total-order span {
    text-align: left;
    font-size: 15px;
    line-height: 120%;
    text-transform: capitalize;
    margin: 0;
    color: #333;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.chct-total-order p,
.chct-total-order span {
    font-weight: 600;
    font-size: 16px;
}

/************************** Checkout Page CSS End**************************/
/****************************** Order Page CSS Start*******************************/
.details-order-page {
    padding: 50px 0;
}

.detor-bx {
    margin: 30px 0 0 0;
    border: 1px solid #ccc;
}

.detbsor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0543a8;
    padding: 10px;
}

.detbsor .detracking-id {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    position: relative;
    text-align: left;
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
}

.detbsor .detracking-id span {
    text-transform: inherit;
    padding-left: 4px;
    font-weight: 500;
    color: #e77c32;
}

.detor-bx .pr-ct-im img {
    padding: 10px;
    height: 160px;
}

.trackgopag {
    color: #fa6c34;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 4px 8px 7px;
    font-size: 15px;
    line-height: 100%;
    background: #fff;
    font-weight: 600;
    border-radius: 3px;
}

.trackgopag:hover {
    color: #fff;
    background: transparent;
}

.ofrd-det {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.ofrd-det>div {
    color: #8a8787;
    font-size: 16px;
    text-align: left;
    line-height: 120%;
    font-weight: 500;
}

.ofrd-det>div span {
    color: #333;
    font-weight: 500;
}

.detor-bx .Pr-cart-wr.row {
    border: 0;
    padding: 10px 0 20px;
}

.accories-txt {
    color: #333;
    font-size: 14px;
    line-height: 100%;
    text-align: left;
    font-weight: 600;
    padding: 0 0 9px 0;
    margin: 0;
}

.ct-pr-des li span.pdt-take {
    color: #6c6c6c;
    font-size: 13px;
    padding-left: 10px;
    font-weight: 400;
}

.detor-bx .ct-pr-des li {
    font-size: 14px;
    line-height: 110%;
    padding: 0 0 5px 0;
}

.trackgopagmob {
    display: none;
}

.captcha_image {
    margin-right: 10px;
}


/********************************************* Responsive Start *********************************************/
@media only screen and (min-width:992px) and (max-width:1200px) {

    .ct-price-item p,
    .ct-price-item span {
        text-align: left;
        font-size: 14px;
        text-transform: capitalize;
        margin: 0;
        color: #333;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }

    .pr-ct-pri span {
        display: block;
        text-align: start;
        font-size: 15px;
        font-family: 'poppins';
        font-weight: 600;
        color: #353535;
        padding-bottom: 5px;
    }

    /************************** Checkout Page CSS Start**************************/
    .chct-addres-wrap {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .chct-Addres-frm p label {
        font-size: 12px;
        left: 11px;
    }

    .chct-Addres-frm p {
        padding: 0 5px 17px;
    }

    .chct-subheading h3,
    .chct-subheading h2,
    .chct-subheading h4,
    .chct-subheading h5,
    .chct-subheading h6,
    .chct-subheading h1,
    .chct-subheading .adduod-tit {
        padding: 0 15px 25px;
    }

    /************************** Checkout Page CSS End**************************/
    /************************** Cart Page CSS Start**************************/
    .ct-price-box {
        margin-left: 20px;
    }

    /************************** Cart Page CSS End**************************/

    /****************************** My Account Page CSS Start*******************************/
    .accntu-page .addres-bx-wrap {
        grid-gap: 15px;
    }

    .accntu-page .cad-body {
        padding: 20px 10px 15px;
    }

    .myacnt-subheading h2,
    .myacnt-subheading h3,
    .myacnt-subheading h4,
    .myacnt-subheading h5,
    .myacnt-subheading h6,
    .myacnt-subheading p {
        font-size: 18px;
        padding: 10px 10px 14px;
        letter-spacing: 0;
    }

    .accntu-page .Addres-frm form p {
        padding: 0 0 15px;
        width: 100%;
        margin: 0 auto;
    }

    .accntu-page .Addres-frm form .submit {
        margin-top: 10px;
    }

    .accntu-page .Addres-frm form p label,
    .Edit-address .Addresss-form label {
        left: 10px;
    }

    .accntu-page .Addres-frm {
        padding: 20px 15px 25px;
    }

    /****************************** My Account Page CSS End*******************************/
    /****************************** Tracking Page CSS Start*******************************/
    .Track-order-page .tracking-det div span {
        font-size: 14px;
    }

    .Track-order-page .track-order-box .tracking-id {
        padding: 10px 15px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .Track-order-page .tracking-det {
        margin-bottom: 50px;
    }

    /****************************** Tracking Page CSS End*******************************/


}

@media only screen and (min-width:768px) and (max-width:991px) {
    .pr-ct-im img {
        height: 200px;
        width: 200px;
        object-fit: contain;
        margin: 0 auto;
        background: transparent;
    }

    /************************** Checkout Page CSS Start**************************/
    .chct-cnt-wra {
        padding-top: 20px;
        padding-right: 12px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .chct-addres-btn {
        padding: 0px 20px;
        font-size: 15px;
    }

    .chct-addres-wrap {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .chct-Addres-frm p label {
        font-size: 12px;
        left: 11px;
    }

    .chct-Addres-frm p {
        padding: 0 5px 17px;
    }

    .chct-price-box {
        margin-left: 0;
    }

    /************************** Checkout Page CSS End**************************/
    /************************** Cart Page CSS Start**************************/
    .ct-price-box {
        margin: 30px 0 0 0;
    }

    .ct-price-box h2,
    .ct-price-box h3,
    .ct-price-box h4,
    .ct-price-box h5,
    .ct-price-box h6,
    .ct-price-box h1 {
        margin-bottom: 30px;
    }

    /************************** Cart Page CSS End**************************/
    /****************************** Sign in Page CSS Start*******************************/
    .lg-content-wr {
        padding: 50px 30px 30px;
    }

    .lg-sub-btn,
    .Regi-btn {
        line-height: 30px;
        padding: 0 15px;
        font-size: 14px;
        width: auto;
    }

    .lg-com-title h2,
    .lg-com-title h3,
    .lg-com-title h4,
    .lg-com-title h5,
    .lg-com-title h6,
    .lg-com-title h1 {
        font-size: 20px;
    }

    /****************************** Sign in Page CSS End*******************************/
    /****************************** Register Page CSS Start*******************************/
    .lg-content-wr.rg-content-wr {
        padding: 50px 30px 30px;
    }

    /****************************** Register Page CSS End*******************************/
    /****************************** My Account Page CSS Start*******************************/
    .accntu-page .butn-tab {
        margin: 0 auto 20px !important;
    }

    .img-profile-ud {
        padding-bottom: 20px;
    }

    .accntu-page .cad-body {
        padding: 20px 15px 20px;
    }

    .myacnt-heading h1,
    .myacnt-heading h2,
    .myacnt-heading h3,
    .myacnt-heading h4,
    .myacnt-heading h5,
    .myacnt-heading h6,
    .myacnt-heading p {
        font-size: 21px;
    }

    .accntu-page .Addres-frm form p label,
    .Edit-address .Addresss-form label {
        font-size: 13px;
    }

    .accntu-page .Addres-frm form p {
        padding: 0 5px 15px;
    }

    .accntu-page .Addres-frm form p label,
    .Edit-address .Addresss-form label {
        font-size: 12px;
        left: 10px;
    }

    .accntu-page .Addres-frm {
        padding: 20px 10px 25px;
    }

    .myacnt-subheading h2,
    .myacnt-subheading h3,
    .myacnt-subheading h4,
    .myacnt-subheading h5,
    .myacnt-subheading h6,
    .myacnt-subheading p {
        padding: 10px 15px 10px;
    }

    .password-des {
        padding-top: 0;
    }

    .password-des .deta-pwd li {
        font-size: 14px;
    }

    .password-des .deta-pwd li::before {
        height: 100%;
    }

    /****************************** My Account Page CSS End*******************************/

    /****************************** Tracking Page CSS Start*******************************/
    .title-wrap h1,
    .title-wrap h2,
    .title-wrap h3,
    .title-wrap h4,
    .title-wrap h5,
    .title-wrap h6 {
        font-size: 25px;
    }

    .Track-order-page .tracking-det div span {
        font-size: 13px;
    }

    .Track-order-page .track-order-box .tracking-id {
        padding: 10px 15px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .Track-order-page .tracking-det {
        margin-bottom: 50px;
    }

    .Track-order-page .tracking-det div {
        font-size: 13px;
    }

    .Track-order-page .track-order-box .tracking-id {
        padding: 7px 15px;
        font-size: 15px;
    }

    .Track-order-page .track .step {
        margin-top: -12px;
    }

    .Track-order-page .track .step::before {
        top: 12px;
    }

    .Track-order-page .track .icon {
        width: 28px;
        height: 28px;
        line-height: 27px;
        font-size: 12px;
    }

    .Track-order-page .track-order-box {
        padding: 0 0 20px;
    }

    /****************************** Tracking Page CSS End*******************************/
    /****************************** Order Page CSS Start*******************************/
    .ofrd-det>div {
        font-size: 14px;
    }

    .ct-pr-des {
        max-height: 100%;
    }

    /****************************** Order Page CSS End*******************************/


}

@media only screen and (min-width:586px) and (max-width:767px) {
    .pr-ct-im img {
        height: 180px;
        width: 180px;
        object-fit: contain;
        margin: 0 auto;
        background: transparent;
    }

    /************************** Cart Page CSS Start**************************/
    .ct-price-box {
        margin: 25px 0 0 0;
    }

    .ct-price-box h2,
    .ct-price-box h3,
    .ct-price-box h4,
    .ct-price-box h5,
    .ct-price-box h6,
    .ct-price-box h1 {
        margin-bottom: 20px;
    }

    .cart-title-wrap {
        display: none;
    }

    .cart-para-cen {
        text-align: left;
    }

    .pr-ct-pri span.rp {
        display: none;
    }

    .pr-ct-pri span {
        font-size: 16px;
        padding: 0;
        text-align: left;
    }

    .pr-ct-qua,
    .pr-ct-pri {
        margin-top: 20px;
    }

    .single-pr-tit {
        margin-top: 10px;
    }

    .Pr-cart-wr {
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }

    .Pr-cart-wr::before {
        display: none;
    }

    .rem {
        right: 0;
        top: 0;
    }

    /************************** Cart Page CSS End**************************/
    /****************************** Sign in Page CSS Start*******************************/
    .lg-content-wr {
        padding: 50px 30px 30px;
    }

    .lg-sub-btn,
    .Regi-btn {
        line-height: 30px;
        padding: 0 15px;
        font-size: 14px;
        width: auto;
    }

    .lg-com-title h2,
    .lg-com-title h3,
    .lg-com-title h4,
    .lg-com-title h5,
    .lg-com-title h6,
    .lg-com-title h1 {
        font-size: 20px;
    }

    /****************************** Sign in Page CSS End*******************************/
    /****************************** Register Page CSS Start*******************************/
    .lg-content-wr.rg-content-wr {
        padding: 50px 30px 30px;
    }

    /****************************** Register Page CSS End*******************************/
    /****************************** My Account Page CSS Start*******************************/
    .accntu-page .butn-tab {
        margin: 0 auto 20px !important;
        padding: 20px 10px;
    }

    .img-profile-ud {
        display: none;
    }

    .accntu-page .cad-body {
        padding: 15px 15px 20px;
    }

    .myacnt-heading h1,
    .myacnt-heading h2,
    .myacnt-heading h3,
    .myacnt-heading h4,
    .myacnt-heading h5,
    .myacnt-heading h6,
    .myacnt-heading p {
        font-size: 19px;
    }

    .accntu-page .cad-body p {
        font-size: 14px;
    }

    .accntu-page .Addres-frm form p label,
    .Edit-address .Addresss-form label {
        font-size: 12px;
        left: 11px;
    }

    .accntu-page .Addres-frm form p {
        padding: 0 5px 15px;
        width: 100%;
    }

    .accntu-page .Addres-frm {
        padding: 20px 10px 25px;
    }

    .myacnt-subheading h2,
    .myacnt-subheading h3,
    .myacnt-subheading h4,
    .myacnt-subheading h5,
    .myacnt-subheading h6,
    .myacnt-subheading p {
        padding: 10px 15px 10px;
    }

    .accntu-page .cad-body .form-group {
        width: 50%;
        padding: 0 5px 15px;
    }

    .accntu-page .cad-body form {
        margin-top: 30px;
    }

    .accntu-page .cad-body .Submit {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    .accntu-page .cad-body address {
        font-size: 14px;
    }

    .accntu-page .addres-bx-wrap .addres-wrap {
        padding: 10px;
    }

    .accntu-page .addres-bx-wrap {
        grid-gap: 10px;
    }

    .accntu-page .Addres-frm form .submit {
        margin-top: 10px;
    }

    .accntu-page .ordr-wrap {
        padding: 20px 10px 15px;
    }

    .accntu-page .ordr-wrap .order-title,
    .accntu-page .ordr-table {
        padding-bottom: 8px;
        padding-top: 10px;
    }

    .accntu-page .ordr-table {
        padding: 14px 0;
    }

    .accntu-page .order-title p {
        font-size: 15px;
    }

    .accntu-page .ordr-card .ordr-table p {
        font-size: 13px;
    }

    .accntu-page .ordr-card .trck-btn a {
        padding: 3px 10px;
        font-size: 14px;
    }

    .accntu-page .myaccount-man-btn {
        margin-bottom: 10px;
        font-size: 14px;
        padding: 6px 8px 6px 17px;
    }

    .accntu-page .cad-body .form-group label {
        font-size: 12px;
        left: 11px;
    }

    .password-des {
        padding-top: 0;
    }

    .password-des .deta-pwd li {
        font-size: 14px;
    }

    .password-des .deta-pwd li::before {
        height: 100%;
    }

    /****************************** My Account Page CSS End*******************************/
    /****************************** Tracking Page CSS Start*******************************/
    .title-wrap h1,
    .title-wrap h2,
    .title-wrap h3,
    .title-wrap h4,
    .title-wrap h5,
    .title-wrap h6 {
        font-size: 25px;
    }

    .Track-order-page .tracking-det div span {
        font-size: 13px;
    }

    .Track-order-page .track-order-box .tracking-id {
        padding: 10px 15px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .Track-order-page .tracking-det {
        margin-bottom: 30px;
    }

    .Track-order-page .tracking-det div {
        font-size: 13px;
    }

    .Track-order-page .track-order-box .tracking-id {
        padding: 7px 15px;
        font-size: 15px;
        width: 710px;
    }

    .Track-order-page .track .step {
        margin-top: -12px;
    }

    .Track-order-page .track .step::before {
        top: 12px;
    }

    .Track-order-page .track .icon {
        width: 28px;
        height: 28px;
        line-height: 27px;
        font-size: 12px;
    }

    .Track-order-page .track-order-box {
        padding: 0 0 20px;
    }

    .Track-order-page .track-order-box {
        overflow-x: auto;
    }

    .Track-order-page .tracking-det {
        width: 710px;
    }

    .Track-order-page .track {
        width: 710px;
    }

    .Track-order-page .track .step.active .text {
        font-size: 13px;
    }

    /****************************** Tracking Page CSS End*******************************/
    /************************** Checkout Page CSS Start**************************/
    .chct-cnt-wra {
        padding-top: 20px;
        padding-right: 12px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .chct-addres-btn {
        padding: 0px 20px;
        font-size: 15px;
    }

    .chct-addres-wrap {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .chct-Addres-frm p label {
        font-size: 12px;
        left: 11px;
    }

    .chct-Addres-frm p {
        padding: 0 5px 17px;
    }

    .chct-price-box {
        margin-left: 0;
    }

    .adre-name {
        font-size: 16px;
        padding: 0 0 10px 0;
    }

    .chct-addres-wrap address,
    .chct-country,
    .chct-numb {
        font-size: 14px;
    }

    .chct-country,
    .chct-numb {
        font-size: 15px;
    }

    .chct-subheading h3,
    .chct-subheading h2,
    .chct-subheading h4,
    .chct-subheading h5,
    .chct-subheading h6,
    .chct-subheading h1,
    .chct-subheading .adduod-tit {
        padding: 0 15px 24px;
    }

    .chct-price-box h2,
    .chct-price-box h3,
    .chct-price-box h4,
    .chct-price-box h5,
    .chct-price-box h6,
    .chct-price-box h3,
    .chct-price-box p.chcekot-tit {
        font-size: 14px;
        padding-bottom: 15px;
    }

    .chct-price-item.chect-dis-pr p,
    .chct-price-item.chect-dis-pr span {
        margin-top: 11px;
    }

    .chct-price-item p,
    .chct-price-item span,
    .chct-total-order p,
    .chct-total-order span {
        font-size: 14px;
    }

    .chct-total-order {
        padding-top: 14px;
        margin-top: 14px;
    }

    /************************** Checkout Page CSS End**************************/
    /****************************** Order Page CSS Start*******************************/
    .ofrd-det>div {
        font-size: 14px;
    }

    .ct-pr-des {
        max-height: 100%;
    }

    .detor-bx .pr-ct-im {
        display: none;
    }

    .ofrd-det {
        flex-wrap: wrap;
    }

    .ofrd-det div {
        width: 50%;
        padding-bottom: 10px;
        text-align: center;
    }

    .detor-bx .single-pr-tit {
        margin-top: 0;
        display: block;
        padding: 0 15px;
    }

    .detor-bx .ct-pr-des {
        max-height: 100%;
        margin: 0;
        padding: 0 15px;
    }

    .detor-bx .ct-pr-des li::marker {
        font-size: 0;
    }

    .accories-txt {
        font-size: 15px;
    }

    .detor-bx .ct-pr-des li {
        padding: 0 0 3px 0;
    }

    .detor-bx .Pr-cart-wr.row {
        border: 0;
        padding: 10px 0 0;
    }

    /****************************** Order Page CSS End*******************************/


    /* Mobile View Tracking details CSS Start */
    .Track-order-page .track {
        width: 100%;
        background: transparent;
        margin-bottom: 0;
        padding-left: 20px;
    }

    .Track-order-page .track {
        flex-direction: column;
        height: auto;
        align-items: center;
        margin-top: 10px;
    }

    .Track-order-page .track .step {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .Track-order-page .track .step::before {
        width: 5px;
        height: 100%;
        left: 13px;
        top: 30px;
        background: #858c9330;
    }

    .Track-order-page .track .icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        margin-right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Track-order-page .track .text {
        font-size: 14px;
    }

    .Track-order-page .track .step {
        margin-top: 10px;
    }

    .Track-order-page .track .step.active::before {
        background: #0e9ac8;

    }

    .Track-order-page .tracking-det {
        width: 100%;
        display: block;
        margin: 0;
    }

    .Track-order-page .tracking-det div {
        font-size: 14px;
        font-weight: 500;
        padding-bottom: 5px;
    }

    .Track-order-page .track-order-box .tracking-id {
        font-size: 16px;
        font-weight: 600;
        width: 100%;
    }

    .Track-order-page .tracking-det div span {
        font-size: 14px;
    }

    .Track-order-page .track .step:last-child {
        margin-bottom: 0;
    }

    .Track-order-page .track .step:last-child::before {
        background: none;
    }

    .Track-order-page .track-order-box {
        overflow: hidden;
        width: 100%;
        height: 100%;
        max-height: 100%;
    }

    /* Mobile View Tracking details CSS End*/
    /****************************** Ask Expert CSS Start*******************************/

    .ask-expert .modal-dialog {
        max-width: 560px;
    }

    /****************************** Ask Expert CSS End*******************************/
}

@media only screen and (max-width: 585px) {
    .pr-ct-im img {
        height: 180px;
        width: 180px;
        object-fit: contain;
        margin: 0 auto;
        background: transparent;
    }

    /************************** Checkout Page CSS Start**************************/
    .chct-cnt-wra {
        padding-top: 20px;
        padding-right: 12px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .chct-addres-btn {
        padding: 0px 20px;
        font-size: 15px;
    }

    .chct-addres-wrap {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .chct-Addres-frm p label {
        font-size: 12px;
        left: 11px;
    }

    .chct-Addres-frm p {
        padding: 0 5px 17px;
    }

    .chct-price-box {
        margin-left: 0;
    }

    .adre-name {
        font-size: 16px;
        padding: 0 0 10px 0;
    }

    .chct-addres-wrap address,
    .chct-country,
    .chct-numb {
        font-size: 14px;
    }

    .chct-country,
    .chct-numb {
        font-size: 15px;
    }

    .chct-subheading h3,
    .chct-subheading h2,
    .chct-subheading h4,
    .chct-subheading h5,
    .chct-subheading h6,
    .chct-subheading h1,
    .chct-subheading .adduod-tit {
        padding: 0 15px 24px;
    }

    .chct-price-box h2,
    .chct-price-box h3,
    .chct-price-box h4,
    .chct-price-box h5,
    .chct-price-box h6,
    .chct-price-box h3,
    .chct-price-box p.chcekot-tit {
        font-size: 14px;
        padding-bottom: 15px;
    }

    .chct-price-item.chect-dis-pr p,
    .chct-price-item.chect-dis-pr span {
        margin-top: 11px;
    }

    .chct-price-item p,
    .chct-price-item span,
    .chct-total-order p,
    .chct-total-order span {
        font-size: 14px;
    }

    .chct-total-order {
        padding-top: 14px;
        margin-top: 14px;
    }

    .chct-Addres-frm p {
        padding: 0 0 17px;
        width: 100%;
    }

    /************************** Checkout Page CSS End**************************/
    /************************** Cart Page CSS Start**************************/
    .ct-price-box {
        margin: 25px 0 0 0;
    }

    .ct-price-box h2,
    .ct-price-box h3,
    .ct-price-box h4,
    .ct-price-box h5,
    .ct-price-box h6,
    .ct-price-box h1 {
        margin-bottom: 20px;
    }

    .cart-title-wrap {
        display: none;
    }

    .cart-para-cen {
        text-align: left;
    }

    .pr-ct-pri span.rp {
        display: none;
    }

    .pr-ct-pri span {
        font-size: 16px;
        padding: 0;
        text-align: left;
    }

    .pr-ct-qua,
    .pr-ct-pri {
        margin-top: 20px;
    }

    .single-pr-tit {
        margin-top: 10px;
    }

    .Pr-cart-wr {
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }

    .Pr-cart-wr::before {
        display: none;
    }

    .rem {
        right: 0;
        top: 0;
    }

    .Pr-cart-wr {
        border: 1px solid #ccc;
        margin: 15px 10px;
    }

    .single-pr-tit h1,
    .single-pr-tit h2,
    .single-pr-tit h3,
    .single-pr-tit h4,
    .single-pr-tit h5,
    .single-pr-tit h6 {
        font-size: 15px;
    }

    .pr-ct-qua,
    .pr-ct-pri {
        margin-top: 15px;
    }

    /************************** Cart Page CSS End**************************/
    /****************************** Sign in Page CSS Start*******************************/
    .lg-sub-btn,
    .Regi-btn {
        line-height: 30px;
        padding: 0 15px;
        font-size: 14px;
        width: 100%;
        display: block;
        max-width: 150px;
    }

    .lg-com-title h2,
    .lg-com-title h3,
    .lg-com-title h4,
    .lg-com-title h5,
    .lg-com-title h6,
    .lg-com-title h1 {
        font-size: 20px;
    }

    .lg-content-wr {
        padding: 40px 15px 30px;
    }

    /****************************** Sign in Page CSS End*******************************/
    /****************************** Register Page CSS Start*******************************/
    .lg-content-wr.rg-content-wr {
        padding: 40px 15px 30px;
    }

    /****************************** Register Page CSS End*******************************/
    /****************************** Register Page CSS Start*******************************/
    .register-page-form .lg-form-wr {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /****************************** Register Page CSS End*******************************/
    /****************************** My Account Page CSS Start*******************************/
    .accntu-page .butn-tab {
        margin: 0 auto 20px !important;
        padding: 20px 10px;
    }

    .img-profile-ud {
        display: none;
    }

    .accntu-page .cad-body {
        padding: 15px 15px 20px;
    }

    .myacnt-heading h1,
    .myacnt-heading h2,
    .myacnt-heading h3,
    .myacnt-heading h4,
    .myacnt-heading h5,
    .myacnt-heading h6,
    .myacnt-heading p {
        font-size: 19px;
    }

    .accntu-page .cad-body p {
        font-size: 14px;
    }

    .accntu-page .Addres-frm form p label,
    .Edit-address .Addresss-form label {
        font-size: 12px;
        left: 8px;
    }

    .accntu-page .Addres-frm form p {
        padding: 0 0 15px;
        width: 100%;
    }

    .accntu-page .Addres-frm {
        padding: 20px 10px 25px;
    }

    .myacnt-subheading h2,
    .myacnt-subheading h3,
    .myacnt-subheading h4,
    .myacnt-subheading h5,
    .myacnt-subheading h6,
    .myacnt-subheading p {
        padding: 10px 15px 10px;
    }

    .accntu-page .cad-body .form-group {
        width: 50%;
        padding: 0 5px 5px;
    }

    .accntu-page .cad-body form {
        margin-top: 30px;
    }

    .accntu-page .cad-body .Submit {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    .accntu-page .cad-body address {
        font-size: 14px;
    }

    .accntu-page .addres-bx-wrap .addres-wrap {
        padding: 10px;
    }

    .accntu-page .addres-bx-wrap {
        grid-gap: 10px;
        grid-template-columns: repeat(1, 1fr);
    }

    .accntu-page .Addres-frm form .submit {
        margin-top: 10px;
    }

    .accntu-page .ordr-wrap {
        padding: 20px 10px 15px;
        overflow-x: auto;
    }

    .accntu-page .ordr-wrap .order-title,
    .accntu-page .ordr-table {
        padding-bottom: 8px;
        padding-top: 10px;
    }

    .accntu-page .ordr-table {
        padding: 14px 0;
    }

    .accntu-page .order-title p {
        font-size: 15px;
    }

    .accntu-page .ordr-card .ordr-table p {
        font-size: 13px;
    }

    .accntu-page .cad-body .form-group label {
        font-size: 12px;
        left: 11px;
    }

    .accntu-page .ordr-card .trck-btn a {
        padding: 3px 10px;
        font-size: 14px;
    }

    .accntu-page .myaccount-man-btn {
        margin-bottom: 10px;
        font-size: 14px;
        padding: 6px 8px 6px 17px;
    }

    .accntu-page .cad-body .form-group {
        width: 100%;
        padding: 0 5px 15px;
    }

    .accntu-page .ordr-wrap .order-title,
    .accntu-page .ordr-wrap .ordr-card {
        width: 585px;
    }

    .password-des .deta-pwd li {
        font-size: 14px;
    }

    .password-des .deta-pwd li::before {
        height: 100%;
    }

    .password-des {
        padding-top: 0;
    }

    /****************************** My Account Page CSS End*******************************/

    /****************************** Tracking Page CSS Start*******************************/
    .title-wrap h1,
    .title-wrap h2,
    .title-wrap h3,
    .title-wrap h4,
    .title-wrap h5,
    .title-wrap h6 {
        font-size: 25px;
    }

    .Track-order-page .tracking-det div span {
        font-size: 13px;
    }

    .Track-order-page .track-order-box .tracking-id {
        padding: 10px 15px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .Track-order-page .tracking-det {
        margin-bottom: 30px;
    }

    .Track-order-page .tracking-det div {
        font-size: 13px;
    }

    .Track-order-page .track-order-box .tracking-id {
        padding: 7px 15px;
        font-size: 15px;
        width: 710px;
    }

    .Track-order-page .track .step {
        margin-top: -12px;
    }

    .Track-order-page .track .step::before {
        top: 12px;
    }

    .Track-order-page .track .icon {
        width: 28px;
        height: 28px;
        line-height: 27px;
        font-size: 12px;
    }

    .Track-order-page .track-order-box {
        padding: 0 0 20px;
    }

    .Track-order-page .track-order-box {
        overflow-x: auto;
    }

    .Track-order-page .tracking-det {
        width: 710px;
    }

    .Track-order-page .track {
        width: 710px;
    }

    .Track-order-page .track .step.active .text {
        font-size: 13px;
    }

    .Track-order-page .track-order-box {
        margin: 0 auto 20px;
    }

    /****************************** Tracking Page CSS End*******************************/

    /****************************** Order Page CSS Start*******************************/
    .ofrd-det>div {
        font-size: 14px;
    }

    .ct-pr-des {
        max-height: 100%;
    }

    .detor-bx .pr-ct-im {
        display: none;
    }

    .ofrd-det {
        flex-wrap: wrap;
    }

    .ofrd-det div {
        width: 100%;
        padding-bottom: 10px;
        text-align: left;
    }

    .detor-bx .single-pr-tit {
        margin-top: 0;
        display: block;
        padding: 0;
    }

    .detor-bx .ct-pr-des {
        max-height: 100%;
        margin: 0;
        padding: 0;
    }

    .detor-bx .ct-pr-des li::marker {
        font-size: 0;
    }

    .accories-txt {
        font-size: 15px;
    }

    .detor-bx .ct-pr-des li {
        padding: 0 0 3px 0;
    }

    .detor-bx .Pr-cart-wr.row {
        border: 0;
        padding: 10px 0 0;
        margin: 0 0 10px 0;
    }

    .trackgopag {
        display: none;
    }

    .trackgopagmob,
    .trackgopagmob:hover {
        display: inline-block;
        border: 1px solid #0e9ac8;
        margin: 10px 0;
        font-size: 14px;
        color: #0e9ac8;
    }

    /****************************** Order Page CSS End*******************************/
    /************************** Career Page CSS Start**************************/
    .Join-team-form .box {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0 15px;
    }

    .jon-form-inner {
        margin: 20px auto 0;
        padding: 20px 10px;
        border-radius: 10px;
    }

    /************************** Career Page CSS End**************************/

    /* Mobile View Tracking details CSS Start */
    .Track-order-page .track {
        width: 100%;
        background: transparent;
        margin-bottom: 0;
        padding-left: 20px;
    }

    .Track-order-page .track {
        flex-direction: column;
        height: auto;
        align-items: center;
        margin-top: 10px;
    }

    .Track-order-page .track .step {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .Track-order-page .track .step::before {
        width: 5px;
        height: 100%;
        left: 13px;
        top: 30px;
        background: #858c9330;
    }

    .Track-order-page .track .icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        margin-right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Track-order-page .track .text {
        font-size: 14px;
    }

    .Track-order-page .track .step {
        margin-top: 10px;
    }

    .Track-order-page .track .step.active::before {
        background: #0e9ac8;

    }

    .Track-order-page .tracking-det {
        width: 100%;
        display: block;
        margin: 0;
    }

    .Track-order-page .tracking-det div {
        font-size: 14px;
        font-weight: 500;
        padding-bottom: 5px;
    }

    .Track-order-page .track-order-box .tracking-id {
        font-size: 16px;
        font-weight: 600;
        width: 100%;
    }

    .Track-order-page .tracking-det div span {
        font-size: 14px;
    }

    .Track-order-page .track .step:last-child {
        margin-bottom: 0;
    }

    .Track-order-page .track .step:last-child::before {
        background: none;
    }

    .Track-order-page .track-order-box {
        overflow: hidden;
        width: 100%;
        height: 100%;
        max-height: 100%;
    }

    /* Mobile View Tracking details CSS End*/

    /****************************** Ask Expert CSS Start*******************************/
    .ask-expert .modal-body>p {
        font-size: 15px;
        padding-bottom: 25px;
    }

    .ask-expert .btn-close {
        right: 10px;
        top: 10px;
    }

    .ask-expert-form .form-group {
        width: 100%;
        padding: 0 0 20px 0 !important;
    }

    .ask-expert .modal-dialog {
        max-width: 100%;
    }

    /****************************** Ask Expert CSS End*******************************/
}

/******************************Login PAGE Start*******************************/
.login-section {
    padding: 80px 0 80px;
}

.login-section .bg-white {
    width: 100%;
    margin: 0 auto;
    padding: 38px;
    margin-top: 0;
    max-width: 500px;
    border: 1px solid #e6e9e9;
    background: #fafafb;
    border-radius: 10px;
    box-shadow: 0 0 26px 0px #3333330d;
}

.login-section h3,
.login-section h1,
.login-section h2,
.login-section h4,
.login-section h5,
.login-section h6 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    color: #0e49b5;
    text-align: center;
    margin-bottom: 30px;
}

.login-section .login_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-section .heatingmt-btn,
.login-section .heatingmt-btn:hover {
    display: block;
    background: #0231a4;
    color: #fff;
    border-radius: 4px;
    line-height: 35px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    border-left: 5px solid #30ad04;
    border-right: 5px solid #30ad04;
    border-top: 1px solid #0231a4;
    border-bottom: 1px solid #0231a4;
    font-family: "Poppins", sans-serif;
    width: 100%;
    margin: 20px auto 0;
    transition: 0.5s;
    max-width: 50%;
}

.login-section .sign-in-btn {
    text-align: center;
}

.different_login span {
    font-size: 16px;
    text-align: center;
    display: block;
    text-transform: uppercase;
    color: #0d4fa0;
    font-weight: 500;
}

.different_login {
    padding-bottom: 10px;
}

.login-section .form-note a {
    color: #0231a4;
    text-decoration: none;
    padding-left: 4px;
    transition: 0.5s all;
}

.login-section .form-note a:hover {
    color: #30ad04;

}



/******************************Login PAGE End*******************************/
.cart-option-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9990;
    display: none;
    transition: opacity 0.3s ease;
}

.cart-option-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 25px 20px;
    border-radius: 12px;
    z-index: 9991;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.cart-option-popup.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cart-option-popup-overlay.show {
    display: block;
}

.cart-option-popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-option-popup .popup-header h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.cart-option-popup .close-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cart-option-popup .close-btn:hover {
    color: #000;
}

.cart-option-popup .popup-body {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.cart-option-popup .popup-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cart-option-popup .popup-footer .btn {
    width: 48%;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
}

.cart-option-popup .popup-footer .btn-primary {
    background-color: #007bff;
    border: none;
    color: #fff;
}

.cart-option-popup .popup-footer .btn-secondary {
    background-color: #f1f1f1;
    border: none;
    color: #333;
}

/* ================== */

/* ACCESSORIES POPUP */

/* Overlay */
.accessories-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
}

/* Popup container */
.accessories-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Popup header */
.accessories-popup .popup-header {
    background: #0056b3;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accessories-popup .popup-header h3 {
    margin: 0;
    font-size: 20px;
}

.accessories-popup .popup-header .close-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

/* Popup body */
.accessories-popup .popup-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

/* Table structure */
.popup-table {
    width: 100%;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.table-header {
    font-weight: bold;
    background-color: #f1f1f1;
    padding: 10px 0;
}

/* Image styling */
.accessory-image {
    width: 60px;
    height: auto;
    border-radius: 4px;
}

/* Quantity control */
.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.qty-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 28px;
}

/* Popup footer */
.accessories-popup .popup-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

.accessories-popup .popup-footer .btn {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.accessories-popup .popup-footer .btn-success {
    background-color: #28a745;
    color: white;
}

.accessories-popup .popup-footer .btn-secondary {
    background-color: #6c757d;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 10px;
    }

    .table-item:nth-child(n+3) {
        display: none;
        /* hide quantity, total, image for mobile */
    }

    .accessory-image {
        width: 40px;
    }
}