.search-urun {
    color: rgba(0, 0, 0, .55) !important;
}

    .search-urun:hover {
        color: rgba(0, 0, 0, .7) !important;
    }

html {
    font-family: sans-serif;
}

.eczane-container p {
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.select-box {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-family: "Open Sans", "Helvetica Neue", "Segoe UI", "Calibri", "Arial", sans-serif;
    font-size: 18px;
    color: #60666d;
}


.select-box__current {
    position: relative;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    outline: none;
}

    .select-box__current:focus + .select-box__list {
        opacity: 1;
        -webkit-animation-name: none;
        animation-name: none;
    }

        .select-box__current:focus + .select-box__list .select-box__option {
            cursor: pointer;
        }

    .select-box__current:focus .select-box__icon {
        transform: translateY(-50%) rotate(180deg);
    }

.select-box__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.3;
    transition: 0.2s ease;
}

.select-box__value {
    display: flex;
}

.select-box__input {
    display: none;
}

    .select-box__input:checked + .select-box__input-text {
        display: block;
    }

.select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 15px;
    background-color: #fff;
}

.select-box__list {
    position: absolute;
    width: 100%;
    max-height: 400px; /* Maksimum yÃ¼ksekliÄŸi 400px olarak ayarlar */
    overflow-y: auto; /* Dikey kaydÄ±rma Ã§ubuÄŸu ekler */
    overflow-x: hidden; /* Yatay kaydÄ±rma Ã§ubuÄŸunu gizler */
    scrollbar-width: thin; /* Firefox iÃ§in ince bir kaydÄ±rma Ã§ubuÄŸu */
    scrollbar-color: #ccc white; /* KaydÄ±rma Ã§ubuÄŸu ve arkaplan rengi */
    padding: 0;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
    animation-name: HideList;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
    /* WebKit TabanlÄ± TarayÄ±cÄ±lar (Chrome, Edge, Safari) */
    .select-box__list::-webkit-scrollbar {
        width: 6px; /* Scrollbar geniÅŸliÄŸi */
    }

    .select-box__list::-webkit-scrollbar-thumb {
        background-color: #ccc; /* Scrollbar rengi */
        border-radius: 10px; /* Yuvarlak kÃ¶ÅŸeler */
    }

        .select-box__list::-webkit-scrollbar-thumb:hover {
            background-color: #888; /* Hover durumunda daha koyu renk */
        }

    .select-box__list::-webkit-scrollbar-track {
        background: white; /* Scrollbar arka planÄ± */
    }

.select-box__option {
    display: block;
    padding: 15px;
    background-color: #fff;
}

    .select-box__option:hover, .select-box__option:focus {
        color: #546c84;
        background-color: #fbfbfb;
    }

@-webkit-keyframes HideList {
    from {
        transform: scaleY(1);
    }

    to {
        transform: scaleY(0);
    }
}

@keyframes HideList {
    from {
        transform: scaleY(1);
    }

    to {
        transform: scaleY(0);
    }
}
/* GÃƒÂ¶nder dÃƒÂ¼Ã„Å¸mesini ÃƒÂ¶zelleÃ…Å¸tirme */
.btn-send {
    background-color: #4CAF50;
    color: white;
    border-radius: 25px;
}

    /* GÃƒÂ¶nder dÃƒÂ¼Ã„Å¸mesine hover ettiÃ„Å¸imizde rengini deÃ„Å¸iÃ…Å¸tirme */
    .btn-send:hover {
        background-color: #45a049;
        color: white;
    }

.eczane-select {
    background-color: #f0f0f0;
    border-color: #ccc;
    border-radius: 0.375rem;
    padding: 10px;
    font-size: 16px;
}

    .eczane-select:focus {
        background-color: #e9f5ff;
        border-color: #007bff;
        outline: none;
    }

/* MOBÃ„Â°L MENÃƒÅ“ */
.navbar-toggler-icon::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('images/easyvit-logo-top.webp') no-repeat center center;
    background-size: cover;
    margin-right: 10px;
    vertical-align: middle;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    /* mobilde dropdown iconlarÃ„Â± saÃ„Å¸a linkleri sola hizalar. */
    align-items: center;
    padding: 10px;
    text-transform: uppercase;
}

    .menu-item a {
        text-decoration: none;
        color: black;
        font-size: 14px;
        font-weight: 700;
        margin-right: 15px;
    }

.dropdown-button {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 0px 20px;
    background-color: transparent;
    display: inline-block;
    cursor: pointer;
}

    .dropdown-button i {
        border: solid #000;
        border-width: 0 1px 1px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        margin-left: 0px;
        bottom: 4px;
        position: relative;
    }

.offcanvas-title {
    align-items: center;
    display: contents;
}

.btn-close {
    border: 1px solid black;
}

/* MASAÃƒÅ“STÃƒÅ“ MENÃƒÅ“ */

.nav-item {
    padding: 0px 15px;
}

.nav-link {
    font-size: 14px;
    padding: 0px 15px;
    color: black;
    font-weight: 700;
    text-transform: uppercase;
}

    .nav-link:hover {
        font-size: 14px;
        padding: 0px 15px;
        color: #333333;
    }

.red-line {
    border-top: 4px solid #e93443;
}

/* BANNER */

.banner .desktop-banner {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin-top: -35px;
}

.banner .mobile-banner {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin-top: 0px;
}

/* BANNER ALTI */

.banner-alt > p {
    text-align: center;
    color: black;
    font-family: "Open Sans", Sans-serif;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

@media (min-width: 1440px) {
    .banner-alt > p {
        text-align: center;
        color: black;
        font-family: "Open Sans", Sans-serif;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .banner-alt img {
        margin-top: 120px;
        margin-bottom: 180px;
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .banner-alt > p {
        text-align: center;
        color: black;
        font-family: "Open Sans", Sans-serif;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .banner-alt img {
        margin-top: 0px;
        margin-bottom: 40px;
        width: 60%;
    }
}

@media (max-width: 767px) {
    .banner-alt img {
        margin-top: 0px;
        margin-bottom: 40px;
        width: 100%;
    }
}


/* product-section */

.product-section {
    background-color: #e93443;
}

    .product-section .products-title {
        font-size: 36px;
        color: white;
        font-weight: bolder;
    }

.product-link {
    color: white;
    text-decoration: none;
}

    .product-link:hover {
        color: rgb(228, 228, 228);
    }

    .product-link:focus {
        color: rgb(228, 228, 228);
    }

/* ProductSwiper */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        margin-top: 30px;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.swiper-button-next,
.swiper-button-prev {
    color: white;
    /* Navigator simgelerinin rengini beyaz yapar */
}

.swiper-pagination-bullet {
    background-color: white;
    /* Navigator dairelerinin arka plan rengini beyaz yapar */
}


/* arastirma ve geliÃ…Å¸tirme */

.arastirma-metin h2 {
    font-size: 34px;
    color: black;
    font-weight: 700;
}

.arastirma-metin a {
    color: #e93443;
    text-decoration: none;
    font-weight: 700;
}

    .arastirma-metin a:hover {
        color: #333333;
    }

.arastirma-metin > div > a > button {
    font-size: 20px;
    font-weight: 700;
    fill: white;
    color: white;
    background-color: #FFBA00;
    border: none;
    border-radius: 72px 72px 72px 72px;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.15);
    padding: 27px 27px 27px 27px;
    transition: all .2s ease-in-out;
    outline: none;
}

    .arastirma-metin > div > a > button:hover,
    .arastirma-metin button:focus {
        background-color: #FF7E00;
        transform: scale(.9);
        -webkit-transform: scale(.9);
    }

.arastirma-metin > div > a {
    font-size: 20px;
    font-weight: 700;
    fill: white;
    color: white;
}

/* Ã„Â°letisim */


/* Inputlara placeholder olmadan ve yuvarlak kenarlÃ„Â±klar */
.form-control {
    background-color: white;
    border-radius: 25px;
}

    /* Inputlara hover ettiÃ„Å¸imizde rengini deÃ„Å¸iÃ…Å¸tirme */
    .form-control:hover {
        background-color: #d3d3d3;
    }

    .form-control:focus {
        outline: none;
    }

/* GÃƒÂ¶nder dÃƒÂ¼Ã„Å¸mesini ÃƒÂ¶zelleÃ…Å¸tirme */
.btn-send {
    background-color: #4CAF50;
    color: white;
    border-radius: 25px;
}

    /* GÃƒÂ¶nder dÃƒÂ¼Ã„Å¸mesine hover ettiÃ„Å¸imizde rengini deÃ„Å¸iÃ…Å¸tirme */
    .btn-send:hover {
        background-color: #45a049;
        color: white;
    }


/* FOOTER */

footer {
    background-color: #e53432;
    font-size: 15px;
}

.footer-content > p {
    margin-bottom: 5px;
}

    .footer-content > p > a {
        text-decoration: none;
        color: white;
    }

        .footer-content > p > a:hover {
            color: #d1d1d1;
        }

.footer-social > h2 {
    font-size: 21px;
    font-weight: 400;
}

.footer-end > p {
    margin-bottom: 5px;
}

/* @media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .navbar .nav-item:hover .nav-link {}

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
} */


/* Banner title */

.banner {
    background-color: #e93443;
}

.banner-title {
    padding-left: 45px;
    padding-right: 45px;
    font-size: 48px;
    font-weight: bolder;
    color: white;
    text-transform: capitalize;
}


/* heading title */

.heading-title {
    padding-left: 45px;
    padding-right: 45px;
    font-size: 34px;
    font-weight: 800;
}

.hakkimizda-container p {
    font-size: 23px;
    padding-left: 45px;
    padding-right: 45px;
}

.heading-p {
    font-size: 23px;
    padding-left: 45px;
    padding-right: 45px;
}


/* easydestek */
.border-right {
    border-right: 1px solid black;
}

.circle {
    font-size: 20px;
    padding-left: 8px;
    padding-bottom: 10px;
    padding-top: 4px;
    border: 3px solid #69727d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

    .circle > i {
        width: 1em;
        height: 1em;
        margin-bottom: 5px;
    }

.sertifika-link {
    text-decoration: none;
    color: black;
    font-weight: 400;
}

    .sertifika-link:hover {
        color: black;
    }

.sertifika-metin a {
    color: #eb2d3c;
    text-decoration: none;
    font-weight: bold;
}

    .sertifika-metin a:hover {
        color: #333;
    }


/* card */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    border-radius: 25px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front-yellow, .flip-card-back-yellow, .flip-card-front-green, .flip-card-back-green, .flip-card-front-blue, .flip-card-back-blue {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front-yellow {
    background-color: #FFC100;
    color: white;
    border-radius: 25px;
}

/* Style the back side */
.flip-card-back-yellow {
    background-color: #DDA806;
    color: white;
    transform: rotateY(180deg);
    border-radius: 25px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front-green {
    background-color: #61CE70;
    color: white;
    border-radius: 25px;
}

/* Style the back side */
.flip-card-back-green {
    background-color: #23A455;
    color: white;
    transform: rotateY(180deg);
    border-radius: 25px;
}
/* Style the front side (fallback if image is missing) */
.flip-card-front-blue {
    background-color: #6EC1E4;
    color: white;
    border-radius: 25px;
}

/* Style the back side */
.flip-card-back-blue {
    background-color: #5999B4;
    color: white;
    transform: rotateY(180deg);
    border-radius: 25px;
}

.card-content i {
    font-size: 40px;
    padding-left: 50px;
    padding-right: 50px;
}

em {
    font-size: 13px;
    color: #999;
}


.line {
    width: 43%;
    height: 1px;
    background-color: white;
}

@media (max-width: 768px) {
    .line {
        width: 41.7vw;
        height: 1px;
        background-color: white;
    }
}

.fa-dot-circle {
    color: white;
    position: relative;
    bottom: 10px;
    width: 0px;
    right: 8px;
}

.km-title {
    margin-bottom: 19px;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 0.1em;
    font-size: 25px;
}

.km-content {
    margin-bottom: 19px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
}





.urun-link {
    text-decoration: none;
    color: black;
    font-weight: 400;
}

    .urun-link:hover {
        color: black;
    }

    .urun-link strong {
        color: #eb2d3c;
    }

        .urun-link strong:hover {
            color: #333;
        }

.urun-dot {
    padding-right: 6px;
}

    .urun-dot i {
        font-size: 7px;
        position: relative;
        bottom: 2px;
    }

.urun-color-kids {
    color: #6ec1e6;
}

.urun-bg-kids {
    background-color: #6ec1e6;
}

.urun-color-cilek {
    color: #f26e65;
}

.urun-bg-cilek {
    background-color: #f26e65;
}

.urun-color-q {
    color: #BA6EE4;
}

.urun-bg-q {
    background-color: #BA6EE4;
}

.urun-color-betaglukan {
    color: #FF7E00;
}

.urun-bg-betaglukan {
    background-color: #FF7E00;
}

.urun-color-multi {
    color: #B9D333;
}

.urun-bg-multi {
    background-color: #B9D333;
}

.urun-color-plus {
    color: #14435C;
}

.urun-bg-plus {
    background-color: #14435C;
}

.urun-color-propolis {
    color: #8d371d;
}

.urun-color-grow {
    color: #6ebab2;
}

.urun-bg-grow {
    background-color: #6ebab2;
}

.urun-bg-propolis {
    background-color: #8d371d;
}

.urun-color-adult {
    color: #2397A4;
}

.urun-bg-adult {
    background-color: #2397A4;
}

.urun-color-mom {
    color: #fb6a90;
}

.urun-bg-mom {
    background-color: #fb6a90;
}

.urun-color-sjomanns {
    color: #044845;
}

.urun-bg-sjomanns {
    background-color: #044845;
}

.urun-btn {
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bolder;
}


.urun-content {
    font-size: 18px;
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .nav-item .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .nav-item .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu > li:hover {
        background-color: #f1f1f1
    }

        .dropdown-menu > li:hover > .submenu {
            display: block;
        }
}
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}
/* ============ small devices .end// ============ */
/* ============ desktop view ============ */
@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .menu-item .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .menu-item .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu > li:hover {
        background-color: #f1f1f1
    }

        .dropdown-menu > li:hover > .submenu {
            display: block;
        }
}
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}
/* ============ small devices .end// ============ */

.easymom-bg {
    background-color: #F8D7EA;
    opacity: 1;
}

.heading-p-easymom {
    font-size: 23px;
}

th {
    color: white;
    font-weight: bold;
    text-align: left;
}

tr:nth-child(odd) {
    background-color: #F8D7DC;
}

tr:nth-child(even) {
    background-color: white;
}

td {
    text-align: left;
}

.border-orange {
    border-style: solid;
    padding: 20px;
    border-width: 3px 3px 3px 3px;
    border-color: #FFBA00;
    border-radius: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    transition: background 0.3s, border 0.1s, border-radius 0.1s, box-shadow 0.1s;
    margin: 15px 15px 15px 15px;
    --e-column-margin-right: 15px;
    --e-column-margin-left: 15px;
}

    .border-orange:hover {
        border-style: solid;
        border-width: 5px 5px 5px 5px;
        border-color: #FFBA00;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    }
