﻿:root {
    --main-color: #1F509F;
    --base-rem: 14px;
}

body {
    background-color: rgb(255, 255, 250);
    overflow-x: hidden;
    font-family: Poppins, serif;
}

a {
    color: rgb(24, 119, 242);
}

.error-toast {
    color: rgb(255, 255, 255) !important;
    padding: 26px 40px !important;
    background-color: rgb(228, 98, 111) !important;
    text-align: center !important;
    font-size: 14px !important;
}

.btn-primary {
    transition: 0.3s;
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

    .btn-primary:hover {
        color: var(--main-color) !important;
        background-color: transparent !important;
    }

.btn-outline-primary {
    transition: 0.3s;
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

    .btn-outline-primary:hover {
        background-color: var(--main-color) !important;
        border-color: var(--main-color) !important;
        color: rgb(255, 255, 255) !important;
    }

header.header {
    position: fixed;
    top: 50px;
    left: 0px;
    right: 0px;
    transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 9;
    width: 90%;
    margin: auto;
}

    header.header.fixed {
        top: 0px;
        width: 100%;
    }

        header.header.fixed .navbar {
            border-radius: 0px;
        }

    header.header .navbar {
        padding: 13px 40px;
        border-radius: 28px;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border: 1px solid rgb(216, 216, 216);
        transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

        header.header .navbar .navbar-brand .logo {
            width: 144px;
            height: 71px;
        }

.navbar-nav {
    gap: 20px;
}

header.header .navbar .auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

    header.header .navbar .auth > a {
        color: rgb(0, 0, 0);
        font-size: 16px;
        text-decoration: none;
        font-weight: 700;
    }

    header.header .navbar .auth .dropdown {
    }

        header.header .navbar .auth .dropdown .user {
            background-color: rgb(222, 232, 248);
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            width: 38px;
            height: 38px;
            display: flex;
            border-radius: 50%;
            text-align: center;
            align-items: center;
            justify-content: center;
            position: relative;
            color: rgb(31, 80, 159) !important;
        }

        header.header .navbar .auth .dropdown .dropdown-toggle::after {
            content: "";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-left: 0px;
            border: 0px;
            position: absolute;
            right: -37px;
            transition: 0.3s ease-in-out;
            padding: 10px;
        }

        header.header .navbar .auth .dropdown .dropdown-toggle.show::after {
            content: "";
        }

        header.header .navbar .auth .dropdown .dropdown-menu {
            border: 1px solid rgba(0, 0, 0, 0.1);
            background-color: rgb(255, 255, 250);
            box-shadow: rgba(0, 0, 0, 0) 0px 52px 14px 0px;
            padding: 24px 14px;
            border-radius: 6px;
            min-width: 315px;
        }

            header.header .navbar .auth .dropdown .dropdown-menu .user-content {
                display: flex;
                align-items: center;
                gap: 14px;
            }

                header.header .navbar .auth .dropdown .dropdown-menu .user-content .content {
                    display: flex;
                    flex-direction: column;
                }

                    header.header .navbar .auth .dropdown .dropdown-menu .user-content .content p {
                        margin: 0px;
                        color: rgb(10, 10, 11);
                        font-size: 12px;
                        font-weight: 500;
                    }

                    header.header .navbar .auth .dropdown .dropdown-menu .user-content .content span {
                        color: rgb(159, 156, 156);
                        font-size: 10px;
                        font-weight: 500;
                        line-height: 15px;
                    }

            header.header .navbar .auth .dropdown .dropdown-menu[data-bs-popper] {
                top: 100%;
                right: -40px;
                margin-top: 1.125rem;
                left: auto !important;
            }

            header.header .navbar .auth .dropdown .dropdown-menu .links-auth li {
                margin: 14px 0px;
            }

                header.header .navbar .auth .dropdown .dropdown-menu .links-auth li button, header.header .navbar .auth .dropdown .dropdown-menu .links-auth li button a, header.header .navbar .auth .dropdown .dropdown-menu .links-auth li a {
                    font-size: 14px;
                    text-decoration: none;
                    width: 100%;
                    display: block;
                    text-align: left;
                    padding: 0px;
                    font-weight: 500 !important;
                    color: rgb(10, 10, 11) !important;
                }

.navbar-nav li.nav-item a {
    color: rgb(10, 10, 11);
    font-size: 16px;
    font-weight: 700;
}

.navbar-nav li.nav-item:hover a, .navbar-nav li.nav-item.active a {
    color: var(--main-color);
}

.navbar-nav li.nav-item.success a {
    color: rgb(53, 170, 95) !important;
}

.navbar-collapse .btn-primary {
    border-radius: 30px;
    color: rgb(255, 255, 255);
    height: 50px;
    width: 155px;
    line-height: 50px;
    padding: 0px;
}

.mob-nav {
    display: none;
}

.navbar-toggler {
    border: 0px;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
}

    .navbar-toggler i {
        color: var(--main-color);
        font-size: 40px;
    }

    .navbar-toggler:focus {
        border-color: transparent;
        box-shadow: none;
    }

.cart-navbar {
    position: relative;
    cursor: pointer;
}

    .cart-navbar span.count {
        position: absolute;
        top: 0px;
        right: 10px;
        background-color: rgb(53, 170, 95);
        border-radius: 50%;
        width: 21px;
        height: 21px;
        text-align: center;
        color: rgb(255, 255, 255);
        font-size: 12px;
        line-height: 21px;
    }

footer.footer-eunoia {
    background-image: url("../images/back-footer.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 100px 40px 24px;
    margin: 100px 0px 0px;
}

    footer.footer-eunoia .logo-footer {
        text-align: center;
        margin-bottom: 32px;
    }

        footer.footer-eunoia .logo-footer img {
            width: 144px;
            height: 71px;
        }

    footer.footer-eunoia p.content-top {
        width: 920px;
        margin: auto;
        color: rgb(250, 250, 250);
        font-size: 32px;
        line-height: 38.4px;
        font-weight: 300;
        text-align: center;
    }

    footer.footer-eunoia .ceo-sec {
        text-align: center;
        margin: 32px 0px 100px;
    }

        footer.footer-eunoia .ceo-sec img {
        }

        footer.footer-eunoia .ceo-sec p.name {
            color: rgb(250, 250, 250);
            font-weight: 700;
            font-size: 16px;
            line-height: 19.2px;
            text-align: center;
            margin: 10px 0px;
        }

        footer.footer-eunoia .ceo-sec p.title {
            color: rgb(250, 250, 250);
            font-weight: 300;
            font-size: 16px;
        }

    footer.footer-eunoia .countries {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

        footer.footer-eunoia .countries .flags {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            footer.footer-eunoia .countries .flags ul {
                display: flex;
                gap: 15px;
                list-style: none;
                margin: 0px;
                padding: 0px;
                flex-wrap: wrap;
            }

                footer.footer-eunoia .countries .flags ul li img {
                    width: 50px;
                    height: 50px;
                    margin: 15px 0px;
                    border-radius: 50%;
                    object-fit: cover;
                    background-size: cover;
                }

            footer.footer-eunoia .countries .flags p.content {
                font-size: 18px;
                font-weight: 300;
                margin: 9px;
                color: rgb(250, 250, 250);
            }

    footer.footer-eunoia .contact-footer {
        margin: 30px 0px;
    }

        footer.footer-eunoia .contact-footer ul {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            margin-bottom: 31px;
        }

            footer.footer-eunoia .contact-footer ul li {
                min-width: fit-content;
                text-align: center;
            }

                footer.footer-eunoia .contact-footer ul li p, footer.footer-eunoia .contact-footer ul li a {
                    text-decoration: none;
                    color: rgb(250, 250, 250);
                    font-size: 16px;
                    margin: 0px;
                    font-weight: 300;
                }

            footer.footer-eunoia .contact-footer ul.social {
                gap: 7.8px !important;
            }

    footer.footer-eunoia .copyrigh {
        text-align: center;
        color: rgb(250, 250, 250);
        margin-top: 30px;
    }

.hero-home {
    position: relative;
    height: 120vh;
    overflow: hidden;
}

.gradient-bg {
    content: "";
    background-image: url("../images/gradient.png");
    position: absolute;
    top: 103%;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 160px;
}

.hero-home video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.hero-home .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 100px 0px;
}

    .hero-home .overlay .content {
        width: 650px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: 60%;
        margin: 0px auto;
        overflow: hidden;
    }

        .hero-home .overlay .content .titles {
            /* margin: 120px 0px 0px; */
            min-height: 150px;
        }

            .hero-home .overlay .content .titles h1 {
                color: rgb(250, 250, 250);
                font-size: 48px;
                font-weight: 200;
            }

            .hero-home .overlay .content .titles p {
                line-height: 21.6px;
                font-weight: 200;
                font-size: 18px;
            }

        .hero-home .overlay .content .form-eunoia {
            background-color: rgb(255, 255, 255);
            padding: 17px 20px;
            z-index: 2;
            border-radius: 20px;
            display: flex;
            justify-content: space-between;
            margin: 0px;
            width: 100% !important;
        }

            .hero-home .overlay .content .form-eunoia input:focus, .hero-home .overlay .content .form-eunoia input {
                border: 0px;
                box-shadow: none;
                outline: none;
                flex: 1 1 0%;
            }

            .hero-home .overlay .content .form-eunoia .btn {
                border-radius: 30px;
                line-height: 21.6px;
                font-size: 18px;
                padding: 14px 28px;
            }

.content-home-page {
    margin: 100px auto 200px;
    text-align: center;
    width: 823px;
}

    .content-home-page span.badge {
        background-color: rgb(224, 245, 231);
        border: 1px solid rgb(53, 170, 95);
        color: rgb(53, 170, 95);
        font-weight: 300;
        font-size: 18px;
        border-radius: 40px;
        padding: 10px 28px;
        margin-bottom: 38px;
    }

    .content-home-page p {
        font-size: 48px;
        font-weight: 300;
    }

        .content-home-page p b {
            font-weight: 700;
        }

        .content-home-page p span {
            font-family: Instrument, serif;
            font-style: italic;
            display: block;
        }

.boxes .row {
    padding: 100px 0px 50px;
    position: relative;
}

    .boxes .row::after {
        content: "";
        width: 80%;
        margin: auto;
        background-color: rgba(0, 0, 0, 0.2);
        height: 2px;
        bottom: -50px;
        position: absolute;
        left: 0px;
        right: 0px;
    }

    .boxes .row:last-of-type::after {
        display: none;
    }

.boxes .box-content {
    width: 459px;
    margin: auto;
}

    .boxes .box-content .icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .boxes .box-content h3 {
        color: var(--main-color);
        margin-bottom: 100px;
        font-size: 48px;
    }

    .boxes .box-content p {
        color: rgb(10, 10, 11);
        font-size: 13px;
        font-weight: 300;
        line-height: 19.2px;
    }

.boxes .box-img {
    width: 100%;
    position: relative;
    height: 100%;
    margin: auto;
}

    .boxes .box-img > img {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
    }

    .boxes .box-img .layer {
        background-image: url("../images/sections/gradient.png");
        position: absolute;
        top: 0px;
        bottom: 0px;
        right: -1px;
        height: 100%;
        box-shadow: rgba(0, 0, 0, 0.15) 30px 20px 50px;
        z-index: 2147483647;
        width: 5%;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .boxes .box-img .over {
        position: absolute;
        left: 0px;
        bottom: -45px;
        z-index: 9;
    }

.mdicines-sec {
    margin-top: 28px;
    text-align: center;
    margin-bottom: 50px;
}

    .mdicines-sec.prod a:not(.btn) {
        text-decoration: none;
        color: rgb(10, 10, 11);
    }

    .mdicines-sec .card-mdicines {
        border-radius: 8.05px;
        border: 1px solid rgba(0, 0, 0, 0.12);
        padding: 32px 24px;
        min-height: 483px;
    }

        .mdicines-sec .card-mdicines .img img, .mdicines-sec .card-mdicines .img {
            width: 100%;
            overflow: hidden;
        }

        .mdicines-sec .card-mdicines .content {
            text-align: left;
        }

            .mdicines-sec .card-mdicines .content h3 {
                margin: 47px 0px 19px;
                font-size: 16px;
                font-weight: 700;
                line-height: 19.2px;
            }

            .mdicines-sec .card-mdicines .content p {
                font-weight: 300;
                font-size: 14px;
                line-height: 16.8px;
            }

    .mdicines-sec .btn-primary {
        margin: 28px 0px 0px;
        padding: 14px 28px;
        border-radius: 30px !important;
    }

    .mdicines-sec.prod a:not(.btn) {
        text-decoration: none;
        color: rgb(10, 10, 11);
    }

    .mdicines-sec .card-mdicines {
        border-radius: 8.05px;
        border: 1px solid rgba(0, 0, 0, 0.12);
        padding: 32px 24px;
        min-height: 725px;
    }

        .mdicines-sec .card-mdicines .img img, .mdicines-sec .card-mdicines .img {
            width: 100%;
            overflow: hidden;
        }

        .mdicines-sec .card-mdicines .content {
            text-align: left;
        }

            .mdicines-sec .card-mdicines .content h3 {
                margin: 47px 0px 19px;
                font-size: 16px;
                font-weight: 700;
                line-height: 19.2px;
            }

            .mdicines-sec .card-mdicines .content p {
                font-weight: 300;
                font-size: 14px;
                line-height: 30px;
                min-height: 150px;
            }

    .mdicines-sec .btn-primary {
        margin: 28px 0px 0px;
        padding: 14px 28px;
        border-radius: 30px !important;
    }

    .mdicines-sec .card-mdicines .buy {
        margin: 0px;
        text-align: center;
    }

        .mdicines-sec .card-mdicines .buy .btn-primary {
            margin-bottom: 14px;
            padding: 10px 28px !important;
            font-size: 18px !important;
        }

        .mdicines-sec .card-mdicines .buy p {
            font-weight: 700;
            font-size: 14px;
            line-height: 16.8px;
            margin: 0px;
        }

        .mdicines-sec .card-mdicines .buy span {
            font-weight: 300;
            font-size: 14px;
            line-height: 16.8px;
        }

.product-details {
    margin-top: 10px;
}

    .product-details .slide-prod {
        padding: 0px 15px;
        width: 90%;
        margin: auto;
        z-index: 999999999;
        position: relative;
    }

        .product-details .slide-prod a {
            text-decoration: none;
        }

        .product-details .slide-prod .img-prod {
            padding: 20px 10px;
            border-radius: 10px 10px 0px 0px;
            background-color: rgba(0, 0, 0, 0.06);
        }

            .product-details .slide-prod .img-prod img {
            }

        .product-details .slide-prod .title-prod {
            background-color: var(--main-color);
            text-align: center;
            color: rgb(255, 255, 255);
            padding: 15px 7.5px;
            border-radius: 0px 0px 10px 10px;
        }

            .product-details .slide-prod .title-prod h3 {
                line-height: 15px;
                font-size: 12px;
                font-weight: 300;
            }

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    align-items: center;
    justify-content: space-between;
    top: 50%;
    position: absolute;
    left: 0px;
    right: 0px;
    height: auto;
    display: flex !important;
}

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled button span {
        font-size: 4rem;
    }

.details-medicane {
    margin: 230px 0px 0px;
}

    .details-medicane .img-medican {
        text-align: center;
        width: 40%;
        margin: auto;
    }

        .details-medicane .img-medican h3 {
            font-size: 56px;
            margin-bottom: 50px;
        }

        .details-medicane .img-medican img {
            width: 100%;
        }

    .details-medicane .lists {
    }

        .details-medicane .lists h2 {
            font-size: 32px;
            font-weight: 300;
            line-height: 38.4px;
            margin-bottom: 25px;
        }

        .details-medicane .lists h4 {
            font-size: 16px;
            font-weight: 300;
            margin-bottom: 25px;
        }

        .details-medicane .lists p {
            font-weight: 300;
        }

        .details-medicane .lists ul {
            margin-bottom: 100px;
        }

            .details-medicane .lists ul li {
                line-height: 19.2px;
                font-size: 16px;
                font-weight: 300;
                margin: 10px 0px;
            }

    .details-medicane .img-medican h3 {
        font-size: 56px;
    }

    .details-medicane .img-medican .prod-count {
        display: flex;
        gap: 100px;
        margin: 100px 0px;
    }

        .details-medicane .img-medican .prod-count .image {
            box-shadow: rgba(0, 0, 0, 0) 0px 377px 106px 0px;
            width: 549px;
            height: auto;
            border-radius: 20px;
            background-size: cover;
            object-fit: cover;
        }

            .details-medicane .img-medican .prod-count .image img {
                width: 100%;
                height: 100%;
                border-radius: 20px;
            }

        .details-medicane .img-medican .prod-count form {
            text-align: left;
        }

            .details-medicane .img-medican .prod-count form .buy .btn {
                width: 100%;
            }

            .details-medicane .img-medican .prod-count form p {
                color: rgb(10, 10, 11);
                line-height: 28.8px;
                font-weight: 300;
                font-size: 24px;
                margin-bottom: 50px;
            }

            .details-medicane .img-medican .prod-count form .form-group {
            }

                .details-medicane .img-medican .prod-count form .form-group label {
                    color: rgb(10, 10, 11);
                    line-height: 16.8px;
                    font-size: 14px;
                    font-weight: 300;
                    margin-bottom: 10px;
                }

.inp-count {
    border: 1px solid rgb(183, 183, 183);
    padding: 14px 28px;
    border-radius: 30px;
    /* width: 334px; */
    height: 50px;
    user-select: none;
    display: flex;
    align-items: center;
}

    .inp-count button, .inp-count a {
        text-decoration: none;
        color: rgb(0, 0, 0);
        cursor: pointer;
        font-size: 20px;
        border: 0px;
        padding: 0px;
        background-color: rgb(255, 255, 255);
    }

    .inp-count input {
        border: 0px;
        outline: none;
        background-color: transparent;
        text-align: center;
    }

        .inp-count input::-webkit-outer-spin-button, .inp-count input::-webkit-inner-spin-button {
            appearance: none;
            margin: 0px;
        }

.details-medicane .prod-count form .form-group .btn-primary {
    margin-top: 50px;
    border-radius: 30px;
}

.details-medicane .lists h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 38.4px;
    margin-bottom: 25px;
}

.details-medicane .lists h4 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
}

.details-medicane .lists p {
    font-weight: 300;
}

.details-medicane .lists ul {
    margin-bottom: 100px;
}

    .details-medicane .lists ul li {
        line-height: 19.2px;
        font-size: 16px;
        font-weight: 300;
        letter-spacing: 1px;
    }

.dialop-prod .modal-content {
    padding: 25px 80px;
    text-align: center;
    border-radius: 20px;
    border: 0px;
}

    .dialop-prod .modal-content .head-succ .icons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .dialop-prod .modal-content .head-succ .icons p {
            margin: 0px;
        }

    .dialop-prod .modal-content .head-succ h3 {
        margin: 25px 0px;
        font-weight: 600;
    }

    .dialop-prod .modal-content .head-succ .image {
        border: 1px solid rgb(0, 0, 0);
        border-radius: 17px;
        height: 250px;
        width: 70%;
        margin: 0px auto 20px;
    }

        .dialop-prod .modal-content .head-succ .image img {
            width: 100%;
            height: 100%;
            border-radius: 17px;
        }

    .dialop-prod .modal-content .head-succ span {
        text-align: left;
        color: rgb(10, 10, 11);
        font-weight: 300;
        font-size: 14px;
        display: block;
        margin-bottom: 8px;
    }

    .dialop-prod .modal-content .head-succ .btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        width: 45%;
        margin: auto;
    }

        .dialop-prod .modal-content .head-succ .btns.prod {
            margin: auto;
            width: 50% !important;
        }

        .dialop-prod .modal-content .head-succ .btns .btn {
            border-radius: 30px;
        }

.edit-profile .form-group {
    margin-bottom: 36px;
}

    .edit-profile .form-group .text-muted {
        text-align: left;
        display: block;
        font-size: 12px;
        font-weight: 300;
        color: rgb(159, 156, 156);
        margin: 4px 0px;
    }

    .edit-profile .form-group label {
        text-align: left;
        color: rgb(10, 10, 11);
        font-size: 16px;
        display: block;
        margin-bottom: 4px;
        font-weight: 500;
    }

    .edit-profile .form-group .form-control {
        border-radius: 8px;
        min-height: 41px;
        font-size: 14px;
        color: rgb(10, 10, 11);
    }

        .edit-profile .form-group .form-control.disabled {
            background-color: rgba(227, 227, 227, 0.4);
            font-size: 14px;
            color: rgb(159, 156, 156);
        }

.form-eunoia {
    margin: 28px auto 150px;
    width: 80%;
}

    .form-eunoia .form-group {
        margin: 7px 0px;
    }

    .form-eunoia .title {
        color: rgb(0, 0, 0);
        font-size: 14px;
        font-weight: 700;
        line-height: 14px;
        margin: 40px 0px 14px;
    }

    .form-eunoia .form-group .form-control:focus, .form-eunoia .form-group .form-control {
        border: 1px solid rgb(159, 156, 156);
        outline: 0px;
        border-radius: 6px;
        box-shadow: none;
        min-height: 41px;
    }

    .form-eunoia .form-group textarea {
        height: 250px;
    }

    .form-eunoia .form-group .form-control.input-validation-error {
        border-color: rgb(228, 98, 111);
    }

    .form-eunoia .form-group .btn {
        border-radius: 30px !important;
    }

.card-dimmed {
    background-color: rgb(250, 250, 250);
    padding: 40px;
    border-radius: 14px;
    margin-bottom: 32px;
}

    .card-dimmed .content {
        text-align: center;
    }

        .card-dimmed .content h4 {
            margin-bottom: 32px;
            font-size: 18px;
            font-weight: 700;
            line-height: 27px;
            color: rgb(10, 10, 11);
        }

        .card-dimmed .content p {
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            color: rgb(10, 10, 11);
        }

        .card-dimmed .content .edit-profile {
            text-align: left;
        }

            .card-dimmed .content .edit-profile .name {
                display: flex;
                align-items: center;
                gap: 32px;
                margin-bottom: 32px;
            }

                .card-dimmed .content .edit-profile .name p {
                    color: rgb(10, 10, 11);
                    margin: 0px;
                    font-size: 18px;
                }

                .card-dimmed .content .edit-profile .name a {
                    cursor: pointer;
                }

.footer-eunoia-simple {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 150px;
}

    .footer-eunoia-simple ul {
        margin: 0px;
        padding: 20px 0px 40px;
        display: flex;
        align-items: center;
        gap: 40px;
    }

        .footer-eunoia-simple ul li {
        }

            .footer-eunoia-simple ul li a {
                text-decoration: none;
                font-size: 16px;
                font-weight: 500;
                color: rgb(10, 10, 11);
            }

@media (min-width: 992px) {
    .md-table-cell {
        display: table-cell !important;
    }
}

@media (max-width: 992px) {
    .navbar-nav li.nav-item.success a {
        color: rgb(255, 255, 255) !important;
    }

    .mob-nav {
        display: block;
        position: fixed;
        right: -200%;
        top: 0px;
        bottom: 0px;
        height: 100%;
        background-color: var(--main-color);
        padding: 24px;
        transition: 0.5s ease-in-out;
        width: 300px;
        z-index: 1;
    }

        .mob-nav .head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 48px;
        }

            .mob-nav .head img {
                height: 58px;
            }

            .mob-nav .head i {
                color: rgb(255, 255, 255);
                font-size: 40px;
            }

        .mob-nav li.nav-item a {
            font-weight: 300;
            font-size: 18px;
            color: rgb(255, 255, 255) !important;
        }

        .mob-nav.open {
            right: 0px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }

    footer .footer-eunoia p.content-top {
        width: 100%;
        line-height: 50px;
        font-size: 24px;
    }

    .content-home-page p {
        font-size: 24px;
    }

    .product-details .slide-prod {
        width: 100%;
    }

    .boxes .box-content {
        width: 90%;
    }

    .hero-home .overlay .content, .content-home-page {
        width: 95%;
        height: 60%;
    }

    footer.footer-eunoia .contact-footer {
        margin: 20px 0px;
    }

        footer.footer-eunoia .contact-footer ul {
            flex-direction: column;
            align-items: flex-start;
            margin-top: 65px;
            gap: 18px;
        }

            footer.footer-eunoia .contact-footer ul.social {
                flex-direction: row !important;
                gap: 30px !important;
            }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    .d-flex.gap-5{
        flex-direction: column
    }
    .hero-home .overlay .content .titles h1 {
        font-size: 22px !important;
    }

    .details-medicane {
        /* width: 75%; */
        margin: 200px auto 0px auto;
    }

    .hero-home .overlay .content .form-eunoia {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .hero-home .overlay {
        padding: 50px 0;
        height: 100%;
        justify-content: center;
    }

        .hero-home .overlay .content .form-eunoia input:focus, .hero-home .overlay .content .form-eunoia input {
            width: 100%;
        }

        .hero-home .overlay .content .titles {
            min-height: 200px !important;
            margin: 0px 0px 0px;
        }

    .carts .order-details .prod-image img {
        width: 60px !important;
    }

    .carts .order-details .details p {
        font-size: 12px !important;
    }

    .carts .order-details .details span {
        font-size: 11px !important;
    }

    .carts .order-details .prod .price {
        font-size: 11px;
    }

    .order-ship {
        flex-direction: column;
    }

    .gradient-bg {
        display: none;
    }

    .boxes .box-content h3 {
        margin-bottom: 50px;
        font-size: 25px;
        --webkit-text-wrap: wrap;
        line-height: 34px;
    }

    .content-home-page {
        margin: 100px auto 0px;
    }

    .boxes .row {
        padding: 170px 0px 20px !important;
    }

    .table-carts .inp-count {
        flex-direction: column;
        width: 42px !important;
        height: auto !important;
        padding: 0px !important;
    }

    .create-payment {
        flex-direction: column-reverse;
    }

    .carts .order-details .prod {
    }

    .carts .order-details, .order-details-list {
        width: 90%;
        margin: auto;
    }

        .carts .order-details .details p {
            margin: 0px;
        }

    .order-details-list {
        margin-bottom: 20px;
    }

    .carts .order-details .prod .content {
    }
}

.details-medicane .img-medican .prod-count {
    flex-direction: column;
    width: 100%;
    margin: 100px auto;
    gap: 20px;
}

    .details-medicane .img-medican .prod-count .d-flex {
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

.details-medicane .prod-count form .form-group .inp-count {
    text-align: center;
    width: 100%;
    display: flex;
}

.details-medicane .img-medican .prod-count .image {
    height: 300px;
    width: 300px;
}

.owl-nav {
    display: flex;
    justify-content: space-around;
    margin: 10px 0px;
}

    .owl-nav span {
        font-size: 3rem;
    }

.dialop-prod .modal-content .head-succ .image {
    height: 200px;
    width: 200px;
}

.dialop-prod .modal-content {
    width: 95%;
    margin: auto;
    padding: 25px !important;
}

    .dialop-prod .modal-content .head-succ .btns {
        width: 100% !important;
    }

.carts .order-details {
    padding: 0px;
    text-align: center;
}

    .carts .order-details .prod {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 30px 0px;
    }

        .carts .order-details .prod .content {
            display: flex;
            gap: 20px;
            align-items: center;
        }

            .carts .order-details .prod .content .details {
                text-align: left;
            }

    .carts .order-details .prod-image {
        position: relative;
    }

        .carts .order-details .prod-image span.count {
            background-color: rgb(31, 80, 159);
            width: 23px;
            height: 23px;
            display: block;
            position: absolute;
            right: -6px;
            top: -5px;
            border-radius: 50%;
            color: rgb(255, 255, 255);
        }

    .carts .order-details .details p {
        font-size: 24px;
        font-weight: 700;
        line-height: 35px;
    }

.order-details-list {
    list-style: none;
    padding: 0px;
}

    .order-details-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 7px 0px;
    }

        .order-details-list li span {
            margin: 7px 0px;
            font-size: 16px;
            color: rgb(10, 10, 11);
        }

.carts .order-details .prod-image img {
    width: 148px;
    box-shadow: rgba(0, 0, 0, 0) 0px 101.63px 28.58px 0px;
}

.err.cart, .success.cart {
    text-align: center;
}

    .err.cart .image, .success.cart .image {
        width: 150px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        margin: auto;
    }

        .err.cart .image img, .success.cart .image img {
            width: 100%;
        }

    .err.cart h3, .success.cart h3 {
        margin: 24px 0px 40px;
        font-size: 24px;
        font-weight: 700;
        line-height: 28.8px;
        color: rgb(10, 10, 11);
    }

    .err.cart .err-message, .success.cart .succ-message {
        width: 450px;
        margin: auto;
    }

        .err.cart .err-message h4, .success.cart .succ-message h4 {
            font-weight: 700;
            font-size: 16px;
            margin: 40px 0px 20px;
        }

        .success.cart .succ-message h4 {
            color: rgb(53, 170, 95);
        }

        .err.cart .err-message h4 {
            color: rgb(228, 98, 111);
        }

        .err.cart .err-message p, .success.cart .succ-message p {
            font-size: 14px;
            font-weight: 300;
        }

.accordion-item .accordion-button:focus {
    box-shadow: none;
    outline: 0px;
}

.accordion-button, .accordion-button:not(.collapsed) {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    border-bottom: 1px solid rgb(204, 204, 204);
    font-weight: 500;
}

    .accordion-button::after {
        background-image: url("../images/icon/collapse.png") !important;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("../images/icon/collapse1.png") !important;
    }

.accordion-body .par {
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    color: rgb(10, 10, 11);
    letter-spacing: 1.2px;
    text-transform: capitalize;
    font-family: sans-serif;
    margin: 0px;
}

.products-tabs {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0px 0px 70px;
    gap: 70px;
}

    .products-tabs li button {
        font-size: 18px;
        font-weight: 400;
        color: rgb(10, 10, 11) !important;
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    border-bottom: 3px solid rgb(53, 170, 95);
    border-radius: 0px;
    background-color: transparent !important;
}

.details-medicane .img-medican.prod {
    width: 100%;
}

@media (max-width: 992px) {
    footer.footer-eunoia p.content-top {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }

    .details-medicane .img-medican {
        width: 80%;
    }

        .details-medicane .img-medican .prod-count .image {
            height: auto !important;
        }

        .details-medicane .img-medican h3 {
            font-size: 35px;
            margin: 0px !important;
        }

        .details-medicane .img-medican .prod-count {
            width: 100%;
            margin: 10px 0px;
        }

    .details-medicane .lists ul li {
        line-height: 25px;
    }
}

@media (max-width: 768px) {
    .products-tabs {
        gap: 0px;
    }

    .boxes .box-img .over {
        left: 0px;
    }

    .product-details .slide-prod .img-prod img {
        height: auto !important;
    }
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    height: 0px !important;
}

.footer-list ul {
    list-style: none;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0px;
    flex-wrap: wrap;
}

    .footer-list ul li {
        text-align: center;
    }

        .footer-list ul li a {
            color: rgb(255, 255, 255);
            text-decoration: none;
        }

        .footer-list ul li img {
            max-width: 320px;
        }

.boxes.text {
}

    .boxes.text h1 {
        margin-bottom: 35px;
        font-size: 24px;
    }

    .boxes.text h4 {
        font-size: 18px;
    }

    .boxes.text p {
        line-height: 2rem;
        letter-spacing: 1px;
        font-size: 14px;
    }

.list-contact {
    margin: 50px 0px;
    padding: 0px;
    list-style: none;
}

    .list-contact li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 10px 0px;
    }

        .list-contact li b {
            width: 100px;
        }

.form-eunoia.auth {
    width: 40%;
}

    .form-eunoia.auth .title-auth {
        font-size: 28px;
        font-weight: 700;
        color: rgb(10, 10, 11);
    }

    .form-eunoia.auth .form-group {
        margin-bottom: 32px;
    }

        .form-eunoia.auth .form-group label {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .form-eunoia.auth .form-group .link {
            text-align: center;
            display: block;
            color: rgb(31, 80, 159);
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
        }

h3.title {
    margin-bottom: 32px;
}

.order-ship {
    background-color: rgb(250, 250, 250);
    padding: 40px 14px;
    border-radius: 14px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .order-ship .ship-order-details {
    }

        .order-ship .ship-order-details span {
            font-size: 18px;
            font-weight: 700;
            color: rgb(10, 10, 11);
            margin-bottom: 32px;
            display: block;
        }

        .order-ship .ship-order-details p {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 32px;
            display: block;
        }

.shipping-status-details {
    position: relative;
    padding: 0px 200px 0px 0px;
}

    .shipping-status-details::after {
        content: "";
        position: absolute;
        left: -52px;
        width: 2px;
        height: 75%;
        background-color: rgb(227, 227, 227);
        top: 15px;
    }

    .shipping-status-details .status {
        position: relative;
        margin-bottom: 62px;
        display: block;
    }

        .shipping-status-details .status p {
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            margin-bottom: 4px;
        }

        .shipping-status-details .status span {
            font-size: 12px;
            font-weight: 500;
            color: rgb(10, 10, 11);
            line-height: 18px;
        }

        .shipping-status-details .status::after {
            content: "";
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background-color: rgb(181, 179, 179);
            border-radius: 50%;
            left: -60px;
            z-index: 1;
        }

        .shipping-status-details .status.success::after {
            background-color: rgb(53, 170, 95) !important;
        }

        .shipping-status-details .status.pending::after {
            background-color: rgb(243, 175, 47) !important;
        }

        .shipping-status-details .status.error::after {
            background-color: rgb(243, 47, 74) !important;
        }

.btn.link {
    text-align: center;
    display: block;
    color: rgb(31, 80, 159);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 992px) {
    .shipping-status-details {
        padding: 0px !important;
    }

    .form-eunoia {
        width: 100% !important;
    }

    header.header .navbar .auth .dropdown .dropdown-menu {
        min-width: 100% !important;
    }

    header.header .navbar .auth .dropdown .dropdown-toggle::after {
        color: rgb(255, 255, 255) !important;
    }
}

.iti {
    display: flex;
    width: 100%;
}

.iti__country-container {
}

    .iti__country-container button {
        width: 100%;
        background-color: rgb(255, 255, 255);
        border: 1px solid rgb(204, 204, 204);
        display: flex;
        height: 40px;
        align-items: center;
        padding-right: 10px;
    }

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 41px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container .select2-selection--single {
    height: 41px;
}

.btn-up, .btn-down {
    border-color: rgba(57, 102, 169, 0.72);
    padding: 17px;
}

.btn-up {
    background: url("../images/up-arrow.png") center center no-repeat rgba(57, 102, 169, 0.72);
}

.btn-down {
    background: url("../images/down-arrow.png") center center no-repeat rgba(57, 102, 169, 0.72);
}

.btn-up:hover {
    background: url("../images/up-arrow.png") center center no-repeat rgb(31, 80, 159);
}

.btn-down:hover {
    background: url("../images/down-arrow.png") center center no-repeat rgb(31, 80, 159);
}

.activeArrow {
    background-color: rgb(31, 80, 159);
}
/*End*/

/*Added by Akram*/
.discount-display {
    color: rgba(53, 170, 95, 1);
}

.payment-success-section {
    margin-top: 180px;
    padding: 20px;
    background: #fff;
}

.payment-success-container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.payment-status-icon {
    text-align: center;
    margin-bottom: 20px;
}

.payment-success-text {
    text-align: center;
    margin-bottom: 30px;
}

    .payment-success-text h2 {
        color: #2D9151;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .payment-success-text h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

.purchased-items-wrapper h4 {
    margin-bottom: 15px;
}

.purchased-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.purchased-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #ddd;
}

    .purchased-item img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 6px;
    }

.purchased-item-info {
    flex: 1;
    margin-left: 10px;
}

    .purchased-item-info small {
        display: block;
        color: #555;
    }

.purchased-item-total {
    font-weight: bold;
    margin-left: auto;
}

.purchased-order-summary {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

    .purchased-order-summary div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .purchased-order-summary .purchased-order-discount {
        color: rgba(53, 170, 95, 1);
        font-weight: bold;
    }

    .purchased-order-summary .purchased-order-total {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }

/* Responsive */
@media (max-width: 576px) {
    .purchased-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .purchased-item-total {
        margin-left: 0;
        margin-top: 5px;
        width: 100%;
        text-align: right;
    }

    .purchased-order-summary {
        font-size: 14px !important;
    }

        .purchased-order-summary b,
        .purchased-order-summary span {
            font-size: 14px !important;
        }
}

.payment-failed-section {
    margin-top: 180px;
    padding: 20px;
    background: #fff;
}

.payment-failed-container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff5f6;
    border: 1px solid #eec7cb;
}

.payment-status-icon.failed {
    text-align: center;
    margin-bottom: 20px;
}

.payment-failed-text {
    text-align: center;
    color: #b80021;
}

    .payment-failed-text h2 {
        font-size: 24px;
        color: #E4626F;
        margin-bottom: 15px;
    }

    .payment-failed-text p {
        font-size: 16px;
        margin-bottom: 10px;
    }

/* Responsive */
@media (max-width: 576px) {
    .payment-failed-text p {
        font-size: 14px;
    }

    .payment-failed-text h2 {
        font-size: 20px;
    }
}


/*End*/

@media (max-width: 992px) {
    .details-medicane .img-medican .prod-count .d-flex {
        flex-direction: column;
    }
}

.table-carts > :not(:last-child) > :last-child > * {
    border-bottom-color: rgb(211, 211, 211);
    width: 200px;
}

.table-carts > :not(caption) > * > * {
    padding: 30px 0px;
    vertical-align: middle;
}

.table-carts .inp-count {
    width: 140px;
    display: flex;
    align-items: center;
    margin: auto;
}

    .table-carts .inp-count input {
        width: 100%;
    }

.table-carts img {
    border-radius: 8px;
}

.order-details-list.borderd li {
    border-bottom: 1px solid rgb(204, 204, 204);
    padding: 10px 0px;
}

.remove-item {
    border: 1px solid rgb(204, 204, 204);
    background-color: rgb(255, 255, 255);
    width: 30px;
    border-radius: 50%;
    height: 30px;
    cursor: pointer;
}

    .remove-item i {
        font-size: 14px;
        color: rgb(255, 0, 16);
    }

.links-side-mob {
    display: none;
}

@media (max-width: 992px) {
    .mob-nav .nav-item {
        display: flex;
    }

    .cart-navbar span.count {
        top: 10px;
        left: 100px;
    }

    .navbar-toggler {
        line-height: normal !important;
    }
}

@media (max-width: 768px) {
    .links-side-mob {
        display: block;
    }

        .links-side-mob li a {
            padding: 0px !important;
        }

    .form-group label {
        margin: 10px 0px;
    }
}

.radio-button__input {
    position: absolute;
    opacity: 0;
    width: 0px;
    height: 0px;
}

.radio-button__label {
    display: inline-flex;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    opacity: 0.75;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 15px !important;
}

.radio-button__custom {
    position: absolute;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgb(85, 85, 85);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.radio-button__input:checked + .radio-button__label .radio-button__custom {
    border: 5px solid rgb(76, 139, 245);
}

.radio-button__input:checked + .radio-button__label {
    color: rgb(76, 139, 245);
}

.radio-button__label:hover .radio-button__custom {
    border-color: rgb(76, 139, 245);
    box-shadow: rgba(76, 139, 245, 0.5) 0px 0px 10px;
}

.checkpar input {
    display: none;
}

.checkpar {
    display: flex;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.checkmark {
    position: relative;
    top: 0px;
    left: 0px;
    height: 1.3em;
    width: 1.3em;
    background-color: rgba(33, 150, 243, 0);
    border-radius: 0.25em;
    transition: 0.25s;
}

.checkpar input:checked ~ .checkmark {
    background-color: rgb(33, 150, 243);
}

.checkmark::after {
    content: "";
    position: absolute;
    transform: rotate(0deg);
    border: 0.1em solid black;
    left: 0px;
    top: 0px;
    width: 1.05em;
    height: 1.05em;
    border-radius: 0.25em;
    transition: 0.25s, border-width 0.1s;
}

.checkpar input:checked ~ .checkmark::after {
    left: 0.45em;
    top: 0.25em;
    width: 0.25em;
    height: 0.5em;
    border-color: rgba(255, 255, 255, 0) white white rgba(255, 255, 255, 0);
    border-width: 0px 0.15em 0.15em 0px;
    border-radius: 0em;
    transform: rotate(45deg);
}

.owl-item.active, .disabled-owl {
    opacity: 0.5;
    filter: grayscale(20%);
}

.owl-item.cloned.active, .active-item {
    opacity: 1 !important;
    filter: none !important;
}

.p-text {
    line-height: 25px;
    margin: 10px 0px;
}

.boxes-address {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

    .boxes-address .box {
        background-color: rgb(255, 255, 255);
        padding: 10px;
        border-radius: 8px;
    }

        .boxes-address .box p {
            margin: 0px;
            line-height: 32px;
        }

        .boxes-address .box .actions {
            display: flex;
            gap: 10px;
            margin: 30px 0px;
        }

            .boxes-address .box .actions button {
                background-color: transparent;
                border: 0px;
                border-radius: 5px;
                color: rgb(31, 80, 159);
                font-weight: 500;
                position: relative;
            }

                .boxes-address .box .actions button:not(:last-child)::after {
                    position: absolute;
                    content: "";
                    right: -6px;
                    background-color: rgb(31, 80, 159);
                    width: 1px;
                    height: 65%;
                    top: 50%;
                    transform: translateY(-50%);
                }

@media (min-width: 992px) and (max-width: 1400px) {
    .container {
        max-width: 900px !important;
    }

    .mdicines-sec .card-mdicines {
        min-height: 570px;
    }

    .boxes .box-content h3 {
        margin-bottom: 50px;
    }

    .hero-home .overlay .content .titles p {
        font-size: 18px !important
    }

    .hero-home .overlay .content .titles h1 {
        font-size: 40px !important
    }
}

@media(max-width:768px) {
    .hero-home .overlay .content, .content-home-page {
        height: 50%;
        justify-content: space-evenly;
    }

    .shipping-status-details .status::after {
        right: -8px !important;
        left: auto !important;
    }

    .shipping-status-details::after {
        left: auto !important;
        right: 0 !important;
    }
}

.animated-text {
    display: inline-block;
    position: relative;
    opacity: 1;
    transition: 1s ease-in-out;
}

.fade-out-right {
    opacity: 0;
}

.fade-in-resete {
    opacity: 0;
}

.fade-in-left {
    opacity: 1;
}

.select2-container {
    width: 100%
}





@media (max-width: 430px) {
    .details-medicane .img-medican .prod-count form {
        width: 90%;
        margin: auto
    }
    .details-medicane .prod-count form .form-group .inp-count {
        margin: auto;
        align-items: center;
        justify-content: center;
    }
    .inp-count input{
        width: 120px !important
    }
}
@media (max-width: 360px) {
    .details-medicane .img-medican .prod-count form {
        width: 85%;
        margin: auto
    }
}
