/*------------------------------------------------------------------------------------------
#  Miscellaneous
------------------------------------------------------------------------------------------*/
@font-face {
  font-family: RobotoSlab;
  src: url("../../assets/font/RobotoSlab-VariableFont_wght.ttf");
}

@font-face {
  font-family: Roboto;
  src: url("../../assets/font/Roboto-Regular.ttf");
}

body {
    color: #000000;
    background-color: #f1f3f7;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(67, 89, 113, 0);
}

.main {
    min-width: 100% !important;
    min-height: calc(100vh - 54px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

@media (max-width: 991px) {
    .main {
        margin-top: 40px;
    }
}

.small-icon {
    font-size: 14px;
    font-weight: 300;
    margin-right: 2px;
}

.dropdown-menu {
    min-width: auto;
}

h1.text-title {
    font-family: 'RobotoSlab', sans-serif !important;
    letter-spacing: 0.75px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.mt-secondary{
    margin-top: 16px;
}

.text-bn-title{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.text-title {
    font-family: 'RobotoSlab', sans-serif !important;
    letter-spacing: 0.75px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.text-sub-title{
    font-family: 'RobotoSlab', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
}

.form-label{
    font-family: 'Roboto', sans-serif;
    letter-spacing: .5px;
    font-size: 14px;
}

.text-h1 {
    font-size: 24px;
    font-family: 'RobotoSlab', sans-serif;
    letter-spacing: .75px;
}

.text-h2 {
    font-size: 20px;
    font-weight: 500;
    font-family: 'RobotoSlab', sans-serif;
    letter-spacing: .75px;
}

.list-group .active {
    background-color: #00aa55;
    border-color: #00aa55;
    color: #fff !important;
}

.form-check-input:checked {
    background-color: #00aa55 !important;
    border-color: #00aa55 !important;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.btn-color-bf {
    background-color: #00aa55 !important;
    border-color: #00aa55;
    color: #fff !important;
    font-family: 'Roboto', sans-serif;
    letter-spacing: .75px;
}

.btn-color-bf:hover, .btn-color-bf:active {
    background-color: #006400 !important;
    border-color: #006400 !important;
    color: #fff !important;
    box-shadow: none;
}

.card{
    border: none;
}

.btn-outline-pf{
    border-color: #00aa55;
    color: #00aa55;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: .75px;
}

.btn-outline-pf:hover, .btn-outline-pf:active {
    color: #FFF !important;
    background-color: #006400 !important;
    border-color: #006400 !important;
}

.bg-bf {
    background-color: #00aa55 !important;
}

.text-f-sec {
    font-family: 'Roboto', sans-serif;
    letter-spacing: .5px;
}

.link-color-bf {
    color: #00aa55 !important;
    font-family: 'Roboto', sans-serif;
    letter-spacing: .5px;
}

.link-color-bf:hover{
    color: #006400 !important;
}

.text-color-bf{
    color: #00aa55 !important;
}

.content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: calc(100vh - 217px);
}

.not-breadcrumb {
    min-height: calc(100vh - 210px);
}
.fs--1{
  font-size: 14px;
}

.mt-section{
    margin-top:40px;
}

.border-radius-0 {
    border-radius: 0;
}

.link-transparent {
    color: #000;
}

.link-transparent:hover{
    color: #006400;
}

@media (max-width: 767px) {
    .text-h1 {
        font-size: 20px;
        font-family: 'RobotoSlab', sans-serif;
        letter-spacing: .5px;
    }

    h5 {
        font-size: 16px;
    }

    .text-h2 {
        font-size: 18px;
        letter-spacing: .5px;
    }
}




/*------------------------------------------------------------------------------------------
#  Breadcrumb
------------------------------------------------------------------------------------------*/
.breadcrumb {
    margin: 0 0 16px;
    padding: 6px 0;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
}

.breadcrumb > li.breadcrumb-item {
    text-shadow: 0 1px 0 #fff;
    padding: 0 20px;
    position: relative;
    white-space: nowrap;
}

.breadcrumb > li.breadcrumb-item > a {
    font-family: 'Roboto', sans-serif;
    letter-spacing: .75px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #00aa55;
}

.breadcrumb > li.breadcrumb-item:after {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    right: -5px;
    width: 26px;
    height: 26px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.breadcrumb > li.breadcrumb-item + li:before {
    content: "";
    padding: 0;
}

@media (max-width: 767px) {
    .breadcrumb > li.breadcrumb-item {
        padding: 0 12px;
    }

    .breadcrumb > li.breadcrumb-item > a {
        font-size: 12px;
    }

    .breadcrumb > li.breadcrumb-item:after {
        content: "";
        display: block;
        position: absolute;
        top: 6px;
        right: -1px;
        width: 15px;
        height: 15px;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}


/*------------------------------------------------------------------------------------------
#  pagination
------------------------------------------------------------------------------------------*/
.category .form-select, .search-result .form-select{
    height: 32px;
    font-size: 14px;
    line-height: 20px;
}

.pagination .active > .page-link, .pagination .page-link.active {
    z-index: 3;
    color: #fff;
    background-color: #00aa55;
    border-color: #00aa55;
}

.pagination .page-link {
    color: #00aa55;
}

.pagination .page-link:focus {
    box-shadow: none;
}

.form-select:focus {
    box-shadow: none;
}

.fs--1 {
    font-size: 14px;
}

.h-fit {
    height: fit-content;
}

.pagination{
    margin-bottom: 0;
}

/*------------------------------------------------------------------------------------------
#  Cart and Compare
------------------------------------------------------------------------------------------*/

.cart-items {
    cursor: pointer;
    position: fixed;
    height: 74px;
    width: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #0b1727;
    border: 1px solid rgba(255, 255, 255, .2);
    right: 20px;
    bottom: 20px;
    border-radius: 7px;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%), -5px 5px 10px rgb(0 0 0 / 10%);
}

.cart-add {
    width: 75px;
    transition: .4s ease-in-out;
}

.compare {
    position: fixed;
    cursor: pointer;
    height: 64px;
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #0b1727;
    border: 1px solid rgba(255, 255, 255, .2);
    right: 20px;
    bottom: 104px;
    border-radius: 7px;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%), -5px 5px 10px rgb(0 0 0 / 10%);
}

.cart-items svg, .compare svg {
    font-size: 15px;
    padding-bottom: 2px;
    color: #fff;
}

.cart-items p, .compare p {
    font-size: 12px;
    letter-spacing: 1.1px;
    color: #fff;
}

.cart-text {
    margin-bottom: 3px !important;
    border-bottom: 1px solid #fff;
    font-size: 11px !important;
}

.cart-items span.counter, .compare span.counter {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: -10px;
    background: #00aa55;
    color: #fff;
    line-height: 20px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 991px) {
    .cart-items {
        bottom: 80px;
        z-index: 1;
    }
}

.tbody, tfoot, th, thead, tr {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #eee !important;
}



/*------------------------------------------------------------------------------------------
# Opcanvas Cart
------------------------------------------------------------------------------------------*/

.cart-opcanvas{
    background-color: #00aa55;
    color: #fff;
}

.table-thumb-img {
    width: 40px;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.table-thumb-img .img-small{
    height: 40px;
}

.font-size-16{
    font-size: 16px;
}

.btn-ex-sm {
    font-size: 10px;
    padding: 5px;
    line-height: 1.2;
}

.opcanvas-cart .delete-item{
    padding-left: 0 !important;
    max-width: 30px;
    text-align: end;
    color:red;
}

.offcanvas.show:not(.hiding), .offcanvas.showing {
    box-shadow: 0 0 30px rgb(0 0 0 / 20%), -1px 0 0 0 rgb(255 255 255 / 20%);
}
.offcanvas.offcanvas-end{
    border-left: none;
}

.min-w-total{
    width: 80px;
}

.cart-footer {
    padding: 2px 0 43px;
    position: relative;
}

.cart-footer .total {
    display: flex;
    padding: 4px 10px;
}

.cart-footer .total {
    border-bottom: 1px solid #eee;
}

.cart-footer .total>div {
    flex: 1 1 50%;
    text-align: right;
    font-size: 16px;
    color: #111;
    font-weight: bold;
}
.cart-footer .total>div.amount {
    color: #111;
    font-weight: 600;
}

.cart-footer .checkout-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.cart-footer .checkout-btn a {
    display: block;
    width: 100%;
}

.cart-footer .checkout-btn .btn {
    width: 100%;
    border: none;
    background: #00aa55;
    color:#fff;
    padding: 10px;
    border-radius: 0;
}

.cart-footer .checkout-btn button:hover {
    box-shadow: 0 50px rgba(0,0,0,.2) inset;
    color: #fff;
    text-decoration: none;
}

.opcanvas-cart{
    padding:  0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-footer .coupon-code {
    background: rgba(55,73,187,.1);
    padding: 10px;
    display: inline-block;
    width: 100%;
}

.cart-footer .coupon-code input {
    height: 36px;
    font-size: 14px;
    flex: 1 1 auto;
    border: none;
    padding: 5px 15px;
    background: #fff;
    outline: none;
    border-radius: 4px !important;
}
.input-group .input-group-btn {
    flex: 0 0 auto;
    margin-left: 10px !important;
}
.cart-footer .coupon-code button {
    height: 36px;
    line-height: 32px;
    display: inline-block;
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    outline: none;
    text-align: center;
}

.opcanvas-cart .cart{
    padding-left: 10px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 100px;
}

.op-cart-quantity {
    display: inline-block;
}

.op-cart-quantity .form-control {
    width: 60px;
    line-height: 1.1;
    padding: 0.175rem 0.225rem;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.op-cart-table tr td {
    vertical-align: middle;
}

.op-cart-table .total {
    font-weight: bold;
    text-align: end;
    color: #000;
}

.item-info {
    border-bottom: none !important;
    font-family: 'Roboto', sans-serif;
    letter-spacing: .75px;
}


.item-price td {
    padding-top: 0px;
}

.op-cart-item .img-small {
    height:40px;
    max-width: 40px;
    object-fit: cover;
    cursor: pointer;
}

.opcanvas-cart .amount  .currency-amount{
    color: #000;
    font-weight: bolder;
}

.opcanvas-cart .cart-item-img{
    width: 60px;
}

.op-cart-item  .item-price{
    color:#000;
    font-weight: 500;
}
.opcanvas-cart .cart-item-img {
    width: 60px;
}

.opcanvas-cart .table-thumb-img {
    width: 60px;
}

.opcanvas-cart .cart-item-img {
    width: 60px;
}

.op-cart-item .img-small {
    height: 40px;
    max-width: 40px;
    object-fit: cover;
    cursor: pointer;
}

.cart-footer .total {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.op-cart-item .item-price {
    font-family: 'Roboto', sans-serif;
    padding-bottom: 10px;
    line-height: 16px;
    font-size: 16px;
    font-weight: 600;
}


/*------------------------------------------------------------------------------------------
#  Footer
------------------------------------------------------------------------------------------*/
.footer {
    margin-top: 24px;
    padding-top: 50px;
    padding-bottom: 1px;
    background-color: #06121a;
    border-top: 1px solid #344050;
    color: #e2e2e2;
}

.footer h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 0.75px;
    font-weight: 700;
    color: #d8e2ef;
    margin-bottom: 8px;
}

.footer a, .footer p {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.75px;
    color: #d8e2ef;
    font-size: 14px;
    list-style: none;
    text-decoration: none;
}

.footer a:hover {
    color: #00aa55;
}

.footer hr {
    margin: 0 !important;
}

.copyright {
    text-align: center;
    font-family: RobotoSlab;
    letter-spacing: 0.75px;
    padding: 24px 0;
    font-size: 13px;
    color: #7f7f87;
}

.card-footer .cart-btn {
    font-size: 13px;
    letter-spacing: 1px;
}

.item-group-inner:hover > .upto-amount{
    color: #00aa55;
}

@media (max-width: 991px) {
    .copyright {
        margin-bottom: 60px;
    }
}

.btn-primary{
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.btn-danger{
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

/*------------------------------------------------------------------------------------------
#  Password icon button
------------------------------------------------------------------------------------------*/
.password-icon-button {
    border: none;
    padding: 0;
    background-color: transparent !important;
    font-size: 12px;
    overflow: hidden;
}

.password-input-group-text {
    overflow: hidden;
    border-top-right-radius: .375rem !important;
    border-bottom-right-radius: .375rem !important;
}

.input-group-text {
    padding: 0.3125rem 1rem;
}

.password-modify-input-wrapper {
    border-radius: 0.25rem;
}

.checked-icon {
    font-size: 45px;
    color: #00aa55;
}

/*------------------------------------------------------------------------------------------
#  Offer
------------------------------------------------------------------------------------------*/
.offer-info {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    justify-content: space-between;
    font-size: 14px;
}
.offer-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.offer-card a {
    text-decoration: none;
}

.offer-card p {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.dark .offer-card h4 {
    color: #d8e2ef;
}

.card-image img {
    width: 100%;
}

.details-card-image {
    height: 600px;
}

.details-card-image img {
    width: 100%;
    height: 100%;
}


@media (max-width: 991px) {
    .details-card-image {
        height: auto;
    }

    .details-card-image img {
        width: 100%;
        height: 100%;
    }

}

.offer-details-width {
    max-width: 650px;
    margin: 0 auto;
}

.info-list li {
    color: #01132d;
    line-height: 24.5px;
    font-size: 18px;
    list-style-type: circle;
    margin: 0 0 14px 16px;
}

.dark .info-list li {
    color: #d8e2ef;
}

.price-new {
    color: #00aa55 !important;
}


/*------------------------------------------------------------------------------------------
#  Privacy and Other Pages
------------------------------------------------------------------------------------------*/

.privacy-info h2 {
    margin-top: 40px;
    line-height: 30px;
}

.privacy-info p {
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}
.info-list li {
    color: #01132d;
    line-height: 24.5px;
    font-size: 16px;
    list-style-type: circle;
    margin: 0 0 5px 16px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.cart-table .p-name{
    min-width: 150px;
}

.currency-symbol{
    font-size: 12px;
    align-items: end;
}

.text-title .currency-symbol{
    font-size: 16px;
}

.footer .f-title {
    color: #fff;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.footer-big-btn {
    display: block;
    text-decoration: none;
    padding: 16px 0;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-big-btn .ic {
    color: #fff;
    float: left;
    font-size: 20px;
    line-height: 40px;
    padding: 0 10px 0 20px;
    margin-right: 20px;
    border-right: 1px solid #333;
}

.footer-big-btn p {
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 16px;
    color: #838383;
}

.footer-big-btn .value {
    color: #00aa55;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.footer-big-btn:hover {
    box-shadow: 0 -70px 0 rgba(0, 0, 0, 0.2) inset;
    border-color: #008000;
    text-decoration: none;
}

.footer-menu ul li {
    line-height: 20px;
    margin: 0;
    padding: 0 0 20px;
}

.footer-menu ul li a{
     color: #838383;
}

.store-name {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    padding: 0 0px 10px 0px;
}

.address{
   color: #838383;
}

.footer .mail{
    margin-top: 16px;
}

.footer .mail  a{
    color: #00aa55;
    font-size: 14px;
}

.social-footer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    display: flex;
}

.social-footer  .app-links {
    color:  #7f7f87;
    font-size: 12px;
    margin: 0;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
}

.social-footer .app-link-items {
    display: flex;
}

.social-footer .app-link {
    display: flex;
    align-items: center;
    border: 1px solid #7f7f87;
    border-radius: 7px;
    padding: 6px 10px 6px 6px;
    margin-left: 20px;
}

.social-footer .app-link-text span.download {
    font-size: 10px;
    line-height: 1;
    color:  #7f7f87;
    margin-bottom: 2px;
}

.social-footer .app-link-text span.app-store {
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.social-footer .app-link-text span {
    display: block;
}

.app-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

footer .social-links {
    display: flex;
    padding: 0;
    margin: 0;
    text-align: right;
}

footer .social-links a {
    margin: 0 0 0 6px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    text-align: center;
    font-size: 17px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
}

footer .social-links a  {
    display: flex;
    justify-content: center;
    align-items: center;
}


.breadcrumb-and-details {
    background-color: #fff;
    margin-top: -16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #d0dae7;
}


.breadcrumb-design-2{
    display: block;
    padding: 12px 0 0;
    margin-bottom: 0;
}

.breadcrumb-design-2 li{
    list-style: none;
    display: inline-block;
    margin-left: 5px;
}

.breadcrumb-design-2 li a {
    color: #111;
    text-decoration: none;
}


.breadcrumb-design-2 li a:hover {
    color: #007f01;
    text-decoration: none;
}

.breadcrumb-design-2 li:last-child  > a:hover {
    color: #111;
    text-decoration: none;
}


.breadcrumb-design-2 li {
    line-height: 16px;
    font-size: 16px;
    color: #666666;
}

.breadcrumb-design-2 .breadcrumb-item+.breadcrumb-item::before {
    margin-right: 5px;
}


.item-group-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    margin: 12px 0 12px;
    color: #3749bb;
}

.item-info {
    font-size: 13px;
    line-height: 18px;
}



.tech-item .p-item-price {
    line-height: 22px;
    font-size: 17px;
    font-weight: 600;
    color: #00aa55;
    text-align: center;
}

.tech-item .price-new {
    line-height: 22px;
    font-size: 20px;
    font-weight: 600;
    margin-right: 10px;
    color: #00aa55  !important;
}

.p-item-price .price-old {
    font-size: 12px;
    font-weight: 600;
    text-decoration: line-through;
    color: #666666;
    padding-left: 5px;
}

.tech-item .item-name {
    padding-top: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.tech-item  .item-image img {
    height: 180px;
    object-fit: cover;
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
    width: 100%;
}

.tech-item .item-details{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-item {
    padding: 0px 0px 20px 0px;
}

.tech-item .item-image {
    padding: 0px 0px 10px 0px;
    margin: 0;
}


.marks {
    display: flex;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 10;
    flex-direction: column;
    align-items: flex-start;
}

.marks .mark {
    background: #6e2594;
    width: auto;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    line-height: 14px;
    margin-bottom: 2px;
    border-radius: 0 20px 20px 0;
    flex: 0 0 auto;
}


.tech-item .item-info .short-description li {
    font-size: 14px;
    color: #555 ;
    position: relative;
    line-height: 16px;
    padding-bottom: 8px;
}

.btn-cart{
    flex-wrap: nowrap;
    line-height: 34px;
    background: rgba(0, 127, 1, 0.2);
    color: #007f01;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 14px;
    cursor: pointer;
    width: 100%;
}

.btn-cart:hover {
    background: #007f01 !important;
    color: #fff !important;
}

.item-group-child {
    display: inline-block;
    line-height: 34px;
    padding: 0 14px;
    color: #111;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin: 0 5px 5px 0;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
}

.item-group-child:hover {
    background: #3749bb;
    border: 1px solid #3749bb;
    color: #fff;
    text-decoration: none;
}

.pd-q-actions {
    padding: 15px 20px 15px;
    margin: 16px 0 30px;
    border-radius: 40px;
    display: flex;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pd-q-actions .share-on {
    flex: 1 1 auto;
    padding: 0;
    line-height: 24px;
    position: relative;
    top: -2px;
}

.post-share{
    text-decoration: none;
    color: #000;
    font-size: 18px;
    margin: 0px 2px;
}

.free-shipping{
    width: 100%;
    background-color: #f3f5f7;
    padding: 1rem 0;
}
.free-shipping p{
    text-align: center;
    font-weight: 500;
}

.link-green{
    text-decoration: none;
    color: #00aa55;
}

.link-green:hover{
    color: #0c6709;
}

.item-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
}


.card-left-border .icon-d{
    color: #00a955;
    font-size: 62px;
}

.card-left-border .text-header{
    font-size: 22px;
}

.card-left-border .text-default {
    color: #637381;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.card-left-border{
    padding: 2rem;
    border-right: 1px solid rgba(182, 189, 196, 0.73);
}

.card-border-end .col-md-3:last-child .card-left-border{
    border-right: none;
}

.category-img{
    width: 60%;
    height: auto;
}

.my-section{
    margin: 60px 0;
}

.text-content-center{
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.text-content-center .title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 6px;
    font-weight: 500;
}

.text-content-center .sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #00ab55;
    margin: 8px 0;
}


.text-content-center   .text-p{
       font-size: 16px;
    line-height: 24px;
    font-weight: 400;
   }

.shop-now-btn {
    background-color: #00aa55;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
}


.shop-now-btn:hover{
    background-color: #096538 !important;
    color: #fff !important;
}



/*Daily Flash Sales*/

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

.flash-sales-date{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.flash-sales-date .time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.flash-sales-date .date-title {
    font-size: 14px;
    line-height: 24px;
}

.time-priod{
    padding: 5px 10px;
    font-size: 16px;
    color: #d50c06;
    border: 1px solid #d50c06;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
}

.time-priod .time-text{
    font-size: 12px;
}



@media (max-width: 767px) {
    .header-topbar {
        display: none;
    }

    .sm-nav-top-left {
        width: auto !important;
    }

    .header-top-item.logo .branding {
        width: 170px !important;
    }

    .sales-header {
        flex-wrap: wrap;
    }


    .sm-top-right {
        width: auto !important;
    }
}