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

html body {
    overflow-x: hidden;
}

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

::selection {
    background: #056ac6;
    color: #fff;
}

h1 html body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #111;
    cursor: pointer;
}

.logo {
    font-size: 22px;
    font-weight: 500;
}

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

}

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

.search-box {
    position: absolute;
    right: 250px;
    height: 45px;
    max-width: 555px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s linear;
}

.openSearch .search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a98f7;
    font-size: 20px;
}

.search-box input {
    height: 100%;
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 6px;
    padding: 0 15px 0 45px;
}


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

.topnav {
    background: #fff;
    padding: 5px 0;
    font-weight: 600;
}

.categorybox {
    width: 20%;
    text-align: start;
    display: block;
}

.searchbox {
    width: 50%;
}

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

.logobox {
    width: 20%;
}

.menubox {
    width: 50%;
}

.quotebox {
    width: 12%;
    padding: 0;
}

.category {
    width: 100%;
    position: relative;

}

.profile-box {
    width: 17%;
    text-align: end;
}

.profile {
    display: flex;
    justify-content: end;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.profile i {
    font-size: 20px;
    color: #056ac6;
    margin-right: 5px;
}

.profile-mobile {
    position: relative;
    cursor: pointer;
}

.profile-mobile p {
    font-weight: 500;
    font-size: 15px;
    padding-left: 4px;
    margin: 0;
    color: #056ac6;
}

.myacount {
    display: flex;
    justify-content: flex-start;
    margin-left: 20px;
    margin-top: 10px;
}

.profile p {
    margin: 0;
    color: #000;
    font-weight: 400;
    font-size: 15px;
}

.adtocard-reponive,
.menubox .profile,
.profile-mobile {
    display: none;
}

.profile-dropdown.open,
.profile-dropdown2.open {
    display: block;
}

/* Dropdown styles */
.profile-dropdown {
    display: none;
    position: absolute;
    top: 38px;
    background-color: #fff;
    border-radius: 1px;
    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 #056ac6;
}

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


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

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

.profile-dropdown2 {
    display: none;
    position: absolute;
    top: 25px;
    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;
    margin-left: 35px;
    padding: 5px;
}

.profile-dropdown2 a {
    display: block;
    color: #056ac6;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

.myacount i {
    font-size: 16px;
    margin-right: 5px;
    color: #056ac6;
}

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

.category .toggle {
    height: 40px;
    width: 100%;
    padding: 0 10px 0 10px;
    font-size: 15px;
    border: 1px solid #056ac6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: start;
    cursor: pointer;
    border-radius: 2px;
    background: #056ac6;
}

.category .toggle i {
    font-size: 25px;
    margin-right: 26px;
}

.bi-list-task::before {
    content: "\f477";
    margin-top: 8px;
}

.category .options {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 39px;
    left: 0;
    display: block;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #056ac6;
    z-index: 1000;
    text-align: start;
    padding: 5px 0;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* .category:hover .options {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
} */

/* .category:hover .options {
    display: block;
} */

.category .options ul {
    padding: 0;
    margin: 0;
    height: 400px;
    scrollbar-width: thin;
    scrollbar-color: #056ac6 #ece9e9;
    overflow-y: auto;
}

.category .options ul li {
    position: relative;
    overflow: hidden;
    padding: 8px 10px;
    font-size: 14px;
    border-bottom: 1px solid #056ac6;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.8px;
    z-index: 1;
    font-family: "Poppins", sans-serif;
}

.category .options ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #056ac6;
    transition: width 0.4s ease;
    z-index: -1;
    color: fff;
}

.category .options ul li:hover a {

    color: #fff;

}

.category .options ul li:hover::before {
    width: 100%;
}

.category .options ul li a {
    color: #056ac6;
    font-size: 15px;
}

.category .options ul li a:hover {
    color: #fff;
}

.dmail {
    font-size: 15px;
    color: #056ac6;
    font-weight: 500;
}

.dmail i {
    font-size: 20px;
    padding: 0 5px;
    color: #056ac6;
}

/* .bi-envelope-paper::before {
    content: "\f73d";
    margin-top: 9px;
} */

.searchInput {
    background: #fff;
    width: 100%;
    position: relative;
    border-radius: 2px;
    border: 1px solid #056ac6;
}

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

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

.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 #ccc;
}

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

.resultBox li:hover {
    background: #227f01;
    color: #fff;
}

.navbarbox {
    padding: 5px 0;
    border-bottom: 1px solid #e2e1e1;
    border-top: 1px solid #e2e1e1;
}

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

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

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

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

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

.navwebste li a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: #056ac6;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.navwebste li a:hover::after {
    width: 100%;
    bottom: -10px;
}

.navwebste li a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #056ac6;
}

.navwebste li a:hover {
    color: #056ac6;
}

.menu-toggle {
    cursor: pointer;
    font-size: 27px;
    text-align: center;
    color: #056ac6;
}

.close-menu {
    display: none;
}

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

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

@keyframes slideOut {
    0% {
        transform: translateX(0);
    }

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

.menu-toggle {
    display: none;
}

.modal-header {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    background: #056ac6;
    padding: 10px;
}

.popbody {
    padding: 15px !important;
}

.modal.left .modal-dialog {
    position: fixed;
    margin: 0;
    left: 5px;
    top: 30%;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}

.modal.left.show .modal-dialog {
    transform: translateX(0);
}

.po-in-la label {
    font-weight: 500;
    color: #056ac6;
    display: block;
    font-size: 13px;
}

.form-control {
    margin-bottom: 5px;
    border-radius: 3px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #1e446f;
    box-shadow: none;
}

.qtsend {
    padding: 3px 10px;
    border: none;
    font-size: 14px;
    background: #258000;
    color: #fff;
    border-radius: 2px;
}

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

section option {
    padding: 8px 12px;
}

.quote-btn {
    background: #f17436;
    padding: 5px 10px;
    border: none;
    color: #fff;
    font-size: 13px;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.quote-btn.border-animation::before,
.quote-btn.border-animation::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 0px solid transparent;
    transition: width 0.5s ease, height 0.5s ease;
}

.quote-btn.border-animation::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid #f17436;
    border-left: 2px solid #f17436;
}

.quote-btn.border-animation::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid #f17436;
    border-right: 2px solid #f17436;
}

.quote-btn.border-animation:hover::before,
.quote-btn.border-animation:hover::after {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
}


.banner {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pr-title h1,
.pr-title h2,
.pr-title h3,
.pr-title h4,
.pr-title h5,
.pr-title h6 {
    font-size: 26px;
    margin-top: 70px;
    width: 100%;
    color: #fe5b0a;
    margin-bottom: 0;
    font-weight: 800;
    background: #f9f7fb;
    text-align: center;
    padding: 4px;
    font-family: "Roboto Slab", serif;
}

.main-title p {
    margin-top: 15px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: justify;
    margin-bottom: 0;
}

.pr-title p {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: justify;
    margin-bottom: 8px;
    margin-top: 5px;
}

.fst-con-row {
    margin: 0;
}

.fst-con {
    width: 16.66%;
    padding: 3px;
}

.fst-con-img {
    padding: 5px;
    border: #e5e5e5 solid 1px;
    text-align: center;
    position: relative;
    pointer-events: all;
    cursor: pointer;
}

.category-img {
    background: linear-gradient(to bottom, #f2f4fb, #fbfbfb);
    border: #e5e5e5 solid 1px;
    text-align: center;
    display: flex;
    height: inherit;
    flex-direction: column;
    flex: 1;
    position: relative;
    pointer-events: all;
    cursor: pointer;
    border-radius: 3px;
    padding: 10px;
}

.fst-con-img a::before,
.fst-con-img a::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    transition: width 1s ease, height 1s ease;
}

.fst-con-img a::before {
    top: -1px;
    left: -1px;
    border-top: 1px solid #056ac6;
    border-left: 1px solid #056ac6;
}

.fst-con-img a::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 1px solid #056ac6;
    border-right: 1px solid #056ac6;
}

.fst-con-img a:hover::before,
.fst-con-img a:hover::after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}

.fst-con-img img,
.category-img img {
    font-size: 170px;
    height: 170px;
    object-fit: contain;
}

.fst-con-img h2,
.fst-con-img h3,
.fst-con-img h4,
.fst-con-img h5,
.fst-con-img h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
    margin-top: 10px;
    color: #056ac6;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 34px;
}

.category-img h2,
.category-img h3,
.category-img h4,
.category-img h5,
.category-img h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #056ac6;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 34px;
}

.fst-con-img p {
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: #c0c0c4;
}

.boxcon p {
    color: #003fa7;
}


.labosed {
    width: 33.33%;
    padding: 5px;
    border: 1px solid #cccc;
}


.labosed-img {
    width: 35%;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.labosed-til {
    width: 65%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 0 10px;
}

.labosed-img img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.labosed-til h2,
.labosed-til h3,
.labosed-til h4,
.labosed-til h5,
.labosed-til h6 {
    font-size: 16px;
    font-weight: 600;
    color: #056ac6;
}

.labosed-sc {
    padding: 5px 15px;
}

.labothr {
    width: 25%;
    padding: 2px;
}

.labothr-con {
    border: 1px solid #d9e8f8;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    height: 1;
    flex: 1;
}

.labothr-img {
    padding: 10px;
    text-align: center;
}

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

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

.labothr-til {
    padding: 10px;
}

.labothr-til h2,
.labothr-til h3,
.labothr-til h4,
.labothr-til h5,
.labothr-til h6 {
    text-align: start;
    font-size: 16px;
    color: #056ac6;
    font-weight: 600;
}

.labothr-til ul li {
    font-size: 13px;
    color: #333;
    line-height: 24px;
    font-weight: 400;
}

.labothr-til ul li span {
    font-weight: 600;
    color: #111;
    font-size: 13px;
}

.quote-btn-con {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    border: 1px solid #d9e8f8;
    padding: 5px;
}

.quote-btn-con .addto-btn {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: all 1s;
    background: transparent;
}

.quote-btn-con .addto-btn {
    border: 1px solid #faac06;
    color: #faac06;
}

.quote-btn-con .add-buyNow {
    border: 1px solid #fe5b0a;
    color: #fe5b0a;
}

.quote-btn-con a {
    background-color: transparent;
    border: 1px solid #850101;
    color: #850101;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 16px;
    transition: all 1s;
    display: none;
}

.quote-btn-con a:hover {
    background-color: #850101;
    color: #fff;
}

.sub-cate-anch {
    width: 100%;
    margin-bottom: 12px;
}

.sub-cate-anch a {
    border: 1px solid #056ac6;
    padding: 4px 10px;
    color: #056ac6;
    font-weight: 500;
    display: inline-block;
    letter-spacing: 0.6px;
    border-radius: 4px;
}

.sub-cate-anch h2,
.sub-cate-anch h3,
.sub-cate-anch h4,
.sub-cate-anch h5,
.sub-cate-anch h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}


/* Conatct Us Start */
.box {
    position: relative;
}

.from {
    grid-area: from;
}

.info {
    grid-area: info;
}

.map {
    grid-area: map;
}

.contact {
    padding: 40px 40px 5px;
    border: 1px solid #056ac6;
    border-radius: 3px;
}

.box {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: "from info" "from map";
    grid-gap: 10px;
    margin-top: 20px;
}

.contact h2,
.contact h3 {
    color: #fe5b0a;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.from-box {
    position: relative;
    width: 100%;
}

.infoBox div p,
.infoBox div a {
    margin-bottom: 0;
    font-size: 14px;
}

.from-box .row50 {
    display: flex;
    gap: 20px;
}

.inputBox {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}

.from-box .row100 .inputBox {
    width: 100%;

}

.inputBox span {
    color: #056ac6;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.inputBox input {
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
    border: 1px solid #aaa9a9;
    border-left: 2px solid #056ac6;
    border-radius: 4px;
}

.inputBox textarea {
    padding: 10px;
    font-size: 14px;
    outline: none;
    border: 1px solid #aaa9a9;
    resize: none;
    min-height: 100px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.inputBox input[type="submit"] {
    background: #fe5b0a;
    color: #fff;
    border: none;
    font-size: 18px;
    max-width: 100px;
    font-weight: 500;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 2px;
}

.inputBox::placeholder {
    color: #ccc;
}

.info .infoBox div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;

}

.info .infoBox div span {
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: #056ac6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 15px;
}

.map {
    padding: 0;
}

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

/* Conatct Us Start */
@media(max-width:991px) {
    .box {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "from" "info" "map";
    }

    .map {
        min-height: 300px;
    }

    .from-box .row50 {
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .inputBox {
        width: 100%;
    }

    .contact {
        padding: 30px;
    }

    .map {
        padding: 0;
    }
}

/******************** About us start *********************/
.aboutcnt-wr .abtit {
    font-size: 17px;
    color: #056ac6;
    font-weight: 600;
    padding: 6px 0;
    display: block;
}

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

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

.labst {
    width: 25%;
    padding: 2px;
    display: flex;
    flex-direction: column;
    height: inherit;
}

.labstimg {
    display: flex;
    flex-direction: column;
    height: inherit;
    flex: 1;
    border: 1px solid#ccc;
    background: #f9f9f9;
    border-radius: 3px;
    padding: 10px;
    padding-bottom: 15px;
}

.labst-img .compare {
    padding: 10px;
}

.labst-img img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
}

.labst-til h2,
.labst-til h3,
.labst-til h4,
.labst-til h5,
.labst-til h6 {
    text-align: start;
    font-size: 16px;
    color: #056ac6;
    font-weight: 600;
    margin-top: 10px;
}

.list-lab {
    height: 85px;
    scrollbar-color: #bbb7b7 #ccc;
    scrollbar-width: thin;
    overflow-y: auto;
    padding: 4px 0;
    line-height: 23px;
}

.list-lab li {
    font-size: 13px;
    color: #333;
    font-weight: 400;
}

.list-lab li span {
    font-weight: 600;
    color: #111;
    font-size: 13px;
}

.labst-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #ddd;
    background: #f9f9f9;
}

.labst-btn button {
    background: #007bff;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.labst-btn button:hover {
    background: #0056b3;
}

.labst-btn .quote-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.labst-btn .quote-link:hover {
    color: #0056b3;
}

footer {
    margin-top: 100px;
    border-top: 2px solid #056ac6;
    padding: 40px 0 0 0;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, transparent 0%, transparent 33%, #e7dff5 33%, #056ac6 66%, transparent 66%, transparent 100%);
}

.ft-cont {
    padding-top: 10px;
}

.ft-con-im {
    width: 25%;
}

.best-seller {
    width: 20%;
}

.quick-links {
    width: 20%;
}

.my-accounts {
    width: 15%;
}

.get-in-touch {
    width: 20%;
}

.ft-con-im img {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.ft-con-im .Free {
    font-size: 14px;
    margin-top: 8px;
    color: #111;
    text-align: justify;
}

.quick-links .ft-link,
.best-seller .ft-link,
.my-accounts .ft-link,
.get-in-touch .ft-link {
    color: #fe5b0a;
    letter-spacing: 0.8px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.ft-con-im ul {
    list-style: none;
    padding: 0;
}

.quick-links ul>li,
.best-seller ul>li,
.my-accounts ul>li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.quick-links ul li::before,
.best-seller ul li::before,
.my-accounts ul li::before {
    content: "\203A";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 20px;
    color: #056ac6;
    font-weight: bold;
}

.quick-links ul>li a,
.best-seller ul>li a,
.my-accounts ul>li a {
    font-size: 14px;
    line-height: 20px;
    color: #111;
    font-weight: 400;
}

.quick-links ul>li a:hover,
.best-seller ul>li a:hover,
.my-accounts ul>li a:hover {
    color: #056ac6;
}

.add {
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.add a {
    font-size: 14px;
    color: #111;
}

.add i {
    padding: 0 5px;
    margin-right: 8px;
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    border: 1px solid #fe5b0a;
    background: #056ac6;
    border-radius: 4px;
}

.ft-end {
    background: #056ac6;
}

.ft-end p {
    padding: 8px 0;
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 13px;
}

/*****************  FOOTER CONTAINER 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: #111;
    position: absolute;
    left: 0;
    border-radius: 50%;
    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 {
    margin-top: 25px;
}

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

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

.sitemap ul>li>a.l2bg {
    background-color: #056ac6 !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*******************************/

/**************************** 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: #066bc6;
    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_cover.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: #056ac6;
    font-size: 21px;
    font-weight: 700;
    padding: 40px 0 0 10px;
    display: block;
}

.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-size: 25px;
    font-weight: 700;
    position: relative;
    display: block;
    letter-spacing: 0.3px;
    color: #fe5b0a;
    font-family: "Roboto Slab", serif;
}

.single-catalog .download_btn,
.download_btn:hover {
    padding: 7px 22px;
    font-size: 15px;
    margin-top: 10px;
    margin: 10px 0 30px !important;
    display: inline-block !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: #fe5b0a;
    font-weight: 700;
    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 ****************************/
/*******************************Compare page CSS Start*******************************/
.compare-page {
    padding-top: 20px;
}

.compare-page .table th {
    color: #2a017c;
    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 #fe5b0a;
    padding: 3px 10px;
    background: #fe5b0a;
    color: #fff;
    border-radius: 3px;
}

/*******************************Compare page CSS End*******************************/
/******************** Section Start ************************/
.sec-box1 {
    width: 25%;
    padding-right: 0;
}

.sec-box2 {
    width: 75%;
}

.labothr-sc {
    width: 33.33%;
    padding: 2px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

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

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

.filter-ss .filter-hd {
    padding: 7px 10px;
    font-size: 15px;
    background: #f0f4f8;
    color: #056ac6;
}

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

.sub-sec-tog .flt-ttl {
    font-size: 14;
    font-weight: 600;
    margin-bottom: 0;
    border-bottom: 1px solid#b8d0fc;
    padding: 3px 10px;
    color: #111;
    letter-spacing: 0.7px;
}

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

input[type="checkbox"] {
    width: 35px;
    appearance: none;
    -webkit-appearance: none;
    background: #cfcfcf;
    outline: none;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    border: 1px solid #056ac6;
    padding: 7px;
    padding-left: 26px;
}

input:checked[type="checkbox"] {
    background: #056ac6;
}

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;
    padding-right: 10px;
}

/******************** Section Ends ************************/

/******************* Product-details start ********************/
.detal-page {
    margin-top: 70px;
}

.image-section {
    width: 35%;

}

.img-dcr-sec {
    width: 65%;
}

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

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

.pro-title h1 {
    font-size: 28px;
    font-weight: 700;
    text-align: start;
    font-family: "Bai Jamjuree", sans-serif;
    color: #055da7;
}

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

.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: #227f01;
    border-radius: 50%;
}

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

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

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

.bi-stars::before {
    content: "\f586 \f586 \f586 \f586 \f586";
    font-family: 'bootstrap-icons';
    font-style: normal;
    color: gold;
    font-size: 14px;
    margin-bottom: 12px;
}

.addtocata {
	display: flex;
	align-items: center;
	gap: 5px;
}

.prodescrip {
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.prodescrip .qty {
    font-size: 14px;
    margin-right: 5px;
}

.prodex-buy-btn {
    background: transparent;
    border: 1px solid #fe5b0a;
    padding: 4px 10px;
    display: block;
    color: #fe5b0a;
    font-weight: 500;
    border-radius: 2px;
    font-size: 15px;
}


.dtl-quote-btn .pro-quote,
.dtl-quote-btn .pro-addtocart {
    color: #faac06;
    border: 1px solid #faac06;
    padding: 4px 8px;
    border-radius: 1px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    font-weight: 500;
}

.dtl-quote-btn .pro-quote {
    display: none;
}

.pro-addtocart i,
.pro-catalog i {
    font-size: 15px;
    margin-right: 5px;
}

.dtl-quote-btn .pro-catalog {
    background: transparent;
    border: 1px solid #850101;
    color: #850101;
    padding: 4px 8px;
    border-radius: 1px;
    font-size: 14px;
    font-weight: 500;
}

.dtl-quote-btn .pro-price {
    font-size: 16px;
    font-weight: 600;
    color: #056ac6;
    margin-left: 10px;
}

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

.ct-quantity button {
    background-color: transparent;
    color: #2d2d2d;
    font-size: 20px;
    width: 30px;
    height: auto;
    transition: background-color .2s;
    box-shadow: none;
    border: 0;
    pointer-events: all;
    cursor: pointer;
    font-family: 'poppins';
}

.ct-quantity .input-box {
    width: 40px;
    padding: 5px 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';
}


.pro-til h1 {
    font-size: 25px;
    color: #fe5b0a;
    font-weight: 500;
    font-family: "Roboto Slab", serif;
    text-align: start;
}

.pro-til p {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: justify;
}

.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;
    margin-bottom: 0;
    color: #05636f;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}

.spec-table span {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #056ac6;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    background: #f9f7fb;
    padding: 2px 8px;
}

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

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

}

.spec-table ul li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ef7e47;
    margin-right: 8px;
    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%;
    margin-top: 8px;
}

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



/******************* Product-details ends ********************/

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

.compare label.action {
    position: relative;
    pointer-events: all;
    cursor: pointer;
    height: 23px;
    width: 25px;
    display: block;
    background: #fff;
}

.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: #1c6702;
    line-height: 100%;
    position: absolute;
    right: 5px;
    left: auto;
    bottom: auto;
    top: -5px;
}

.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 #1c6702;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 3px;
    font-size: 14px;
    position: static;
    background: #1c6702;
    box-shadow: none;
    letter-spacing: 0.3px;
}

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


/**************************** Catalog Start **************************/
.catalog-con {
    width: 25%;
    padding: 3px;
    display: flex;
    height: inherit;
    flex-direction: column;
}

.catalog {
    display: flex;
    height: inherit;
    flex-direction: column;
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.catalog-img {
    text-align: center;
    padding: 0 10px;
}

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

.catalog-img h2,
.catalog-img h3,
.catalog-img h4,
.catalog-img h5,
.catalog-img h6 {
    text-align: start;
    font-size: 15px;
    color: #056ac6;
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: 600;
}

.catalog-img button {
    margin-bottom: 10px;
    background: transparent;
    border: none;
}

.con-hd {
    height: 70px;
    scrollbar-width: thin;
    scrollbar-color: #e7e9e6 #fff;
    overflow-y: auto;
    margin: 5px 0 15px;
}

.cata-btn {
    padding: 2px 10px;
    border: none;
    background: transparent;
    display: inline-flex;
    text-align: start;
    cursor: pointer;
    color: #000;
    font-size: 13px;
}

.cata-btn::before {
    content: "»»";
    margin-right: 5px;
    font-size: 14px;
    color: #fe5b0a;
}

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

}

.cata-pop-wrap li {
	margin-top: 5px;
	width: 100%;
}

.catalogo-header {
    padding: 5px 10px;
}

.cata-pop-wrap li a {
    border: 1px solid #fe5b0a;
    color: #056ac6;
    padding: 3px 10px;
    align-items: center;
    text-decoration: none;
    gap: 5px;
    font-size: 12px;
    border-radius: 2px;
    font-weight: 500;
}

.cata-pop-wrap {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	gap: 3px;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 10px 2px;
}

.cata-pop-wrap li a::before {
    content: "\f1c1";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #d32f2f;
    margin-right: 5px;
}

.cata-pop-wrap li a:hover {
    color: #d32f2f;
}


.modal-content {
    position: relative;
}

.custom-close-btn {
    border: none;
    color: #fff;
    position: absolute;
    top: -8px;
    right: -5px;
    background: red;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    font-size: 14px;
}


/**************************** Catalog Ends ***************************/
.container-con {
    border-bottom: 1px solid #e0f7f7;
    box-shadow: 0 0 2px 0 #cea9f6;
    margin-left: 0;
}

.breadcrumb {
    margin: 0;
    padding: 5px 0;
}

.breadcrumb li {
    font-size: 13px;
    color: #ccc;
}

.breadcrumb li a {
    color: #727171;
}

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

.accordion {
    margin-top: 30px;
    border-radius: 0 !important;
}

.accordion-button {
    border-radius: 0 !important;
    padding: 10px !important;
    background: transparent !important;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    margin-top: 13px;
}

.form-col {
    flex: 1;
}

.country {
    width: 100%;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: transparent;
    color: #6c757d;
}

/* =============================== */
/* Loader */
.lab_loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
}

.dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #4d4f78;
    border-color: #4d4f78 transparent #4d4f78 transparent;
    animation: dual-ring 1.2s linear infinite;
}

@keyframes dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loader Ends */
/* ======================================== */

/* CAPTCHA */
.input-groups {
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: flex-start;
}

.input-wrapper {
    display: flex;
    /* width: 100%; */
    position: relative;
}

.input-wrapper .captacha_refresh {
    border: none;
    outline: 0 none;
    position: absolute;
    top: 9px;
    right: 10px;
    width: 15px;
    color: #565656;
    background: #ffffff;
    padding: 0;
    height: auto;
}

.input-wrapper i {
    background: #fff;
    padding: 6px 3px;
}

.ask-expert .ask-expert-form br {
    display: none;
}

.input-wrappersss {
    display: flex;
    width: 100%;
    position: relative;
}

.input-wrappersss i {
    background: #fff;
    padding: 6px 3px;
    position: relative;
    left: -29px;
    top: 20px;
}

.input-wrapper .captcha_refresh {
    position: absolute;
    top: 0px;
    right: -18px;
    font-size: 13px;
}

.input-wrapper .captcha_refresh .refresh-btn {
    background: #fff;
    padding: 6px 3px;
}

.input-wrapperss {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.input-wrapperss i {
    background: #fff;
    padding: 6px 3px;
    position: relative;
    left: -30px;
    top: 2px;
    color: #7c7979;
}

#contact_captcha {
    height: 46px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
}

.captcha-box {
    padding: 0;
    border-radius: 5px;
    background-color: #fe5b0a;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
    background-image: repeating-linear-gradient(19deg, transparent, transparent 7px, rgba(255, 255, 255, 0.1) -25px, rgba(255, 255, 255, 0.1) 13px);
    margin-right: 10px;
    margin-top: 0;
    height: 38px;
    width: 74px;
    margin-left: 0;
}

.input-groups .input-wrapper .captcha {
    height: 38px;
    width: 140px;
}

.input-wrapper .captacha_refresh .refresh-btn {
    padding: 0;
}

.prod-captcha-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #0690bf;
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-size: 8px 8px;
    color: #333;
    text-align: center;
    position: relative;
}

input#contact_captcha {
    height: 38px;
    margin-top: 0;
    width: 200px;
}

/* Captcha End */
/* ============================= */

/* ==================== */
/* Search */

/* Ensuring that the search results are displayed in a horizontal layout */
#scrollsearch {
    display: none;
    /* Hidden by default until results appear */
    width: 100%;
    max-height: 300px;
    /* Set a max height for the dropdown */
    overflow-y: auto;
    /* Scrollable if content exceeds height */
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

/* Search content */

.search-content {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
    position: relative;
}

.search-content::before {
    content: "";
    width: 1px;
    position: absolute;
    height: 100%;
    top: -14px;
    left: 49%;
    background: #e7e7e7;
}

/* Style for the products list */

.products-list {
    flex: 1;
    margin-right: 10px;
    margin-left: 15px;
}

.products-list h5 {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 4px;
    margin-left: 5px;
}

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

.products-list li {
    font-size: 13px;
}

.products-list li a {
    color: #000;
    text-decoration: none;
}

.search-content .categories-list {
    flex: 1;
}

.categories-list h5 {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 4px;
    margin-left: 5px;
}

.categories-list ul {
    padding: 0;
    list-style-type: none;
    /* overflow: hidden; */
    /* padding-right: 10px; */
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
    /* height: 110px; */
    margin-right: 8px;
    padding-bottom: 8px;
}

.categories-list li {
    font-size: 13px;
    margin-bottom: 0;
}

.categories-list li a {
    color: #000;
    text-decoration: none;
}

/* Search End */
/* =========================== */
.table_text h2,
.table_text h3,
.table_text h4,
.table_text h5,
.table_text h6 {
    font-size: 15px;
    font-weight: 600;
}


.proc_catalog {
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
}

#catalogPdfBtns {
    text-decoration: none;
}

#catalogPdfBtns h2 {
    font-size: 25px;
    font-weight: 800;
    color: rgb(5 99 111);
}

.proc_catalog {
    margin-top: 40px;
}

.btn-2 {
    width: 40px;
    height: 40px;
    background: #056ac6;
    border-left: 2px solid #056ac6;
    border-top: 2px solid #f17436;
    border-bottom: 2px solid #f17436;
    border-right: none;
    border-radius: 3px;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

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

.adtocard {
    position: fixed;
    display: inline-block;
    cursor: pointer;
    top: 60%;
    right: 0;
    z-index: 9999;
    background: #f17436;
    padding: 2px 10px 0px 6px;
    border-radius: 3px;
    border-top: 2px solid #056ac6;
    border-bottom: 2px solid #056ac6;
}


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

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

.cart_empimg {
    width: 500px;
}

.main-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    margin-top: 10px;
    padding: 2px 5px;
    border-radius: 3px;
}

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

.addto-btn,
.add-buyNow {
    background: transparent;
    padding: 2px 8px;
    margin: 3px 0;
    font-size: 15px;
    font-weight: 500;
    border-radius: 3px;
}

.add-buyNow {
    border: 1px solid #fe5b0a;
    color: #fe5b0a;
}

.addto-btn {
    border: 1px solid #faac06;
    color: #faac06;
}

.main-btn span,
.quote-btn-con span {
    font-size: 15px;
    font-weight: 600;
    color: #056ac6;
    margin-left: 8px;
}

.addto-btn i {
    font-size: 15px;
}

.main-btn a {
    font-size: 16px;
    color: #850101;
    border: 1px solid #850101;
    padding: 2px 6px;
    border-radius: 3px;
    display: none;
}

.main-btn .border-animation {
    border: 1px solid #fe5b0a;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    padding: 2px 8px;
    color: #fe5b0a;
    border-radius: 3px;
    display: none;
}

.quote-btn-con .border-animation {
    display: none;
}

/* ==================================== */
/* Skeleton Loader */

/*skeleton loading*/
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.skeleton {
    display: block;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 100px;
    animation: shimmer 1.5s linear infinite;
    background-color: #ccc;
    border-radius: 4px;
}

.equipment-loader-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.equipment-card-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
}

.skeleton-img-horizontal {
    width: 160px;
    height: 120px;
    flex-shrink: 0;
}

.equipment-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-title {
    height: 20px;
    width: 60%;
}

.skeleton-count {
    height: 14px;
    width: 30%;
}

@media (max-width: 768px) {
    .equipment-card-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .skeleton-img-horizontal {
        width: 100%;
        height: 180px;
    }

    .skeleton-title,
    .skeleton-count {
        width: 80%;
    }
}

/* ================================== */
/* ================== */

/* 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;
    }
}

/* Accessories 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;
}

/* ========================================== */

/* Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/****************************** Sign in Page CSS Start*******************************/
.lgf-section {
    max-width: 490px;
    margin: 50px auto;
    border: 1px solid #056ac6;
    border-radius: 10px;
    overflow: hidden;
}

.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: 24px;
    font-weight: 600;
    display: inline-block;
    line-height: 120%;
    margin: 0;
    color: #333;
    font-family: "Roboto Slab", serif;
}

.lg-content-wr .lg-com-title h2,
.lg-content-wr .lg-com-title h3,
.lg-content-wr .lg-com-title h4,
.lg-content-wr .lg-com-title h5,
.lg-content-wr .lg-com-title h6,
.lg-content-wr .lg-com-title h1 {
    color: #056ac6;
}

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

.lg-form-wr.lg-password {
    padding-bottom: 5px;
}

.com-tit-para {
    font-weight: 400;
    display: block;
    margin: 0;
    text-align: center;
    padding: 10px 0 0;
    color: #858788;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 130%;
}

.lg-sect .lg-com-title {
    text-align: center;
}

.lg-com-title {
    padding-bottom: 30px;
}

.lg-form-wr input {
    padding: 0 10px;
    height: 40px;
    font-size: 14px;
    line-height: 120%;
    box-shadow: none !important;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.lg-form-wr {
    position: relative;
    padding-bottom: 18px;
}

.lg-form-wr label {
    position: absolute;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    top: -5px;
    left: 12px;
    color: #0e9ac8;
    background: #fff;
    line-height: 100%;
    padding: 0 5px;
}

.lg-check-for {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-checkbx {
    display: flex;
    align-items: center;
}

.login-checkbx input {
    border: 1px solid #ccc;
    margin-right: 10px;
}

.lg-check-label span {
    font-weight: 500;
    display: inline-block;
    margin: 0;
    text-align: left;
    padding: 0;
    color: #444;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 100%;
}

p.dnt-acc {
    font-weight: 400;
    display: block;
    margin: 0;
    text-align: center;
    padding: 15px 0 0;
    color: #444;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 130%;
}

p.dnt-acc a {
    color: #056ac6;
    text-decoration: none;
    padding-left: 4px;
    transition: 0.5s all;
}

p.dnt-acc a:hover {
    color: #056ac6;
}

.lg-sub-btn,
.lg-sub-btn:hover {
    display: block;
    color: #fff;
    border-radius: 4px;
    line-height: 35px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    border-left: 4px solid #f17436;
    border-right: 4px solid #f17436;
    border-bottom: 1px solid #056ac6;
    border-top: 1px solid #056ac6;
    background-color: #056ac6;
    width: 100%;
    margin: 20px auto 0;
    transition: 0.5s all;
    max-width: 250px;
}

.note {
    margin-top: 15px;
}

.note span {
    font-size: 13px;
    font-weight: 400;
    color: #5f5f5f;
}

s a {
    transition: 0.5s all;
}


.lg-check-label {
    line-height: 100%;
}

.lg-check-for a {
    text-decoration: none;
    padding-left: 4px;
    transition: 0.5s all;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #444;
}

.lg-check-for a:hover {
    color: #056ac6;
    font-weight: 500;
}

.lg-design-wr {
    background: url('../images/lg-background.jpg')no-repeat;
    background-size: cover;
}

.lg-design-wr {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Regi-btn {
    display: inline-block;
    background: #0e9ac8;
    color: #fff;
    border-radius: 30px;
    line-height: 35px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #0e9ac8;
    font-family: "Poppins", sans-serif;
    margin: 20px 0 0 0;
    transition: 0.5s all;
    text-decoration: none;
}

.Regi-btn:hover {
    background: #fff;
    color: #0e9ac8;
}

.lg-design-wr .com-tit-para {
    color: #333;
}

.lg-design-wr .lg-com-title {
    padding: 30px 0;
}

/****************************** Sign in Page CSS End*******************************/
/****************************** Register Page CSS Start*******************************/
.lgf-section.rgf-section {
    max-width: 700px;
}

.register-page-form {
    display: flex;
    flex-wrap: wrap;
}

.register-page-form .lg-form-wr {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
}

.register-page-form .lg-form-wr {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 15px;
}

.lg-content-wr.rg-content-wr {
    padding: 50px 30px;
}

/****************************** Register Page CSS End*******************************/
/****************************** OTP Page CSS Start*******************************/
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-box {
    width: 40px;
    height: 40px;
    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);
}

/****************************** OTP 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: 30px;
    font-weight: 600;
    color: #056ac6;
    margin: 0;
}

body .title-wrap {
    text-align: center;
    display: block;
    padding-bottom: 20px;
}

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

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

.track-order-box .tracking-id span {
    color: #fff;
    font-weight: 500;
}

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

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

.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-icon {
    position: relative;
    height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
    margin-top: 35px;
}

.track {
    position: relative;
    background-color: #ddd;
    height: 5px;
    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: #056ac6;
}

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

.track .step.active .icon {
    background: #056ac6;
    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: #f17436;
}

.track .step.active .text {
    font-weight: 400;
    color: #444242;
    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
}


.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*******************************/
/****************************** Order Page CSS Start*******************************/
.details-order-page {
    padding: 50px 0;
}

.detor-bx {
    margin: 30px 0 0 0;
    border: 1px solid #056ac6;
    border-radius: 4px;
}

.detbsor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #056ac6;
    padding: 10px;
    border-bottom: 1px solid #056ac6;
}

.detbsor .detracking-id {
    margin: 0px;
    color: #fff;
    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;
}

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

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

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

.ofrd-det>div {
    color: #515050;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-align: left;
    line-height: 120%;
    font-weight: 500;
}

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

.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;
    font-family: "Poppins", sans-serif;
    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;
}

/****************************** Order Page CSS End*******************************/
/****************************** My Account Page CSS Start *******************************/
.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: #056ac6;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 150%;
    padding: 10px 0 3px 0;
    font-weight: 600;
    margin: 0;
    display: block;
    letter-spacing: 0.4px;
}

.accntu-page .ac-Mail {
    color: #858788;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 120%;
    padding: 0;
    font-weight: 400;
    margin: 0;
    display: block;
}

.accntu-page .butn-tab {
    border: 1px solid #056ac6;
    border-radius: 4px;
    padding: 30px 10px 0;
}

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

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

.accntu-page .myaccount-man-btn {
    border: 1px solid #056ac6;
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    padding: 7px 8px 7px 23px;
    position: relative;
    text-align: left;
    text-decoration: none;
    border-radius: 5px;
}


.accntu-page .myaccount-man-btn.active {
    background: #056ac6;
    color: #fff;
    font-weight: 600;
}

.tab-content {
    border: 1px solid #056ac6;
    border-radius: 4px;
}

.accntu-page .myacnt-heading {
    padding: 10px;
    border-bottom: 1px solid #056ac6;
    background: rgba(227, 235, 250, 0.4);
}

.accntu-page .myacnt-heading {
    padding: 10px;
    background: #056ac6;
}

.myacnt-heading h1,
.myacnt-heading h2,
.myacnt-heading h3,
.myacnt-heading h4,
.myacnt-heading h5,
.myacnt-heading h6,
.myacnt-heading p {
    color: #fff;
    font-size: 26px;
    line-height: 120%;
    font-weight: 600;
    margin: 0;
    display: block;
    text-align: center;
    letter-spacing: 0;
    padding: 0;
    font-family: "Roboto Slab", serif;
}

.accntu-page .cad-body {
    padding: 40px 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: 50%;
    padding: 0 10px 20px;
    position: relative;
}

.accntu-page .cad-body p a {
    color: #056ac6;
    text-decoration: none;
}

.accntu-page .cad-body .form-group label {
    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 .cad-body .form-group input.form-control {
    padding: 0 10px;
    height: 35px;
    font-size: 14px;
}

.accntu-page .cad-body .form-group input.form-control,
.accntu-page .cad-body .form-group select.select-county {
    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%;
    text-align: center;
}

.check-contin {
    margin-top: 45px;
}

.accntu-page .cad-body .Submit .btn,
.accntu-page .cad-body .Submit .btn:hover {
    color: #fff;
    border-radius: 4px;
    line-height: 35px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
    border-left: 4px solid #f17436;
    border-right: 4px solid #f17436;
    border-bottom: 1px solid #056ac6;
    border-top: 1px solid #056ac6;
    background-color: #056ac6;
    transition: 0.5s all;
}


.accntu-page .ordr-card .trck-btn a:hover,
.accntu-page .cad-body .Edit-btn:hover {
    background-color: #056ac6;
    color: #fff
}

.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-left: 4px solid #f17436;
    border-right: 4px solid #f17436;
    border-bottom: 1px solid #056ac6;
    border-top: 1px solid #056ac6;
    background-color: #056ac6;
    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: 25px 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-left: 4px solid #f17436;
    border-right: 4px solid #f17436;
    border-bottom: 1px solid #056ac6;
    border-top: 1px solid #056ac6;
    background-color: #056ac6;
    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: 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: #056ac6;
    color: #fff
}

.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: 0;
    right: auto;
    bottom: auto;
    width: 2px;
    height: 90%;
    background: #0e9ac8;
    content: "";
    left: 16px;
}

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

.main-tit h1,
.main-tit h2,
.main-tit h3,
.main-tit h4,
.main-tit h5,
.main-tit h6 {
    color: #fe5b0a;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    display: block;
    text-align: center;
    letter-spacing: 0;
    padding: 0;
    font-family: "Roboto Slab", serif;
}

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

.cart-title-wrap {
    align-items: center;
    background: #056ac6;
    padding: 13px 10px;
    border-radius: 4px 4px 0 0;
}

.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: 130px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

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

.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: #0e9ac861 #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: #056ac6;
    font-size: 17px;
    line-height: 130%;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    text-align: left;
    letter-spacing: 0;
    padding: 0;
}

.ct-pr-des li {
    color: #6c6c6c;
    font-size: 14px;
    line-height: 100%;
    text-align: left;
    font-weight: 400;
    padding: 0 0 7px 0;
    font-family: "Poppins", sans-serif;
}

.ct-pr-des li span {
    color: #333;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.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;
}

.car-ct-cnt-wra {
    border-bottom: 1px solid #ccc;
}

.pr-ct-pri span {
    display: block;
    text-align: center;
    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;
}

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

.rem {
    position: absolute;
    left: auto;
    right: 73px;
    width: auto;
    z-index: 9;
    background: #f00;
    padding: 0 5px;
}

.cart-remove {
    color: #fff;
    border: 0;
    background: transparent;
    font-size: 18px;
}

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

.ct-quantity button {
    background-color: transparent;
    color: #2d2d2d;
    font-size: 20px;
    width: 30px;
    height: auto;
    transition: background-color .2s;
    box-shadow: none;
    border: 0;
    pointer-events: all;
    cursor: pointer;
    font-family: 'poppins';
}

.ct-quantity .input-box {
    width: 40px;
    padding: 5px 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';
}

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

.ct-price-box {
    border: 1px solid #056ac6;
    border-radius: 4px;
}

.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 #056ac6;
    background: #056ac6;
    text-transform: capitalize;
    margin-bottom: 40px;
    border-radius: 4px 4px 0 0;
}

.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: #056ac6;
    color: #fff;
    border-radius: 4px;
    line-height: 35px;
    padding: 0px 40px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
    border-left: 4px solid #f17436;
    border-right: 4px solid #f17436;
    border-top: 1px solid #056ac6;
    border-bottom: 1px solid #056ac6;
    transition: 0.5s all;
    display: block;
    text-decoration: none;
}


.ct-btn-wrap {
    margin: 20px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chct-page-ro {
    max-width: 1200px;
    margin: 30px auto 0;
    border: 1px solid #056ac6;
    border-radius: 4px;
}

.chct-cnt-wra {
    border-right: 1px solid #ccc;
    padding-top: 20px;
    padding-right: 30px;
}

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

.chct-addres-wrap address,
.chct-country,
.chct-numb {
    color: #333333ad;
    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: #056ac6;
    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-left: 4px solid #f17436;
    border-right: 4px solid #f17436;
    border-bottom: 1px solid #056ac6;
    border-top: 1px solid #056ac6;
    background-color: #056ac6;
    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: #056ac6;
    color: #fff;
}

.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-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;
    position: absolute;
    font-size: 12px;
    top: -5px;
    left: 18px;
    color: #056ac6;
    background: #fff;
    line-height: 100%;
    padding: 0 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,
.chct-addres-btn:hover {
    color: #fff;
    border-radius: 4px;
    line-height: 35px;
    padding: 0px 40px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px;
    border-left: 4px solid #f17436;
    border-right: 4px solid #f17436;
    border-bottom: 1px solid #056ac6;
    border-top: 1px solid #056ac6;
    background-color: #056ac6;
    transition: 0.5s all;
    display: inline-block;
    text-decoration: none;
}

.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;
}

.billing-details {
    border: 1px solid #ccc;
    padding: 20px;
}

.chckt-frmtt h3 {
    font-size: 20px;
    color: #056ac6;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 25px;
}

/************************** Checkout Page CSS End**************************/


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

    /************************** 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) {

    /************************** Checkout Page CSS Start**************************/
    .chct-cnt-wra {
        border-right: 0;
        padding-top: 20px;
        padding-right: 12px;
        border-bottom: 1px solid #ccc;
        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;
    }

    .form-row {
        flex-direction: column;
    }

    /************************** 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) {

    /************************** 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: right;
    }

    .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: 10px;
        top: 10px;
    }

    /************************** 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 {
        border-right: 0;
        padding-top: 20px;
        padding-right: 12px;
        border-bottom: 1px solid #ccc;
        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-top: 45px;
        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) {

    /************************** Checkout Page CSS Start**************************/
    .chct-cnt-wra {
        border-right: 0;
        padding-top: 20px;
        padding-right: 12px;
        border-bottom: 1px solid #ccc;
        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;
        margin-top: 40px;
    }

    .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: right;
    }

    .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: 10px;
        top: 10px;
    }

    .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*******************************/
}

.togglePassword {
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 100%;
    pointer-events: all;
    cursor: pointer;
}

img.cart_img {
    width: 200px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}