/* -- ===========================================
                DEFAULT CSS
=========================================== -- */

* {
    --theme: #95c13d;
    --theme2: #468d42;
    --theme3: #a7bf39;
}

body {
    margin: 0;
    padding: 0;
    font-family: "MatterSQ", sans-serif;
    font-size: 0.9rem;
}

input,
textarea {
    caret-color: #468d42;
}

input:focus,
textarea:focus,
button:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #468d42;
}

ul {
    list-style-type: none;
}

button {
    background: var(--theme2);
    border: 1px solid var(--theme2);
    color: white;
    padding: 5px 10px;
}

button:hover {
    background: var(--theme);
}

button:focus {
    border-color: var(--theme2);
}

.bg-back {
    background: #edf9f0;
}

/* -- ===========================================
                    HEADER
=========================================== -- */

/* Header Top */
header .header-top {
    padding: 10px 0px;
    background: var(--theme2);
}

header .header-top .contact-bar {
    display: flex;
}

header .header-top .contact-bar>div {
    min-width: 200px;
    color: white;
}

header .header-top .social-bar {
    text-align: right;
}

header .header-top .social-bar a {
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    margin: 0px 5px;
    border-radius: 50%;
    border: 1px solid white;
    padding: 1px;
    font-size: 0.8rem;
    color: white;
    display: inline-block;
    transition: all 0.5 linear;
}

header .header-top .social-bar a:hover {
    background: white;
    color: var(--theme2);
}

/* Header Middle */
header .header-middle {
    padding: 10px 0px;
}

header .header-middle .logo {
    width: 120px;
    height: 100px;
}

header .header-middle .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

header .header-middle .search-nav {
    border: 1px solid var(--theme2);
    color: var(--theme2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-right: 14px;
    line-height: 38px;
    cursor: pointer;
}

header .header-middle .cart-wish {
    width: 40px;
    height: 100%;
    text-align: center;
    position: relative;
    margin-right: 14px;
}

header .header-middle .cart-wish span {
    position: absolute;
    top: 1px;
    right: 0;
    background: var(--theme);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    font-size: 0.7rem;
    color: white;
    display: inline-block;
}

header .header-middle .cart-wish a,
header .header-middle .mobile-menu {
    font-size: 1.3rem;
    display: flex;
    color: var(--theme2);
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

header .header-middle .dropdown {
    width: auto;
}

header .header-middle button {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 30px;
    color: white;
    background: var(--theme);
    border: none;
    outline: none;
}

header .header-middle .dropdown .dropdown-block {
    display: block;
    transition: all 0.3s linear;
    opacity: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
    z-index: -2;
    right: 0;
    width: 157px;
    padding: 10px 0px;
    position: absolute;
}

header .header-middle .dropdown .dropdown-block a {
    color: var(--theme2);
}

header .header-middle .dropdown .dropdown-block a:hover {
    color: black;
}

header .header-middle .dropdown:hover .dropdown-block {
    opacity: 1;
    z-index: 2;
    background: white;
}

header .header-middle .nav-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
    max-width: 600px;
    min-width: 300px;
}

header .header-middle .nav-search-bar input {
    border: 1px solid #468d42;
    flex: 1 1 auto;
    height: 35px;
    padding: 5px 10px;
}

header .header-middle .nav-search-bar label {
    background: var(--theme);
    color: white;
    width: 50px;
    height: 35px;
    display: grid;
    place-items: center;
}

/* Header Bottom */

header .header-bottom .line:nth-child(1) {
    background: rgb(167, 191, 57);
    height: 4px;
    width: 100%;
    margin-bottom: 1px;
}

header .header-bottom .line:nth-child(2) {
    background: rgb(149, 193, 61);
    height: 4px;
    width: 100%;
    margin-bottom: 1px;
}

header .header-bottom .line:nth-child(3) {
    background: rgb(0, 124, 67);
    height: 4px;
    width: 100%;
}

header .header-bottom .container-fluid {
    display: none;
}

header .header-bottom .header-container {
    display: flex;
    align-items: center;
}

header .header-bottom .category-dropdown .dropdown {
    width: 300px;
}

header .header-bottom .category-dropdown button {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 30px;
    color: white;
    background: var(--theme3);
    border: none;
    outline: none;
    margin-top: -1px;
}

header .header-bottom .category-dropdown .dropdown .dropdown-menu {
    display: block;
    transition: all 0.3s linear;
    opacity: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
    z-index: -2;
    max-height: 400px;
    overflow-y: auto;
}

header .header-bottom .category-dropdown .dropdown:hover .dropdown-menu {
    opacity: 1;
    z-index: 2;
}

header .header-bottom .category-dropdown .dropdown .dropdown-menu li a {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.9rem;
}

header .header-bottom .bottom-navs ul {
    display: flex;
    align-items: center;
    margin: 0;
}

header .header-bottom .bottom-navs ul li a {
    padding: 4px 10px;
    margin-right: 15px;
    transition: all 0.5s linear;
    cursor: pointer;
}

header .header-middle .logo {
    display: flex;
    order: 1;
}

header .header-bottom .bottom-navs ul li a:hover {
    color: var(--theme);
}

header .header-middle .nav-search-bar {
    display: flex;
    order: 2;
}

header .header-middle .mid-navs {
    order: 3;
}

@media screen and (max-width:990px) {
    header .header-bottom .bottom-navs ul {
        display: none;
    }

    header .header-bottom .category-dropdown,
    header .header-bottom .category-dropdown .dropdown {
        width: 100%;
    }

    header .header-middle .mobile-menu {
        display: flex;
    }
}

@media screen and (max-width:767px) {
    header .header-top .contact-bar {
        justify-content: center;
        margin-bottom: 10px;
    }

    header .header-top .social-bar {
        text-align: center;
    }

    header .header-middle .wishlist-nav,
    /* header .header-middle .cart-nav, */
    /* header .header-middle .join, */
    .header-top {
        display: none;
    }

    header .header-middle>div>.container {
        max-width: calc(100% - 1rem) !important;
    }

    header .header-middle button {
        color: var(--theme2);
        background: transparent;
        padding: 0;
        font-size: 1rem;
    }
}

@media screen and (max-width:576px) {
    header .header-middle .nav-search-bar {
        display: flex;
        order: 3;
    }

    header .header-middle .mid-navs {
        order: 2;
    }

    header .header-middle .header-container {
        flex-wrap: wrap;
    }

    header .header-middle>div>.container {
        max-width: 100% !important;
    }

    header .header-middle .nav-search-bar {
        min-width: 250px;
    }

    header .header-middle .cart-wish a,
    header .header-middle .mobile-menu {
        margin-right: 5px;
        font-size: 1.1rem;
        height: 35px;
        width: 35px;
    }
}

/* -- ===========================================
                SEARCH POPUP
=========================================== -- */

#search-page {
    position: fixed;
    top: 0;
    left: 0;
    background: #00000033;
    backdrop-filter: blur(5px);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30;
}

#search-page .search-block {
    width: 500px;
    display: inline-block;
    border: 1px solid var(--theme3);
    border-radius: 5px;
    overflow: hidden;
}

#search-page .search-block form {
    width: 100%;
    display: flex;
    background: white;
}

#search-page .search-block form input {
    width: calc(100% - 80px);
    padding: 7px;
    background: transparent;
    border: none;
    outline: none;
    height: 40px;
}

#search-page .search-block form label {
    width: 80px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme3);
    color: white;
    height: 40px;
}

#search-page .close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 2rem;
    cursor: pointer;
}

@media screen and (max-width:576px) {
    #search-page .search-block {
        width: 400px;
    }
}

@media screen and (max-width:450px) {
    #search-page .search-block {
        width: 300px;
    }
}

/* -- ===========================================
            MObile Navigation
=========================================== -- */

#mobile-nav {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 28;
    overflow-y: scroll;
}

#mobile-nav .mobile-head {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--theme);
}

#mobile-nav .logo {
    width: 150px;
    height: 120px;
}

#mobile-nav .mobile-body {
    padding: 10px;
}

#mobile-nav .mobile-body a {
    padding: 10px 15px;
    color: var(--theme2);
    display: block;
    cursor: pointer;
}

#mobile-nav .mobile-body a img {
    filter: initial !important;
}

#mobile-nav .mobile-body a:hover {
    background: var(--theme3);
    color: white;
}

#mobile-nav .mobile-navs {
    overflow-y: auto;
}

#mobile-nav .mobile-nav-search {
    width: 100%;
    display: flex;
    padding: 0px 1px;
    margin-bottom: 15px;
}

#mobile-nav .mobile-nav-search input {
    flex: 1 1 auto;
    height: 35px;
    font-size: 0.85rem;
    padding: 5px 8px;
    border: 1px solid rgb(188, 187, 187);
}

#mobile-nav .mobile-nav-search label {
    width: 35px;
    height: 35px;
    background: var(--theme);
    color: white;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
}


/* -- ===========================================
                    Footer
=========================================== -- */

footer {
    background: #86868654;
}

footer .footer-area {
    padding: 30px 40px;
    border-top: 2px solid var(--theme2);
}

footer .foot-logo {
    width: 150px;
    height: 130px;
    margin-bottom: 20px;
}

footer .foot-info {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: grey;
    text-align: justify;
    margin-bottom: 15px;
}

footer .download-btn {
    width: 120px;
    height: 36px;
}

footer .foot-social {
    display: flex;
    padding-left: 40px;
}

footer .foot-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--theme2);
    background: white;
    border: 1px solid var(--theme2);
    border-radius: 50%;
    font-size: 1rem;
    margin-right: 15px;
    transition: all 0.5s linear;
}

footer .foot-social a:hover {
    background: var(--theme2);
    color: white;
}

footer .footer-links {
    padding: 20px;
}

footer .footer-links .links-head {
    margin-bottom: 25px;
}

footer .footer-links .links-head span {
    display: inline-block;
    font-size: 1.3rem;
    position: relative;
}

footer .footer-links .links-head span::after {
    position: absolute;
    width: 120%;
    height: 2px;
    bottom: -2px;
    left: 0px;
    content: "";
    background: var(--theme2);
}

footer .footer-links .links-list {
    padding-left: 15px;
}

footer .footer-links .links-list>div {
    align-items: center;
}

footer .footer-links .links-list a {
    display: block;
    padding: 5px 0px;
}

footer .copyright {
    padding: 10px;
    border-top: 1px solid;
    color: rgb(255, 255, 255);
    font-size: 0.8rem;
    text-align: center;
    background-color: black;
}

@media screen and (max-width:576px) {
    footer .footer-links {
        padding: 20px 0px;
    }

    footer .footer-links .links-list>div {
        align-items: baseline;
    }
}


/* -- ===========================================
                Main Slider
=========================================== -- */

#main-slider .slider-img {
    width: 100%;
    aspect-ratio: 1/0.5;
    max-height: 450px;
}

#main-slider .slider-area .owl-nav {
    position: absolute;
    left: calc(50% - 50px);
    bottom: 50px;
}

#main-slider .slider-area .owl-nav button {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 32px;
    color: black;
    background-color: #f0f0f0;
    margin: 0px 10px;
    border-radius: 50%;
}

#main-slider .owl-dots {
    display: none;
}

#main-slider .slider-area .owl-nav button:hover {
    background: #ffffff;
}

@media screen and (max-width:990px) {
    /* #main-slider .slider-img {
        height: 450px;
    } */
}

@media screen and (max-width:767px) {
    #main-slider .slider-area .owl-nav {
        display: none;
    }

    /* #main-slider .slider-img {
        height: 400px;
    } */
}

@media screen and (max-width:576px) {
    /* #main-slider .slider-img {
        height: 400px;
    } */
}

/* -- ===========================================
                Breadcrumb
=========================================== -- */

#breadcrumb .breadcrumb-bar {
    display: flex;
    padding: 15px 0px;
    font-size: 1rem;
}

.shopping-cart {
    height: 17px !important;
    width: 17px !important;
    filter: invert(46%) sepia(16%) saturate(1355%) hue-rotate(69deg) brightness(98%) contrast(96%);
}

.cart-wish.cart-nav .shopping-cart {
    height: 20px !important;
    width: 20px !important;
}


/* -- ===========================================
                Section Gap
=========================================== -- */

.section-gap {
    padding: 70px 0px;
}

section.home-section {
    padding: 30px 0px;
}

section .section-head {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section .section-head .view-more {
    background: var(--theme2);
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
}

section .section-head .heading {
    font-size: 2rem;
    display: inline-block;
    color: #000000;
    position: relative;
}

section .section-head .heading.head-1 {
    color: var(--theme) !important;
}

section .section-head .heading.head-2 {
    color: var(--theme2) !important;
}

section .section-head .heading.head-3 {
    color: #859c1b !important;
}

section .section-head .heading.head-4 {
    color: #3a8a12 !important;
}

section .section-head .heading.head-5 {
    color: #05b242 !important;
}

section .section-head .heading::after {
    width: 110%;
    height: 3px;
    bottom: -3px;
    left: 0;
    background-color: var(--theme2);
    content: "";
    position: absolute;
}

section .section-head .heading.head-1::after {
    background-color: var(--theme) !important;
}

section .section-head .heading.head-2::after {
    background-color: var(--theme2) !important;
}

section .section-head .heading.head-3::after {
    background-color: #859c1b !important;
}

section .section-head .heading.head-4::after {
    background-color: #3a8a12 !important;
}

section .section-head .heading.head-5::after {
    background-color: #05b242 !important;
}

section .section-head .line {
    width: 100px;
    height: 2px;
    background: black;
}

section .section-head .seperator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid black;
    margin: 0px 10px;
}

section .section-head .heading-bottom {
    display: none;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:990px) {
    .section-gap {
        padding: 60px 0px;
    }

    section .section-head .heading {
        font-size: 1.8rem;
    }

    section .section-head .view-more {
        font-size: 0.9rem;
    }
}

@media screen and (max-width:767px) {
    .section-gap {
        padding: 50px 0px;
    }

    section .section-head .heading {
        font-size: 1.5rem;
    }

    section .section-head .view-more {
        font-size: 0.85rem;
    }
}

@media screen and (max-width:576px) {
    .section-gap {
        padding: 40px 0px;
    }

    section .section-head .heading {
        font-size: 1.3rem;
    }

    section .section-head {
        /* flex-direction: column; */
        align-items: flex-end;
        gap: 15px;
    }

    section .section-head .view-more {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

/* -- ===========================================
                Login Area
=========================================== -- */

#login-area .login-block {
    padding: 20px;
    background-image: radial-gradient(circle farthest-corner at 50.7% 54%, rgba(204, 254, 152, 1) 0%, rgba(229, 253, 190, 1) 92.4%);
}

#login-area .login-form {
    padding: 20px;
    background: #6462621a;
}

#login-area .login-form .form-head {
    font-size: 1.5rem;
    margin: 0px 0px 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid grey;
}

#login-area .login-form .group-input {
    margin: 25px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}

#login-area .login-form .group-input label {
    margin-bottom: 7px;
}

#login-area .login-form .group-input input {
    height: 35px;
    border: none;
    padding: 5px 15px 5px;
    background: #ffffff;
}

#login-area .login-form .group-input .submit {
    background: var(--theme2);
    color: white;
    font-size: 1rem;
    padding: 5px;
}

#login-area .login-content {
    padding: 20px;
}

#login-area .login-content .content-head {
    font-size: 2rem;
    margin-bottom: 5px;
}

#login-area .login-content .content-slogan {
    font-size: 1rem;
    color: var(--theme2);
    margin-bottom: 20px;
}

#login-area .login-content .content-data {
    text-align: justify;
    color: grey;
    margin-bottom: 15px;
}

#login-area .login-content .redirect a {
    color: var(--theme2);
}

@media screen and (max-width:576px) {
    #login-area .login-content {
        padding: 20px 0px;
    }

    #login-area .login-form {
        padding: 20px 10px;
    }
}

/* -- ===========================================
                List Your Profile
=========================================== -- */

#listing-profile .list-profile-form {
    padding: 10px;
}

#listing-profile .form-block {
    padding: 10px 20px;
    margin-bottom: 30px;
    background-image: linear-gradient(to top, #b6f83361 0%, #468d424d 100%);
}

#listing-profile .form-block .form-head {
    font-size: 1.2rem;
    text-align: center;
    padding: 5px 0px 10px;
    border-bottom: 1px solid grey;
}

#listing-profile .form-block .group-input {
    margin: 15px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}

#listing-profile .form-block .group-input label {
    margin-bottom: 7px;
}

#listing-profile .form-block .group-input input,
#listing-profile .form-block .group-input select {
    height: 35px;
    border: 1px solid grey;
    padding: 5px 15px 5px;
    background: #ffffff;
}

#listing-profile .form-block .group-input input:focus,
#listing-profile .form-block .group-input select:focus {
    border-color: var(--theme2);
}

#listing-profile .form-block .group-input input[type="file"] {
    padding: 3px 10px 3px;
}

#listing-profile .group-input .submit {
    background: var(--theme2);
    color: white;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    border: none;
    height: 45px;
}

@media screen and (max-width:576px) {
    #listing-profile .list-profile-form {
        padding: 0px;
    }

    #listing-profile .form-block {
        padding: 10px;
        margin-bottom: 20px;
    }
}


/* -- ===========================================
                Wishlist
=========================================== -- */

#wishlist table th,
#wishlist table td {
    min-width: 100px;
    padding: 15px 10px;
}

#wishlist table td {
    height: 120px;
}

#wishlist table td>div {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#wishlist table td img {
    width: 80px;
    height: 80px;
}


/* -- ===========================================
                Cart
=========================================== -- */

#cart .cart-product-table {
    margin-bottom: 50px;
}

#cart .cart-product-table table th,
#cart .cart-product-table table td {
    min-width: 100px;
    padding: 15px 10px;
}

#cart .cart-product-table table td {
    height: 120px;
}

#cart .cart-product-table table td>div {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#cart .cart-product-table table td img {
    width: 80px;
    height: 80px;
}

#cart .cart-bill-table table th,
#cart .cart-bill-table table td {
    min-width: 80px;
    padding: 15px 10px;
    height: auto;
}

#cart .place-order-btn button {
    width: 100%;
    padding: 7px 10px;
}

#cart .cart-bill-table .table-responsive {
    border-top: 2px solid var(--theme);
    margin-bottom: 30px;
}

.cart-plus-minus {
    float: none;
    margin: 0 auto;
    position: relative;
    width: 76px !important;
    height: 46px !important;
    text-align: left;
}

.cart-plus-minus .cart-plus-minus-box {
    border: 1px solid #e1e1e1;
    color: #242424;
    height: 46px;
    text-align: center;
    width: 48px;
    width: 48px;
    width: 3rem;
    background: #fff;
}

.cart-plus-minus .dec.qtybutton,
.cart-plus-minus .inc.qtybutton {
    border-bottom: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
    color: #333333;
    cursor: pointer;
    height: 23px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 28px;
    background: white;
}

.cart-plus-minus .dec.qtybutton {
    bottom: 0;
    right: 0;
}

.cart-plus-minus .inc.qtybutton {
    border-bottom: none;
    top: 0;
    right: 0;
}


/* -- ===========================================
                Contact Page
=========================================== -- */

#contact-area .map-area {
    height: 400px;
    border: 2px solid var(--theme);
    margin-bottom: 40px;
}

#contact-area .contact-grid {
    margin-bottom: 20px;
}

#contact-area .contact-card {
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 0 8px grey;
    margin-bottom: 20px;
}

#contact-area .contact-card .contact-icon {
    font-size: 2rem;
    border: 1px dashed var(--theme2);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#contact-area .contact-card .card-content,
#contact-area .contact-card .card-content a {
    text-align: center;
    height: 44px;
    color: grey;
}

#contact-area .form-area {
    padding: 20px;
    background-image: radial-gradient(circle farthest-corner at 50.7% 54%, rgba(204, 254, 152, 1) 0%, rgba(229, 253, 190, 1) 92.4%);
}

#contact-area .form-block {
    padding: 20px;
    background: #6462621a;
}

#contact-area .form-block .form-head {
    font-size: 1.5rem;
    margin: 0px 0px 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid grey;
}

#contact-area .form-block .group-input {
    margin: 25px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}

#contact-area .form-block .group-input input,
#contact-area .form-block .group-input textarea {
    height: 35px;
    border: none;
    padding: 5px 15px 5px;
    background: #ffffff;
}

#contact-area .form-block .group-input textarea {
    height: 100px;
}

#contact-area .form-block .group-input .submit {
    background: var(--theme2);
    color: white;
    font-size: 1rem;
    padding: 5px;
}

#contact-area .form-content {
    padding: 20px;
}

#contact-area .form-content .content-head {
    font-size: 2rem;
    margin-bottom: 5px;
}

#contact-area .form-content .content-slogan {
    font-size: 1rem;
    color: var(--theme2);
    margin-bottom: 20px;
}

#contact-area .form-content .content-data {
    text-align: justify;
    color: grey;
    margin-bottom: 15px;
}

@media screen and (max-width:576px) {
    #contact-area .form-content {
        padding: 20px 0px;
    }

    #contact-area .form-block,
    #contact-area .form-area {
        padding: 20px 10px;
    }
}

/* -- ===========================================
                Remedies Page
=========================================== -- */

#remedies-area .remedy-card {
    box-shadow: 0 2px 20px #cccccc;
    max-width: 250px;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
}

#remedies-area .remedy-img {
    aspect-ratio: 1/0.7;
    max-height: 300px;
    margin: 0px auto;
    width: 100%;
}

#remedies-area .remedy-head {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid grey;
    color: var(--theme2);
}

#remedies-area .remedy-content {
    padding: 15px;
}

#remedies-area .remedy-data {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    color: grey;
}

.remedy-data p span {
    font-size: 0.85rem !important;
    height: 86px;
    display: block;
}


/* -- ===========================================
                Doctor Profile Page
=========================================== -- */

#doc-profile-area .doc-name {
    padding: 10px 0px;
    text-align: center;
    font-size: 1.7rem;
    background: #468d42;
    color: white;
    margin-bottom: 20px;
}

#doc-profile-area .doc-name .doc-deg {
    font-size: 1rem;
    color: rgb(255, 255, 255);
}

#doc-profile-area .doc-info-block {
    display: flex;
    padding: 10px 20px;
    margin-bottom: 15px;
}

#doc-profile-area .doc-info-block .doc-img {
    width: 250px;
    height: 250px;
    margin: 0px 15px;
}

#doc-profile-area .doc-info-block .doc-img img {
    padding: 3px;
    border: 1px dashed grey;
    border-radius: 50%;
}

#doc-profile-area .doc-info-block .doc-details {
    width: calc(100% - 280px);
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

#doc-profile-area .info-bar {
    margin-bottom: 10px;
    display: flex;
}

#doc-profile-area .info-head {
    width: 130px;
}

#doc-profile-area .info-content,
#doc-profile-area .info-content a {
    color: grey;
}

#doc-profile-area .block-head {
    padding: 10px 20px;
    font-size: 1.2rem;
    background: #468d42;
    margin-bottom: 20px;
    color: white;
}

#doc-profile-area .block-content {
    padding: 20px;
}

@media screen and (max-width:990px) {
    #doc-profile-area .doc-info-block {
        flex-direction: column;
    }

    #doc-profile-area .doc-info-block .doc-img {
        margin: 0 auto 25px;
    }

    #doc-profile-area .doc-info-block .doc-details {
        width: 100%;
        padding: 0px;
    }
}

@media screen and (max-width:768px) {
    #doc-profile-area .info-bar {
        padding: 5px 10px;
        background-color: #95c13d70;
        border-radius: 5px;
    }

    #doc-profile-area .info-head {
        width: auto;
        white-space: nowrap;
    }

    #doc-profile-area .info-content,
    #doc-profile-area .info-content a {
        color: #5a5a5a;
    }
}

@media screen and (max-width:576px) {
    #doc-profile-area .info-bar>div:nth-child(2) {
        display: none;
    }

    #doc-profile-area .info-bar {
        flex-direction: column;
    }

    #doc-profile-area .block-content,
    #doc-profile-area .doc-info-block {
        padding: 10px 0px;
    }
}


/* -- ===========================================
                About Area
=========================================== -- */

#about-area .about-amogh {
    margin-bottom: 40px;
}

#about-area .about-logo {
    width: 150px;
    height: 120px;
}

#about-area .about-img {
    max-height: 600px;
    max-width: 450px;
    aspect-ratio: 1/1.5;
    width: 100%;
    margin: 0px auto;
    clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 20%);
}

#about-area .about-head span {
    font-size: 1.1rem;
    color: var(--theme2);
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

#about-area .about-head span::after {
    position: absolute;
    right: -104px;
    top: calc(50% - 1px);
    height: 2px;
    width: 100px;
    content: "";
    background: var(--theme2);
}

#about-area .about-content {
    color: grey;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 25;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#about-area .milestone-card {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0px auto 15px;
    background-image: radial-gradient(circle farthest-corner at 50.7% 54%, #d7b4f06e 0%, #ccb1cc45 92.4%);
}

#about-area .milestone-card .milestone-icon {
    font-size: 2rem;
    border: 1px dashed var(--theme2);
    border-radius: 50%;
    margin: 0px auto 10px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
}

#about-area .milestone-card .milestone-name {
    color: grey;
    text-align: center;
}

@media screen and (max-width:990px) {
    #about-area .about-content {
        -webkit-line-clamp: initial;
    }
}

/* -- ===========================================
                Product Card
=========================================== -- */

.product-card {
    box-shadow: 0 0 5px rgb(168, 167, 167);
    margin-bottom: 20px;
    position: relative;
}

.product-card .product-img {
    aspect-ratio: 1/1;
    width: 100%;
    max-height: 300px;
}

.product-card .product-info {
    padding: 20px;
    background: #f0f0f0;
}

.product-card .product-info .product-name {
    font-size: 1rem;
    color: #504c83;
}

.product-card .product-info .price {
    color: rgb(30, 29, 29);
    margin-bottom: 10px;
}

.product-card .product-info .variant-bar {
    margin-bottom: 10px;
}

.product-card .product-info .variant-bar>select {
    border: 1px solid grey;
    color: grey;
}

.product-card .product-info del {
    font-size: 0.7rem;
    color: grey;
}

.product-card .product-info .cart-btn button {
    font-size: 0.8rem;
    padding: 3px 5px;
    width: 100%;
    background: white;
    color: #337786;
    border: 1px solid #337786;
    display: flex;
    justify-content: center;
}

.product-card .product-info .cart-btn button:hover {
    background: #e0f9bb75;
}

.product-card .wishlist-btn {
    color: #ffffff;
    background-color: red;
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.85rem;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 0;
}

@media screen and (max-width:768px) {
    .product-card .product-info .product-name {
        font-size: 0.9rem;
    }
}

@media screen and (max-width:576px) {
    .product-card .product-info .product-name {
        font-size: 0.85rem;
    }

    .product-card .product-info .variant-bar {
        display: none;
    }
}


/* -- ===========================================
            Product List Area
=========================================== -- */

#product-list-area aside {
    padding: 20px;
    background: #0000000a;
}

#product-list-area .filter-head {
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid;
    margin-bottom: 20px;
}

#product-list-area .filter-block {
    padding: 10px;
    background: #95c13d61;
    margin-bottom: 20px;
}

#product-list-area .block-head {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--theme2);
}

#product-list-area .block-list {
    max-height: 250px;
    overflow-y: auto;
}

#product-list-area .block-list>div {
    padding: 5px;
    color: rgb(89, 89, 89);
    display: flex;
    align-items: center;
}

#product-list-area .block-list>div:hover {
    background: #00000012;
}

#product-list-area .remove-filter {
    display: none;
}

@media screen and (max-width:990px) {
    #product-list-area .aside-container {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow-y: scroll;
        backdrop-filter: blur(6px);
        padding: 50px 0px;
        justify-content: center;
        z-index: 50;
    }

    #product-list-area aside {
        width: 300px;
        height: 100%;
        overflow-y: auto;
        background: white;
    }

    #product-list-area .remove-filter {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2rem;
    }
}

@media screen and (max-width:576px) {
    #product-list-area .remove-filter {
        top: 10px;
    }
}


/* -- ===========================================
            User Profile Area
=========================================== -- */

#user-profile-area .user-info-card {
    padding: 20px;
    background: var(--theme3);
}

#user-profile-area .user-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

#user-profile-area .user-img img {
    padding: 3px;
    border: 2px dashed rgb(255, 255, 255);
    border-radius: 50%;
}

#user-profile-area .user-info-card {
    margin-bottom: 40px;
}

#user-profile-area .user-info-card .user-info {
    padding: 10px 0px;
}

#user-profile-area .user-info-card .user-info .edit-btn {
    margin-left: 10px;
    cursor: pointer;
}

#user-profile-area .user-info-card .user-name {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#user-profile-area .user-info-card .user-detail .detail-bar {
    font-size: 1rem;
    color: #424242;
    margin-bottom: 10px;
}

#user-profile-area .user-info-card .user-detail .detail-bar a {
    color: #424242;
}

#user-profile-area .user-orders .order-block {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid grey;
    margin-bottom: 20px;
}

#user-profile-area .user-orders .order-block .order-img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

#user-profile-area .user-orders .order-block .order-info .name {
    font-size: 1rem;
}

#user-profile-area .user-orders .order-block .order-info .price {
    color: rgb(64, 63, 63);
    margin-bottom: 10px;
}

#user-profile-area .user-orders .order-block .order-info .status {
    color: var(--theme);
}

#edit-user .modal-header button,
#edit-user .modal-header button:hover {
    color: black;
    background: transparent;
    padding: 0;
    font-size: 1.2rem;
    border: none;
    outline: none;
    box-shadow: none;
}

#edit-user .modal-body .group-input {
    margin-bottom: 15px;
}

#edit-user .modal-body input,
#edit-user .modal-body textarea {
    width: 100%;
    padding: 3px 10px;
    border: 1px solid grey;
}

#edit-user .modal-body textarea {
    height: 100px;
}


/* -- ===========================================
                Home Page
=========================================== -- */

#category-boxes .category-box,
#brand-boxes .brand-box {
    max-width: 150px;
    margin: 10px auto 20px;
    box-shadow: 0 8px 20px #dadada65;
    border-radius: 20px;
    opacity: 1;
    transition: all 0.2s linear;
    background: white;
    overflow: hidden;
}

#doctor-boxes .doctor-box {
    max-width: 200px;
    margin: 10px auto 20px;
    box-shadow: 0 8px 20px #dadada65;
    border-radius: 20px;
    opacity: 1;
    transition: all 0.2s linear;
    background: white;
    overflow: hidden;
}


/* #category-boxes .category-box:not(:hover),
#brand-boxes .brand-box:not(:hover) {
    opacity: 0.9;
    box-shadow: 0 10px 30px #c0c0c08c;
} */

#category-boxes .category-img,
#brand-boxes .brand-img {
    aspect-ratio: 1/0.7;
    width: 100%;
}

#doctor-boxes .doctor-img {
    aspect-ratio: 1/1;
    width: 100%;
}

#category-boxes .category-name,
#brand-boxes .brand-name,
#doctor-boxes .doctor-name {
    text-align: center;
    font-size: 0.85rem;
    text-transform: capitalize;
    padding: 10px 5px;
    color: #3d7c77;
}

.home-section .owl-carousel .owl-nav.disabled,
.home-section .owl-carousel .owl-nav {
    display: block !important;
    text-align: right;
    margin-top: 15px;
}

.home-section .owl-carousel .owl-nav.disabled button,
.home-section .owl-carousel .owl-nav button {
    text-align: center;
    width: 30px;
    height: 30px;
    margin: 0px 10px;
    border-radius: 50%;
    border: 1px solid rgb(192, 192, 192);
    line-height: 30px;
    box-shadow: 0 0 2px grey;
    background: rgb(0, 0, 0) !important;
    color: white !important;
}

.home-section .owl-carousel .owl-nav.disabled button:hover,
.home-section .owl-carousel .owl-nav button:hover {
    background: #ff00004d;
}

.home-section .product-card {
    margin: 10px auto;
    max-width: 300px;
}

#remedy-boxes .remedy-card {
    box-shadow: 0 2px 20px #cccccc;
    max-width: 250px;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
}

#remedy-boxes .remedy-img {
    aspect-ratio: 1/0.7;
    max-height: 300px;
    margin: 0px auto;
    width: 100%;
}

#remedy-boxes .remedy-head {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid grey;
    color: var(--theme2);
}

#remedy-boxes .remedy-content {
    padding: 15px;
}

#remedy-boxes .remedy-data {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    color: grey;
}

section.banners .banner {
    width: 100%;
    max-height: 350px;
    aspect-ratio: 1/0.6;
    position: relative;
    margin-bottom: 20px;
}

section.banners .banner img {
    border-radius: 15px;
}

section.banners .banner .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 0px;
    flex-direction: column;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 15px;
}

section.banners .banner .banner-content .banner-btn button {
    background: white;
    color: black;
    border-radius: 10px;
    border: none;
    transition: all 0.5s linear;
}

section.banners .banner .banner-content .banner-btn button:hover {
    background: var(--theme3);
    color: white;
}

section.banners .banner .banner-content .banner-head {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: white;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#testimonials {
    background-size: cover;
    background-position: center;
}

#testimonials .testimonial-card {
    padding: 20px;
    background-color: #00000042;
}

#testimonials .testimonial-card .image {
    width: 100px;
    height: 100px;
    margin: 0px auto 10px;

}

#testimonials .testimonial-card .image img {
    border-radius: 50%;
    padding: 3px;
    border: 2px solid white;
}

#testimonials .testimonial-card .name {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

#testimonials .testimonial-card .review {
    text-align: center;
    color: rgb(80, 80, 80);
}

/* -- ===========================================
            Product Description Page
=========================================== -- */

#product-detail-area .product-overview {
    margin-bottom: 30px;
}

#product-detail-area .product-img {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
    aspect-ratio: 1/1;
    margin: 0px auto 20px;
}

#product-detail-area .owl-nav {
    display: none;
}

#product-detail-area .owl-carousel .owl-dots {
    text-align: center;
}

#product-detail-area .owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(170, 170, 170);
    margin: 0px 5px;
}

#product-detail-area .owl-carousel button.owl-dot:hover {
    background: grey;
}

#product-detail-area .product-details .product-name {
    font-size: 1.1rem;
}

#product-detail-area .product-details .product-price {
    font-size: 1rem;
    margin-bottom: 20px;
}

#product-detail-area .product-details .product-price del {
    font-size: 0.8rem;
    color: grey;
}

#product-detail-area .product-details .variant-bar {
    margin-bottom: 20px;
}

#product-detail-area .product-details .delivery-bar {
    padding: 10px;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

#product-detail-area .product-details .address {
    color: grey;
    width: calc(100% - 110px);
}

#product-detail-area .product-details .delivery-bar strong {
    color: black;
}

#product-detail-area .product-details .change-btn {
    width: 70px;
}

#product-detail-area .product-details .change-btn button {
    background: #95c13db7;
    color: black;
    width: 100%;
    text-align: center;
}

#product-detail-area .product-description .head>div {
    display: inline-block;
    font-size: 1.2rem;
    position: relative;
    margin-bottom: 20px;
}

#product-detail-area .product-description .head>div::after {
    position: absolute;
    bottom: -5px;
    left: 0px;
    height: 2px;
    width: 120%;
    background: black;
    content: "";
}

#product-detail-area .product-description .info-bar {
    padding: 5px 20px;
    background: #a7bf3969;
    margin-bottom: 10px;
    border-radius: 5px;
}

#product-detail-area .product-description .info-bar span,
#product-detail-area .product-description .info-bar div {
    color: rgb(100, 100, 100);
}

@media screen and (max-width:576px) {
    #product-detail-area .product-details .delivery-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    #product-detail-area .product-details .address {
        margin-bottom: 10px;
        width: 100%;
    }

    #product-detail-area .product-details .change-btn,
    #product-detail-area .product-details .change-btn button {
        width: 100%;
    }
}


/* -- ===========================================
            Find Doctors Page
=========================================== -- */

#doctors-area .add-profile-btn {
    padding: 10px;
    background: var(--theme3);
    border-radius: 0px;
    text-align: center;
    margin-bottom: 30px;
}

#doctors-area .add-profile-btn a {
    color: var(--theme2);
}

#doctors-area .search-bar form {
    display: flex;
    margin-bottom: 30px;
}

#doctors-area .search-bar form input {
    width: calc(100% - 150px);
    padding: 7px 15px;
    border: 1px solid rgb(169, 168, 168);
    border-right: none;
}

#doctors-area .search-bar form input:focus {
    border-color: var(--theme);
}

#doctors-area .search-bar form label {
    width: 150px;
    display: grid;
    place-items: center;
    background: var(--theme);
    color: white;
    border: 1px solid var(--theme);
    border-left: none;
}

#doctors-area .doc-profile-card {
    display: flex;
    padding: 20px;
    background: #92bcab2a;
    align-items: center;
    margin-bottom: 20px;
}

#doctors-area .doc-profile-card .doc-img {
    width: 150px;
    height: 150px;
    margin: 0px 35px;
}

#doctors-area .doc-profile-card .doc-img img {
    border-radius: 50%;
    padding: 3px;
    border: 2px solid white;
}

#doctors-area .doc-profile-card .doc-details {
    width: calc(100% - 220px);
}

#doctors-area .doc-profile-card .doc-details .doc-name {
    font-size: 1.3rem;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#doctors-area .doc-profile-card .doc-details .doc-name span {
    color: grey;
    font-size: 0.9rem;
}

#doctors-area .doc-profile-card .doc-details .info-bar {
    display: flex;
    margin-bottom: 10px;
}

#doctors-area .doc-profile-card .doc-details .info-bar .info-content {
    color: grey;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width:767px) {
    #doctors-area .search-bar form input {
        width: calc(100% - 75px);
    }

    #doctors-area .search-bar form label {
        width: 75px;
    }
}

@media screen and (max-width:575px) {
    #doctors-area .doc-profile-card {
        flex-direction: column;
    }

    #doctors-area .doc-profile-card .doc-img {
        margin: 0px auto 20px;
    }

    #doctors-area .doc-profile-card .doc-details {
        width: 100%;
    }

    #doctors-area .doc-profile-card .doc-details .doc-name {
        text-align: center;
    }

    #doctors-area .doc-profile-card .doc-details .doc-name span {
        display: block;
    }

    #doctors-area .search-bar form input {
        width: calc(100% - 50px);
    }

    #doctors-area .search-bar form label {
        width: 50px;
        font-size: 0.8rem;
    }

    #doctors-area .doc-profile-card .doc-details .info-bar {
        flex-direction: column;
    }

    #doctors-area .doc-profile-card .doc-details .info-bar>div:nth-child(2) {
        display: none;
    }
}


/* -- ===========================================
                Remedy Detail Page
=========================================== -- */

#remedy-detail-area .current-remedy {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px grey;
}

#remedy-detail-area .current-remedy .remedy-img {
    width: 100%;
    aspect-ratio: 1/0.5;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

#remedy-detail-area .current-remedy .remedy-head {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

#remedy-detail-area .current-remedy .remedy-details {
    color: rgb(91, 91, 91);
    text-align: justify;
    overflow: hidden;
    width: 100%;
}

#remedy-detail-area .recent-remedy {
    padding: 20px;
}

#remedy-detail-area .recent-remedy .head span {
    display: inline-block;
    position: relative;
    font-size: 1.3rem;
}

#remedy-detail-area .recent-remedy .head span::after {
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 120%;
    height: 2px;
    content: "";
    background: black;
}

#remedy-detail-area .recent-remedy .remedy-grid .remedy {
    padding-bottom: 10px;
    border-bottom: 1px solid grey;
    margin-bottom: 20px;
    display: flex;
}

#remedy-detail-area .recent-remedy .remedy-grid .remedy .remedy-detail {
    width: calc(100% - 100px);
}

#remedy-detail-area .recent-remedy .remedy-grid .remedy-img {
    width: 90px;
    height: 90px;
    margin-right: 10px;
}

#remedy-detail-area .recent-remedy .remedy-grid {
    padding: 20px 0px;
}

#remedy-detail-area .recent-remedy .remedy-grid .remedy-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#remedy-detail-area .recent-remedy .remedy-grid .remedy-desc {
    color: rgb(91, 91, 91);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

@media screen and (max-width:990px) {
    #remedy-detail-area .current-remedy {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:575px) {
    #remedy-detail-area .recent-remedy .remedy-grid .remedy-name {
        font-size: 1rem;
    }

    #remedy-detail-area .recent-remedy .remedy-grid .remedy-img {
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }

    #remedy-detail-area .recent-remedy .remedy-grid {
        padding: 10px 0px;
    }

    #remedy-detail-area .current-remedy {
        padding: 10px;
    }

    #remedy-detail-area .current-remedy .remedy-head {
        font-size: 1.2rem;
    }
}


/* -- ===========================================
            Forgot Password Area
=========================================== -- */

#forgot-password .forgot-block {
    padding: 20px;
    background-image: radial-gradient(circle farthest-corner at 50.7% 54%, rgba(204, 254, 152, 1) 0%, rgba(229, 253, 190, 1) 92.4%);
}

#forgot-password .forgot-form {
    padding: 20px;
    background: #6462621a;
}

#forgot-password .forgot-form .form-head {
    font-size: 1.5rem;
    margin: 0px 0px 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid grey;
}

#forgot-password .forgot-form .group-input {
    margin: 25px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}

#forgot-password .forgot-form .group-input label {
    margin-bottom: 7px;
}

#forgot-password .forgot-form .group-input input {
    height: 35px;
    border: none;
    padding: 5px 15px 5px;
    background: #ffffff;
}

#forgot-password .forgot-form .group-input .submit {
    background: var(--theme2);
    color: white;
    font-size: 1rem;
    padding: 5px;
}

@media screen and (max-width:576px) {
    #forgot-password .forgot-form {
        padding: 20px 10px;
    }
}


/* -- ===========================================
                Checkout Area
=========================================== -- */

#checkout-area .your-order {
    padding: 20px;
    background: rgba(0, 0, 0, 0.112);
}

#checkout-area .billing-detail .head,
#checkout-area .your-order .head {
    font-size: 1.5rem;
    padding: 0px 10px 10px;
    border-bottom: 1px solid grey;
    margin-bottom: 20px;
}

#checkout-area .your-order .order-table {
    margin-bottom: 20px;
}

#checkout-area .your-order .block {
    display: flex;
    padding: 10px;
    color: grey;
}

#checkout-area .your-order .block .product-block {
    width: 60%;
}

#checkout-area .your-order .block .price-block {
    width: 40%;
    text-align: center;
}

#checkout-area .your-order .block .bold-block {
    color: black;
}

#checkout-area .billing-detail .group-input input {
    margin-bottom: 15px;
    border: 1px solid grey;
    padding: 7px 10px;
    width: 100%;
}

@media screen and (max-width:990px) {
    #checkout-area .billing-detail {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:575px) {
    #checkout-area .your-order {
        padding: 10px;
    }
}


.home-section .owl-carousel .owl-nav.disabled button,
.home-section .owl-carousel .owl-nav button {
    background: #468d42 !important;
}

#main-slider .slider-area .owl-nav button {
    background: #468d42 !important;
}