* {
    box-sizing: border-box;
}

body {
    /*background: #F5F5F5;*/
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

a {
    color: #0057ff;
}

input, button {
    outline: none;
}

.container {
    /*background: #ffffff;*/
}

.text-blue {
    color: #0087FF;
}

.bg-gray {
    background: #F5F5F5;
}

.bg-light-gray {
    background: #F8F8F4;
}

.bg-dark-gray {
    background: #e6e6dc;
}

.bg-white {
    background: #ffffff;
}

.h1 {
    font-size: 33px;
    line-height: 42px;
    margin-bottom: 50px;
}

.h2 {
    font-size: 22px;
    line-height: 29px;
}


p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
}

    p.big-text {
        font-size: 22px;
        line-height: 29px;
    }

    p.heading-text {
        font-size: 33px;
        line-height: 42px;
    }

    p.imp-text {
        font-size: 16px;
        line-height: 22px;
    }

ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    margin-bottom: 30px;
}

    ul li {
        font-size: 17px;
        line-height: 24px;
        display: flex;
    }

    ul.big-text li {
        font-size: 22px;
        line-height: 29px;
    }

    ul.has-dash li:before {
        content: '—';
        margin-right: 5px;
    }

    ul.has-plus li:before {
        content: '+';
        margin-right: 5px;
    }

    ul.has-dot {
        list-style-type: disc;
        margin-left: 30px;
    }

        ul.has-dot li {
            display: list-item;
        }

            ul.has-dot li:before {
                display: none;
            }

.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #007bff #F5F5F5;
}

    .scrollbar::-webkit-scrollbar {
        width: 11px;
        height: 11px;
    }

    .scrollbar::-webkit-scrollbar-track {
        background: #F5F5F5;
    }

    .scrollbar::-webkit-scrollbar-thumb {
        background-color: #007bff;
        border-radius: 6px;
        border: 3px solid #F5F5F5;
    }

.scrollbar-white {
    scrollbar-width: thin;
    scrollbar-color: #007bff #FFFFFF;
}

    .scrollbar-white::-webkit-scrollbar {
        width: 11px;
        height: 11px;
    }

    .scrollbar-white::-webkit-scrollbar-track {
        background: #FFFFFF;
    }

    .scrollbar-white::-webkit-scrollbar-thumb {
        background-color: #007bff;
        border-radius: 6px;
        border: 3px solid #FFFFFF;
    }

/*HEADER START HERE*/

.navbar-container {
    padding: 0px;
    position: relative;
}

    .navbar-container .navbar {
        flex-wrap: nowrap;
        z-index: 1;
    }

    .navbar-container .container-xl {
        padding: 0px;
    }

    .navbar-container .navbar-toggler {
        outline: 0px;
        background-color: #fff;
    }

        .navbar-container .navbar-toggler .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 409.806 409.806' style='enable-background:new 0 0 409.806 409.806;' width='20' height='20' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='rgba(0, 0, 0, 0.5)' d='M228.929,205.01L404.596,29.343c6.78-6.548,6.968-17.352,0.42-24.132c-6.548-6.78-17.352-6.968-24.132-0.42 c-0.142,0.137-0.282,0.277-0.42,0.42L204.796,180.878L29.129,5.21c-6.78-6.548-17.584-6.36-24.132,0.42 c-6.388,6.614-6.388,17.099,0,23.713L180.664,205.01L4.997,380.677c-6.663,6.664-6.663,17.468,0,24.132 c6.664,6.662,17.468,6.662,24.132,0l175.667-175.667l175.667,175.667c6.78,6.548,17.584,6.36,24.132-0.42 c6.387-6.614,6.387-17.099,0-23.712L228.929,205.01z'/%3E%3C/g%3E%3C/svg%3E");
            background-size: 22px 22px;
            transition: all 0.15s ease-in-out;
        }

        .navbar-container .navbar-toggler.collapsed .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            background-size: auto;
        }

    .navbar-container .navbar-nav .nav-item .nav-link {
        position: relative;
        padding-left: 30px;
    }

        .navbar-container .navbar-nav .nav-item .nav-link:before {
            content: '';
            width: 20px;
            height: 20px;
            background: #0087FF;
            border-radius: 50%;
            position: absolute;
            left: 0px;
            top: 50%;
            margin-top: -10px;
            transition: all 0.15s ease-in-out;
        }

        .navbar-container .navbar-nav .nav-item .nav-link:hover:before {
            background: #19CD5A;
        }

    .navbar-container .navbar-with-menu {
    }

    .navbar-container .navbar-with-sticky {
        position: sticky;
        top: 0px;
    }

    .navbar-container .navbar-nav {
        align-items: center;
    }

        .navbar-container .navbar-nav ul {
            margin: 0px;
        }

    .navbar-container .navbar-collapse.show .divider {
        background: transparent;
        position: absolute;
        height: 50px;
        bottom: -50px;
        left: 0px;
        right: 0px;
        width: 100%;
        transform: rotate( 180deg );
    }

    .navbar-container .navbar-brand {
        width: 100px;
        height: 100px;
    }

.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

.nav-navbar-header {
    margin-top: -116px;
    z-index: 1;
}

.nav-navbar-header-img {
    position: relative;
    overflow: hidden;
}

.nav-navbar-header .nav-navbar-header-img img {
    width: 100%;
}

    .nav-navbar-header .nav-navbar-header-img img.show-desktop {
        display: block;
    }

    .nav-navbar-header .nav-navbar-header-img img.show-mobile {
        display: none;
    }

.nav-navbar-header .nav-navbar-header-img .divider {
    background: transparent;
    position: absolute;
    height: 15%;
    max-height: 60px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    /*filter: drop-shadow(0px 2px 5px #000);*/
    margin-bottom: -1px;
}

/*HEADER END HERE*/

.divider {
    height: 15%;
    max-height: 60px;
    width: 100%;
}

/*FOOTER START HERE*/


footer {
    position: relative;
    background: #F8F8F4;
    border-top: 1px solid #DCDCDC;
}

    footer a {
        color: #000000;
    }

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}

    .footer .logo {
        width: 120px;
        order: 2;
    }

        .footer .logo img {
            width: 100%;
        }

    .footer a {
        text-decoration: none;
    }

    .footer .footer-links {
        display: flex;
        justify-content: center;
    }

    .footer .copeia-life {
        margin-right: 15px;
    }

        .footer .copeia-life a {
            display: block;
        }

    .footer .links {
    }

        .footer .links ul {
            margin: 0px;
            padding: 0px;
            list-style-type: none;
            display: flex;
            align-items: center;
        }

            .footer .links ul li {
                margin-right: 5px;
                padding-right: 5px;
                border-right: 1px solid #B4B4B4;
            }

                .footer .links ul li:last-child {
                    border-right: 0px;
                    margin-right: 0px;
                    padding-right: 0px;
                }

                .footer .links ul li a {
                    display: block;
                }

/*FOOTER END HERE*/
.page-container {
    /*padding-top: 20px;
    padding-bottom: 20px;*/
}

    .page-container .block-section {
        padding: 30px 0px;
    }

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

    .coming-soon h1 {
        font-size: 48px;
    }

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

    .page-not-found h1 {
        font-size: 48px;
        margin-bottom: 30px;
    }

.btn.disabled, .btn:disabled {
    cursor: inherit;
}


.standard-btn {
    background-color: #198900;
    background-position: center;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    box-shadow: none;
    outline: none !important;
    transition: all 0.25s;
    border: none;
    padding: 20px 40px;
    min-width: 180px;
    color: #ffffff !important;
    text-decoration: none !important;
    display: block;
    width: 250px;
    text-align: center;
}

    .standard-btn.btn-sm {
        padding: 15px 20px;
        width: 200px;
    }

    .standard-btn.btn-white {
        background-color: #ffffff;
        color: #000000 !important;
    }

    .standard-btn.btn-blue {
        background-color: #0067ff;
        color: #ffffff !important;
    }

    .standard-btn:hover {
        background-color: #14b64e;
        box-shadow: 0px 1px 4px 0px #000;
    }

    .standard-btn.btn-white:hover {
        background-color: #f8f8f4;
    }

    .standard-btn.btn-blue:hover {
        background-color: #057fea;
    }

button.standard-btn:hover {
    background: #14b64e radial-gradient(circle, transparent 1%, #14b64e 1%) center/15000%;
}

button.standard-btn.btn-white:hover {
    background: #f8f8f4 radial-gradient(circle, transparent 1%, #14b64e 1%) center/15000%;
}

button.standard-btn.btn-blue:hover {
    background: #057fea radial-gradient(circle, transparent 1%, #14b64e 1%) center/15000%;
}

button.standard-btn:active {
    background-color: #000000;
    background-size: 100%;
    transition: background 0s;
}

/*FAQ and PDF Section*/
.pdf-faq-block {
    display: flex;
    border: 2px solid #979797;
    border-radius: 10px;
    overflow: hidden;
    max-width: 760px;
    margin: 0px auto;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.25s;
}

    .pdf-faq-block:hover {
        transition: all 0.25s;
        box-shadow: 0px 1px 4px 0px #000;
    }

    .pdf-faq-block .preview {
        width: 220px;
        padding: 25px;
        border-right: 2px solid #979797;
        background: #F0F0E6;
        overflow: hidden;
        position: relative;
    }

    .pdf-faq-block.faq-section {
        margin-bottom: 50px
    }

        .pdf-faq-block.faq-section .preview {
            background: #649dff;
        }

    .pdf-faq-block .preview img {
        width: 100%;
    }

    .pdf-faq-block .preview.multiple {
        padding-top: 30px;
    }

        .pdf-faq-block .preview.multiple img {
            width: 140px;
        }

            .pdf-faq-block .preview.multiple img:last-child {
                position: absolute;
                left: 55px;
                top: 15px;
                width: 140px;
            }

    .pdf-faq-block .detail {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .pdf-faq-block .detail .desc {
            font-size: 32px;
            line-height: 1;
            margin-bottom: 15px;
        }

        .pdf-faq-block .detail .button {
            display: flex;
            justify-content: flex-end;
        }

            .pdf-faq-block .detail .button .link {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                color: #212529;
                font-size: 19px;
                line-height: 1;
            }

                .pdf-faq-block .detail .button .link span {
                    margin-right: 20px;
                }

                .pdf-faq-block .detail .button .link img {
                    width: 60px;
                }

            .pdf-faq-block .detail .button .btn {
                cursor: pointer;
                width: 180px;
                background: #2BAC70;
                padding: 8px 15px;
                text-align: center;
                border-radius: 5px;
                color: #fff;
                font-size: 17px;
                line-height: 1;
            }

                .pdf-faq-block .detail .button .btn:hover {
                    background: #249661;
                    box-shadow: 0px 0px 2px 1px #979797;
                }


.main-content {
}

    .main-content .heading {
        font-size: 33px;
        line-height: 42px;
        max-width: 800px;
        margin: 0px auto;
        text-align: center;
        margin-bottom: 50px;
    }

    .main-content .faq-section .sub-heading {
        margin: 0px auto;
        text-align: center;
        font-size: 33px;
        line-height: 42px;
        margin-bottom: 50px;
    }

    .main-content .content-section {
        display: flex;
        flex-direction: row;
        padding: 50px 0px;
    }

        .main-content .content-section .left-section {
            width: 50%;
            padding-right: 50px;
        }

        .main-content .content-section .right-section {
            width: 50%;
        }

    .main-content img {
        max-width: 100%;
        display: block;
        margin: 0px auto;
    }

    .main-content .box-section {
        display: flex;
        flex-direction: row;
        padding: 50px 0px;
    }

        .main-content .box-section .left-section {
            width: 50%;
            padding-right: 50px;
        }

        .main-content .box-section .right-section {
            width: 50%;
            padding-left: 50px;
        }

    .main-content .batch-section {
        background: #ffffff;
        border-radius: 15px;
        position: relative;
        padding: 50px;
        margin: 50px 0px;
    }

        .main-content .batch-section .batch-tag {
            position: absolute;
            left: -45px;
            top: -45px;
            width: 100px;
            height: 100px;
            padding: 10px 5px 10px 15px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .main-content .batch-section .batch-tag img {
                width: 100%;
            }

        .main-content .batch-section .left-section .heading {
            font-size: 33px;
            line-height: 42px;
            text-align: left;
            margin-bottom: 30px;
        }

        .main-content .batch-section .right-section .input-box {
            margin-top: 30px;
            margin-bottom: 60px;
        }

            .main-content .batch-section .right-section .input-box input {
                border: 0.5px solid #000000;
                border-radius: 10px;
                padding: 10px 15px;
                font-size: 17px;
                font-weight: 400;
                width: 100%;
                max-width: 450px;
            }



    .main-content .explanation-section {
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 50px;
        height: 300px;
        position: relative;
        overflow: hidden;
    }

        .main-content .explanation-section:last-child {
            margin-bottom: 100px;
        }

        .main-content .explanation-section .left-section {
            position: relative;
        }

            .main-content .explanation-section .left-section .img-container {
                background-position: center;
                background-repeat: no-repeat;
                background-origin: content-box;
                background-size: contain;
                width: 100%;
                height: 100%;
            }

                .main-content .explanation-section .left-section .img-container img {
                    display: none;
                }

        .main-content .explanation-section .sub-heading {
            font-size: 22px;
            line-height: 29px;
            max-width: 460px;
            margin-bottom: 80px;
        }


    .main-content .certificate-explanation {
        background-color: rgb(122, 206, 176);
    }

        .main-content .certificate-explanation .left-section .img-container {
            background-image: url('../../images/svg/Zertifikat.svg');
        }

    .main-content .cannabinoids-explanation {
        background-color: rgb(0, 70, 140);
    }

        .main-content .cannabinoids-explanation .left-section .img-container {
            background-image: url('../../images/svg/Body.svg');
            background-position: center bottom;
            position: absolute;
            bottom: -22px;
        }

        .main-content .cannabinoids-explanation .right-section .sub-heading {
            color: #fff;
        }

.questionnaire-button {
    width: auto;
    min-width: inherit;
    padding: 8px 15px;
    position: absolute;
    top: 40px;
    left: 130px;
}

.chatbot-section iframe {
    width: 100%;
    min-height: 260px;
    max-height: 640px;
    height: calc(100vh - 165px);
}

.autocomplete {
    position: relative;
}

.autocomplete-items {
    position: fixed;
    z-index: 99;
    max-height: 160px;
    overflow: hidden;
    overflow-y: auto;
    top: 120px;
    left: 464px;
    width: 124px;
}

    .autocomplete-items.has-items {
        border: 1px solid #d4d4d4;
    }

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        /*when hovering an item:*/
        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}


datalist {
    position: fixed;
    max-height: 20em;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0px 2px 3px -1px #898989;
}

    datalist option {
        padding: 0.3em 1em;
        cursor: pointer;
        white-space: normal;
    }

        /* active option styling */
        datalist option:hover, datalist option:focus {
            color: #fff;
            background-color: #0069d9;
            outline: 0 none;
        }

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}
.heading {
    font-size: 28px;
    line-height: 36px;
}

.subheading {
    font-size: 22px;
    line-height: 28px;
}

.left-right-block {
    display: flex;
    gap: 50px;
}

    .left-right-block .left-block,
    .left-right-block .right-block {
        padding: 20px;
        width: 50%;
        position: relative;
    }

@media screen and (min-width:1400px) {
    .extra-large-screen .container-xl {
        max-width: 1340px;
    }
}


@media screen and (max-width:1200px) {
    .main-content .batch-section {
        margin-top: 80px;
    }

        .main-content .batch-section .batch-tag {
            left: 0px;
        }
}

@media screen and (max-width:1024px) {

    .main-content {
        padding-top: 30px;
    }

        .main-content .content-section {
            flex-direction: column;
            padding: 30px 0px;
        }

            .main-content .content-section .left-section {
                width: 100%;
                padding-right: 0px;
            }

                .main-content .content-section .left-section img {
                    margin-bottom: 30px;
                }

            .main-content .content-section .right-section {
                width: 100%;
                padding-left: 0px;
            }

        .main-content .box-section .left-section {
            padding-right: 20px;
        }

        .main-content .box-section .right-section {
            padding-left: 20px;
        }

        .main-content .explanation-section {
            height: 240px;
        }

            .main-content .explanation-section .sub-heading {
                font-size: 19px;
                line-height: 24px;
                margin-bottom: 50px;
            }
}

@media screen and (max-width:5991px) {
    /*HEADER START HERE*/
    .navbar-collapse {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 0px;
        background: #E6E6DC;
        z-index: 3;
    }

        .navbar-collapse ul {
            padding: 0px 10px;
        }
    /*HEADER END HERE*/
}

@media screen and (max-width:960px) {
    .hide-desktop {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .section-image {
        order: 1;
    }

    .section-content {
        order: 2;
    }

    .left-right-block {
        flex-direction: column;
        gap: 50px;
    }

        .left-right-block .left-block,
        .left-right-block .right-block {
            padding: 0px;
            width: 100%;
        }
}

@media screen and (max-width:767px) {
    /*HEADER START HERE*/
    .navbar-container .navbar-brand {
        width: 70px;
        height: 70px;
    }

    .nav-navbar-header {
        margin-top: -86px;
    }

        .nav-navbar-header .nav-navbar-header-img img.show-desktop {
            display: none;
        }

        .nav-navbar-header .nav-navbar-header-img img.show-mobile {
            display: block;
        }

    /*HEADER END HERE*/

    /*FOOTER START HERE*/
    .footer {
        flex-direction: column;
        justify-content: center;
    }

        .footer .logo {
            text-align: center;
            margin: 0px;
            order: 1;
        }

        .footer .footer-links {
            order: 2;
            margin-top: 20px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .footer .copeia-life {
        }

        .footer .links {
            margin: 15px 0px;
        }

    /*FOOTER END HERE*/

    .page-container {
        padding-top: 0px;
        padding-bottom: 0px;
    }

        .page-container .block-section {
            padding: 15px 0px;
        }

    .standard-btn {
        /* font-size: 24px;
        line-height: 32px;*/
        padding: 20px;
    }

        .standard-btn.btn-sm {
            font-size: 14px;
            line-height: 1;
            padding: 15px 20px;
        }

    /*FAQ and PDF Section*/


    .pdf-faq-block.faq-section {
        margin-bottom: 20px
    }

    .pdf-faq-block .preview {
        width: 100px;
        padding: 10px;
    }

        .pdf-faq-block .preview.multiple {
            padding-top: 20px;
        }

            .pdf-faq-block .preview.multiple img {
                width: 60px;
            }

                .pdf-faq-block .preview.multiple img:last-child {
                    left: 25px;
                    top: 10px;
                    width: 60px;
                }

    .pdf-faq-block .detail {
        padding: 10px;
    }

        .pdf-faq-block .detail .desc {
            font-size: 19px;
        }


        .pdf-faq-block .detail .button .btn {
            width: 100px;
            padding: 6px 10px;
            font-size: 14px;
        }

        .pdf-faq-block .detail .button .link {
            font-size: 17px;
        }

            .pdf-faq-block .detail .button .link span {
                margin-right: 10px;
            }

            .pdf-faq-block .detail .button .link img {
                width: 40px;
            }

    .main-content {
        padding-top: 0px;
    }

        .main-content .heading {
            font-size: 22px;
            line-height: 29px;
        }

        .main-content .sub-heading {
            font-size: 19px;
            line-height: 24px;
        }

        .main-content .box-section {
            flex-direction: column;
            padding: 20px;
        }

            .main-content .box-section .left-section {
                width: 100%;
                padding: 0px;
            }

            .main-content .box-section .right-section {
                width: 100%;
                padding: 0px;
            }

        .main-content .batch-section {
            padding: 20px;
            padding: 100px 20px 40px;
        }

            .main-content .batch-section .batch-tag {
                top: -75px;
                width: 150px;
                height: 150px;
            }

            .main-content .batch-section .left-section .heading {
                font-size: 22px;
                line-height: 29px;
            }

            .main-content .batch-section p {
                font-size: 17px;
                line-height: 24px;
            }

            .main-content .batch-section .right-section .input-box {
                margin: 30px 0px;
            }

                .main-content .batch-section .right-section .input-box input {
                    border-width: 1.5px;
                    font-size: 17px;
                    line-height: 24px;
                    padding: 12px 20px;
                }

        .main-content .explanation-section {
            height: auto;
        }

            .main-content .explanation-section,
            .main-content .explanation-section:last-child {
                margin-bottom: 50px;
            }

                .main-content .explanation-section .sub-heading {
                    max-width: 100%;
                    height: 150px;
                    font-size: 19px;
                    line-height: 24px;
                }

                .main-content .explanation-section .left-section .img-container {
                    height: inherit;
                    background-image: none;
                }

                    .main-content .explanation-section .left-section .img-container img {
                        display: block;
                        margin-bottom: 30px;
                    }

        .main-content .cannabinoids-explanation .left-section .img-container {
            position: relative;
            bottom: 0px;
            background-position: center;
        }

    .questionnaire-button {
        font-size: 14px;
        line-height: 21px;
        padding: 6px 12px;
        top: 25px;
        left: 95px;
    }
}

@media screen and (max-width:600px) {
    .main-content .heading {
        font-size: 22px;
        line-height: 29px;
    }
}

@media screen and (max-width:540px) {
    .questionnaire-button {
        font-size: 12px;
        line-height: 15px;
        top: 30px;
    }
}

@media screen and (max-width:480px) {
    .questionnaire-button {
        font-size: 12px;
        line-height: 15px;
        padding: 6px;
        top: 30px;
        left: 90px;
        max-width: calc(100% - 168px);
    }
}

@media screen and (max-width:440px) {
    .questionnaire-button {
        top: 23px;
    }
}

@media screen and (max-width:350px) {
    .questionnaire-button {
        top: 23px;
    }

    .footer .links ul {
        flex-direction: column;
    }

        .footer .links ul li {
            margin: 0px;
            padding: 0px;
            border: none;
            margin-bottom: 5px;
        }
}
