@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");

html {
    font-size: 16px;
    font-size: 0.8vw;
    font-family: Poppins;
    scroll-behavior: smooth;
}
@media only screen and (max-width: 1199px){
    html {
        font-size: 1vw;
    }
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 1.5vw;
    }
}

@media only screen and (max-width: 767px) {
    html {
        font-size: 2.25vw;
    }
}

@media only screen and (max-width: 600px) {
    html {
        font-size: 3.25vw;
    }
}

body {
    font-family: Poppins;
    font-size: 1rem;
    background: #fafaf8;
}

label {
    margin: 0;
}

.btn {
    background: transparent;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

ul {
    padding: 0;
}

/*.btnSuccess {
    background: #6fab3e;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 1.15rem;
    min-width: 9rem;
}

.btnSuccess:hover {
    color: #fff;
}

.btnSuccess.-inv {
    border: solid 1px #6fab3e;
    background: #fafaf8;
    color: #6fab3e;
}

.btnSuccess.-action {
    background: #eaf1e6;
    color: #6fab3e;
}
.btnSuccess.-default {
    border: solid 1px #9f9f9f;
    color: #9f9f9f;
    background-color: #fff;
}*/

.btnSuccess {
    padding: 0.65rem 1rem;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 1.15rem;
    min-width: 9rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    background-color: #6fab3e;
    z-index: 1;
}

.btnSuccess:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #6fab3e;
    z-index: -2;
}

.btnSuccess:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #639837;
    transition: all .3s;
    z-index: -1;
}

.btnSuccess:hover {
    color: #fff;
}

.btnSuccess:hover:before {
    width: 100%;
}

.btnSuccess:hover {
    color: #fff;
}

.btnSuccess.-inv {
    border: solid 1px #6fab3e;
    color: #6fab3e;
}

.btnSuccess.-inv:after {
    background-color: #fafaf8;
}

.btnSuccess.-inv:before {
    background-color: #efefe9;
}

.btnSuccess.-action {
    color: #6fab3e;
}

.btnSuccess.-action:after {
    background-color: #eaf1e6;
}

.btnSuccess.-action:before {
    background-color: #dce8d6;
}

.btnSuccess.-default {
    border: solid 1px #9f9f9f;
    color: #9f9f9f;
}

.btnSuccess.-default:after {
    background-color: #fff;
}

.btnSuccess.-default:before {
    background-color: #f2f2f2;
}

.errBtn {
    padding: 0.65rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 1.15rem;
    min-width: 9rem;
    border: solid 1px #ff5a5a;
    background: #ffffff;
    color: #ff5a5a;
}

.-round {
    border-radius: 5rem !important;
}

.border-radius {
    border-radius: 1rem !important;
}

button, a {
    cursor: pointer;
}

a:focus {
    color: inherit;
    outline: 0;
}

.-txtGreen {
    color: #6fab3e !important;
}

.-txtBlue {
    color: #41215b !important;
}

.-txtYellow {
    color: #f7ad40 !important;
}

.-txtDefault {
    color: #4c4c4c !important;
}

.-txtDLight {
    color: #9f9f9f !important;
}

.-bold {
    font-weight: 600;
}

.-semiBold {
    font-weight: 500;
}

.large {
    font-size: large;
}

.small {
    font-size: 80% !important;
}

.medium {
    font-size: medium !important;
}

.bgWhite {
    background: #fff !important;
}

*.disabled, *:disabled {
    cursor: default;
}

.cctitle {
    font-size: 1.125rem;
    color: #4c4c4c;
    font-weight: 500;
}

.cctitle--md {
    font-size: 1.35rem;
    font-weight: 500;
}

.cctitle--lg {
    font-size: 1.5rem;
    font-weight: 500;
}

img {
    width: 100%;
}

.card {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 0;
}

.btnLink {
    color: #6fab3e;
    font-weight: 500;
}

li {
    list-style: none;
}

p {
    font-size: 1rem;
}

.error {
    outline: 1px solid red;
}

.selectCatBtn {
    font-size: 1.15rem;
}

div::-webkit-scrollbar, ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

div::-webkit-scrollbar-track, ul::-webkit-scrollbar-track {
    background: transparent;
}

div::-webkit-scrollbar-thumb, ul::-webkit-scrollbar-thumb {
    background: #eeeeee;
    border-radius: 3rem;
}

div::-webkit-scrollbar-thumb:hover, ul::-webkit-scrollbar-thumb:hover {
    background: #4c4c4c;
}

main {
    padding-top: 11rem;
}

    main.beforeLogin {
        padding-top: 6.9rem;
    }

.ccWrapper {
    min-height: 30rem;
}

.blkShadow {
    -webkit-box-shadow: 0px 0px 3px 0px rgba(76, 76, 76, 0.2);
    -moz-box-shadow: 0px 0px 3px 0px rgba(76, 76, 76, 0.2);
    box-shadow: 0px 0px 3px 0px rgba(76, 76, 76, 0.2);
}

.editBtn {
    color: #6fab3e;
    border-radius: 0;
}

.editBtn i {
    color: #6fab3e !important;
}

.editBtn:disabled {
    color: #9f9f9f;
}

.editBtn:disabled i {
    color: #9f9f9f !important;
}

.delBtn {
    color: #ff5a5a;
    border-radius: 0;
}

.delBtn i {
    color: #ff5a5a !important;
}

.delBtn:disabled {
    color: #9f9f9f;
}

.delBtn:disabled i {
    color: #9f9f9f !important;
}

.ccNotiBand {
    background: #ffe5e5;
    padding: 5px 1.5625rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ff5a5a;
    border-radius: 5px;
}

.ccNotiBand p, .ccNotiBand button {
    font-size: 1.25rem;
    color: #ff5a5a;
}

.ccPagination .pageResult {
    font-size: 1rem;
    color: #9f9f9f;
    font-weight: 600;
}

.ccPagination .page-link {
    border-radius: 5px;
    margin: 0.5rem;
    border: 0;
    color: #4c4c4c;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    -webkit-box-shadow: 0px 1px 8px 0px rgba(159, 159, 159, 0.5);
    -moz-box-shadow: 0px 1px 8px 0px rgba(159, 159, 159, 0.5);
    box-shadow: 0px 1px 8px 0px rgba(159, 159, 159, 0.5);
}

.ccPagination .page-link.-icons {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
}

.ccPagination .page-item.active .page-link {
    background: #6fab3e;
}

#imageUpload, #resImageUpload, #supImageUpload {
    display: none;
}

.profile-container {
    width: 8rem;
    height: 8rem;
    overflow: hidden;
    background: #eeeeee;
    border: solid 3px #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 2px 5px 2px rgba(76, 76, 76, 0.4);
    -moz-box-shadow: 0px 2px 5px 2px rgba(76, 76, 76, 0.4);
    box-shadow: 0px 2px 5px 2px rgba(76, 76, 76, 0.4);
    position: relative;
}

.profile-container.-small {
    width: 5rem;
    height: 5rem;
}

.profile-container:hover i {
    display: block;
}

.profile-container .img-blk {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.profile-container .img-blk span {
    font-size: 2.5rem;
    color: #9f9f9f;
}

.profile-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-container i {
    position: absolute;
    bottom: 15px;
    right: 16px;
    color: #6fab3e !important;
    border: solid 2px #fff;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.breadcrumb {
    background-color: #fff;
}

.breadcrumb li a {
    color: #9f9f9f;
    font-size: 0.75rem;
}

.breadcrumb li.active {
    font-size: 0.75rem;
    line-height: 2.3;
}

@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }
}
@media (min-width: 1367px) {
    .container-fluid {
        width: 90%;
    }
}

.ccServiceWrp {
    background: #fff;
    margin-top: 8rem;
    padding: 2rem;
    border-top: solid 1px #eeeeee;
}

.ccServiceWrp img {
    width: 6rem;
}

.ccServiceWrp h3 {
    font-size: 1.5rem;
}

.ccServiceWrp p {
    font-size: 1.25rem;
    color: #9f9f9f;
    font-weight: 500;
}

.ccServiceWrp .-services {
    text-align: center;
    padding: 0.5rem 2rem;
}

.ccCheckbox {
    position: absolute;
    opacity: 0;
}

.ccCheckbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    display:inline-flex;
    align-items:center;
}

.ccCheckbox + label:before {
    content: '';
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: text-top;
    width: 1rem;
    height: 1rem;
    border-radius: 3px;
    background: white;
    border: solid 1px #9f9f9f;
}

.ccCheckbox:hover + label:before {
    background: #6fab3e;
}

.ccCheckbox:checked + label:before {
    background: #6fab3e;
}

.ccCheckbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}

.ccCheckbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}

.ccCheckbox:checked + label:after {
    content: "\f00c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #fff;
    font-size: 0.7rem;
    position: absolute;
    top: 50%;
    left: 2px;
    line-height: 0;
}

.ccCheckbox.-bold + label:before {
    border: solid 2px #4c4c4c;
}

.ccCheckbox.-bold:checked + label:before {
    border: solid 1px #9f9f9f;
}

.ccRadio {
    opacity: 0;
    position: absolute;
}

.ccRadio, .ccRadio-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.ccRadio-label {
    position: relative;
    display: inline-block;
    background-color: #eaf1e6;
    padding: 0.75rem 1rem;
    font-size: 1.15rem;
    border-radius: 0.25rem;
    margin: 0.25rem;
    width: 100%;
    text-align: center;
    color: #000;
    font-weight: 500;
}

.ccRadio + .ccRadio-label:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    text-align: center;
    border: solid 2px #4c4c4c;
}

.ccRadio + .ccRadio-label:before {
    border-radius: 50%;
}

.ccRadio:checked + .ccRadio-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #fff;
    background: #6fab3e;
    font-size: 0.85rem;
    margin-bottom: 3px;
    border: 0;
}

.ccRadio:checked + .ccRadio-label {
    color: #6fab3e;
}

.ccRadio:focus + .ccRadio-label {
    outline: 1px solid #ddd;
}

.ccModal .modal-content {
    border-radius: 0.5rem;
    padding: 1rem;
}

.ccModalSubtit {
    font-size: 1.25rem;
    color: #6fab3e;
}

.ccModal p {
    color: #41215b;
    font-size: 1rem;
    font-weight: 500;
}

.ccModal--md .modal-dialog {
    max-width: 40%;
}
.privacyModal .modal-body{
    max-height:75vh;
    overflow:auto;
}
.privacyModal p {
    font-size: 0.875rem;
    color: #4c4c4c;
    font-weight: normal;
}
.privacyModal h4 {
    margin-bottom: 1rem;
    border-bottom: solid 2px #41215b;
    padding-bottom: 0.5rem;
    color: #41215b;
}
.privacyModal h6 {
    color: #6fab3e;
}
.privacyModal ul, .privacyModal ol {
    padding-left: 2rem;
}
.privacyModal ul li {
    font-size: 0.875rem;
    color: #4c4c4c;
    font-weight: normal;
    list-style: disc;
}
.privacyModal ol li {
    font-size: 0.875rem;
    color: #4c4c4c;
    font-weight: normal;
    list-style:circle;
}
.privacyModal button{
    font-size:0.875rem;
}
@media (max-width: 767px) {
    .ccModal--md .modal-dialog {
        max-width: 100%;
    }
}

.ccModal--lg .modal-dialog {
max-width: 90%;
}

@media (min-width: 1200px) {
    .ccModal--lg .modal-dialog {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .ccModal--lg .modal-dialog {
        max-width: 100%;
    }
}

.btnModal {
    background: #41215b;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
}

.ccHead {
    position: fixed;
    width: 100%;
    z-index: 4;
}

.ccHeadOffer {
    background: #d43396;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 5px 0;
}

.ccHeadOffer .offerClose {
    color: #fff;
    position: absolute;
    right: 0.9375rem;
    line-height: 1;
}

.ccHeadOffer.-register {
    background: #eeeeee;
    padding: 0.5rem 0;
}

.ccHeadOffer.-register a {
    font-size: 1.25rem;
    color: #41215b;
}

.ccHeadOffer.-register a img {
    width: 2.25rem;
    background: #fff;
    padding: 0.35rem;
    border-radius: 5px;
    margin-right: 1rem;
}

.ccHeadOffer.-register a:hover {
    text-decoration: none;
}

.ccHeadOffer.-register .offerClose {
    top: 1rem;
    color: #41215b;
}

.ccHeadNavigation {
    padding-top: 10px;
    padding-bottom: 10px;
    background: #41215b;
    color: #fff;
}

.ccHead .logo {
    color: #fff;
}

.ccHead .logo img {
    height: 1.875rem;
    width: auto;
}

.ccHead .search-blk {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30rem;
}

@media (max-width: 1024px) {
    .ccHead .search-blk {
        width: 20rem;
    }
}

@media (max-width: 767px) {
    .ccHead .search-blk {
        position: relative;
        margin: 2rem 0 !important;
        transform: none;
        left: 0;
        top: auto;
    }
}

.ccHead .search-blk input {
    width: 100%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    border: 0;
    font-size: 0.875rem;
}

.ccHead .search-blk input::placeholder {
    color: #ccc;
}

.ccHead .search-blk button {
    line-height: 0;
    position: absolute;
    right: 1.25rem;
    background: #fff;
}

.ccHead .search-blk i {
    color: #ccc;
}

.ccHead .ccNavbar li {
    margin-right: 1.75rem;
}

.ccHead .ccNavbar li:last-child {
    margin-right: 0;
}

.ccHead .ccNavbar .nav-item.-cart {
    background: #6fab3e;
    border-radius: 5px;
    padding: 0 0.5rem;
}

.ccHead .ccNavbar .nav-item.-cart a {
    color: #fff;
}

.ccHead .ccNavbar a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.ccHead .ccNavbar a img {
    width: 1.25rem;
    margin-right: 0.5rem;
}

.ccHead .ccNavbar a .cartNoti {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #fff;
    color: #6fab3e;
    padding: 2px;
    height: 1rem;
    text-align: center;
    line-height: 1.05;
    font-size: 0.6875rem;
    min-width: 1rem;
    border-radius: 1rem;
    font-weight: 600;
}

.ccHead .navbar-toggler i {
    color: #fff;
}

.ccHead .topBlk {
    padding: 0.75rem 1rem;
    background: #eeeeee;
}

    .ccHead .topBlk i {
        font-size: 1.35rem;
    }

.ccHead .ccDropMenu {
    border-radius: 0.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 1rem 0.5rem;
}

.ccHead .ccDropMenu a {
    color: #41215b;
    display:flex;
    align-items:center;
}

.ccHead .ccDropMenu a:active {
    background: transparent;
}

.ccfooter {
    background: url("/Content/images/footer-bg.png") #6fab3e no-repeat right top;
    padding: 2rem;
    position:relative;
    z-index:4
}

.ccfooter .footLogo {
    width: 7rem;
    text-align: center;
}

.ccfooter .footLogoIcon {
    width: 4rem;
    display: block;
}

.ccfooter .footCat {
    color: #fff;
    margin-top: 2rem;
}

.ccfooter .footCat h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 1rem 0;
}

.ccfooter .footCat ul {
    padding: 0;
}

.ccfooter .footCat ul li {
    margin-bottom: 5px;
}

.ccfooter .footCat ul li a {
    color: #fff;
    font-size: 1rem;
}

.ccfooter .footSocial {
    color: #fff;
    margin-top: 2rem;
}

.ccfooter .footSocial h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.ccfooter .footSocial img {
    width: auto;
    margin-right: 0.5rem;
}

.ccfooter .footSocial .contactBlk {
    background: #bedea4;
    display: inline-flex;
    padding: 5px 15px;
    border-radius: 5px;
    align-items: center;
    font-size: 10px;
    color: #6fab3e;
    margin: 0.5rem 0;
}

.ccfooter .footSocial .contactBlk a {
    font-size: 0.875rem;
    color: #4c4c4c;
}

.ccfooter .footSocial .contactBlk img {
    padding-right: 5px;
    border-right: 1px solid #95d263;
}

.ccfooter .footCopy {
    color: #fff;
    font-size: 0.875rem;
}

.ccfooter .footCopy a {
    color: #fff;
}

.ccfooter .footCopy li {
    margin-right: 1.5rem;
}

.ccfooter .footpayment img {
    max-width: 5rem;
    width: auto;
    margin-right: 1rem;
}

#overlay,.overlay {
    position: fixed;
    width: 100%;
    height: calc(100% - 4.5rem);
    top: 4.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
}
/*#overlay .box {
    width: 50%;
    margin: auto;
}*/
#overlay .services, .overlay .services {
    max-height: 50vh;
    overflow-y: auto;
}
.filterSideBlk .sideCard {
    box-shadow: 0px 2px 14px -2px #eeeeee;
    border: solid 1px #eeeeee;
}

.filterSideBlk .sideCard .card-header {
    background-color: #fff;
    border: 0;
}

.filterSideBlk .sideCard .card-header h5 {
    font-size: 1rem;
    color: #4c4c4c;
}

.filterSideBlk .sideCard .card-header h5 i {
    font-size: 1.15rem;
}

.filterSideBlk .sideCard .card-header a:hover {
    text-decoration: none;
}

.filterSideBlk .sideCard .card-header img {
    width: 1.25rem;
}

.filterSideBlk .catList {
    padding: 0;
    margin: 0;
}

.filterSideBlk .catList li {
    padding: 1rem 0;
}

.filterSideBlk .catList li a {
    color: #41215b;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
}

.filterSideBlk .catList li a:hover {
    color: #6fab3e;
    text-decoration: none;
}

.filterSideBlk .catList li a i {
    font-size: 1.15rem;
}

.filterSideBlk .catList li.active a, .filterSideBlk .catList li:hover a {
    color: #6fab3e;
}

.filterSideBlk .catList li.active img, .filterSideBlk .catList li:hover img {
    display: none;
}

.filterSideBlk .catList li.active img.imgActive, .filterSideBlk .catList li:hover img.imgActive {
    display: inline-block;
}

.filterSideBlk .catList img {
    width: 1.6rem;
    margin-right: 1rem;
}

.filterSideBlk .catList .imgActive {
    display: none;
}

.filterSideBlk .packSizeBlk ul{
    max-height: 56rem;
    overflow: auto;
}

.filterSideBlk .packSizeBlk li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.filterSideBlk .packSizeBlk li input {
    margin-right: 0.5rem;
}

.filterSideBlk .packSizeBlk .tags {
    width: auto;
    border: solid 1px #eeeeee;
    color: #9f9f9f;
    font-size: 1rem;
    padding: 4px 8px;
    margin: 2px;
}

.filterSideBlk .searchBlk {
    position: relative;
}

.filterSideBlk .searchBlk button {
    position: absolute;
    top: 1px;
    right: 1rem;
    color: #ced4da;
}

.filterSideBlk .searchBlk input {
    width: 100%;
    padding: 0.25rem 2.5rem 0.25rem 0.75rem;
    border: solid 1px #ced4da;
    border-radius: 4px;
    color: #9f9f9f;
}

.filterSideBlk.-order .catList li {
    padding: 1rem;
    background: #f2f2f2;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    font-weight: 500;
}

.filterSideBlk.-order .catList li.active, .filterSideBlk.-order .catList li:hover {
    background: #eaf1e6;
}

.filterSideBlk.-order .catList li.active a, .filterSideBlk.-order .catList li:hover a {
    color: #6fab3e;
}

.filterSideBlk.-order .catList li a {
    color: #9f9f9f;
}

.catBlk {
    background: #fff;
}

.catBlk .catlist {
    width: 8rem;
    text-align: center;
    /*margin: auto;*/
}

@media (max-width: 767px) {
    .catBlk .catlist {
        margin-bottom: 1rem;
    }
}

.catBlk .catlist figure {
    width: 6rem;
    height: 6rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #d1d1d1;
    border: solid 1px #d1d1d1;
    overflow: hidden;
}

.catBlk .catlist figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catBlk .catlist figcaption {
    color: #41215b;
    font-weight: 500;
    font-size: 1rem;
}
.catBlk .cctitle{
    position:absolute;
    left:4rem;
}
.bannerBlk {
    overflow: hidden;
}

.proBlk {
    width: 20%;
    padding: 1.25rem;
    border: solid 1px #eee;
    position: relative;
    background: #fff;
    padding-bottom:2.5rem;
}

@media (max-width: 767px) {
    .proBlk {
        width: 100%;
    }
}

.proBlk a:hover {
    text-decoration: none;
}

.proBlk figure {
    width: 9rem;
    height:9rem;
    margin: auto;
    overflow: hidden;
}

.proBlk figure img {
    height: 100%;
    object-fit: contain;
}

.proBlk figcaption {
    padding: 15px 0;
}

.proBlk figcaption .proName {
    font-size: 1rem;
    color: #4c4c4c;
    font-weight: 500;
    margin-bottom: 5px;
    display: -webkit-box;
    overflow:hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/*overflow multi line ellipsis for all browsers*/
/*.proBlk figcaption .proName {
    --max-lines: 2;
    --lh: 1.2rem;
    position: relative;
    max-height: calc(var(--lh) * var(--max-lines));
    overflow: hidden;
    padding-right: 1rem;
}
.proBlk figcaption .proName::before {
    position: absolute;
    content: "...";
    bottom: 0;
    right: 0;
}
.proBlk figcaption .proName::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1rem;
    height: 1rem;
    background: white;
}*/

.proBlk figcaption label {
    font-size: 0.875rem;
    color: #4c4c4c;
    font-weight: 400;
    display: block;
}

.proBlk figcaption .proPrice {
    font-size: 0.875rem;
    color: #f7ad40;
    margin-top: 15px;
    font-weight: 400;
}

.proBlk figcaption .proPrice span {
    font-weight: 500;
    font-size: 1rem;
}
.proBlk .proAddCart{
    position:absolute;
    bottom:1rem;
    right:1rem;
}
.proBlk .proComment {
    position: absolute;
    top: 1.25rem;
    right: 0;
    display: inline-block;
    padding: 5px 15px;
    background: #ef0440;
    background: linear-gradient(45deg, #ef0440, #d43396, #ef0440, #d43396);
    color: #fff;
    border-top-left-radius: 1.875rem;
    border-bottom-left-radius: 1.875rem;
    font-size: 1rem;
    background-size: 600% 100%;
    animation: gradient 0.7s linear infinite;
    animation-direction: alternate;
}

.proBlk .proCartBtn, .proData .proCartBtn {
    background: #eee;
    font-size: 0.75rem;
    padding: 2px 10px;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
}

.proBlk .proCartBtn img, .proData .proCartBtn img {
    width: 1rem;
}

.proBlk .addCart, .proData .addCart {
    display: none;
}

.proBlk .addCart input, .proData .addCart input {
    min-width: 2rem;
    max-width: 5rem;
    border: solid 1px #eeeeee;
    color: #4c4c4c;
    text-align: center;
}

.proBlk .addCart .proCartBtn, .proData .addCart .proCartBtn {
    padding: 3px;
}

.proBlk .addCart .proCartBtn span, .proData .addCart .proCartBtn span {
    margin: 0;
}

@keyframes gradient {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 100%;
    }
}

.trendBlk {
    background: #f7fcf4;
}

.trendBlk .proBlk {
    width: 100%;
    padding: 1.25rem 2rem;
    min-height:300px;
}
.trendBlk .proBlk figure {
    width: 7rem;
    height: 7rem;
}

.trendBlk .lSAction > a {
    background-size: auto;
    height: 78px;
    width: 25px;
    top: 50%;
    transform: translate(0, -50%);
    background-repeat: no-repeat;
    background-position: 0 0;
    opacity: 1;
    z-index: 2;
}

.trendBlk .lSAction > a.lSPrev {
    background-image: url("/Content/images/trend-prev.png");
    left: -2px;
}

.trendBlk .lSAction > a.lSNext {
    background-image: url("/Content/images/trend-nxt.png");
    right: -2px;
}

.datepicBlk input {
    background: url("../Content/images/cal-ico.svg") right 10px center no-repeat;
    background-size: 1.5rem;
}

.ccLoader {
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100%;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background: rgba(255,255,255,0.8);
    display: none;
}
.ccLoader img {
    left: 50%;
    top: 50%;
    width: 8rem;
    position:absolute;
    transform:translate(-50%,-50%);
}
#homeLoader{
    display:block;
}
.addSupLink {
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 2rem;
    right: 3rem;
    color: #fff;
    background: #41215b;
    font-size: 1.25rem;
    padding: 0.25rem 2rem;
    border-radius: 0.25rem;
    z-index:1;
}
.addSupLink:hover, .addSupLink:focus {
    text-decoration: none;
    color: #fff;
}
.addSupLink img {
    width: 1.25rem;
}
.loadPro {
    position: relative;
}
.loadPro:after {
    content: '';
    height: 100%;
    background: #ffffff;
    width: 5px;
    position: absolute;
    -webkit-animation: linear infinite;
    -webkit-animation-name: run;
    -webkit-animation-duration: 2s;
    filter: blur(6px);
}
@-webkit-keyframes run {
    0% {
        left: 0;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 0;
    }
}

/*Common Category Section*/

.catTab .catlist {
    width:auto;
}
.catTab .cctitle{
    color:#8a8a8a;
    font-weight:400;
    font-size:1rem;
}
.catTab .catlist .img-fluid {
    width: 3rem;
    margin-right: 1rem;
}
.catTab .catlist .box {
    padding: 5px 20px;
    border-bottom: solid 2px #fff;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.catTab .catlist .box.active, .catTab .catlist .box:hover {
    background: #fafaf8;
    padding: 5px 20px;
    border-bottom: solid 2px #6fab3e;
}
    
.catTab .catlist .active figcaption {
    color: #6fab3e;
}
.catBox {
    display: block;
    padding: 5px;
    font-size: 0.875rem;
    color: #8a8a8a !important;
}
.catBox:hover {
    background: #fafaf8;
    color: #4a4a4a !important;
}
.catTab .services{
    border-top:solid 1px #f0f0f0;
}
.cat-fixtop {
    box-shadow: 1px 1px 5px #dfdfdf;
}
.cat-fixtop .catSection .catBoxWrp {
    width: 9rem;
    margin: 0 1rem;
}
.catBoxWrp img {
    border-radius:0.5rem;
}
.cat-fixtop figcaption {
    text-align:center;
    font-size:0.875rem;
    font-weight:600;
    color:#4a4a4a;
}
.blur{
    filter:blur(2px);
}